From 1b81ce4b5365a27f48637d2f77b12f002656a470 Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sat, 21 Sep 2024 16:21:52 -0700 Subject: [PATCH 001/213] Rat kings can butcher things (#32232) * rat kings can butcher things * minor organization * fix * important comma --- .../Kitchen/EntitySystems/SharpSystem.cs | 33 +++++++++++++++---- .../Entities/Mobs/NPCs/regalrat.yml | 1 + 2 files changed, 28 insertions(+), 6 deletions(-) diff --git a/Content.Server/Kitchen/EntitySystems/SharpSystem.cs b/Content.Server/Kitchen/EntitySystems/SharpSystem.cs index 99ea516f74d26a..67a04d9601eccd 100644 --- a/Content.Server/Kitchen/EntitySystems/SharpSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/SharpSystem.cs @@ -11,6 +11,7 @@ using Content.Shared.Verbs; using Content.Shared.Destructible; using Content.Shared.DoAfter; +using Content.Shared.Hands.Components; using Content.Shared.Kitchen; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; @@ -72,12 +73,17 @@ private bool TryStartButcherDoafter(EntityUid knife, EntityUid target, EntityUid if (!sharp.Butchering.Add(target)) return false; + // if the user isn't the entity with the sharp component, + // they will need to be holding something with their hands, so we set needHand to true + // so that the doafter can be interrupted if they drop the item in their hands + var needHand = user != knife; + var doAfter = new DoAfterArgs(EntityManager, user, sharp.ButcherDelayModifier * butcher.ButcherDelay, new SharpDoAfterEvent(), knife, target: target, used: knife) { BreakOnDamage = true, BreakOnMove = true, - NeedHand = true, + NeedHand = needHand, }; _doAfterSystem.TryStartDoAfter(doAfter); return true; @@ -136,13 +142,20 @@ private void OnDoAfter(EntityUid uid, SharpComponent component, DoAfterEvent arg private void OnGetInteractionVerbs(EntityUid uid, ButcherableComponent component, GetVerbsEvent args) { - if (component.Type != ButcheringType.Knife || args.Hands == null || !args.CanAccess || !args.CanInteract) + if (component.Type != ButcheringType.Knife || !args.CanAccess || !args.CanInteract) + return; + + // if the user has no hands, don't show them the verb if they have no SharpComponent either + if (!TryComp(args.User, out var userSharpComp) && args.Hands == null) return; - bool disabled = false; + var disabled = false; string? message = null; - if (!HasComp(args.Using)) + // if the user has hands + // and the item they're holding doesn't have the SharpComponent + // disable the verb + if (!TryComp(args.Using, out var usingSharpComp) && args.Hands != null) { disabled = true; message = Loc.GetString("butcherable-need-knife", @@ -150,9 +163,9 @@ private void OnGetInteractionVerbs(EntityUid uid, ButcherableComponent component } else if (_containerSystem.IsEntityInContainer(uid)) { + disabled = true; message = Loc.GetString("butcherable-not-in-container", ("target", uid)); - disabled = true; } else if (TryComp(uid, out var state) && !_mobStateSystem.IsDead(uid, state)) { @@ -160,12 +173,20 @@ private void OnGetInteractionVerbs(EntityUid uid, ButcherableComponent component message = Loc.GetString("butcherable-mob-isnt-dead"); } + // set the object doing the butchering to the item in the user's hands or to the user themselves + // if either has the SharpComponent + EntityUid sharpObject = default; + if (usingSharpComp != null) + sharpObject = args.Using!.Value; + else if (userSharpComp != null) + sharpObject = args.User; + InteractionVerb verb = new() { Act = () => { if (!disabled) - TryStartButcherDoafter(args.Using!.Value, args.Target, args.User); + TryStartButcherDoafter(sharpObject, args.Target, args.User); }, Message = message, Disabled = disabled, diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml index f62d8011d9a0e2..19bf16a94c5e9b 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml @@ -121,6 +121,7 @@ - type: Grammar attributes: gender: male + - type: Sharp - type: entity id: MobRatKingBuff From 49f177299eb05cc957d7ce0ab704bdc8e75dc7c2 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 21 Sep 2024 23:23:00 +0000 Subject: [PATCH 002/213] 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 35409215cf7db4..476bbb05c85f46 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - message: Added wristwatches for telling time. - type: Add - id: 6914 - time: '2024-07-13T06:09:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29550 - author: TheShuEd changes: - message: Added diamonds ore! @@ -3922,3 +3915,10 @@ id: 7413 time: '2024-09-21T19:54:56.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31987 +- author: Plykiya + changes: + - message: The rat king is now capable of butchering things, like animals. + type: Add + id: 7414 + time: '2024-09-21T23:21:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32232 From 4f5255bdcbc1172da97eddaecf2b94d6357f53f1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 22 Sep 2024 13:19:38 +1000 Subject: [PATCH 003/213] Update Credits (#32362) 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 1190feea712d00..21d0f430bdfb9d 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, Afrokada, Agoichi, Ahion, aiden, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, asperger-sind, aspiringLich, astriloqua, AutoOtter, avghdev, Awlod, AzzyIsNotHere, backetako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, benev0, benjamin-burges, BGare, bhenrich, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, BombasterDS, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Callmore, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, CatTheSystem, Centronias, chairbender, Charlese2, ChaseFlorom, chavonadelal, Cheackraze, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DakotaGay, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, 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, Dynexust, Easypoller, echo, eclips_e, eden077, EdenTheLiznerd, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, esguard, estacaoespacialpirata, eugene, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, Gaxeer, gbasood, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, Goldminermac, Golinth, GoodWheatley, Gorox221, 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, 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, IProduceWidgets, ItsMeThom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jaskanbe, JasperJRoth, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, JoeHammad1844, joelsgp, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, koteq, KrasnoshchekovPavel, Krunklehorn, Kukutis96513, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, lgruthes, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, 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, MilenVolf, milon, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, 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, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onoira, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, Phill101, phunnyguy, pigeonpeas, PilgrimViis, Pill-U, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, RiceMar1244, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, Sarahon, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, scrato, Scribbles0, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, SpaceManiac, SpaceyLady, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, TaralGit, Taran, taurie, Tayrtahn, tday93, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, Theomund, theOperand, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, TyAshley, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, Unkn0wnGh0st333, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, waylon531, weaversam8, wertanchik, whateverusername0, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, Zonespace27, Zumorica, Zymem, zzylex +0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, Afrokada, Agoichi, Ahion, aiden, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, 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, avghdev, Awlod, AzzyIsNotHere, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, benev0, benjamin-burges, BGare, bhenrich, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, BombasterDS, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, CatTheSystem, Centronias, chairbender, Charlese2, ChaseFlorom, chavonadelal, Cheackraze, 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, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DakotaGay, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, 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, 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, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, Gaxeer, gbasood, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, Goldminermac, Golinth, GoodWheatley, Gorox221, 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, 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, IProduceWidgets, ItsMeThom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jaskanbe, JasperJRoth, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, JoeHammad1844, joelsgp, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, koteq, KrasnoshchekovPavel, Krunklehorn, Kukutis96513, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, 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, MilenVolf, milon, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, 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, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onoira, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, Phill101, phunnyguy, pigeonpeas, PilgrimViis, Pill-U, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, RiceMar1244, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, Sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, scrato, Scribbles0, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, SpaceManiac, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, TaralGit, Taran, taurie, Tayrtahn, tday93, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, Theomund, theOperand, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, TyAshley, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, Unkn0wnGh0st333, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, waylon531, weaversam8, wertanchik, whateverusername0, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, Zonespace27, Zumorica, Zymem, zzylex From 72acce520070056432058bf430152bd542d1802c Mon Sep 17 00:00:00 2001 From: AsnDen <75905158+AsnDen@users.noreply.github.com> Date: Sun, 22 Sep 2024 11:20:49 +0300 Subject: [PATCH 004/213] AI now "can" use media console (#32334) --- Content.Server/MassMedia/Systems/NewsSystem.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Content.Server/MassMedia/Systems/NewsSystem.cs b/Content.Server/MassMedia/Systems/NewsSystem.cs index 899e9419930d4e..3ac4ecc37bcf9e 100644 --- a/Content.Server/MassMedia/Systems/NewsSystem.cs +++ b/Content.Server/MassMedia/Systems/NewsSystem.cs @@ -309,9 +309,6 @@ private void UpdateWriterDevices() private bool CanUse(EntityUid user, EntityUid console) { - // This shouldn't technically be possible because of BUI but don't trust client. - if (!_interaction.InRangeUnobstructed(console, user)) - return false; if (TryComp(console, out var accessReaderComponent)) { From 8f0615502810ccbab4c05963d252a8d3abde391f Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 22 Sep 2024 18:21:40 +1000 Subject: [PATCH 005/213] Make buckle mint (#32370) - Fix the unbuckle mispredicts. - Fix unbuckle offset existing. - Fix interaction range not aligning with interactionoutline system. --- Content.Client/Buckle/BuckleSystem.cs | 16 ------------- .../Buckle/Components/BuckleComponent.cs | 18 ++++----------- .../Buckle/Components/StrapComponent.cs | 8 +------ .../Buckle/SharedBuckleSystem.Buckle.cs | 23 ++++++++++--------- .../Structures/Furniture/rollerbeds.yml | 1 - 5 files changed, 18 insertions(+), 48 deletions(-) diff --git a/Content.Client/Buckle/BuckleSystem.cs b/Content.Client/Buckle/BuckleSystem.cs index 6770899e0aa293..035e1300ca5394 100644 --- a/Content.Client/Buckle/BuckleSystem.cs +++ b/Content.Client/Buckle/BuckleSystem.cs @@ -15,7 +15,6 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnHandleState); SubscribeLocalEvent(OnAppearanceChange); SubscribeLocalEvent(OnStrapMoveEvent); } @@ -57,21 +56,6 @@ private void OnStrapMoveEvent(EntityUid uid, StrapComponent component, ref MoveE } } - private void OnHandleState(Entity ent, ref ComponentHandleState args) - { - if (args.Current is not BuckleState state) - return; - - ent.Comp.DontCollide = state.DontCollide; - ent.Comp.BuckleTime = state.BuckleTime; - var strapUid = EnsureEntity(state.BuckledTo, ent); - - SetBuckledTo(ent, strapUid == null ? null : new (strapUid.Value, null)); - - var (uid, component) = ent; - - } - private void OnAppearanceChange(EntityUid uid, BuckleComponent component, ref AppearanceChangeEvent args) { if (!TryComp(uid, out var rotVisuals)) diff --git a/Content.Shared/Buckle/Components/BuckleComponent.cs b/Content.Shared/Buckle/Components/BuckleComponent.cs index c4810e8af085bc..1518ccea9ba8f2 100644 --- a/Content.Shared/Buckle/Components/BuckleComponent.cs +++ b/Content.Shared/Buckle/Components/BuckleComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Buckle.Components; /// /// This component allows an entity to be buckled to an entity with a . /// -[RegisterComponent, NetworkedComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause] [Access(typeof(SharedBuckleSystem))] public sealed partial class BuckleComponent : Component { @@ -20,7 +20,7 @@ public sealed partial class BuckleComponent : Component /// across a table two tiles away" problem. /// [DataField] - public float Range = SharedInteractionSystem.InteractionRange / 1.4f; + public float Range = SharedInteractionSystem.InteractionRange; /// /// True if the entity is buckled, false otherwise. @@ -31,7 +31,7 @@ public sealed partial class BuckleComponent : Component /// /// Whether or not collisions should be possible with the entity we are strapped to /// - [DataField] + [DataField, AutoNetworkedField] public bool DontCollide; /// @@ -50,13 +50,13 @@ public sealed partial class BuckleComponent : Component /// /// The time that this entity buckled at. /// - [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField, AutoNetworkedField] public TimeSpan? BuckleTime; /// /// The strap that this component is buckled to. /// - [DataField] + [DataField, AutoNetworkedField] public EntityUid? BuckledTo; /// @@ -72,14 +72,6 @@ public sealed partial class BuckleComponent : Component [ViewVariables] public int? OriginalDrawDepth; } -[Serializable, NetSerializable] -public sealed class BuckleState(NetEntity? buckledTo, bool dontCollide, TimeSpan? buckleTime) : ComponentState -{ - public readonly NetEntity? BuckledTo = buckledTo; - public readonly bool DontCollide = dontCollide; - public readonly TimeSpan? BuckleTime = buckleTime; -} - public sealed partial class UnbuckleAlertEvent : BaseAlertEvent; /// diff --git a/Content.Shared/Buckle/Components/StrapComponent.cs b/Content.Shared/Buckle/Components/StrapComponent.cs index 101c388a8bfcf8..ad5031356e5e4a 100644 --- a/Content.Shared/Buckle/Components/StrapComponent.cs +++ b/Content.Shared/Buckle/Components/StrapComponent.cs @@ -15,7 +15,7 @@ public sealed partial class StrapComponent : Component /// /// The entities that are currently buckled to this strap. /// - [ViewVariables] + [DataField, AutoNetworkedField] public HashSet BuckledEntities = new(); /// @@ -61,12 +61,6 @@ public sealed partial class StrapComponent : Component [DataField, AutoNetworkedField] public bool Enabled = true; - /// - /// You can specify the offset the entity will have after unbuckling. - /// - [DataField] - public Vector2 UnbuckleOffset = Vector2.Zero; - /// /// The sound to be played when a mob is buckled /// diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index 8b35f677f1856d..1745730647d0f6 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -58,13 +58,6 @@ private void InitializeBuckle() { BuckleDoafterEarly((uid, comp), ev.Event, ev); }); - - SubscribeLocalEvent(OnGetState); - } - - private void OnGetState(Entity ent, ref ComponentGetState args) - { - args.State = new BuckleState(GetNetEntity(ent.Comp.BuckledTo), ent.Comp.DontCollide, ent.Comp.BuckleTime); } private void OnBuckleComponentShutdown(Entity ent, ref ComponentShutdown args) @@ -196,11 +189,15 @@ public bool IsBuckled(EntityUid uid, BuckleComponent? component = null) protected void SetBuckledTo(Entity buckle, Entity? strap) { if (TryComp(buckle.Comp.BuckledTo, out StrapComponent? old)) + { old.BuckledEntities.Remove(buckle); + Dirty(buckle.Comp.BuckledTo.Value, old); + } if (strap is {} strapEnt && Resolve(strapEnt.Owner, ref strapEnt.Comp)) { strapEnt.Comp.BuckledEntities.Add(buckle); + Dirty(strapEnt); _alerts.ShowAlert(buckle, strapEnt.Comp.BuckledAlertType); } else @@ -463,13 +460,17 @@ private void Unbuckle(Entity buckle, Entity str if (buckleXform.ParentUid == strap.Owner && !Terminating(buckleXform.ParentUid)) { - _container.AttachParentToContainerOrGrid((buckle, buckleXform)); + _transform.PlaceNextTo((buckle, buckleXform), (strap.Owner, oldBuckledXform)); + buckleXform.ActivelyLerping = false; var oldBuckledToWorldRot = _transform.GetWorldRotation(strap); - _transform.SetWorldRotation(buckleXform, oldBuckledToWorldRot); + _transform.SetWorldRotationNoLerp((buckle, buckleXform), oldBuckledToWorldRot); - if (strap.Comp.UnbuckleOffset != Vector2.Zero) - buckleXform.Coordinates = oldBuckledXform.Coordinates.Offset(strap.Comp.UnbuckleOffset); + // TODO: This is doing 4 moveevents this is why I left the warning in, if you're going to remove it make it only do 1 moveevent. + if (strap.Comp.BuckleOffset != Vector2.Zero) + { + buckleXform.Coordinates = oldBuckledXform.Coordinates.Offset(strap.Comp.BuckleOffset); + } } _rotationVisuals.ResetHorizontalAngle(buckle.Owner); diff --git a/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml b/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml index 965c8261cceb44..9f3fbd7c455b56 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml @@ -54,7 +54,6 @@ position: Down rotation: -90 buckleOffset: "0,0.15" - unbuckleOffset: "0,0.15" buckleOnInteractHand: False - type: Appearance - type: GenericVisualizer From 8ed779bc02f2e1cab94bfb0eaad8521661f765fa Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 22 Sep 2024 08:22:48 +0000 Subject: [PATCH 006/213] Automatic changelog update --- Resources/Changelog/Changelog.yml | 33 ++++++++++++++++--------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 476bbb05c85f46..e4212eb9c2355a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,20 +1,4 @@ Entries: -- author: TheShuEd - changes: - - message: Added diamonds ore! - type: Add - - message: Diamonds can now be sold at a bargain price. - type: Add - id: 6915 - time: '2024-07-13T12:15:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25750 -- author: coffeeware - changes: - - message: Lizards will no longer lose their snouts when equipping head bandanas - type: Fix - id: 6916 - time: '2024-07-14T02:59:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29979 - author: SlamBamActionman changes: - message: RGBee and Rainbow Carp plushies now cycle color when held/worn. @@ -3922,3 +3906,20 @@ id: 7414 time: '2024-09-21T23:21:52.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32232 +- author: AsnDen + changes: + - message: Now AI is able to use news manager console that is far away from its + core. + type: Fix + id: 7415 + time: '2024-09-22T08:20:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32334 +- author: metalgearsloth + changes: + - message: Fix unbuckling mispredicting. + type: Fix + - message: Aligned buckle range with interaction range. + type: Tweak + id: 7416 + time: '2024-09-22T08:21:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32370 From 1aea1ae76fe67e08e0e2e37e253bccd5178d657f Mon Sep 17 00:00:00 2001 From: ravage <142820619+ravage123321@users.noreply.github.com> Date: Sun, 22 Sep 2024 13:33:08 +0300 Subject: [PATCH 007/213] Adding a holy watermelon helmet (#32272) * lolkekhatholy alalalla * animationcreate blelebleblbeleb --- .../Entities/Clothing/Head/hats.yml | 15 +++++ .../Objects/Consumable/Food/produce.yml | 4 ++ .../Hats/holyhatmelon.rsi/equipped-HELMET.png | Bin 0 -> 593 bytes .../Head/Hats/holyhatmelon.rsi/icon.png | Bin 0 -> 334 bytes .../Hats/holyhatmelon.rsi/inhand-left.png | Bin 0 -> 491 bytes .../Hats/holyhatmelon.rsi/inhand-right.png | Bin 0 -> 502 bytes .../Head/Hats/holyhatmelon.rsi/meta.json | 52 ++++++++++++++++++ 7 files changed, 71 insertions(+) create mode 100644 Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/meta.json diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index 123896240d9deb..97145a0f00d8ca 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -791,6 +791,21 @@ coefficients: Blunt: 0.95 +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHolyWatermelon + name: watermelon halo + description: Holy moly. + components: + - type: Sprite + sprite: Clothing/Head/Hats/holyhatmelon.rsi + - type: Clothing + sprite: Clothing/Head/Hats/holyhatmelon.rsi + - type: Armor + modifiers: + coefficients: + Caustic: 0.95 + - type: entity parent: [ClothingHeadBase, BaseSyndicateContraband] id: ClothingHeadHatSyndie diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index fa88f30074ea51..342f2723b8d8ce 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -2088,6 +2088,10 @@ - type: SliceableFood count: 5 slice: FoodHolymelonSlice + - type: Butcherable + butcheringType: Knife + spawned: + - id: ClothingHeadHatHolyWatermelon - type: Tag tags: - Fruit diff --git a/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..bfd047d7cf604c487a4ef9231659042d2f84e4ba GIT binary patch literal 593 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7uRSjKx9jP7LeL$-HD>VB+?4aSW-L z^Y-q>tl&Tywh#4P&8N>M>`oEX5pn6Mo;K-jdcm7Z3%f0Tu<%_{b)Me0uZdq^SBVCn zsVkSP$n=I4&hH;xxxFxRr9iv1U(ueE@6F{n;(uCPcv-Vul-F2>@A1vapI@C%m2_R+ zQ519RaG7BIKD*qnzyB^h@Bh~EuKW|dgyO$TetmqYQD;|mw=3Q}U0VG2)n{Rmt}fX( zKL>x0|IPG7@4@Zk{1@-u?EUs*$u3*%dHZ`VK0LT*@&E2WSN>k#$FP%o$1C2b<>`Xi z$E&aY-TZ=AY0>^KKUe-Ee^We-xJ9|9$nhYh^a?_C@{zx$B?fJEkK2DNoM%-~I3No8k19 ziI+`&vBRwgG9oH_@38OqZ>Fat_RCJMye`Z5E%Otdgj>%qD~o;S{Cx-P1;!$AgSVew z3U>c)seOm)-+KL&JM-N01qA;tg<2x`UqfNm&dHZm&@KALC^c>VtlEaQr?=TR@F&P0 luxqGon7Xtc**OhU%Xt^ncP)N#{K;;RxTmY1%Q~loCIDE46V?C# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..6161c05f12086787d1e3c5c296aeceddae630eed GIT binary patch literal 334 zcmV-U0kQsxP)Px$2uVaiR9J=W(lJZJKor37e}Y4n%V1RyL1-r_RR>+VNcMb}F5;&UmkwPz3Vs5! zhb|q0gTx`h#RwvZWJs4zJqL~SK;#bGd_TD1j(6`J?;Qvsg!u0~m*6x_js5YU&;a)j z2S%PKimY?`E)M|k=Of+k7P{BTbbHq8WV+uiv_Bu|-|qfo!?ifTvRUwSd(CP%_S*C9 z)1&nm>&`lj;5on4L8y4UOL*TrH|}oLS9<3pX4x#*KfJKc>okJqarP%M>zqbVmlcq( zcNP=AX2!hLAm(M3e8t#v>cDC^_Uf`CpH2uuh1&gGL8!>56Y8@1{uj2KI?z4>ptv!A gylY`0gb^MGl&;-%-SoYfy{! zS0YA#KiMB(SRy@P+HZ!Q+~!D^|04C1H!`TmD|O$|XJk{j+hBs1*kWI(AT;&s6pPL~ z=NaHCw=Csx&}@C^?fl)kR94pi)Q!62PZ2d2&2GHE@^y#x&TfN=-`*VvI@b`lx^wMh ztvQpH&z-cqxjjE#R<(}X+mdPx$ut`KgRCt{2*)dB3VH^hV=c1wIgwiE~paUTy+gs#zKSxVLOY|8U!lfaEM!$j| z;Kilka1tVDNLz%%3UX=c-*6~my~^3Ef90Ovc;el25AXZl=?f4M5fKp)5fKq(if8-4 z7=xpOC;9puz~A*T=nb%y^YQp{=!IeUuZxOEa&gak`MDTlFqtjx)?`}dP20(Wd?azJ ziT=)|hqvTd;khb7aUhsdoTlMT8e>Ms;#L*YGFuDiH0mgwog>$aWO&R!uAqH?=P2%C zeDrIwT?jn@cx~UvtjtrV003+}T#O3%KE3q-{2FFyEpiF~i^=Sih>S|mwxJzB8w=15 zpe^$SSRaGyAk9K*d*V1NU{zN2w46PNSD}D;-YYV{2Cx9_0NPl9b^vWGKs$go7N8wK z8w=15pp6A+2hf)K=hM3W>a(89*_mdr73cb|@wApU1+;I}hHHR!fWM~3GDl11M*s^* z`-SnXXCT>ujk`6OJiadGo^0bcTzIcau2{x?>B`A_#Y(RM&Fd2ZlI`XoA4!mpWUpL7 sr%`vGZV6IX?RpPhdjt>>5fNq950ll8lzgB7&Hw-a07*qoM6N<$f`a4ZhyVZp literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/meta.json new file mode 100644 index 00000000000000..302f4371e8cfa3 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/holyhatmelon.rsi/meta.json @@ -0,0 +1,52 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/commit/b459ea3fdee965bdc3e93e7983ad7fa610d05c12 and https://github.com/tgstation/tgstation/commit/ead6d8d59753ef033efdfad17f337df268038ff3 and modified by ravage", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4, + "delays": [ + [ + 0.5, + 0.5, + 0.5, + 0.5 + ], + [ + 0.5, + 0.5, + 0.5, + 0.5 + ], + [ + 0.5, + 0.5, + 0.5, + 0.5 + ], + [ + 0.5, + 0.5, + 0.5, + 0.5 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} From b78156ac08bce9bbe966fdf9a0134be6d249cc7c Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 22 Sep 2024 10:34:14 +0000 Subject: [PATCH 008/213] 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 e4212eb9c2355a..3afff7a7d294ef 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: SlamBamActionman - changes: - - message: RGBee and Rainbow Carp plushies now cycle color when held/worn. - type: Fix - id: 6917 - time: '2024-07-14T10:26:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30023 - author: Winkarst-cpu changes: - message: Now grappling gun is clumsy proof. @@ -3923,3 +3916,10 @@ id: 7416 time: '2024-09-22T08:21:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32370 +- author: ravage123321 + changes: + - message: You can make a holy helmet from holymelons! + type: Add + id: 7417 + time: '2024-09-22T10:33:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32272 From 932af69c3116e75d766bbc931ce63b84f5329e61 Mon Sep 17 00:00:00 2001 From: Soydium Date: Sun, 22 Sep 2024 15:26:55 +0300 Subject: [PATCH 009/213] added the ability for pigs to feed themselves (#32358) * pigs can eat * disable carcinisation --- Resources/Prototypes/Entities/Mobs/NPCs/animals.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 2ab2534121d1f1..d4f2ecd30aef20 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -3377,7 +3377,10 @@ - type: NpcFactionMember factions: - Passive - + - type: HTN + rootTask: + task: RuminantCompound + - type: entity name: diona nymph parent: [SimpleMobBase, StripableInventoryBase] From 1e466579fac4f75e23bd2e55884e350f3671038f Mon Sep 17 00:00:00 2001 From: saga3152 <133799418+saga3152@users.noreply.github.com> Date: Sun, 22 Sep 2024 17:15:12 +0200 Subject: [PATCH 010/213] Lemons, limes, and oranges can now be mutated into each other (#32306) --- Resources/Prototypes/Hydroponics/seeds.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index 07e08ef75b8c05..7349f3c3d72412 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -210,6 +210,8 @@ - FoodLemon mutationPrototypes: - lemoon + - lime + - orange harvestRepeat: Repeat lifespan: 55 maturation: 6 @@ -262,6 +264,9 @@ packetPrototype: LimeSeeds productPrototypes: - FoodLime + mutationPrototypes: + - orange + - lemon harvestRepeat: Repeat lifespan: 55 maturation: 6 @@ -290,6 +295,8 @@ - FoodOrange mutationPrototypes: - extradimensionalOrange + - lemon + - lime harvestRepeat: Repeat lifespan: 55 maturation: 6 From f8514e781591006bf8109d576dfccad10a5cd6f0 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 22 Sep 2024 15:16:18 +0000 Subject: [PATCH 011/213] 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 3afff7a7d294ef..8b6bd1b2f87711 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Now grappling gun is clumsy proof. - type: Tweak - id: 6918 - time: '2024-07-14T10:26:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29904 - author: HahayesSiH changes: - message: It is now possible to pet cyborgs. @@ -3923,3 +3916,10 @@ id: 7417 time: '2024-09-22T10:33:08.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32272 +- author: saga3152 + changes: + - message: Citrus plants can now be mutated into each other. + type: Add + id: 7418 + time: '2024-09-22T15:15:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32306 From d3ff4d54016d79b63512853b68c306a3a5fa240a Mon Sep 17 00:00:00 2001 From: PotentiallyTom <67602105+PotentiallyTom@users.noreply.github.com> Date: Sun, 22 Sep 2024 20:59:56 +0100 Subject: [PATCH 012/213] Makes it possible to disable the vent pressure lockout temporarily with a screwdriver (#31050) * builds * doesn't crash * seems to work * distance cap was dumb * Requested changes * can't find any issues from making the changes * Check for anchor and minor optimisation * Removed unnecessary usings * Code less verbose and cleanup --- .../Unary/Components/GasVentPumpComponent.cs | 69 ++++++++++--------- .../Unary/EntitySystems/GasVentPumpSystem.cs | 46 ++++++++++--- .../Piping/Unary/VentScrewedDoAfterEvent.cs | 9 +++ 3 files changed, 85 insertions(+), 39 deletions(-) create mode 100644 Content.Shared/Atmos/Piping/Unary/VentScrewedDoAfterEvent.cs diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs index 7d702904fbe83b..fcf3ddf969c76b 100644 --- a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs +++ b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs @@ -6,6 +6,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components { // The world if people documented their shit. + [AutoGenerateComponentPause] [RegisterComponent] public sealed partial class GasVentPumpComponent : Component { @@ -15,31 +16,25 @@ public sealed partial class GasVentPumpComponent : Component [ViewVariables] public bool IsDirty { get; set; } = false; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("inlet")] + [DataField] public string Inlet { get; set; } = "pipe"; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("outlet")] + [DataField] public string Outlet { get; set; } = "pipe"; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("pumpDirection")] + [DataField] public VentPumpDirection PumpDirection { get; set; } = VentPumpDirection.Releasing; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("pressureChecks")] + [DataField] public VentPressureBound PressureChecks { get; set; } = VentPressureBound.ExternalBound; - [ViewVariables(VVAccess.ReadOnly)] - [DataField("underPressureLockout")] + [DataField] public bool UnderPressureLockout { get; set; } = false; /// /// In releasing mode, do not pump when environment pressure is below this limit. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("underPressureLockoutThreshold")] + [DataField] public float UnderPressureLockoutThreshold = 80; // this must be tuned in conjunction with atmos.mmos_spacing_speed /// @@ -55,12 +50,30 @@ public sealed partial class GasVentPumpComponent : Component /// repressurizing of the development map take about 30 minutes using an oxygen tank (high pressure) /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("underPressureLockoutLeaking")] + [DataField] public float UnderPressureLockoutLeaking = 0.0001f; + /// + /// Is the vent pressure lockout currently manually disabled? + /// + [DataField] + public bool IsPressureLockoutManuallyDisabled = false; + /// + /// The time when the manual pressure lockout will be reenabled. + /// + [DataField] + [AutoPausedField] + public TimeSpan ManualLockoutReenabledAt; + /// + /// How long the lockout should remain manually disabled after being interacted with. + /// + [DataField] + public TimeSpan ManualLockoutDisabledDuration = TimeSpan.FromSeconds(30); // Enough time to fill a 5x5 room + /// + /// How long the doAfter should take when attempting to manually disable the pressure lockout. + /// + public float ManualLockoutDisableDoAfter = 2.0f; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("externalPressureBound")] + [DataField] public float ExternalPressureBound { get => _externalPressureBound; @@ -72,8 +85,7 @@ public float ExternalPressureBound private float _externalPressureBound = Atmospherics.OneAtmosphere; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("internalPressureBound")] + [DataField] public float InternalPressureBound { get => _internalPressureBound; @@ -88,8 +100,7 @@ public float InternalPressureBound /// /// Max pressure of the target gas (NOT relative to source). /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("maxPressure")] + [DataField] public float MaxPressure = Atmospherics.MaxOutputPressure; /// @@ -100,8 +111,7 @@ public float InternalPressureBound /// is too high, and the vent is connected to a large pipe-net, then someone can nearly instantly flood a /// room with gas. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("targetPressureChange")] + [DataField] public float TargetPressureChange = Atmospherics.OneAtmosphere; /// @@ -111,29 +121,26 @@ public float InternalPressureBound /// Vents cannot suck a pipe completely empty, instead pressurizing a section to a max of /// pipe pressure * PumpPower (in kPa). So a 51 kPa pipe is required for 101 kPA sections at PumpPower 2.0 /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("PumpPower")] + [DataField] public float PumpPower = 2.0f; #region Machine Linking /// /// Whether or not machine linking is enabled for this component. /// - [DataField("canLink")] + [DataField] public bool CanLink = false; - [DataField("pressurizePort", customTypeSerializer: typeof(PrototypeIdSerializer))] + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] public string PressurizePort = "Pressurize"; - [DataField("depressurizePort", customTypeSerializer: typeof(PrototypeIdSerializer))] + [DataField(customTypeSerializer: typeof(PrototypeIdSerializer))] public string DepressurizePort = "Depressurize"; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("pressurizePressure")] + [DataField] public float PressurizePressure = Atmospherics.OneAtmosphere; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("depressurizePressure")] + [DataField] public float DepressurizePressure = 0; // When true, ignore under-pressure lockout. Used to re-fill rooms in air alarm "Fill" mode. diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs index dbbbf2d00830e2..9d9862ff1dde88 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs @@ -7,21 +7,22 @@ using Content.Server.DeviceNetwork; using Content.Server.DeviceNetwork.Components; using Content.Server.DeviceNetwork.Systems; -using Content.Server.NodeContainer; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NodeContainer.Nodes; -using Content.Server.Power.Components; using Content.Shared.Atmos; using Content.Shared.Atmos.Monitor; +using Content.Shared.Atmos.Piping.Unary; using Content.Shared.Atmos.Piping.Unary.Components; using Content.Shared.Atmos.Visuals; using Content.Shared.Audio; using Content.Shared.DeviceNetwork; +using Content.Shared.DoAfter; using Content.Shared.Examine; +using Content.Shared.Interaction; using Content.Shared.Power; using Content.Shared.Tools.Systems; using JetBrains.Annotations; -using Robust.Server.GameObjects; +using Robust.Shared.Timing; namespace Content.Server.Atmos.Piping.Unary.EntitySystems { @@ -35,7 +36,9 @@ public sealed class GasVentPumpSystem : EntitySystem [Dependency] private readonly SharedAmbientSoundSystem _ambientSoundSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly WeldableSystem _weldable = default!; - + [Dependency] private readonly SharedToolSystem _toolSystem = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly IGameTiming _timing = default!; public override void Initialize() { base.Initialize(); @@ -51,6 +54,8 @@ public override void Initialize() SubscribeLocalEvent(OnSignalReceived); SubscribeLocalEvent(OnAnalyzed); SubscribeLocalEvent(OnWeldChanged); + SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnVentScrewed); } private void OnGasVentPumpUpdated(EntityUid uid, GasVentPumpComponent vent, ref AtmosDeviceUpdateEvent args) @@ -80,11 +85,16 @@ private void OnGasVentPumpUpdated(EntityUid uid, GasVentPumpComponent vent, ref { return; } + // If the lockout has expired, disable it. + if (vent.IsPressureLockoutManuallyDisabled && _timing.CurTime >= vent.ManualLockoutReenabledAt) + { + vent.IsPressureLockoutManuallyDisabled = false; + } var timeDelta = args.dt; var pressureDelta = timeDelta * vent.TargetPressureChange; - var lockout = (environment.Pressure < vent.UnderPressureLockoutThreshold); + var lockout = (environment.Pressure < vent.UnderPressureLockoutThreshold) && !vent.IsPressureLockoutManuallyDisabled; if (vent.UnderPressureLockout != lockout) // update visuals only if this changes { vent.UnderPressureLockout = lockout; @@ -115,7 +125,7 @@ private void OnGasVentPumpUpdated(EntityUid uid, GasVentPumpComponent vent, ref var transferMoles = pressureDelta * environment.Volume / (pipe.Air.Temperature * Atmospherics.R); // Only run if the device is under lockout and not being overriden - if (vent.UnderPressureLockout & !vent.PressureLockoutOverride) + if (vent.UnderPressureLockout & !vent.PressureLockoutOverride & !vent.IsPressureLockoutManuallyDisabled) { // Leak only a small amount of gas as a proportion of supply pipe pressure. var pipeDelta = pipe.Air.Pressure - environment.Pressure; @@ -273,7 +283,7 @@ private void UpdateState(EntityUid uid, GasVentPumpComponent vent, AppearanceCom } else if (vent.PumpDirection == VentPumpDirection.Releasing) { - if (vent.UnderPressureLockout & !vent.PressureLockoutOverride) + if (vent.UnderPressureLockout & !vent.PressureLockoutOverride & !vent.IsPressureLockoutManuallyDisabled) _appearance.SetData(uid, VentPumpVisuals.State, VentPumpState.Lockout, appearance); else _appearance.SetData(uid, VentPumpVisuals.State, VentPumpState.Out, appearance); @@ -290,7 +300,7 @@ private void OnExamine(EntityUid uid, GasVentPumpComponent component, ExaminedEv return; if (args.IsInDetailsRange) { - if (pumpComponent.PumpDirection == VentPumpDirection.Releasing & pumpComponent.UnderPressureLockout & !pumpComponent.PressureLockoutOverride) + if (pumpComponent.PumpDirection == VentPumpDirection.Releasing & pumpComponent.UnderPressureLockout & !pumpComponent.PressureLockoutOverride & !pumpComponent.IsPressureLockoutManuallyDisabled) { args.PushMarkup(Loc.GetString("gas-vent-pump-uvlo")); } @@ -325,5 +335,25 @@ private void OnWeldChanged(EntityUid uid, GasVentPumpComponent component, ref We { UpdateState(uid, component); } + private void OnInteractUsing(EntityUid uid, GasVentPumpComponent component, InteractUsingEvent args) + { + if (args.Handled + || component.UnderPressureLockout == false + || !_toolSystem.HasQuality(args.Used, "Screwing") + || !Transform(uid).Anchored + ) + { + return; + } + + args.Handled = true; + + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.ManualLockoutDisableDoAfter, new VentScrewedDoAfterEvent(), uid, uid, args.Used)); + } + private void OnVentScrewed(EntityUid uid, GasVentPumpComponent component, VentScrewedDoAfterEvent args) + { + component.ManualLockoutReenabledAt = _timing.CurTime + component.ManualLockoutDisabledDuration; + component.IsPressureLockoutManuallyDisabled = true; + } } } diff --git a/Content.Shared/Atmos/Piping/Unary/VentScrewedDoAfterEvent.cs b/Content.Shared/Atmos/Piping/Unary/VentScrewedDoAfterEvent.cs new file mode 100644 index 00000000000000..1fdc69bcf68b4a --- /dev/null +++ b/Content.Shared/Atmos/Piping/Unary/VentScrewedDoAfterEvent.cs @@ -0,0 +1,9 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.Atmos.Piping.Unary; + +[Serializable, NetSerializable] +public sealed partial class VentScrewedDoAfterEvent : SimpleDoAfterEvent +{ +} From ee393a1cd8e897e019a83af933329b462c5f6beb Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 22 Sep 2024 20:01:02 +0000 Subject: [PATCH 013/213] 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 8b6bd1b2f87711..9c631408186856 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: HahayesSiH - changes: - - message: It is now possible to pet cyborgs. - type: Add - - message: Clicking on cyborgs and opening the strip menu no longer unlocks them. - type: Tweak - id: 6919 - time: '2024-07-14T14:09:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30037 - author: deltanedas changes: - message: Fixed ninja shoes not working as magboots. @@ -3923,3 +3914,10 @@ id: 7418 time: '2024-09-22T15:15:12.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32306 +- author: PotentiallyTom + changes: + - message: Vent pressure lockout can be temporarily disabled with a screwdriver + type: Tweak + id: 7419 + time: '2024-09-22T19:59:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31050 From 8a2c69d18dbc371872edb7b6967db70144831126 Mon Sep 17 00:00:00 2001 From: Killerqu00 <47712032+Killerqu00@users.noreply.github.com> Date: Sun, 22 Sep 2024 22:08:56 +0200 Subject: [PATCH 014/213] reach update :3 (#32387) --- Resources/Maps/reach.yml | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/Resources/Maps/reach.yml b/Resources/Maps/reach.yml index c556d8367f6ad5..9e9070b68ed32c 100644 --- a/Resources/Maps/reach.yml +++ b/Resources/Maps/reach.yml @@ -1899,7 +1899,7 @@ entities: - uid: 80 components: - type: Transform - pos: 1.5,9.5 + pos: -0.5,10.5 parent: 2 - proto: BarSignTheLightbulb entities: @@ -7544,8 +7544,8 @@ entities: pos: 7.5,-13.5 parent: 2 - type: GasMixer - inletTwoConcentration: 0.78 - inletOneConcentration: 0.22 + inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasPassiveVent @@ -12187,11 +12187,6 @@ entities: - type: Transform pos: 2.5,6.5 parent: 2 - - uid: 1739 - components: - - type: Transform - pos: -0.5,10.5 - parent: 2 - uid: 1949 components: - type: Transform @@ -14361,12 +14356,6 @@ entities: - type: Transform pos: 16.5,-4.5 parent: 2 - - uid: 2081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,10.5 - parent: 2 - uid: 2082 components: - type: Transform From 5e162e776d1fda433797e4e743f089a917287ea0 Mon Sep 17 00:00:00 2001 From: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Date: Sun, 22 Sep 2024 20:27:48 -0400 Subject: [PATCH 015/213] Add the Syndicate Instigator Shuttle (#32083) * Instigator * sustenance --- .../Maps/Shuttles/ShuttleEvent/instigator.yml | 4052 +++++++++++++++++ .../Prototypes/GameRules/unknown_shuttles.yml | 11 + .../Shuttles/shuttle_incoming_event.yml | 5 + 3 files changed, 4068 insertions(+) create mode 100644 Resources/Maps/Shuttles/ShuttleEvent/instigator.yml diff --git a/Resources/Maps/Shuttles/ShuttleEvent/instigator.yml b/Resources/Maps/Shuttles/ShuttleEvent/instigator.yml new file mode 100644 index 00000000000000..9c7aec2fa149b9 --- /dev/null +++ b/Resources/Maps/Shuttles/ShuttleEvent/instigator.yml @@ -0,0 +1,4052 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 86: FloorShuttleBlack + 91: FloorShuttleRed + 112: FloorTechMaint2 + 113: FloorTechMaint3 + 128: Lattice + 129: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: GX-Instigator + - type: Transform + pos: -0.5,-0.45833334 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: WwAAAAADWwAAAAABWwAAAAABgQAAAAAAgQAAAAAAWwAAAAADVgAAAAAAcAAAAAAAcQAAAAADcQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAADWwAAAAACVgAAAAADgQAAAAAAgQAAAAAAVgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAAAWwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAWwAAAAAAgQAAAAAAVgAAAAAAVgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAABVgAAAAAAVgAAAAACVgAAAAAAVgAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAABgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAVgAAAAACVgAAAAADVgAAAAACVgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAVgAAAAACVgAAAAABVgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAVgAAAAACVgAAAAABVgAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAACVgAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAABVgAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAACVgAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAVgAAAAAAVgAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVgAAAAABVgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVgAAAAADVgAAAAADVgAAAAABVgAAAAACVgAAAAACVgAAAAABVgAAAAADgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAABWwAAAAABVgAAAAAAVgAAAAADVgAAAAAAVgAAAAAAgQAAAAAAcQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcQAAAAABcQAAAAAAcAAAAAAAVgAAAAACWwAAAAACgQAAAAAAgQAAAAAAWwAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAWwAAAAABWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVgAAAAAAVgAAAAABgQAAAAAAWwAAAAAAVgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAADVgAAAAADVgAAAAACVgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVgAAAAABVgAAAAAAVgAAAAAAVgAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAVgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAACVgAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAADVgAAAAABVgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAABVgAAAAABVgAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAVgAAAAAAVgAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAABVgAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAVgAAAAAAVgAAAAAAVgAAAAACVgAAAAACVgAAAAADVgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcQAAAAABgQAAAAAAVgAAAAAAVgAAAAACVgAAAAAAVgAAAAACWwAAAAACWwAAAAAC + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#571212FF' + id: BrickTileWhiteInnerNe + decals: + 152: -1,3 + - node: + color: '#571212FF' + id: BrickTileWhiteInnerNw + decals: + 151: -1,3 + - node: + color: '#571212FF' + id: MiniTileBoxOverlay + decals: + 31: -7,2 + 32: 7,2 + - node: + color: '#571212FF' + id: MiniTileCheckerAOverlay + decals: + 22: -6,0 + 23: -6,1 + 24: -6,2 + 25: -6,3 + 26: -6,-1 + 27: -6,-2 + 28: -7,3 + 29: -8,3 + 30: -9,3 + 33: -9,2 + 34: -9,4 + 49: -10,2 + 50: -10,3 + 51: -10,4 + 109: -8,4 + 110: -7,4 + - node: + color: '#571212FF' + id: MiniTileCheckerBOverlay + decals: + 35: 6,-2 + 36: 6,-1 + 37: 6,0 + 38: 6,1 + 39: 6,2 + 40: 6,3 + 41: 7,3 + 42: 8,3 + 43: 9,3 + 44: 9,2 + 45: 9,4 + 46: 10,2 + 47: 10,3 + 48: 10,4 + 111: 8,4 + 112: 7,4 + - node: + color: '#571212FF' + id: MiniTileWhiteBox + decals: + 56: 0,3 + - node: + color: '#16212EFF' + id: MiniTileWhiteCornerNe + decals: + 18: -1,-1 + 77: 1,1 + - node: + color: '#571212FF' + id: MiniTileWhiteCornerNe + decals: + 10: 1,4 + 11: 2,3 + 53: 2,2 + 88: -3,-1 + 89: 5,-1 + - node: + color: '#16212EFF' + id: MiniTileWhiteCornerNw + decals: + 5: -1,1 + 19: 1,-1 + - node: + color: '#571212FF' + id: MiniTileWhiteCornerNw + decals: + 8: -2,3 + 9: -1,4 + 52: -2,2 + 87: -5,-1 + 90: 3,-1 + - node: + color: '#16212EFF' + id: MiniTileWhiteCornerSe + decals: + 76: 1,0 + - node: + color: '#571212FF' + id: MiniTileWhiteCornerSe + decals: + 80: 5,0 + - node: + color: '#16212EFF' + id: MiniTileWhiteCornerSw + decals: + 6: -1,0 + - node: + color: '#571212FF' + id: MiniTileWhiteCornerSw + decals: + 79: -5,0 + - node: + color: '#571212FF' + id: MiniTileWhiteInnerNe + decals: + 54: 1,3 + 58: -2,-1 + 72: 0,0 + 73: -1,0 + - node: + color: '#571212FF' + id: MiniTileWhiteInnerNw + decals: + 55: 1,3 + 59: 2,-1 + 74: 0,0 + 75: 1,0 + - node: + color: '#571212FF' + id: MiniTileWhiteInnerSe + decals: + 62: -2,-1 + 65: -2,2 + 69: -1,1 + 70: 0,1 + 71: 0,0 + - node: + color: '#571212FF' + id: MiniTileWhiteInnerSw + decals: + 63: 2,-1 + 64: 2,2 + 66: 0,1 + 67: 1,1 + 68: 0,0 + - node: + color: '#16212EFF' + id: MiniTileWhiteLineE + decals: + 0: 0,-1 + 2: -2,0 + 21: -2,1 + - node: + color: '#571212FF' + id: MiniTileWhiteLineE + decals: + 14: 2,1 + 15: 2,0 + 60: 2,-1 + 108: 5,-2 + - node: + color: '#16212EFF' + id: MiniTileWhiteLineN + decals: + 78: 0,1 + 147: 8,11 + 148: 9,11 + - node: + color: '#571212FF' + id: MiniTileWhiteLineN + decals: + 12: 0,4 + 57: 0,2 + 91: 4,-1 + 92: -4,-1 + 114: 9,5 + 115: -9,5 + - node: + color: '#FF9821FF' + id: MiniTileWhiteLineN + decals: + 149: -9,11 + 150: -8,11 + - node: + color: '#16212EFF' + id: MiniTileWhiteLineS + decals: + 4: 0,2 + 145: 8,11 + 146: 9,11 + 153: -1,2 + 154: 1,2 + - node: + color: '#571212FF' + id: MiniTileWhiteLineS + decals: + 16: 1,-1 + 17: -1,-1 + 113: 9,5 + 116: -9,5 + - node: + color: '#FF9821FF' + id: MiniTileWhiteLineS + decals: + 143: -9,11 + 144: -8,11 + - node: + color: '#16212EFF' + id: MiniTileWhiteLineW + decals: + 1: 0,-1 + 3: 2,0 + 20: 2,1 + - node: + color: '#571212FF' + id: MiniTileWhiteLineW + decals: + 7: -2,0 + 13: -2,1 + 61: -2,-1 + 107: -5,-2 + - node: + color: '#571212FF' + id: OffsetCheckerAOverlay + decals: + 117: 8,6 + 118: 9,6 + 119: 10,6 + 120: 10,7 + 121: 9,7 + 122: 8,7 + 123: 8,8 + 124: 9,8 + 125: 10,8 + 126: 9,9 + 127: 8,9 + 128: 8,10 + 129: 9,10 + - node: + color: '#571212FF' + id: OffsetCheckerBOverlay + decals: + 81: 5,-1 + 82: 4,-1 + 83: 3,-1 + 84: -3,-1 + 85: -4,-1 + 86: -5,-1 + 93: 2,-2 + 94: 1,-2 + 95: -1,-2 + 96: -2,-2 + 97: 0,-2 + 98: -1,-3 + 99: 1,-3 + 100: 0,-3 + 101: 5,-2 + 102: 4,-2 + 103: 3,-2 + 104: -3,-2 + 105: -4,-2 + 106: -5,-2 + 130: -8,6 + 131: -9,6 + 132: -10,6 + 133: -10,7 + 134: -9,7 + 135: -8,7 + 136: -8,8 + 137: -9,8 + 138: -10,8 + 139: -9,9 + 140: -8,9 + 141: -8,10 + 142: -9,10 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 30711 + 0,-1: + 0: 65340 + -1,0: + 0: 56828 + 0,1: + 0: 3 + -1,1: + 0: 8 + 1,0: + 0: 56670 + 1,-1: + 0: 30464 + 1: 129 + 1,1: + 1: 16386 + 0: 1032 + 2,0: + 0: 14867 + 1: 8 + 2,1: + 0: 30507 + 2,2: + 0: 13111 + 1: 128 + 1,2: + 1: 32768 + 1,3: + 1: 8 + 2,-1: + 0: 4096 + 1: 16896 + 2,3: + 1: 4612 + -1,-1: + 0: 65414 + 1: 1 + -3,0: + 1: 2 + 0: 35336 + -3,1: + 0: 52362 + -3,2: + 1: 32 + 0: 34956 + -3,-1: + 1: 18432 + -3,3: + 1: 2052 + -2,0: + 0: 30303 + -2,1: + 0: 5379 + 1: 16392 + -2,2: + 0: 4369 + 1: 8192 + -2,-1: + 0: 56320 + 1: 32 + -2,3: + 1: 4098 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: ActionToggleInternals + entities: + - uid: 495 + components: + - type: Transform + parent: 493 + - type: InstantAction + container: 493 +- proto: ActionToggleJetpack + entities: + - uid: 494 + components: + - type: Transform + parent: 493 + - type: InstantAction + container: 493 +- proto: AirCanister + entities: + - uid: 441 + components: + - type: Transform + anchored: True + pos: -8.5,11.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockExternalGlass + entities: + - uid: 125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - type: DeviceLinkSink + ports: + - DoorBolt + - Open + - Close + - Toggle + - type: DeviceLinkSource + linkedPorts: + 127: + - DoorStatus: DoorBolt + - uid: 126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: DeviceLinkSink + ports: + - DoorBolt + - Open + - Close + - Toggle + - type: DeviceLinkSource + linkedPorts: + 128: + - DoorStatus: DoorBolt + - uid: 127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - type: DeviceLinkSink + ports: + - DoorBolt + - Open + - Close + - Toggle + - type: DeviceLinkSource + linkedPorts: + 125: + - DoorStatus: DoorBolt + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - type: DeviceLinkSink + ports: + - DoorBolt + - Open + - Close + - Toggle + - type: DeviceLinkSource + linkedPorts: + 126: + - DoorStatus: DoorBolt +- proto: AirlockMaint + entities: + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 +- proto: AirlockShuttleSyndicate + entities: + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,4.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 1 +- proto: AirlockSyndicate + entities: + - uid: 519 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 244 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + - uid: 340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,4.5 + parent: 1 + - uid: 342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 1 + - uid: 533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1 +- proto: Bed + entities: + - uid: 446 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 +- proto: BedsheetSyndie + entities: + - uid: 470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,3.5 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,4.5 + parent: 1 +- proto: BoxCardboard + entities: + - uid: 531 + components: + - type: MetaData + desc: a box full of frag grenade cartridges + name: frag grenade box + - type: Transform + pos: -0.7699833,1.7199572 + parent: 1 + - type: Storage + storedItems: + 523: + position: 0,0 + _rotation: South + 522: + position: 1,0 + _rotation: South + 525: + position: 2,0 + _rotation: South + 524: + position: 0,2 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 523 + - 522 + - 525 + - 524 + - uid: 532 + components: + - type: MetaData + desc: a box full of EMP cartridges + name: EMP grenade box + - type: Transform + pos: -0.23873329,1.699124 + parent: 1 + - type: Storage + storedItems: + 159: + position: 0,0 + _rotation: South + 131: + position: 1,0 + _rotation: South + 130: + position: 2,0 + _rotation: South + 158: + position: 0,2 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 159 + - 131 + - 130 + - 158 +- proto: BoxFolderBlack + entities: + - uid: 514 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxFolderClipboard + entities: + - uid: 518 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxFolderNuclearCodes + entities: + - uid: 526 + components: + - type: Transform + pos: 1.5254097,1.4605976 + parent: 1 +- proto: BoxFolderRed + entities: + - uid: 327 + components: + - type: Transform + pos: -0.46789998,1.480374 + parent: 1 + - uid: 513 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 516 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazinePistolCaselessRifle + entities: + - uid: 463 + components: + - type: Transform + pos: -7.332144,10.686393 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: -7.311311,7.5718102 + parent: 1 +- proto: ButtonFrameExit + entities: + - uid: 326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + - uid: 331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 +- proto: C4 + entities: + - uid: 507 + components: + - type: Transform + pos: 8.755206,8.089237 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 8.755206,7.5892377 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 184 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -8.5,6.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: -7.5,14.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: -8.5,12.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: -7.5,13.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 +- proto: CableHV + entities: + - uid: 214 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 222 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - uid: 136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 +- proto: ClosetLegalFilled + entities: + - uid: 511 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 512 + - 513 + - 514 + - 515 + - 516 + - 517 + - 518 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClothingBeltAssault + entities: + - uid: 475 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatSyndie + entities: + - uid: 476 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadsetAltSyndicate + entities: + - uid: 133 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 134 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 521 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatSyndieCap + entities: + - uid: 479 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterSyndie + entities: + - uid: 484 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterSyndieCap + entities: + - uid: 487 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsCowboyBlack + entities: + - uid: 474 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 477 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsCowboyBrown + entities: + - uid: 472 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsWinterSyndicate + entities: + - uid: 473 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesColorBlack + entities: + - uid: 482 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesHighheelBoots + entities: + - uid: 485 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtLawyerRed + entities: + - uid: 515 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtSyndieFormalDress + entities: + - uid: 488 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitLawyerRed + entities: + - uid: 512 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 517 + components: + - type: Transform + parent: 511 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPyjamaSyndicateBlack + entities: + - uid: 481 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPyjamaSyndicatePink + entities: + - uid: 478 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPyjamaSyndicateRed + entities: + - uid: 483 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitSyndieFormal + entities: + - uid: 480 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 486 + components: + - type: Transform + parent: 471 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComputerIFFSyndicate + entities: + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 152 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 147 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: ComputerShuttleSyndie + entities: + - uid: 144 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 +- proto: CrateSyndicateSurplusBundle + entities: + - uid: 459 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 +- proto: CyberPen + entities: + - uid: 328 + components: + - type: Transform + pos: -0.53040004,1.4282906 + parent: 1 +- proto: EnergyDaggerBox + entities: + - uid: 496 + components: + - type: Transform + pos: 8.55729,9.557987 + parent: 1 +- proto: FaxMachineSyndie + entities: + - uid: 155 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 359 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 391 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeBend + entities: + - uid: 349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 352 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 389 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 423 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 427 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeStraight + entities: + - uid: 63 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 361 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 362 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 363 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 364 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 365 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 366 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 367 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 368 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 382 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 383 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 405 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 416 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 417 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 418 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 420 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 421 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 422 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeTJunction + entities: + - uid: 345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 374 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPort + entities: + - uid: 335 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentPump + entities: + - uid: 385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 435 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 436 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GeneratorBasic15kW + entities: + - uid: 199 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 150 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 +- proto: GrenadeEMP + entities: + - uid: 130 + components: + - type: Transform + parent: 532 + - type: Physics + canCollide: False + - uid: 131 + components: + - type: Transform + parent: 532 + - type: Physics + canCollide: False + - uid: 158 + components: + - type: Transform + parent: 532 + - type: Physics + canCollide: False + - uid: 159 + components: + - type: Transform + parent: 532 + - type: Physics + canCollide: False +- proto: GrenadeFrag + entities: + - uid: 522 + components: + - type: Transform + parent: 531 + - type: Physics + canCollide: False + - uid: 523 + components: + - type: Transform + parent: 531 + - type: Physics + canCollide: False + - uid: 524 + components: + - type: Transform + parent: 531 + - type: Physics + canCollide: False + - uid: 525 + components: + - type: Transform + parent: 531 + - type: Physics + canCollide: False +- proto: Grille + entities: + - uid: 108 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 185 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 +- proto: JetpackMiniFilled + entities: + - uid: 493 + components: + - type: Transform + pos: 8.505206,10.057987 + parent: 1 + - type: GasTank + toggleActionEntity: 495 + - type: Jetpack + toggleActionEntity: 494 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 494 + - 495 +- proto: LockerSyndicate + entities: + - uid: 471 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.147 + 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: + - 134 + - 133 + - 521 + - 487 + - 488 + - 486 + - 485 + - 484 + - 483 + - 482 + - 481 + - 480 + - 479 + - 478 + - 477 + - 476 + - 475 + - 474 + - 473 + - 472 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: PhoneInstrumentSyndicate + entities: + - uid: 498 + components: + - type: Transform + pos: 8.52604,8.64132 + parent: 1 +- proto: PlastitaniumWindow + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,8.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,8.5 + parent: 1 + - uid: 113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 +- proto: PoweredlightRed + entities: + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,9.5 + parent: 1 + - uid: 444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - uid: 445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 1 + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + - uid: 450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + - uid: 467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 +- proto: Rack + entities: + - uid: 457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,10.5 + parent: 1 + - uid: 458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 1 +- proto: ShuttleGunFriendship + entities: + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 +- proto: SignalButtonDirectional + entities: + - uid: 329 + components: + - type: MetaData + name: blast doors + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 208: + - Pressed: Toggle + 209: + - Pressed: Toggle + 210: + - Pressed: Toggle + - uid: 330 + components: + - type: MetaData + name: blast doors + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 211: + - Pressed: Toggle + 212: + - Pressed: Toggle + 213: + - Pressed: Toggle +- proto: SMESBasic + entities: + - uid: 198 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 +- proto: StairStageDark + entities: + - uid: 527 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 187 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 +- proto: SuitStorageSyndie + entities: + - uid: 452 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 332 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 +- proto: SurveillanceCameraSecurity + entities: + - uid: 333 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Fore-Port + - uid: 334 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Fore-Starboard + - uid: 337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Aft-Port + - uid: 339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Aft-Starboard +- proto: SyndicateComputerComms + entities: + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 +- proto: SyndieFlag + entities: + - uid: 468 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 +- proto: SyndieHandyFlag + entities: + - uid: 466 + components: + - type: Transform + pos: 8.49851,10.585687 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: 8.796873,10.651737 + parent: 1 +- proto: SyndieMiniBomb + entities: + - uid: 506 + components: + - type: Transform + pos: 8.421873,7.766321 + parent: 1 +- proto: SyndieSoldierSpawner + entities: + - uid: 528 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 +- proto: SyndieSoldierTeamLeaderSpawner + entities: + - uid: 530 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: TableFancyBlack + entities: + - uid: 489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1 + - uid: 490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + - uid: 491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + - uid: 492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 +- proto: Thruster + entities: + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1 +- proto: ToolboxSyndicateFilled + entities: + - uid: 497 + components: + - type: Transform + pos: 8.505206,9.099654 + parent: 1 +- proto: TwoWayLever + entities: + - uid: 151 + components: + - type: MetaData + name: FIRE! + - type: Transform + pos: 0.48732924,3.7624094 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 129: + - Left: On + - Left: Trigger + - Right: On + - Right: Trigger + - Middle: Off + 132: + - Left: On + - Left: Trigger + - Right: On + - Right: Trigger + - Middle: Off +- proto: VendingMachineClothing + entities: + - uid: 465 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 +- proto: VendingMachineCoffee + entities: + - uid: 535 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 +- proto: VendingMachineSustenance + entities: + - uid: 534 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 456 + components: + - type: Transform + pos: -9.5,7.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,11.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,12.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,13.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,14.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 1 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,12.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + - uid: 75 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,7.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,10.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,12.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,13.5 + parent: 1 + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,13.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,12.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,11.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,10.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,9.5 + parent: 1 + - uid: 101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,8.5 + parent: 1 + - uid: 102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,7.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,6.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,5.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,3.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + - uid: 191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,5.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-0.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 1 + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,9.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,14.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,15.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -8.5,14.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -9.5,12.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: -10.5,9.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 1 + - uid: 338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1 +- proto: WeaponPistolCobra + entities: + - uid: 461 + components: + - type: Transform + pos: -7.4571443,7.4884768 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: -7.4154773,10.488477 + parent: 1 +... diff --git a/Resources/Prototypes/GameRules/unknown_shuttles.yml b/Resources/Prototypes/GameRules/unknown_shuttles.yml index c721b562287736..7e40e3a1f28fee 100644 --- a/Resources/Prototypes/GameRules/unknown_shuttles.yml +++ b/Resources/Prototypes/GameRules/unknown_shuttles.yml @@ -172,6 +172,17 @@ - type: LoadMapRule preloadedGrid: NTIncorporation +- type: entity + id: UnknownShuttleInstigator + parent: BaseUnknownShuttleRule + components: + - type: StationEvent + startAnnouncement: null #dont nark on antags + weight: 1 # lower because antags. + earliestStart: 50 # late to hopefully have enough ghosts to fill all roles quickly (3) and because antags + - type: LoadMapRule + preloadedGrid: Instigator + - type: entity id: UnknownShuttleJoe parent: BaseUnknownShuttleRule diff --git a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml index 5e1f11eef9ba99..a5269a73daef80 100644 --- a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml +++ b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml @@ -69,6 +69,11 @@ path: /Maps/Shuttles/ShuttleEvent/incorporation.yml copies: 1 +- type: preloadedGrid + id: Instigator + path: /Maps/Shuttles/ShuttleEvent/instigator.yml + copies: 1 + - type: preloadedGrid id: Joe path: /Maps/Shuttles/ShuttleEvent/joe.yml From dd7884ed40114fab1584852647dbb39c24f091e7 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 23 Sep 2024 12:10:22 +1000 Subject: [PATCH 016/213] Predict vending machine BUI (#32376) --- .../VendingMachineBoundUserInterface.cs | 20 +++---------- .../VendingMachines/VendingMachineSystem.cs | 10 +++++++ .../VendingMachines/VendingMachineSystem.cs | 30 +++---------------- .../SharedVendingMachineSystem.cs | 5 ++-- .../VendingMachineComponent.cs | 23 ++++---------- .../VendingMachineInterfaceState.cs | 11 ------- .../Structures/Machines/vending_machines.yml | 3 ++ 7 files changed, 30 insertions(+), 72 deletions(-) diff --git a/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs b/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs index f8313882a2fee0..28b1b25adef03f 100644 --- a/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs +++ b/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs @@ -23,29 +23,17 @@ protected override void Open() { base.Open(); - var vendingMachineSys = EntMan.System(); - - _cachedInventory = vendingMachineSys.GetAllInventory(Owner); - _menu = this.CreateWindow(); _menu.OpenCenteredLeft(); _menu.Title = EntMan.GetComponent(Owner).EntityName; - _menu.OnItemSelected += OnItemSelected; - - _menu.Populate(_cachedInventory); - - _menu.OpenCenteredLeft(); + Refresh(); } - protected override void UpdateState(BoundUserInterfaceState state) + public void Refresh() { - base.UpdateState(state); - - if (state is not VendingMachineInterfaceState newState) - return; - - _cachedInventory = newState.Inventory; + var system = EntMan.System(); + _cachedInventory = system.GetAllInventory(Owner); _menu?.Populate(_cachedInventory); } diff --git a/Content.Client/VendingMachines/VendingMachineSystem.cs b/Content.Client/VendingMachines/VendingMachineSystem.cs index 922a75d24a2686..1b1dde2b67ef5b 100644 --- a/Content.Client/VendingMachines/VendingMachineSystem.cs +++ b/Content.Client/VendingMachines/VendingMachineSystem.cs @@ -8,6 +8,7 @@ public sealed class VendingMachineSystem : SharedVendingMachineSystem { [Dependency] private readonly AnimationPlayerSystem _animationPlayer = default!; [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; + [Dependency] private readonly SharedUserInterfaceSystem _uiSystem = default!; public override void Initialize() { @@ -15,6 +16,15 @@ public override void Initialize() SubscribeLocalEvent(OnAppearanceChange); SubscribeLocalEvent(OnAnimationCompleted); + SubscribeLocalEvent(OnVendingAfterState); + } + + private void OnVendingAfterState(EntityUid uid, VendingMachineComponent component, ref AfterAutoHandleStateEvent args) + { + if (_uiSystem.TryGetOpenUi(uid, VendingMachineUiKey.Key, out var bui)) + { + bui.Refresh(); + } } private void OnAnimationCompleted(EntityUid uid, VendingMachineComponent component, AnimationCompletedEvent args) diff --git a/Content.Server/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs index a265ce2d431bf1..38407a98c72943 100644 --- a/Content.Server/VendingMachines/VendingMachineSystem.cs +++ b/Content.Server/VendingMachines/VendingMachineSystem.cs @@ -34,10 +34,8 @@ public sealed class VendingMachineSystem : SharedVendingMachineSystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly AccessReaderSystem _accessReader = default!; [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; - [Dependency] private readonly SharedActionsSystem _action = default!; [Dependency] private readonly PricingSystem _pricing = default!; [Dependency] private readonly ThrowingSystem _throwingSystem = default!; - [Dependency] private readonly UserInterfaceSystem _userInterfaceSystem = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly SpeakOnUIClosedSystem _speakOnUIClosed = default!; @@ -47,7 +45,6 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnComponentMapInit); SubscribeLocalEvent(OnPowerChanged); SubscribeLocalEvent(OnBreak); SubscribeLocalEvent(OnEmagged); @@ -59,7 +56,6 @@ public override void Initialize() Subs.BuiEvents(VendingMachineUiKey.Key, subs => { - subs.Event(OnBoundUIOpened); subs.Event(OnInventoryEjectMessage); }); @@ -70,12 +66,6 @@ public override void Initialize() SubscribeLocalEvent(OnPriceCalculation); } - private void OnComponentMapInit(EntityUid uid, VendingMachineComponent component, MapInitEvent args) - { - _action.AddAction(uid, ref component.ActionEntity, component.Action, uid); - Dirty(uid, component); - } - private void OnVendingPrice(EntityUid uid, VendingMachineComponent component, ref PriceCalculationEvent args) { var price = 0.0; @@ -94,9 +84,9 @@ private void OnVendingPrice(EntityUid uid, VendingMachineComponent component, re args.Price += price; } - protected override void OnComponentInit(EntityUid uid, VendingMachineComponent component, ComponentInit args) + protected override void OnMapInit(EntityUid uid, VendingMachineComponent component, MapInitEvent args) { - base.OnComponentInit(uid, component, args); + base.OnMapInit(uid, component, args); if (HasComp(uid)) { @@ -110,18 +100,6 @@ private void OnActivatableUIOpenAttempt(EntityUid uid, VendingMachineComponent c args.Cancel(); } - private void OnBoundUIOpened(EntityUid uid, VendingMachineComponent component, BoundUIOpenedEvent args) - { - UpdateVendingMachineInterfaceState(uid, component); - } - - private void UpdateVendingMachineInterfaceState(EntityUid uid, VendingMachineComponent component) - { - var state = new VendingMachineInterfaceState(GetAllInventory(uid, component)); - - _userInterfaceSystem.SetUiState(uid, VendingMachineUiKey.Key, state); - } - private void OnInventoryEjectMessage(EntityUid uid, VendingMachineComponent component, VendingMachineEjectMessage args) { if (!this.IsPowered(uid, EntityManager)) @@ -297,7 +275,7 @@ public void TryEjectVendorItem(EntityUid uid, InventoryType type, string itemId, _speakOnUIClosed.TrySetFlag((uid, speakComponent)); entry.Amount--; - UpdateVendingMachineInterfaceState(uid, vendComponent); + Dirty(uid, vendComponent); TryUpdateVisualState(uid, vendComponent); Audio.PlayPvs(vendComponent.SoundVend, uid); } @@ -493,7 +471,7 @@ public void TryRestockInventory(EntityUid uid, VendingMachineComponent? vendComp RestockInventoryFromPrototype(uid, vendComponent); - UpdateVendingMachineInterfaceState(uid, vendComponent); + Dirty(uid, vendComponent); TryUpdateVisualState(uid, vendComponent); } diff --git a/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs b/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs index 59f8489ac625fb..94562ce8d1bf5d 100644 --- a/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs +++ b/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs @@ -23,11 +23,11 @@ public abstract partial class SharedVendingMachineSystem : EntitySystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnAfterInteract); } - protected virtual void OnComponentInit(EntityUid uid, VendingMachineComponent component, ComponentInit args) + protected virtual void OnMapInit(EntityUid uid, VendingMachineComponent component, MapInitEvent args) { RestockInventoryFromPrototype(uid, component, component.InitialStockQuality); } @@ -46,6 +46,7 @@ public void RestockInventoryFromPrototype(EntityUid uid, AddInventoryFromPrototype(uid, packPrototype.StartingInventory, InventoryType.Regular, component, restockQuality); AddInventoryFromPrototype(uid, packPrototype.EmaggedInventory, InventoryType.Emagged, component, restockQuality); AddInventoryFromPrototype(uid, packPrototype.ContrabandInventory, InventoryType.Contraband, component, restockQuality); + Dirty(uid, component); } /// diff --git a/Content.Shared/VendingMachines/VendingMachineComponent.cs b/Content.Shared/VendingMachines/VendingMachineComponent.cs index 23130bb8f39345..a3c7949600a189 100644 --- a/Content.Shared/VendingMachines/VendingMachineComponent.cs +++ b/Content.Shared/VendingMachines/VendingMachineComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.VendingMachines { - [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] + [RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] public sealed partial class VendingMachineComponent : Component { /// @@ -21,7 +21,7 @@ public sealed partial class VendingMachineComponent : Component /// Used by the server to determine how long the vending machine stays in the "Deny" state. /// Used by the client to determine how long the deny animation should be played. /// - [DataField("denyDelay")] + [DataField] public float DenyDelay = 2.0f; /// @@ -29,16 +29,16 @@ public sealed partial class VendingMachineComponent : Component /// The selected item is dispensed afer this delay. /// Used by the client to determine how long the deny animation should be played. /// - [DataField("ejectDelay")] + [DataField] public float EjectDelay = 1.2f; - [ViewVariables] + [DataField, AutoNetworkedField] public Dictionary Inventory = new(); - [ViewVariables] + [DataField, AutoNetworkedField] public Dictionary EmaggedInventory = new(); - [ViewVariables] + [DataField, AutoNetworkedField] public Dictionary ContrabandInventory = new(); public bool Contraband; @@ -102,17 +102,6 @@ public sealed partial class VendingMachineComponent : Component // Yoinked from: https://github.com/discordia-space/CEV-Eris/blob/35bbad6764b14e15c03a816e3e89aa1751660ba9/sound/machines/Custom_deny.ogg public SoundSpecifier SoundDeny = new SoundPathSpecifier("/Audio/Machines/custom_deny.ogg"); - /// - /// The action available to the player controlling the vending machine - /// - [DataField("action", customTypeSerializer: typeof(PrototypeIdSerializer))] - [AutoNetworkedField] - public string? Action = "ActionVendingThrow"; - - [DataField("actionEntity")] - [AutoNetworkedField] - public EntityUid? ActionEntity; - public float NonLimitedEjectForce = 7.5f; public float NonLimitedEjectRange = 5f; diff --git a/Content.Shared/VendingMachines/VendingMachineInterfaceState.cs b/Content.Shared/VendingMachines/VendingMachineInterfaceState.cs index 82758b17f60e2f..27651bb1cb4a80 100644 --- a/Content.Shared/VendingMachines/VendingMachineInterfaceState.cs +++ b/Content.Shared/VendingMachines/VendingMachineInterfaceState.cs @@ -2,17 +2,6 @@ namespace Content.Shared.VendingMachines { - [NetSerializable, Serializable] - public sealed class VendingMachineInterfaceState : BoundUserInterfaceState - { - public List Inventory; - - public VendingMachineInterfaceState(List inventory) - { - Inventory = inventory; - } - } - [Serializable, NetSerializable] public sealed class VendingMachineEjectMessage : BoundUserInterfaceMessage { diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index a6cf9ef0e308cf..99879cfbc9450b 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -5,6 +5,9 @@ description: Just add capitalism! abstract: true components: + - type: ActionGrant + actions: + - ActionVendingThrow - type: StationAiWhitelist - type: AmbientOnPowered - type: AmbientSound From b2cb813f54b04a10a12a862e5de6d053acb4c3a2 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 23 Sep 2024 14:55:30 +1000 Subject: [PATCH 017/213] Include container ents in examine (#32267) Mainly for closets but if it's like a mouse in a bag they can see what's in the bag type deal. --- Content.Client/Verbs/VerbSystem.cs | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/Content.Client/Verbs/VerbSystem.cs b/Content.Client/Verbs/VerbSystem.cs index f990c83d7c2a9f..f84389195f8c74 100644 --- a/Content.Client/Verbs/VerbSystem.cs +++ b/Content.Client/Verbs/VerbSystem.cs @@ -13,6 +13,7 @@ using Robust.Client.Graphics; using Robust.Client.Player; using Robust.Client.State; +using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Utility; @@ -28,6 +29,7 @@ public sealed class VerbSystem : SharedVerbSystem [Dependency] private readonly IStateManager _stateManager = default!; [Dependency] private readonly IEyeManager _eyeManager = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly SharedContainerSystem _containers = default!; /// /// When a user right clicks somewhere, how large is the box we use to get entities for the context menu? @@ -81,12 +83,11 @@ public bool TryGetEntityMenuEntities(MapCoordinates targetPos, [NotNullWhen(true // Get entities _entities.Clear(); var entitiesUnderMouse = _tree.QueryAabb(targetPos.MapId, Box2.CenteredAround(targetPos.Position, new Vector2(EntityMenuLookupSize, EntityMenuLookupSize))); + bool Predicate(EntityUid e) => e == player; // Do we have to do FoV checks? if ((visibility & MenuVisibility.NoFov) == 0) { - bool Predicate(EntityUid e) => e == player; - TryComp(player.Value, out ExaminerComponent? examiner); foreach (var ent in entitiesUnderMouse) @@ -103,6 +104,21 @@ public bool TryGetEntityMenuEntities(MapCoordinates targetPos, [NotNullWhen(true } } + // If we're in a container list all other entities in it. + if (_containers.TryGetContainingContainer(player.Value, out var container)) + { + foreach (var ent in container.ContainedEntities) + { + if (ent == player.Value || _entities.Contains(ent)) + continue; + + if ((visibility & MenuVisibility.NoFov) == 0x0 || _examine.CanExamine(player.Value, targetPos, examined: ent)) + { + _entities.Add(ent); + } + } + } + if (_entities.Count == 0) return false; From ad6c5a1ce9943407a73cdd17fb713445345a1166 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 04:56:38 +0000 Subject: [PATCH 018/213] 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 9c631408186856..a6161f1248d22f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: deltanedas - changes: - - message: Fixed ninja shoes not working as magboots. - type: Fix - id: 6920 - time: '2024-07-14T15:11:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28586 - author: lzk228 changes: - message: Scarves are eatable again. @@ -3921,3 +3914,10 @@ id: 7419 time: '2024-09-22T19:59:56.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31050 +- author: metalgearsloth + changes: + - message: You can examine entities inside of your own container again. + type: Fix + id: 7420 + time: '2024-09-23T04:55:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32267 From 3d2aadde1f3b8b023463fd23c701041655ef90dd Mon Sep 17 00:00:00 2001 From: Cojoke <83733158+Cojoke-dot@users.noreply.github.com> Date: Mon, 23 Sep 2024 01:48:58 -0500 Subject: [PATCH 019/213] L6 Fits in the Suit Storage Slot (#30525) * L6 Fits in the Suit Storage Slot * 5x4 item --- .../Entities/Objects/Weapons/Guns/LMGs/lmgs.yml | 3 +++ .../Guns/LMGs/l6.rsi/equipped-SUITSTORAGE.png | Bin 0 -> 1165 bytes .../Objects/Weapons/Guns/LMGs/l6.rsi/meta.json | 4 ++++ 3 files changed, 7 insertions(+) create mode 100644 Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/equipped-SUITSTORAGE.png diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml index 1a1514f48cf36b..a415927cc56829 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml @@ -8,11 +8,14 @@ - type: Sprite - type: Item size: Huge + shape: + - 0,0,4,3 - type: Clothing sprite: Objects/Weapons/Guns/LMGs/l6.rsi quickEquip: false slots: - Back + - suitStorage - type: Wieldable unwieldOnUse: false - type: GunWieldBonus diff --git a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000000000000000000000000000000000..66bba2db27b590f6d332b89ecafd7548cfc8e4bc GIT binary patch literal 1165 zcmV;81akX{P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D1R_a9K~#8N?V3w# z)KC=1?qqcA2qL<4A?T*~32Ny;p-9^i zX%VKrHnk5yN~!$PoZ&WPl6x~rnvwg1kW6*X{Li`Po+S5N<#0G0ju^&k69@ifq0x1k zYChqgBiY*8?wTM}FOM9c70o8Z2B7~!#dF-$;BhiFbyZDHUTJ9+?NP)AVB=e})cCwy z;`;u*2ZhZ7Mt*($tN%$UG^5@B*cPKH02rK``>1Z;x>L9yT)#Hm(u77CFcXabBN1+A z_|o8DOTd@4HDjB$JX41${Zt(tSprZlm(|M3irU%PQoX%>#z8R30OnGZ!IM2b-jN5- z2TvUdI0K_Q50y&AX#PXTqa~yAqIz2G@9kxp0WdZ;)^hCUk6&tf`i7VGAfwOOWd4J3 z4G5!Fs~xA zI4mO%Y&89=LxQ8dy1K01y?<+^#X11hYSnZ8ZvDG=)a&&l zKS)vXFH?t6)<>SvrUrPF_N_)kOdMbF`cDNk$=#)}w8IMfLTSy=$;d_b?LGfIO!fgR$9cIH!lqi1yHV-^;8uj= z90LOv)y&LI|6lCkyVwx04LFbeH0n+20RV)G@Y&f9-Z=^KU2KW-6hfK%rqBCPbR5AT zx+n^l&8uk`dK~})01Nf`)U~Hd8lxlVwg?F6pO*bhrU0b*JP>9}zb!f(4u`|xa5%Dr zN6>EQ5Tns%4I;Bg;cmey0HdR$>hYr|h0OxAq0xre0Pxl&DYd!zTP-bp^8Q{#(1u1p zv&kD{Yyen$mnA7^HpAECih!;S&1jD!HUO-^1`QXL;6TahaTNbW5u{-wE2a%CkoQP0EsTvQgnU-wNB^?{#gdIxZbvjB?n#YUYhR|4RTwdla!#fTpAv)Z5cV zMKq#W8mdvm*8sY)enYaGFx4F!0QTod(d)F|pEde^0yLX!@i(sC`rPld<((DXpwZ!Q fI2;Z~QBdk1VrUzlwGgPK00000NkvXXu0mjf_T(eQ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json index 8cd2e3fe7b80d1..4b0e50c2b3929d 100644 --- a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json @@ -47,6 +47,10 @@ { "name": "equipped-BACKPACK", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } From c4b8260f238c6db479e39d2834d23b236be7b938 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 06:50:05 +0000 Subject: [PATCH 020/213] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a6161f1248d22f..b273b33e3fe0ab 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Scarves are eatable again. - type: Fix - id: 6921 - time: '2024-07-14T15:12:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29959 - author: Winkarst-cpu changes: - message: Now addgamerule command processes only valid game rules. @@ -3921,3 +3914,12 @@ id: 7420 time: '2024-09-23T04:55:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32267 +- author: Cojoke-dot + changes: + - message: L6 Saw now fits in the suit slot + type: Tweak + - message: L6 Saw is now a 5x4 item + type: Tweak + id: 7421 + time: '2024-09-23T06:48:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30525 From caf34be616d153401a7fe40fbe932934b3c9daed Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 23 Sep 2024 19:28:42 +1200 Subject: [PATCH 021/213] Entity menu lookup changes (#32395) --- Content.Client/Verbs/VerbSystem.cs | 157 ++++++++++++++--------------- Content.Shared/CCVar/CCVars.cs | 6 ++ 2 files changed, 84 insertions(+), 79 deletions(-) diff --git a/Content.Client/Verbs/VerbSystem.cs b/Content.Client/Verbs/VerbSystem.cs index f84389195f8c74..f592303d281980 100644 --- a/Content.Client/Verbs/VerbSystem.cs +++ b/Content.Client/Verbs/VerbSystem.cs @@ -1,9 +1,9 @@ using System.Diagnostics.CodeAnalysis; -using System.Linq; using System.Numerics; using Content.Client.Examine; using Content.Client.Gameplay; using Content.Client.Popups; +using Content.Shared.CCVar; using Content.Shared.Examine; using Content.Shared.Tag; using Content.Shared.Verbs; @@ -13,6 +13,7 @@ using Robust.Client.Graphics; using Robust.Client.Player; using Robust.Client.State; +using Robust.Shared.Configuration; using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Utility; @@ -30,11 +31,10 @@ public sealed class VerbSystem : SharedVerbSystem [Dependency] private readonly IEyeManager _eyeManager = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly SharedContainerSystem _containers = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; - /// - /// When a user right clicks somewhere, how large is the box we use to get entities for the context menu? - /// - public const float EntityMenuLookupSize = 0.25f; + private float _lookupSize; /// /// These flags determine what entities the user can see on the context menu. @@ -43,128 +43,127 @@ public sealed class VerbSystem : SharedVerbSystem public Action? OnVerbsResponse; - private List _entities = new(); - public override void Initialize() { base.Initialize(); SubscribeNetworkEvent(HandleVerbResponse); + Subs.CVar(_cfg, CCVars.GameEntityMenuLookup, OnLookupChanged, true); + } + + private void OnLookupChanged(float val) + { + _lookupSize = val; } /// - /// Get all of the entities in an area for displaying on the context menu. + /// Get all of the entities in an area for displaying on the context menu. /// - public bool TryGetEntityMenuEntities(MapCoordinates targetPos, [NotNullWhen(true)] out List? result) + /// True if any entities were found. + public bool TryGetEntityMenuEntities(MapCoordinates targetPos, [NotNullWhen(true)] out List? entities) { - result = null; + entities = null; - if (_stateManager.CurrentState is not GameplayStateBase gameScreenBase) + if (_stateManager.CurrentState is not GameplayStateBase) return false; - var player = _playerManager.LocalEntity; - if (player == null) + if (_playerManager.LocalEntity is not { } player) return false; // If FOV drawing is disabled, we will modify the visibility option to ignore visiblity checks. - var visibility = _eyeManager.CurrentEye.DrawFov - ? Visibility - : Visibility | MenuVisibility.NoFov; + var visibility = _eyeManager.CurrentEye.DrawFov ? Visibility : Visibility | MenuVisibility.NoFov; - var ev = new MenuVisibilityEvent() + var ev = new MenuVisibilityEvent { TargetPos = targetPos, Visibility = visibility, }; - RaiseLocalEvent(player.Value, ref ev); + RaiseLocalEvent(player, ref ev); visibility = ev.Visibility; - // Get entities - _entities.Clear(); - var entitiesUnderMouse = _tree.QueryAabb(targetPos.MapId, Box2.CenteredAround(targetPos.Position, new Vector2(EntityMenuLookupSize, EntityMenuLookupSize))); - bool Predicate(EntityUid e) => e == player; - - // Do we have to do FoV checks? - if ((visibility & MenuVisibility.NoFov) == 0) - { - TryComp(player.Value, out ExaminerComponent? examiner); - - foreach (var ent in entitiesUnderMouse) - { - if (_examine.CanExamine(player.Value, targetPos, Predicate, ent.Uid, examiner)) - _entities.Add(ent.Uid); - } - } - else + // Initially, we include all entities returned by a sprite area lookup + var box = Box2.CenteredAround(targetPos.Position, new Vector2(_lookupSize, _lookupSize)); + var queryResult = _tree.QueryAabb(targetPos.MapId, box); + entities = new List(queryResult.Count); + foreach (var ent in queryResult) { - foreach (var ent in entitiesUnderMouse) - { - _entities.Add(ent.Uid); - } + entities.Add(ent.Uid); } // If we're in a container list all other entities in it. - if (_containers.TryGetContainingContainer(player.Value, out var container)) + // E.g., allow players in lockers to examine / interact with other entities in the same locker + if (_containers.TryGetContainingContainer((player, null), out var container)) { - foreach (var ent in container.ContainedEntities) + // Only include the container contents when clicking near it. + if (entities.Contains(container.Owner) + || _containers.TryGetOuterContainer(container.Owner, Transform(container.Owner), out var outer) + && entities.Contains(outer.Owner)) { - if (ent == player.Value || _entities.Contains(ent)) - continue; - - if ((visibility & MenuVisibility.NoFov) == 0x0 || _examine.CanExamine(player.Value, targetPos, examined: ent)) + // The container itself might be in some other container, so it might not have been added by the + // sprite tree lookup. + if (!entities.Contains(container.Owner)) + entities.Add(container.Owner); + + // TODO Context Menu + // This might miss entities in some situations. E.g., one of the contained entities entity in it, that + // itself has another entity attached to it, then we should be able to "see" that entity. + // E.g., if a security guard is on a segway and gets thrown in a locker, this wouldn't let you see the guard. + foreach (var ent in container.ContainedEntities) { - _entities.Add(ent); + if (!entities.Contains(ent)) + entities.Add(ent); } } } - if (_entities.Count == 0) - return false; - - if (visibility == MenuVisibility.All) + if ((visibility & MenuVisibility.InContainer) != 0) { - result = new (_entities); - return true; + // This is inefficient, but I'm lazy and CBF implementing my own recursive container method. Note that + // this might actually fail to add the contained children of some entities in the menu. E.g., an entity + // with a large sprite aabb, but small broadphase might appear in the menu, but have its children added + // by this. + var flags = LookupFlags.All & ~LookupFlags.Sensors; + foreach (var e in _lookup.GetEntitiesInRange(targetPos, _lookupSize, flags: flags)) + { + if (!entities.Contains(e)) + entities.Add(e); + } } - // remove any entities in containers - if ((visibility & MenuVisibility.InContainer) == 0) + // Do we have to do FoV checks? + if ((visibility & MenuVisibility.NoFov) == 0) { - for (var i = _entities.Count - 1; i >= 0; i--) + TryComp(player, out ExaminerComponent? examiner); + for (var i = entities.Count - 1; i >= 0; i--) { - var entity = _entities[i]; - - if (ContainerSystem.IsInSameOrTransparentContainer(player.Value, entity)) - continue; - - _entities.RemoveSwap(i); + if (!_examine.CanExamine(player, targetPos, e => e == player, entities[i], examiner)) + entities.RemoveSwap(i); } } - // remove any invisible entities - if ((visibility & MenuVisibility.Invisible) == 0) + if ((visibility & MenuVisibility.Invisible) != 0) + return entities.Count != 0; + + for (var i = entities.Count - 1; i >= 0; i--) { - var spriteQuery = GetEntityQuery(); + if (_tagSystem.HasTag(entities[i], "HideContextMenu")) + entities.RemoveSwap(i); + } - for (var i = _entities.Count - 1; i >= 0; i--) - { - var entity = _entities[i]; + // Unless we added entities in containers, every entity should already have a visible sprite due to + // the fact that we used the sprite tree query. + if (container == null && (visibility & MenuVisibility.InContainer) == 0) + return entities.Count != 0; - if (!spriteQuery.TryGetComponent(entity, out var spriteComponent) || - !spriteComponent.Visible || - _tagSystem.HasTag(entity, "HideContextMenu")) - { - _entities.RemoveSwap(i); - } - } + var spriteQuery = GetEntityQuery(); + for (var i = entities.Count - 1; i >= 0; i--) + { + if (!spriteQuery.TryGetComponent(entities[i], out var spriteComponent) || !spriteComponent.Visible) + entities.RemoveSwap(i); } - if (_entities.Count == 0) - return false; - - result = new(_entities); - return true; + return entities.Count != 0; } /// diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index d6d8bafa0e6c19..26101c7537ee4d 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -430,6 +430,12 @@ public static readonly CVarDef public static readonly CVarDef ContrabandExamine = CVarDef.Create("game.contraband_examine", true, CVar.SERVER | CVar.REPLICATED); + /// + /// Size of the lookup area for adding entities to the context menu + /// + public static readonly CVarDef GameEntityMenuLookup = + CVarDef.Create("game.entity_menu_lookup", 0.25f, CVar.CLIENTONLY | CVar.ARCHIVE); + /* * Discord */ From b6845defa039e50d77e287a0c2937e97db8d982f Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 07:29:48 +0000 Subject: [PATCH 022/213] Automatic changelog update --- Resources/Changelog/Admin.yml | 8 ++++++++ Resources/Changelog/Changelog.yml | 15 ++++++++------- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index c5b567f69e3946..537c6b09ff5bd2 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -544,5 +544,13 @@ Entries: id: 67 time: '2024-09-15T01:55:03.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31654 +- author: ElectroJr + changes: + - message: The `menuvis all` once again makes all entities show up in the right-click + context menu. + type: Fix + id: 68 + time: '2024-09-23T07:28:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32395 Name: Admin Order: 1 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b273b33e3fe0ab..a3dd8da68a654f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Now addgamerule command processes only valid game rules. - type: Fix - id: 6922 - time: '2024-07-15T19:18:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29912 - author: Jezithyr changes: - message: Removed the Geras ability from Slimes @@ -3923,3 +3916,11 @@ id: 7421 time: '2024-09-23T06:48:58.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30525 +- author: ElectroJr + changes: + - message: Entities within the same container as the player only appear in the context + menu when clicking near the container. + type: Fix + id: 7422 + time: '2024-09-23T07:28:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32395 From a7e29f2878a63d62c9c23326e2b8f2dc64d40cc4 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Mon, 23 Sep 2024 12:51:48 +0200 Subject: [PATCH 023/213] Computer wirepanel (#32273) * Computer wirehacking * Power wire now shocks * deconstruction fix * updated tests * Better parenting * maintenance panel sprite * new sprite for maintenance panel open --- .../Interaction/ComputerContruction.cs | 4 +- Resources/Locale/en-US/wires/wire-names.ftl | 1 + .../Computers/base_structurecomputers.yml | 29 +++ .../Machines/Computers/computers.yml | 184 +++++++++++++----- .../Construction/Graphs/machines/computer.yml | 6 +- Resources/Prototypes/Wires/layouts.yml | 35 ++-- .../computers.rsi/generic_panel_open.png | Bin 0 -> 405 bytes .../Machines/computers.rsi/meta.json | 6 +- 8 files changed, 203 insertions(+), 62 deletions(-) create mode 100644 Resources/Textures/Structures/Machines/computers.rsi/generic_panel_open.png diff --git a/Content.IntegrationTests/Tests/Construction/Interaction/ComputerContruction.cs b/Content.IntegrationTests/Tests/Construction/Interaction/ComputerContruction.cs index 8af5edaf316529..9a819b257bc2bf 100644 --- a/Content.IntegrationTests/Tests/Construction/Interaction/ComputerContruction.cs +++ b/Content.IntegrationTests/Tests/Construction/Interaction/ComputerContruction.cs @@ -39,7 +39,7 @@ public async Task DeconstructComputer() await StartDeconstruction(ComputerId); // Initial interaction turns id computer into generic computer - await InteractUsing(Screw); + await InteractUsing(Pry); AssertPrototype(ComputerFrame); // Perform deconstruction steps @@ -69,7 +69,7 @@ public async Task ChangeComputer() await SpawnTarget(ComputerId); // Initial interaction turns id computer into generic computer - await InteractUsing(Screw); + await InteractUsing(Pry); AssertPrototype(ComputerFrame); // Perform partial deconstruction steps diff --git a/Resources/Locale/en-US/wires/wire-names.ftl b/Resources/Locale/en-US/wires/wire-names.ftl index 1ac2ae89123f35..16ae068eaafc5e 100644 --- a/Resources/Locale/en-US/wires/wire-names.ftl +++ b/Resources/Locale/en-US/wires/wire-names.ftl @@ -40,6 +40,7 @@ wires-board-name-fatextractor = FatExtractor wires-board-name-flatpacker = Flatpacker wires-board-name-spaceheater = Space Heater wires-board-name-jukebox = Jukebox +wires-board-name-computer = Computer # names that get displayed in the wire hacking hud & admin logs. diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml index 204e06c8600a3d..9baca8b4b6b2bf 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml @@ -30,6 +30,8 @@ state: generic - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Appearance - type: GenericVisualizer visuals: @@ -40,6 +42,10 @@ computerLayerKeys: True: { visible: true, shader: unshaded } False: { visible: true, shader: shaded } + enum.WiresVisuals.MaintenancePanelState: + enum.WiresVisualLayers.MaintenancePanel: + True: { visible: false } + False: { visible: true } - type: LitOnPowered - type: PointLight radius: 1.5 @@ -61,3 +67,26 @@ - type: LightningTarget priority: 1 - type: RequireProjectileTarget + - type: Electrified + enabled: false + usesApcPower: true + - type: WiresPanel + - type: WiresVisuals + - type: Wires + boardName: wires-board-name-computer + layoutId: Computer +# +# This is overwritten by children, so needs to be defined there +# - type: UserInterface +# interfaces: +# enum.WiresUiKey.Key: +# type: WiresBoundUserInterface + +- type: entity + parent: BaseComputer + id: BaseComputerAiAccess + components: + - type: StationAiWhitelist + - type: Wires + boardName: wires-board-name-computer + layoutId: ComputerAi diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index f9fd10152f6025..4cd596e9b44882 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -1,10 +1,9 @@ - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerAlert name: atmospheric alerts computer description: Used to access the station's atmospheric automated alert system. components: - - type: StationAiWhitelist - type: Computer board: AlertsComputerCircuitboard - type: Sprite @@ -17,6 +16,8 @@ state: alert-0 - map: ["computerLayerKeys"] state: atmos_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: GenericVisualizer visuals: enum.ComputerVisuals.Powered: @@ -25,7 +26,7 @@ False: { visible: false } computerLayerKeys: True: { visible: true, shader: unshaded } - False: { visible: true, shader: shaded } + False: { visible: true, shader: shaded } enum.AtmosAlertsComputerVisuals.ComputerLayerScreen: computerLayerScreen: 0: { state: alert-0 } @@ -33,6 +34,10 @@ 2: { state: alert-1 } 3: { state: alert-2 } 4: { state: alert-2 } + enum.WiresVisuals.MaintenancePanelState: + enum.WiresVisualLayers.MaintenancePanel: + True: { visible: false } + False: { visible: true } - type: AtmosAlertsComputer - type: ActivatableUI singleUser: true @@ -41,6 +46,8 @@ interfaces: enum.AtmosAlertsComputerUiKey.Key: type: AtmosAlertsComputerBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity parent: BaseComputer @@ -58,6 +65,8 @@ interfaces: enum.EmergencyConsoleUiKey.Key: type: EmergencyConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: PointLight radius: 1.5 energy: 1.6 @@ -79,6 +88,8 @@ interfaces: enum.ShuttleConsoleUiKey.Key: type: ShuttleConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: RadarConsole - type: WorldLoader radius: 256 @@ -121,6 +132,8 @@ state: shuttle - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: ShuttleConsoleCircuitboard @@ -140,6 +153,8 @@ state: syndishuttle - map: ["computerLayerKeys"] state: syndie_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Tag tags: - Syndicate @@ -170,6 +185,8 @@ state: shuttle - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: DroneConsole components: - type: CargoShuttle @@ -185,12 +202,11 @@ stealGroup: CargoShuttleConsoleCircuitboard - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerIFF name: IFF computer description: Allows you to control the IFF characteristics of this vessel. components: - - type: StationAiWhitelist - type: IFFConsole - type: Sprite layers: @@ -203,12 +219,16 @@ state: helm - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ActivatableUI key: enum.IFFConsoleUiKey.Key - type: UserInterface interfaces: enum.IFFConsoleUiKey.Key: type: IFFConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: ComputerIFFCircuitboard @@ -229,16 +249,17 @@ interfaces: enum.IFFConsoleUiKey.Key: type: IFFConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: ComputerIFFSyndicateCircuitboard - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerPowerMonitoring name: power monitoring computer description: It monitors power levels across the station. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -249,6 +270,8 @@ state: power_monitor - map: ["computerLayerKeys"] state: power_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -270,14 +293,15 @@ interfaces: enum.PowerMonitoringConsoleUiKey.Key: type: PowerMonitoringConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerMedicalRecords name: medical records computer description: This can be used to check medical records. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -288,6 +312,8 @@ state: medcomp - map: ["computerLayerKeys"] state: med_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -296,17 +322,18 @@ board: MedicalRecordsComputerCircuitboard - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerCriminalRecords name: criminal records computer description: This can be used to check criminal records. Only security can modify them. components: - - type: StationAiWhitelist - type: CriminalRecordsConsole - type: UserInterface interfaces: enum.CriminalRecordsConsoleKey.Key: type: CriminalRecordsConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ActivatableUI key: enum.CriminalRecordsConsoleKey.Key - type: Sprite @@ -319,6 +346,8 @@ state: explosive - map: ["computerLayerKeys"] state: security_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -332,17 +361,18 @@ - CriminalRecords - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerStationRecords name: station records computer description: This can be used to check station records. components: - - type: StationAiWhitelist - type: GeneralStationRecordConsole - type: UserInterface interfaces: enum.GeneralStationRecordConsoleKey.Key: type: GeneralStationRecordConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ActivatableUI key: enum.GeneralStationRecordConsoleKey.Key - type: PointLight @@ -356,12 +386,11 @@ - Forensics - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerCrewMonitoring name: crew monitoring console description: Used to monitor active health sensors built into most of the crew's uniforms. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -372,6 +401,8 @@ state: crew - map: ["computerLayerKeys"] state: med_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -384,6 +415,8 @@ interfaces: enum.CrewMonitoringUIKey.Key: type: CrewMonitoringBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: CrewMonitoringConsole - type: DeviceNetwork deviceNetId: Wireless @@ -392,12 +425,11 @@ range: 1200 - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerResearchAndDevelopment name: R&D computer description: A computer used to interface with R&D tools. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -408,6 +440,8 @@ state: rdcomp - map: ["computerLayerKeys"] state: rd_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ResearchClient - type: ResearchConsole - type: ActiveRadio @@ -422,6 +456,8 @@ type: ResearchConsoleBoundUserInterface enum.ResearchClientUiKey.Key: type: ResearchClientBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ApcPowerReceiver powerLoad: 1000 - type: Computer @@ -437,12 +473,11 @@ - Science - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerAnalysisConsole name: analysis console description: A computer used to interface with the artifact analyzer. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -453,6 +488,8 @@ state: artifact - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ResearchClient - type: AnalysisConsole reportEntityId: PaperArtifactAnalyzer @@ -471,6 +508,8 @@ type: AnalysisConsoleBoundUserInterface enum.ResearchClientUiKey.Key: type: ResearchClientBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ApcPowerReceiver powerLoad: 1000 - type: Computer @@ -484,12 +523,11 @@ - Xenoarchaeology - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerId name: ID card computer description: Terminal for programming Nanotrasen employee ID cards to access parts of the station. components: - - type: StationAiWhitelist - type: IdCardConsole privilegedIdSlot: name: id-card-console-privileged-id @@ -515,6 +553,8 @@ interfaces: enum.IdCardConsoleUiKey.Key: type: IdCardConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: CrewManifestViewer ownerKey: enum.IdCardConsoleUiKey.Key - type: Sprite @@ -527,6 +567,8 @@ state: id - map: ["computerLayerKeys"] state: id_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: IDComputerCircuitboard - type: PointLight @@ -544,12 +586,11 @@ IdCardConsole-targetId: !type:ContainerSlot - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: computerBodyScanner name: body scanner computer description: A body scanner. components: - - type: StationAiWhitelist - type: ApcPowerReceiver powerLoad: 500 - type: Computer @@ -560,12 +601,11 @@ color: "#1f8c28" - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerComms name: communications computer description: A computer used to make station wide announcements via keyboard, set the appropriate alert level, and call the emergency shuttle. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -576,6 +616,8 @@ state: comm - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: AccessReader access: [[ "Command" ]] - type: CommunicationsConsole @@ -588,6 +630,8 @@ interfaces: enum.CommunicationsConsoleUiKey.Key: type: CommunicationsConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CommsComputerCircuitboard - type: PointLight @@ -614,6 +658,8 @@ state: comm_syndie - map: ["computerLayerKeys"] state: syndie_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: AccessReader access: [[ "NuclearOperative" ]] - type: CommunicationsConsole @@ -630,12 +676,11 @@ color: "#f71713" - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerSolarControl name: solar control computer description: A controller for solar panel arrays. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -646,6 +691,8 @@ state: solar_screen - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: SolarControlConsole - type: ActivatableUI key: enum.SolarControlConsoleUiKey.Key @@ -653,6 +700,8 @@ interfaces: enum.SolarControlConsoleUiKey.Key: type: SolarControlConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: SolarControlComputerCircuitboard - type: PointLight @@ -661,12 +710,11 @@ color: "#e6e227" - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerRadar name: mass scanner computer description: A computer for detecting nearby bodies, displaying them by position and mass. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -677,6 +725,8 @@ state: solar_screen - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: RadarConsole - type: ActivatableUI key: enum.RadarConsoleUiKey.Key @@ -684,6 +734,8 @@ interfaces: enum.RadarConsoleUiKey.Key: type: RadarConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: RadarConsoleCircuitboard - type: PointLight @@ -693,11 +745,10 @@ - type: entity id: ComputerCargoShuttle - parent: BaseComputer + parent: BaseComputerAiAccess name: cargo shuttle computer description: Used to order the shuttle. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -708,6 +759,8 @@ state: supply - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: CargoShuttleConsole - type: ActivatableUI key: enum.CargoConsoleUiKey.Shuttle @@ -715,6 +768,8 @@ interfaces: enum.CargoConsoleUiKey.Shuttle: type: CargoShuttleConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CargoShuttleComputerCircuitboard - type: PointLight @@ -729,11 +784,10 @@ - type: entity id: ComputerCargoOrders - parent: BaseComputer + parent: BaseComputerAiAccess name: cargo request computer description: Used to order supplies and approve requests. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -744,6 +798,8 @@ state: request - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: CargoOrderConsole - type: BankClient - type: ActiveRadio @@ -755,6 +811,8 @@ interfaces: enum.CargoConsoleUiKey.Orders: type: CargoOrderConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CargoRequestComputerCircuitboard - type: PointLight @@ -778,11 +836,10 @@ - type: entity id: ComputerCargoBounty - parent: BaseComputer + parent: BaseComputerAiAccess name: cargo bounty computer description: Used to manage currently active bounties. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -793,6 +850,8 @@ state: bounty - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: CargoBountyConsole - type: ActivatableUI key: enum.CargoConsoleUiKey.Bounty @@ -800,6 +859,8 @@ interfaces: enum.CargoConsoleUiKey.Bounty: type: CargoBountyConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CargoBountyComputerCircuitboard - type: PointLight @@ -814,12 +875,11 @@ - Cargo - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerCloningConsole name: cloning console computer description: The centerpiece of the cloning system, medicine's greatest accomplishment. It has lots of ports and wires. components: - - type: StationAiWhitelist - type: CloningConsole - type: DeviceList - type: DeviceNetwork @@ -834,6 +894,8 @@ state: dna - map: ["computerLayerKeys"] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ApcPowerReceiver powerLoad: 3100 #We want this to fail first so I transferred most of the scanner and pod's power here. (3500 in total) - type: Computer @@ -853,6 +915,8 @@ interfaces: enum.CloningConsoleUiKey.Key: type: CloningConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Speech speechVerb: Robotic speechSounds: Pai @@ -865,11 +929,10 @@ - type: entity id: ComputerSalvageExpedition - parent: BaseComputer + parent: BaseComputerAiAccess name: salvage expeditions computer description: Used to accept salvage missions, if you're tough enough. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -880,6 +943,8 @@ state: mining - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Appearance - type: GenericVisualizer visuals: @@ -890,6 +955,10 @@ computerLayerKeys: True: { visible: true, shader: unshaded } False: { visible: true } + enum.WiresVisuals.MaintenancePanelState: + enum.WiresVisualLayers.MaintenancePanel: + True: { visible: false } + False: { visible: true } - type: SalvageExpeditionConsole - type: ActivatableUI key: enum.SalvageConsoleUiKey.Expedition @@ -898,6 +967,8 @@ interfaces: enum.SalvageConsoleUiKey.Expedition: type: SalvageExpeditionConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: SalvageExpeditionsComputerCircuitboard - type: PointLight @@ -925,6 +996,8 @@ state: cameras - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: SurveillanceCameraMonitorCircuitboard - type: DeviceNetwork @@ -943,6 +1016,8 @@ interfaces: enum.SurveillanceCameraMonitorUiKey.Key: type: SurveillanceCameraMonitorBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity parent: BaseComputer @@ -960,6 +1035,8 @@ state: cameras - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: SurveillanceWirelessCameraMonitorCircuitboard - type: DeviceNetwork @@ -980,14 +1057,15 @@ interfaces: enum.SurveillanceCameraMonitorUiKey.Key: type: SurveillanceCameraMonitorBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity id: ComputerPalletConsole - parent: BaseComputer + parent: BaseComputerAiAccess name: cargo sale computer description: Used to sell goods loaded onto cargo pallets. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -998,6 +1076,8 @@ state: request - map: ["computerLayerKeys"] state: tech_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Anchorable flags: - Anchorable @@ -1008,6 +1088,8 @@ interfaces: enum.CargoPalletConsoleUiKey.Sale: type: CargoPalletConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: Computer board: CargoSaleComputerCircuitboard - type: PointLight @@ -1019,12 +1101,11 @@ - Cargo - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerMassMedia name: news manager console description: Write your message to the world! components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -1035,6 +1116,8 @@ state: service - map: ["computerLayerKeys"] state: service_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: Computer board: ComputerMassMediaCircuitboard - type: DeviceNetworkRequiresPower @@ -1050,6 +1133,8 @@ interfaces: enum.NewsWriterUiKey.Key: type: NewsWriterBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: entity parent: BaseComputer @@ -1070,6 +1155,8 @@ state: sensors - map: ["computerLayerKeys"] state: atmos_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: PointLight radius: 1.5 energy: 1.6 @@ -1083,6 +1170,8 @@ interfaces: enum.SensorMonitoringConsoleUiKey.Key: type: SensorMonitoringConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: DeviceNetwork deviceNetId: AtmosDevices receiveFrequencyId: AtmosMonitor @@ -1095,12 +1184,11 @@ - type: AtmosDevice - type: entity - parent: BaseComputer + parent: BaseComputerAiAccess id: ComputerRoboticsControl name: robotics control console description: Used to remotely monitor, disable and destroy the station's cyborgs. components: - - type: StationAiWhitelist - type: Sprite layers: - map: ["computerLayerBody"] @@ -1111,6 +1199,8 @@ state: robot - map: ["computerLayerKeys"] state: rd_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: RoboticsConsole - type: ActiveRadio channels: @@ -1121,6 +1211,8 @@ interfaces: enum.RoboticsConsoleUiKey.Key: type: RoboticsConsoleBoundUserInterface + enum.WiresUiKey.Key: + type: WiresBoundUserInterface - type: ApcPowerReceiver powerLoad: 1000 - type: DeviceNetwork @@ -1150,6 +1242,8 @@ state: aiupload - map: [ "computerLayerKeys" ] state: generic_keys + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open - type: ApcPowerReceiver powerLoad: 1000 - type: Computer diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml b/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml index 4792bb216f3eae..b3c9cac926226d 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml @@ -117,15 +117,15 @@ amount: 2 steps: - tool: Prying + doAfter: 1 - node: computer entity: !type:BoardNodeEntity { container: board } edges: - to: monitorUnsecured - conditions: - - !type:AllWiresCut {} steps: - - tool: Screwing + - tool: Prying + doAfter: 1 - node: monitorBroken entity: ComputerBroken diff --git a/Resources/Prototypes/Wires/layouts.yml b/Resources/Prototypes/Wires/layouts.yml index 7b42ef8b75303f..955bae0104a606 100644 --- a/Resources/Prototypes/Wires/layouts.yml +++ b/Resources/Prototypes/Wires/layouts.yml @@ -156,22 +156,35 @@ id: TrainingDefusable dummyWires: 0 wires: - - !type:ActivateWireAction - - !type:BoltWireAction - - !type:DelayWireAction - - !type:ProceedWireAction - - !type:BoomWireAction - + - !type:ActivateWireAction + - !type:BoltWireAction + - !type:DelayWireAction + - !type:ProceedWireAction + - !type:BoomWireAction + - type: wireLayout id: Jukebox dummyWires: 2 wires: - - !type:PowerWireAction - - !type:AiInteractWireAction - + - !type:PowerWireAction + - !type:AiInteractWireAction + - type: wireLayout id: AnomalyGenerator dummyWires: 2 wires: - - !type:PowerWireAction - - !type:AiInteractWireAction + - !type:PowerWireAction + - !type:AiInteractWireAction + +- type: wireLayout + id: Computer + dummyWires: 3 + wires: + - !type:PowerWireAction + +- type: wireLayout + id: ComputerAi + dummyWires: 2 + wires: + - !type:PowerWireAction + - !type:AiInteractWireAction diff --git a/Resources/Textures/Structures/Machines/computers.rsi/generic_panel_open.png b/Resources/Textures/Structures/Machines/computers.rsi/generic_panel_open.png new file mode 100644 index 0000000000000000000000000000000000000000..ac7f9f66414fd6796d958d8e76b2182ca3fcc238 GIT binary patch literal 405 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9GGLLkg|>2BR01_nlV zPZ!6KinzD84EdT2M2>wtl=o;sq4`%Gs|qn zIdGF`?m#}ZdL8&{1e0N|GBIsM%58kV%qJ?{HL#Ud;9JApKTYf{%rbkr1S3+S=FAmB{^%Y kXHCll=>ThEae2TylPRI>R|8u;Fq|1YUHx3vIVCg!0QoDTu>b%7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Machines/computers.rsi/meta.json b/Resources/Textures/Structures/Machines/computers.rsi/meta.json index b6741b195d2ae1..5355f379ab121a 100644 --- a/Resources/Textures/Structures/Machines/computers.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/computers.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm.", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm. generic_panel_open made by Errant, commit https://github.com/space-wizards/space-station-14/pull/32273.", "size": { "x": 32, "y": 32 @@ -1013,6 +1013,10 @@ "name": "generic_keys", "directions": 4 }, + { + "name": "generic_panel_open", + "directions": 4 + }, { "name": "generic_keyboard", "directions": 4 From 0a3273a4361294302852b4cd6876baafdd1fe613 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 10:52:54 +0000 Subject: [PATCH 024/213] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a3dd8da68a654f..00417a2a9d3b07 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Jezithyr - changes: - - message: Removed the Geras ability from Slimes - type: Remove - id: 6923 - time: '2024-07-16T22:50:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29731 - author: K-Dynamic changes: - message: nerfed paraylze timer of all slippable objects (including soaps, water @@ -3924,3 +3917,12 @@ id: 7422 time: '2024-09-23T07:28:42.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32395 +- author: Errant + changes: + - message: Computers now have a maintenance panel with a Power and AI wire (if AI-connected). + type: Tweak + - message: Computer deconstruction now begins with the crowbar, not the screwdriver. + type: Tweak + id: 7423 + time: '2024-09-23T10:51:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32273 From aab423667ef7bc2dd4a6c50fbe21c370634ce936 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Mon, 23 Sep 2024 13:12:23 +0200 Subject: [PATCH 025/213] Fix guidebook books don't have damage (#32403) --- Resources/Prototypes/Entities/Objects/Misc/books.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Misc/books.yml b/Resources/Prototypes/Entities/Objects/Misc/books.yml index 15ecd5d2a80d35..21269366d408c2 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/books.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/books.yml @@ -60,6 +60,15 @@ openOnActivation: true guides: - SS14 + - type: MeleeWeapon # Should write it again since BaseGuidebook doesn't inherit BookBase + soundHit: + collection: Punch + damage: + types: + Blunt: 1 + - type: DamageOtherOnHit + damage: + types: - type: entity id: BookSpaceEncyclopedia From 16c46af6c5db1344fa648562cb0047d8deddfc15 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 11:13:29 +0000 Subject: [PATCH 026/213] 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 00417a2a9d3b07..e31d122ed08a05 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: K-Dynamic - changes: - - message: nerfed paraylze timer of all slippable objects (including soaps, water - puddles, and clown-related items) - type: Tweak - id: 6924 - time: '2024-07-16T23:26:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27879 - author: EmoGarbage404 changes: - message: Resprited wall signs. @@ -3926,3 +3918,10 @@ id: 7423 time: '2024-09-23T10:51:48.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32273 +- author: lzk228 + changes: + - message: Guidebook books now do damage like default writeable books. + type: Fix + id: 7424 + time: '2024-09-23T11:12:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32403 From 24140d8c8a23ed7222a48e1a2b0f2e2fa4cda2c4 Mon Sep 17 00:00:00 2001 From: Jophire <36978900+Jophire@users.noreply.github.com> Date: Mon, 23 Sep 2024 09:08:10 -0400 Subject: [PATCH 027/213] VIM have Passenger Access. (#32302) * Revert "Update mechs.yml" This reverts commit 4a44065b11c427581462a9bfa46fc66ff8878cf4. * Reapply "Update mechs.yml" This reverts commit fb5db29f4ae58106180ac836d01f953b816e7a61. * Revert "Reapply "Update mechs.yml"" This reverts commit c845b6bb3d3e6e80ce7a8aa290b10e2f71bca726. * Reapply "Reapply "Update mechs.yml"" This reverts commit 41b8934fd100337c31b26fc5e269f65e1f459970. * VIM Door Stuck Fix Vim No longer gets stuck in doors. * VIM has Passenger Access Debug Tested on the wrong map. Much easier solution. Just give the mech Access tags. * Moved tags to proper VIM. Moved access tag to the non-admin VIM. --- Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 99d39a82499beb..1fbde27e71b0e1 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml @@ -288,6 +288,9 @@ - type: MovementSpeedModifier baseWalkSpeed: 2.25 baseSprintSpeed: 3.6 + - type: Access + tags: + - Maintenance # TOOD: buzz / chime actions # TODO: builtin flashlight From 31db37e8264219c4cb7c7e1c51a0a602e3639a1d Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 13:09:17 +0000 Subject: [PATCH 028/213] 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 e31d122ed08a05..aac91367096216 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - message: Resprited wall signs. - type: Tweak - id: 6925 - time: '2024-07-17T04:35:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29806 - author: lzk228 changes: - message: Added health examine for caustic and cold damage. @@ -3925,3 +3918,10 @@ id: 7424 time: '2024-09-23T11:12:23.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32403 +- author: Jophire + changes: + - message: VIM mech now can open maintenance doors! + type: Add + id: 7425 + time: '2024-09-23T13:08:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32302 From 5e9a0c9d9d975a1041e2eeb64e692676360e1144 Mon Sep 17 00:00:00 2001 From: spanky-spanky Date: Mon, 23 Sep 2024 12:17:45 -0400 Subject: [PATCH 029/213] Omega Minor Sec Update (#32410) * Updated Omega armory and Warden office. * Adjusted walls, a decal, and an air sensor. --- Resources/Maps/omega.yml | 1483 +++++++++++++++++++++++--------------- 1 file changed, 894 insertions(+), 589 deletions(-) diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index b8cf3c6fc00026..708edad454a058 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -81,7 +81,7 @@ entities: version: 6 -2,1: ind: -2,1 - tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAADUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAABeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAADUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAABeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,0: ind: -2,0 @@ -161,7 +161,7 @@ entities: version: 6 2,-2: ind: 2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFCwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 @@ -193,11 +193,11 @@ entities: version: 6 -3,1: ind: -3,1 - tiles: eQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAA + tiles: eQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAAATQAAAAAAHQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: aAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAAeQAAAAAAHQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAA + tiles: aAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAHBwAAAAAAeQAAAAAATQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -3,-3: ind: -3,-3 @@ -209,7 +209,7 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 -4,-2: ind: -4,-2 @@ -294,7 +294,6 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 1605: -35,19 1864: 47,-4 1865: 49,-4 1866: 55,-4 @@ -318,6 +317,7 @@ entities: 1871: 55,-2 1872: 49,-2 2080: 47,-2 + 2188: -35.0297,19.625114 - node: color: '#FFFFFFFF' id: Bot @@ -377,7 +377,6 @@ entities: 1234: -16,-26 1531: 2,-36 1532: -15,-14 - 1604: -37,20 1725: -37,4 1726: -37,5 1735: -32,4 @@ -397,6 +396,10 @@ entities: 2120: -40,-16 2122: -51,0 2128: -58,0 + 2152: -37,22 + 2153: -36,22 + 2182: -34,20 + 2183: -38,15 - node: angle: 4.71238898038469 rad color: '#DE3A3AFF' @@ -414,8 +417,6 @@ entities: 1599: -32,-10 1600: -33,-10 1601: -34,-10 - 1602: -36,21 - 1603: -37,21 1742: -35,4 1743: -34,5 1913: 24,15 @@ -1258,7 +1259,6 @@ entities: 297: 30,1 444: -5,-26 445: -3,-31 - 559: -33,17 560: -35,13 612: -27,28 613: -31,28 @@ -1454,7 +1454,6 @@ entities: 295: 29,4 296: 30,4 432: -3,-25 - 551: -35,17 600: -27,32 601: -28,32 602: -29,32 @@ -1557,7 +1556,6 @@ entities: 290: 29,2 291: 28,2 435: -3,-30 - 552: -35,14 606: -32,29 607: -31,29 608: -30,29 @@ -1670,8 +1668,6 @@ entities: 545: -32,18 546: -32,19 547: -32,20 - 555: -36,15 - 556: -36,16 592: -32,26 593: -32,27 594: -28,26 @@ -1755,12 +1751,11 @@ entities: 441: -2,-28 442: -2,-27 443: -2,-26 - 557: -34,15 - 558: -34,16 596: -26,26 597: -26,27 598: -30,26 599: -30,27 + 2163: -34,15 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 @@ -1984,6 +1979,9 @@ entities: 528: -27,17 544: -32,17 616: -26,10 + 2160: -35,16 + 2161: -36,16 + 2162: -37,16 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale @@ -2265,6 +2263,14 @@ entities: 542: -32,10 548: -32,15 615: -26,11 + 2164: -35,14 + 2165: -36,14 + 2166: -37,14 + 2172: -35,18 + 2176: -34,18 + 2177: -36,18 + 2180: -30,11 + 2184: -33,18 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 @@ -2443,6 +2449,10 @@ entities: 540: -29,17 541: -29,20 617: -27,10 + 2173: -35,18 + 2175: -34,18 + 2178: -36,18 + 2185: -33,18 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -2560,7 +2570,6 @@ entities: decals: 286: 27,4 430: -4,-25 - 550: -36,17 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale @@ -2605,7 +2614,7 @@ entities: decals: 288: 31,2 434: -2,-30 - 553: -34,14 + 2159: -34,14 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 @@ -2650,7 +2659,6 @@ entities: decals: 285: 27,2 433: -4,-30 - 554: -36,14 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 @@ -2696,7 +2704,7 @@ entities: decals: 287: 31,4 431: -2,-25 - 549: -34,17 + 2158: -34,16 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 @@ -2774,11 +2782,17 @@ entities: id: WarnCornerGreyscaleSW decals: 1174: -13,-24 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 2144: -35,21 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: 1235: -15,-29 + 2143: -37,21 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -2798,12 +2812,14 @@ entities: decals: 935: 23,3 1901: 26,16 + 2149: -37,21 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 934: 25,3 2132: -56,1 + 2150: -35,21 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -2815,6 +2831,11 @@ entities: id: WarnEnd decals: 42: 7,15 + - node: + color: '#FFFFFFFF' + id: WarnEndS + decals: + 2142: -37,20 - node: color: '#52B4E996' id: WarnFullGreyscale @@ -2836,6 +2857,7 @@ entities: 2097: -60,0 2098: -60,1 2099: -60,2 + 2146: -35,20 - node: color: '#52B4E996' id: WarnLineGreyscaleE @@ -2904,6 +2926,7 @@ entities: 2078: -45,-4 2129: -58,1 2130: -57,1 + 2148: -36,21 - node: color: '#FFFFFFFF' id: WarnLineS @@ -2913,6 +2936,11 @@ entities: 2131: -56,0 2133: -59,4 2140: -59,5 + 2147: -35,20 + 2167: -37,14 + 2168: -37,15 + 2169: -37,16 + 2179: -36,18 - node: color: '#FFFFFFFF' id: WarnLineW @@ -2933,6 +2961,7 @@ entities: 2094: -49,5 2095: -48,5 2138: -56,5 + 2145: -36,21 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -2945,10 +2974,6 @@ entities: 218: 14,44 219: 13,44 257: 10,50 - 584: -34,21 - 585: -35,21 - 586: -36,21 - 587: -37,21 871: -53,-12 872: -54,-12 873: -55,-12 @@ -3005,10 +3030,6 @@ entities: 427: 24,-23 428: 25,-23 429: 26,-23 - 498: -34,19 - 499: -35,19 - 500: -36,19 - 501: -37,19 590: -30,22 591: -31,22 724: -43,-4 @@ -3454,7 +3475,7 @@ entities: -8,3: 0: 65535 -9,4: - 0: 29431 + 0: 12071 -8,5: 0: 65391 -8,6: @@ -4188,14 +4209,11 @@ entities: 1: 784 -11,4: 6: 546 - 0: 8 -11,6: 0: 49152 -11,3: 0: 34823 1: 1792 - -10,5: - 0: 152 -11,7: 0: 2184 -10,7: @@ -4203,11 +4221,13 @@ entities: -10,6: 0: 3296 -10,4: - 0: 32904 + 0: 2060 + -10,5: + 0: 3276 -10,3: - 0: 35087 + 0: 52495 -9,5: - 0: 119 + 0: 1911 -9,6: 0: 4400 -13,0: @@ -4296,6 +4316,8 @@ entities: 0: 5392 -15,-2: 0: 2295 + -15,-1: + 0: 1 -15,-4: 0: 16384 -14,-2: @@ -4555,6 +4577,7 @@ entities: - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding + - type: NavMap - proto: AcousticGuitarInstrument entities: - uid: 1755 @@ -4866,6 +4889,9 @@ entities: - 7873 - 7887 - 7886 + - 7743 + - 13696 + - 13697 - uid: 12213 components: - type: Transform @@ -4876,18 +4902,6 @@ entities: - 7905 - 7907 - 12214 - - uid: 12215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,15.5 - parent: 4812 - - type: DeviceList - devices: - - 12216 - - 12212 - - 7906 - - 7908 - uid: 12219 components: - type: Transform @@ -5504,6 +5518,18 @@ entities: - 12688 - 12764 - 12766 + - uid: 13156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,15.5 + parent: 4812 + - type: DeviceList + devices: + - 12212 + - 13522 + - 7908 + - 5174 - uid: 13204 components: - type: Transform @@ -5535,17 +5561,30 @@ entities: - 9504 - 9421 - 13408 + - 13683 + - 13682 + - uid: 13677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,21.5 + parent: 4812 + - type: DeviceList + devices: + - 13676 + - 10972 + - 8372 - proto: AirAlarmElectronics entities: - uid: 10719 components: - type: Transform - pos: -30.29477,5.0635805 + pos: -31.969843,3.438716 parent: 4812 - uid: 10720 components: - type: Transform - pos: -30.216644,4.9385805 + pos: -31.876093,3.44914 parent: 4812 - proto: AirCanister entities: @@ -5608,20 +5647,21 @@ entities: parent: 4812 - proto: AirlockArmoryGlassLocked entities: - - uid: 7800 + - uid: 7802 components: - type: Transform - pos: -34.5,18.5 + pos: -34.5,13.5 parent: 4812 - - uid: 7801 + - uid: 10941 components: - type: Transform - pos: -32.5,17.5 + rot: 3.141592653589793 rad + pos: -34.5,19.5 parent: 4812 - - uid: 7802 + - uid: 12471 components: - type: Transform - pos: -34.5,13.5 + pos: -34.5,17.5 parent: 4812 - proto: AirlockAtmosphericsGlassLocked entities: @@ -5831,11 +5871,6 @@ entities: parent: 4812 - proto: AirlockCommandLocked entities: - - uid: 5174 - components: - - type: Transform - pos: -24.5,23.5 - parent: 4812 - uid: 11928 components: - type: Transform @@ -6637,23 +6672,28 @@ entities: parent: 4812 - proto: AirlockHeadOfSecurityGlassLocked entities: - - uid: 7935 + - uid: 2965 components: - type: Transform pos: -22.5,26.5 parent: 4812 - proto: AirlockHeadOfSecurityLocked entities: - - uid: 7934 + - uid: 2918 components: - type: Transform - pos: -18.5,25.5 + pos: -24.5,23.5 parent: 4812 - - uid: 7936 + - uid: 4138 components: - type: Transform pos: -22.5,21.5 parent: 4812 + - uid: 7934 + components: + - type: Transform + pos: -18.5,25.5 + parent: 4812 - uid: 8242 components: - type: Transform @@ -7266,6 +7306,11 @@ entities: - type: Transform pos: -30.5,25.5 parent: 4812 + - uid: 12052 + components: + - type: Transform + pos: -32.5,18.5 + parent: 4812 - proto: AirlockServiceLocked entities: - uid: 6675 @@ -7315,6 +7360,15 @@ entities: - type: DeviceNetwork deviceLists: - 13204 + - uid: 5174 + components: + - type: Transform + pos: -35.5,15.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13156 + - 13155 - uid: 8805 components: - type: Transform @@ -7333,6 +7387,7 @@ entities: - type: DeviceNetwork deviceLists: - 13607 + - 13681 - uid: 12170 components: - type: Transform @@ -7405,16 +7460,14 @@ entities: - type: Transform pos: -31.5,16.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 - uid: 12214 components: - type: Transform pos: -38.5,11.5 parent: 4812 - - uid: 12216 - components: - - type: Transform - pos: -35.5,16.5 - parent: 4812 - uid: 12218 components: - type: Transform @@ -7700,6 +7753,15 @@ entities: deviceLists: - 12697 - 9224 + - uid: 13676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,21.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13677 - proto: AltarSpawner entities: - uid: 4008 @@ -9007,6 +9069,11 @@ entities: - type: Transform pos: 26.5,6.5 parent: 4812 + - uid: 7739 + components: + - type: Transform + pos: -39.5,18.5 + parent: 4812 - uid: 8460 components: - type: Transform @@ -9297,6 +9364,11 @@ entities: - type: Transform pos: -43.5,-32.5 parent: 4812 + - uid: 9626 + components: + - type: Transform + pos: -39.5,17.5 + parent: 4812 - uid: 9638 components: - type: Transform @@ -9592,31 +9664,6 @@ entities: - type: Transform pos: -58.5,-8.5 parent: 4812 - - uid: 10926 - components: - - type: Transform - pos: -38.5,14.5 - parent: 4812 - - uid: 10927 - components: - - type: Transform - pos: -38.5,15.5 - parent: 4812 - - uid: 10928 - components: - - type: Transform - pos: -38.5,16.5 - parent: 4812 - - uid: 10929 - components: - - type: Transform - pos: -38.5,17.5 - parent: 4812 - - uid: 10941 - components: - - type: Transform - pos: -33.5,24.5 - parent: 4812 - uid: 10942 components: - type: Transform @@ -9632,11 +9679,6 @@ entities: - type: Transform pos: -33.5,27.5 parent: 4812 - - uid: 10945 - components: - - type: Transform - pos: -34.5,24.5 - parent: 4812 - uid: 10947 components: - type: Transform @@ -9692,11 +9734,6 @@ entities: - type: Transform pos: -35.5,30.5 parent: 4812 - - uid: 10963 - components: - - type: Transform - pos: -35.5,24.5 - parent: 4812 - uid: 10965 components: - type: Transform @@ -9707,56 +9744,11 @@ entities: - type: Transform pos: -39.5,16.5 parent: 4812 - - uid: 10967 - components: - - type: Transform - pos: -39.5,17.5 - parent: 4812 - - uid: 10969 - components: - - type: Transform - pos: -39.5,19.5 - parent: 4812 - - uid: 10970 - components: - - type: Transform - pos: -39.5,20.5 - parent: 4812 - - uid: 10972 - components: - - type: Transform - pos: -39.5,22.5 - parent: 4812 - - uid: 10973 - components: - - type: Transform - pos: -39.5,23.5 - parent: 4812 - - uid: 10974 - components: - - type: Transform - pos: -39.5,24.5 - parent: 4812 - - uid: 10975 - components: - - type: Transform - pos: -38.5,24.5 - parent: 4812 - - uid: 10977 - components: - - type: Transform - pos: -36.5,24.5 - parent: 4812 - uid: 10982 components: - type: Transform pos: -40.5,23.5 parent: 4812 - - uid: 10983 - components: - - type: Transform - pos: -39.5,18.5 - parent: 4812 - uid: 10984 components: - type: Transform @@ -9867,11 +9859,6 @@ entities: - type: Transform pos: -40.5,21.5 parent: 4812 - - uid: 11014 - components: - - type: Transform - pos: -37.5,24.5 - parent: 4812 - uid: 11016 components: - type: Transform @@ -10312,6 +10299,11 @@ entities: - type: Transform pos: 27.5,8.5 parent: 4812 + - uid: 12470 + components: + - type: Transform + pos: -40.5,16.5 + parent: 4812 - uid: 12678 components: - type: Transform @@ -10694,11 +10686,6 @@ entities: - type: Transform pos: -56.5,-1.5 parent: 4812 - - uid: 13522 - components: - - type: Transform - pos: -59.5,-3.5 - parent: 4812 - uid: 13523 components: - type: Transform @@ -11935,13 +11922,6 @@ entities: - type: Transform pos: -40.434937,-35.118546 parent: 4812 -- proto: BoxShotgunIncendiary - entities: - - uid: 12055 - components: - - type: Transform - pos: -35.55101,19.647282 - parent: 4812 - proto: BoxSterileMask entities: - uid: 9028 @@ -17664,6 +17644,16 @@ entities: - type: Transform pos: -11.5,-15.5 parent: 4812 + - uid: 7800 + components: + - type: Transform + pos: -36.5,21.5 + parent: 4812 + - uid: 8057 + components: + - type: Transform + pos: -35.5,21.5 + parent: 4812 - uid: 8061 components: - type: Transform @@ -17874,11 +17864,6 @@ entities: - type: Transform pos: -34.5,20.5 parent: 4812 - - uid: 8104 - components: - - type: Transform - pos: -35.5,20.5 - parent: 4812 - uid: 8105 components: - type: Transform @@ -20989,6 +20974,11 @@ entities: - type: Transform pos: -60.5,5.5 parent: 4812 + - uid: 13631 + components: + - type: Transform + pos: -34.5,21.5 + parent: 4812 - uid: 13660 components: - type: Transform @@ -24557,6 +24547,11 @@ entities: - type: Transform pos: -15.5,-18.5 parent: 4812 + - uid: 732 + components: + - type: Transform + pos: -34.5,15.5 + parent: 4812 - uid: 971 components: - type: Transform @@ -26332,6 +26327,21 @@ entities: - type: Transform pos: -1.5,-20.5 parent: 4812 + - uid: 7801 + components: + - type: Transform + pos: -34.5,12.5 + parent: 4812 + - uid: 7906 + components: + - type: Transform + pos: -34.5,17.5 + parent: 4812 + - uid: 7936 + components: + - type: Transform + pos: -34.5,13.5 + parent: 4812 - uid: 7986 components: - type: Transform @@ -26605,7 +26615,7 @@ entities: - uid: 8040 components: - type: Transform - pos: -33.5,14.5 + pos: -34.5,18.5 parent: 4812 - uid: 8041 components: @@ -26617,56 +26627,21 @@ entities: - type: Transform pos: -34.5,14.5 parent: 4812 - - uid: 8043 - components: - - type: Transform - pos: -35.5,14.5 - parent: 4812 - uid: 8044 components: - type: Transform pos: -35.5,13.5 parent: 4812 - - uid: 8045 - components: - - type: Transform - pos: -35.5,15.5 - parent: 4812 - uid: 8046 components: - type: Transform - pos: -35.5,16.5 + pos: -34.5,19.5 parent: 4812 - uid: 8047 components: - type: Transform pos: -35.5,17.5 parent: 4812 - - uid: 8048 - components: - - type: Transform - pos: -35.5,18.5 - parent: 4812 - - uid: 8049 - components: - - type: Transform - pos: -33.5,15.5 - parent: 4812 - - uid: 8050 - components: - - type: Transform - pos: -33.5,16.5 - parent: 4812 - - uid: 8051 - components: - - type: Transform - pos: -33.5,17.5 - parent: 4812 - - uid: 8052 - components: - - type: Transform - pos: -33.5,18.5 - parent: 4812 - uid: 8053 components: - type: Transform @@ -26677,11 +26652,6 @@ entities: - type: Transform pos: -33.5,20.5 parent: 4812 - - uid: 8055 - components: - - type: Transform - pos: -32.5,19.5 - parent: 4812 - uid: 8056 components: - type: Transform @@ -26692,6 +26662,11 @@ entities: - type: Transform pos: -31.5,19.5 parent: 4812 + - uid: 8104 + components: + - type: Transform + pos: -33.5,17.5 + parent: 4812 - uid: 8177 components: - type: Transform @@ -27392,6 +27367,11 @@ entities: - type: Transform pos: -38.5,1.5 parent: 4812 + - uid: 12145 + components: + - type: Transform + pos: -35.5,19.5 + parent: 4812 - uid: 12381 components: - type: Transform @@ -27402,6 +27382,11 @@ entities: - type: Transform pos: -45.5,5.5 parent: 4812 + - uid: 12663 + components: + - type: Transform + pos: -34.5,16.5 + parent: 4812 - uid: 12699 components: - type: Transform @@ -27642,6 +27627,21 @@ entities: - type: Transform pos: -55.5,6.5 parent: 4812 + - uid: 13693 + components: + - type: Transform + pos: -33.5,16.5 + parent: 4812 + - uid: 13694 + components: + - type: Transform + pos: -32.5,16.5 + parent: 4812 + - uid: 13695 + components: + - type: Transform + pos: -32.5,15.5 + parent: 4812 - proto: CableMVStack entities: - uid: 8586 @@ -30536,12 +30536,6 @@ entities: - type: Transform pos: -17.5,15.5 parent: 4812 - - uid: 8338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,15.5 - parent: 4812 - uid: 8366 components: - type: Transform @@ -30553,6 +30547,12 @@ entities: - type: Transform pos: -30.5,1.5 parent: 4812 + - uid: 9658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,15.5 + parent: 4812 - uid: 9878 components: - type: Transform @@ -32367,7 +32367,7 @@ entities: - uid: 8443 components: - type: Transform - pos: -36.423813,15.378265 + pos: -35.493202,16.440695 parent: 4812 - proto: ClothingHandsGlovesColorGray entities: @@ -32440,13 +32440,6 @@ entities: - type: Transform pos: 13.532155,-11.236504 parent: 4812 -- proto: ClothingHeadHatBeretWarden - entities: - - uid: 12145 - components: - - type: Transform - pos: -35.744057,17.561283 - parent: 4812 - proto: ClothingHeadHatCone entities: - uid: 11339 @@ -32622,6 +32615,18 @@ entities: - type: Transform pos: -10.496132,3.670351 parent: 4812 +- proto: ClothingHeadHelmetRiot + entities: + - uid: 8050 + components: + - type: Transform + pos: -33.264034,22.538214 + parent: 4812 + - uid: 8331 + components: + - type: Transform + pos: -33.534866,22.538214 + parent: 4812 - proto: ClothingHeadHelmetSyndicate entities: - uid: 11672 @@ -32816,58 +32821,36 @@ entities: - type: Transform pos: -43.53869,-26.441507 parent: 4812 -- proto: ClothingOuterArmorBasic - entities: - - uid: 9636 - components: - - type: Transform - pos: -33.593445,20.66048 - parent: 4812 - - uid: 9658 - components: - - type: Transform - pos: -33.593445,20.66048 - parent: 4812 - - uid: 9971 - components: - - type: Transform - pos: -33.593445,20.66048 - parent: 4812 - proto: ClothingOuterArmorBulletproof entities: - - uid: 9972 - components: - - type: Transform - pos: -35.562195,19.41048 - parent: 4812 - - uid: 9990 + - uid: 8049 components: - type: Transform - pos: -35.562195,19.41048 + pos: -33.441116,22.298464 parent: 4812 - - uid: 9992 + - uid: 8145 components: - type: Transform - pos: -35.562195,19.41048 + pos: -33.211952,22.277617 parent: 4812 - proto: ClothingOuterArmorReflective entities: - uid: 10685 components: - type: Transform - pos: -33.364815,20.521324 + pos: -33.774452,22.319311 parent: 4812 - proto: ClothingOuterArmorRiot entities: - uid: 10958 components: - type: Transform - pos: -33.39286,20.650888 + pos: -33.732784,22.652876 parent: 4812 - uid: 10976 components: - type: Transform - pos: -33.627235,20.729013 + pos: -33.336952,22.652876 parent: 4812 - proto: ClothingOuterCoatBomber entities: @@ -32920,18 +32903,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 10602 - components: - - type: Transform - pos: -36.600456,17.618195 - parent: 4812 - - uid: 12429 - components: - - type: Transform - pos: -36.45983,17.524445 - parent: 4812 - proto: ClothingOuterHardsuitSpatio entities: - uid: 12424 @@ -33522,6 +33493,12 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-26.5 parent: 4812 + - uid: 8143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,14.5 + parent: 4812 - uid: 8264 components: - type: Transform @@ -33558,17 +33535,17 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,23.5 parent: 4812 - - uid: 8331 - components: - - type: Transform - pos: -33.5,16.5 - parent: 4812 - uid: 8365 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,10.5 parent: 4812 + - uid: 12631 + components: + - type: Transform + pos: -33.5,16.5 + parent: 4812 - proto: ComputerFrame entities: - uid: 11147 @@ -33745,11 +33722,11 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-26.5 parent: 4812 - - uid: 8332 + - uid: 8337 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,14.5 + pos: -35.5,14.5 parent: 4812 - proto: ComputerTechnologyDiskTerminal entities: @@ -34245,6 +34222,13 @@ entities: - 0 - 0 - 0 +- proto: CrateSecurityTrackingMindshieldImplants + entities: + - uid: 13664 + components: + - type: Transform + pos: -36.5,20.5 + parent: 4812 - proto: CrateTrashCart entities: - uid: 6171 @@ -34457,10 +34441,10 @@ entities: parent: 4812 - proto: DefaultStationBeaconArmory entities: - - uid: 9626 + - uid: 12216 components: - type: Transform - pos: -34.5,20.5 + pos: -36.5,21.5 parent: 4812 - proto: DefaultStationBeaconArrivals entities: @@ -34819,10 +34803,10 @@ entities: parent: 4812 - proto: DefaultStationBeaconTEG entities: - - uid: 13631 + - uid: 10970 components: - type: Transform - pos: -54.5,3.5 + pos: -52.5,3.5 parent: 4812 - proto: DefaultStationBeaconTheater entities: @@ -37710,10 +37694,10 @@ entities: - type: Transform pos: -26.5,-25.5 parent: 4812 - - uid: 8339 + - uid: 8333 components: - type: Transform - pos: -35.5,17.5 + pos: -36.5,14.5 parent: 4812 - proto: DonkpocketBoxSpawner entities: @@ -38011,7 +37995,7 @@ entities: - uid: 8436 components: - type: Transform - pos: -36.520676,15.807589 + pos: -36.014038,16.6179 parent: 4812 - proto: DrinkVodkaBottleFull entities: @@ -38464,6 +38448,13 @@ entities: parent: 4812 - type: FaxMachine name: Library + - uid: 13221 + components: + - type: Transform + pos: -29.5,10.5 + parent: 4812 + - type: FaxMachine + name: Security - proto: FaxMachineCaptain entities: - uid: 7298 @@ -38684,24 +38675,17 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,16.5 + pos: -32.5,17.5 parent: 4812 - type: DeviceList devices: - 12211 - - 12212 - 7782 - 7783 - - uid: 12217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,16.5 - parent: 4812 - - type: DeviceList - devices: - - 12216 - 12212 + - 7743 + - 13696 + - 13697 - uid: 12221 components: - type: Transform @@ -39076,6 +39060,27 @@ entities: - 5600 - 5599 - 12355 + - uid: 13155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,16.5 + parent: 4812 + - type: DeviceList + devices: + - 12212 + - 5174 + - uid: 13681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,0.5 + parent: 4812 + - type: DeviceList + devices: + - 13683 + - 13682 + - 9504 - proto: FireAxeCabinetFilled entities: - uid: 13381 @@ -39280,6 +39285,15 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-10.5 parent: 4812 + - uid: 7743 + components: + - type: Transform + pos: -31.5,10.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 + - 12209 - uid: 8591 components: - type: Transform @@ -39366,6 +39380,45 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-24.5 parent: 4812 + - uid: 13682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,6.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13607 + - 13681 + - uid: 13683 + components: + - type: Transform + pos: -48.5,0.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13607 + - 13681 + - uid: 13696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,20.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 + - 12209 + - uid: 13697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,20.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 + - 12209 - proto: FirelockElectronics entities: - uid: 10718 @@ -39797,11 +39850,17 @@ entities: - type: Transform pos: -26.5,12.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 - uid: 7783 components: - type: Transform pos: -25.5,12.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 12210 - uid: 7784 components: - type: Transform @@ -39927,6 +39986,11 @@ entities: - type: Transform pos: -32.5,15.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13155 + - 13156 + - 12210 - uid: 13228 components: - type: Transform @@ -40837,6 +40901,8 @@ entities: - type: Transform pos: -47.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasMixerFlipped entities: - uid: 9515 @@ -40856,6 +40922,8 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasOutletInjector entities: - uid: 4002 @@ -40908,6 +40976,8 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPassiveGate entities: - uid: 5801 @@ -40999,6 +41069,8 @@ entities: - type: Transform pos: -57.5,7.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9901 components: - type: Transform @@ -41010,11 +41082,15 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12775 components: - type: Transform pos: -58.5,9.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPipeBend entities: - uid: 560 @@ -41513,6 +41589,8 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9220 components: - type: Transform @@ -41526,6 +41604,8 @@ entities: rot: 3.141592653589793 rad pos: -55.5,-1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9354 components: - type: Transform @@ -41547,6 +41627,8 @@ entities: rot: 3.141592653589793 rad pos: -58.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9718 components: - type: Transform @@ -41584,6 +41666,8 @@ entities: rot: 3.141592653589793 rad pos: -57.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11972 components: - type: Transform @@ -41641,33 +41725,45 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13462 components: - type: Transform pos: -56.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13483 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13507 components: - type: Transform pos: -54.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13508 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13539 components: - type: Transform pos: -51.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPipeFourway entities: - uid: 402 @@ -49109,6 +49205,13 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' + - uid: 7761 + components: + - type: Transform + pos: -35.5,19.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7797 components: - type: Transform @@ -49646,6 +49749,22 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' + - uid: 8058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,16.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,17.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8225 components: - type: Transform @@ -49850,6 +49969,8 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 8728 components: - type: Transform @@ -50514,6 +50635,8 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9226 components: - type: Transform @@ -50629,6 +50752,8 @@ entities: - type: Transform pos: -55.5,-0.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9269 components: - type: Transform @@ -50691,6 +50816,8 @@ entities: - type: Transform pos: -57.5,6.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9350 components: - type: Transform @@ -50782,6 +50909,8 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 10777 components: - type: Transform @@ -50794,6 +50923,13 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10975 + components: + - type: Transform + pos: -35.5,20.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11707 components: - type: Transform @@ -50808,6 +50944,8 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11963 components: - type: Transform @@ -51275,6 +51413,8 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12793 components: - type: Transform @@ -51745,6 +51885,8 @@ entities: rot: 3.141592653589793 rad pos: -50.5,0.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13431 components: - type: Transform @@ -51757,63 +51899,85 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13442 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13444 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13450 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-0.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13504 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,6.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13525 components: - type: Transform pos: -50.5,3.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13527 components: - type: Transform pos: -50.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13530 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,7.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13531 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,8.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13533 components: - type: Transform pos: -55.5,0.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13549 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPipeTJunction entities: - uid: 373 @@ -53311,6 +53475,14 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,15.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8757 components: - type: Transform @@ -53381,17 +53553,23 @@ entities: - type: Transform pos: -55.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9320 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9528 components: - type: Transform pos: -57.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9869 components: - type: Transform @@ -53422,6 +53600,14 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,18.5 + parent: 4812 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11982 components: - type: Transform @@ -53483,6 +53669,8 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 12858 components: - type: Transform @@ -53527,18 +53715,24 @@ entities: rot: 3.141592653589793 rad pos: -51.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13445 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13502 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GasPort entities: - uid: 3467 @@ -53621,6 +53815,8 @@ entities: - type: Transform pos: -48.5,6.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13528 components: - type: Transform @@ -53638,6 +53834,8 @@ entities: rot: 3.141592653589793 rad pos: -56.5,0.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPressurePump entities: - uid: 3406 @@ -53712,6 +53910,8 @@ entities: - type: Transform pos: -58.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11900 components: - type: Transform @@ -53742,17 +53942,23 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13434 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,3.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13516 components: - type: Transform pos: -50.5,5.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GasThermoMachineFreezer entities: - uid: 859 @@ -53777,6 +53983,8 @@ entities: rot: 3.141592653589793 rad pos: -54.5,0.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13674 components: - type: Transform @@ -53797,6 +54005,8 @@ entities: rot: 3.141592653589793 rad pos: -47.5,3.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13494 components: - type: Transform @@ -53833,6 +54043,8 @@ entities: parent: 4812 - type: GasValve open: False + - type: AtmosPipeColor + color: '#947507FF' - uid: 9924 components: - type: Transform @@ -54522,13 +54734,6 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7906 - components: - - type: Transform - pos: -35.5,15.5 - parent: 4812 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7910 components: - type: Transform @@ -54592,6 +54797,17 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,18.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13677 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8562 components: - type: Transform @@ -54636,6 +54852,16 @@ entities: - 13607 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10972 + components: + - type: Transform + pos: -35.5,21.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13677 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11962 components: - type: Transform @@ -54776,6 +55002,17 @@ entities: - 13607 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,15.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13156 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 711 @@ -55350,6 +55587,9 @@ entities: - type: Transform pos: -34.5,15.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 13156 - type: AtmosPipeColor color: '#990000FF' - uid: 7909 @@ -55614,30 +55854,40 @@ entities: rot: 3.141592653589793 rad pos: -50.5,1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13225 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13369 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13452 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,2.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13474 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,4.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - proto: GeneratorBasic15kW entities: - uid: 1729 @@ -55647,10 +55897,10 @@ entities: parent: 4812 - proto: GeneratorRTG entities: - - uid: 2918 + - uid: 7760 components: - type: Transform - pos: -39.5,21.5 + pos: -59.5,-3.5 parent: 4812 - proto: Girder entities: @@ -56125,6 +56375,11 @@ entities: - type: Transform pos: -13.5,26.5 parent: 4812 + - uid: 2595 + components: + - type: Transform + pos: -35.5,19.5 + parent: 4812 - uid: 2607 components: - type: Transform @@ -57633,20 +57888,10 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,33.5 parent: 4812 - - uid: 8057 - components: - - type: Transform - pos: -35.5,18.5 - parent: 4812 - - uid: 8058 - components: - - type: Transform - pos: -33.5,18.5 - parent: 4812 - - uid: 8059 + - uid: 8052 components: - type: Transform - pos: -32.5,19.5 + pos: -35.5,17.5 parent: 4812 - uid: 8060 components: @@ -58219,6 +58464,11 @@ entities: - type: Transform pos: -41.5,-28.5 parent: 4812 + - uid: 9636 + components: + - type: Transform + pos: -33.5,19.5 + parent: 4812 - uid: 9649 components: - type: Transform @@ -58767,6 +59017,11 @@ entities: - type: Transform pos: -19.5,33.5 parent: 4812 + - uid: 12058 + components: + - type: Transform + pos: -33.5,17.5 + parent: 4812 - uid: 12108 components: - type: Transform @@ -59567,6 +59822,12 @@ entities: - type: Transform pos: -57.5,16.5 parent: 4812 + - uid: 13691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,16.5 + parent: 4812 - proto: GrilleBroken entities: - uid: 1544 @@ -59848,19 +60109,33 @@ entities: - type: Transform pos: -0.5,-56.5 parent: 4812 +- proto: GunSafeLaserCarbine + entities: + - uid: 12053 + components: + - type: Transform + pos: -37.5,22.5 + parent: 4812 - proto: GunSafeRifleLecter entities: - - uid: 4809 + - uid: 12215 components: - type: Transform - pos: -36.5,19.5 + pos: -37.5,20.5 + parent: 4812 +- proto: GunSafeShotgunKammerer + entities: + - uid: 12054 + components: + - type: Transform + pos: -34.5,22.5 parent: 4812 - proto: GunSafeSubMachineGunDrozd entities: - - uid: 10442 + - uid: 8377 components: - type: Transform - pos: -33.5,19.5 + pos: -37.5,21.5 parent: 4812 - proto: Handcuffs entities: @@ -59953,30 +60228,38 @@ entities: parent: 4812 - proto: HeatExchanger entities: - - uid: 2965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-1.5 - parent: 4812 - uid: 4581 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9291 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-1.5 parent: 4812 - - uid: 13221 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 9568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 9569 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-1.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: Hemostat entities: - uid: 6244 @@ -60224,24 +60507,24 @@ entities: - uid: 9679 components: - type: Transform - pos: -30.41609,4.5644865 + pos: -31.44901,3.4804118 parent: 4812 - uid: 9680 components: - type: Transform - pos: -30.41609,4.5644865 + pos: -31.407343,3.438716 parent: 4812 - proto: InflatableWallStack entities: - uid: 9677 components: - type: Transform - pos: -30.681715,4.7676115 + pos: -31.66776,3.7514334 parent: 4812 - uid: 9678 components: - type: Transform - pos: -30.681715,4.7676115 + pos: -31.60526,3.6784658 parent: 4812 - proto: IngotGold entities: @@ -60461,6 +60744,13 @@ entities: - type: Transform pos: 9.516455,14.564514 parent: 4812 +- proto: JetpackSecurityFilled + entities: + - uid: 13680 + components: + - type: Transform + pos: -33.539055,21.668404 + parent: 4812 - proto: KitchenKnife entities: - uid: 1642 @@ -60869,10 +61159,10 @@ entities: parent: 4812 - proto: LockerAtmosphericsFilled entities: - - uid: 9570 + - uid: 9571 components: - type: Transform - pos: -29.5,5.5 + pos: -28.5,5.5 parent: 4812 - type: EntityStorage air: @@ -60892,29 +61182,11 @@ entities: - 0 - 0 - 0 - - uid: 9571 + - uid: 10969 components: - type: Transform - pos: -28.5,5.5 + pos: -28.5,4.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerBoozeFilled entities: - uid: 1648 @@ -61236,29 +61508,11 @@ entities: - type: Transform pos: -28.5,24.5 parent: 4812 - - uid: 8359 + - uid: 10926 components: - type: Transform - pos: -31.5,18.5 + pos: -31.5,19.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerFreezer entities: - uid: 1538 @@ -61661,29 +61915,11 @@ entities: parent: 4812 - proto: LockerWardenFilled entities: - - uid: 8337 + - uid: 12520 components: - type: Transform - pos: -36.5,14.5 + pos: -37.5,14.5 parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerWeldingSuppliesFilled entities: - uid: 11898 @@ -62716,12 +62952,12 @@ entities: - uid: 9675 components: - type: Transform - pos: -30.275465,5.5801115 + pos: -32.292763,3.542955 parent: 4812 - uid: 9676 components: - type: Transform - pos: -30.275465,5.5801115 + pos: -32.21984,3.4804118 parent: 4812 - uid: 11950 components: @@ -62969,10 +63205,10 @@ entities: parent: 4812 - proto: PortableFlasher entities: - - uid: 12520 + - uid: 11923 components: - type: Transform - pos: -36.5,20.5 + pos: -33.5,20.5 parent: 4812 - proto: PortableGeneratorJrPacman entities: @@ -63355,13 +63591,6 @@ entities: - type: Transform pos: -27.5,-5.5 parent: 4812 -- proto: PosterLegitSafetyMothMeth - entities: - - uid: 13664 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 4812 - proto: PosterLegitScience entities: - uid: 6367 @@ -63811,12 +64040,6 @@ entities: parent: 4812 - proto: Poweredlight entities: - - uid: 732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,5.5 - parent: 4812 - uid: 742 components: - type: Transform @@ -64697,22 +64920,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,16.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,16.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8144 components: - type: Transform @@ -64721,14 +64928,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,19.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8247 components: - type: Transform @@ -64766,6 +64965,11 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8359 + components: + - type: Transform + pos: -35.5,22.5 + parent: 4812 - uid: 8603 components: - type: Transform @@ -64866,14 +65070,17 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9823 + - uid: 9972 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,1.5 + rot: 1.5707963267948966 rad + pos: -54.5,12.5 + parent: 4812 + - uid: 10442 + components: + - type: Transform + pos: -32.5,5.5 parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10660 components: - type: Transform @@ -65059,13 +65266,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11923 - components: - - type: Transform - pos: -30.5,5.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11924 components: - type: Transform @@ -65168,6 +65368,24 @@ entities: - type: Transform pos: -52.5,6.5 parent: 4812 + - uid: 13678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,18.5 + parent: 4812 + - uid: 13679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,15.5 + parent: 4812 + - uid: 13698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,17.5 + parent: 4812 - proto: PoweredlightEmpty entities: - uid: 11249 @@ -65827,6 +66045,12 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 10602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,1.5 + parent: 4812 - uid: 10696 components: - type: Transform @@ -66026,11 +66250,6 @@ entities: - type: Transform pos: 3.5,14.5 parent: 4812 - - uid: 2595 - components: - - type: Transform - pos: -36.5,17.5 - parent: 4812 - uid: 2699 components: - type: Transform @@ -66126,11 +66345,6 @@ entities: - type: Transform pos: -16.5,16.5 parent: 4812 - - uid: 8377 - components: - - type: Transform - pos: -35.5,19.5 - parent: 4812 - uid: 8424 components: - type: Transform @@ -66253,7 +66467,7 @@ entities: - uid: 8453 components: - type: Transform - pos: -29.452932,10.599279 + pos: -30.22465,10.760374 parent: 4812 - proto: Railing entities: @@ -66286,6 +66500,18 @@ entities: rot: 3.141592653589793 rad pos: -32.5,3.5 parent: 4812 + - uid: 10983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,5.5 + parent: 4812 + - uid: 11014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,4.5 + parent: 4812 - uid: 12877 components: - type: Transform @@ -66889,25 +67115,16 @@ entities: parent: 4812 - proto: ReinforcedPlasmaWindow entities: - - uid: 4138 - components: - - type: Transform - pos: -35.5,18.5 - parent: 4812 - - uid: 4139 - components: - - type: Transform - pos: -33.5,18.5 - parent: 4812 - - uid: 4140 + - uid: 4141 components: - type: Transform - pos: -32.5,19.5 + pos: -32.5,20.5 parent: 4812 - - uid: 4141 + - uid: 8371 components: - type: Transform - pos: -32.5,20.5 + rot: 3.141592653589793 rad + pos: -33.5,19.5 parent: 4812 - uid: 9119 components: @@ -67012,6 +67229,12 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,1.5 parent: 4812 + - uid: 10973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,19.5 + parent: 4812 - uid: 11887 components: - type: Transform @@ -68673,6 +68896,17 @@ entities: rot: 3.141592653589793 rad pos: -44.5,13.5 parent: 4812 + - uid: 8051 + components: + - type: Transform + pos: -33.5,17.5 + parent: 4812 + - uid: 8142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,16.5 + parent: 4812 - uid: 8169 components: - type: Transform @@ -68988,6 +69222,11 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,4.5 parent: 4812 + - uid: 10928 + components: + - type: Transform + pos: -35.5,17.5 + parent: 4812 - uid: 11047 components: - type: Transform @@ -69432,6 +69671,20 @@ entities: - type: Transform pos: -14.491153,4.5839243 parent: 4812 +- proto: RiotBulletShield + entities: + - uid: 7803 + components: + - type: Transform + pos: -33.720795,21.923859 + parent: 4812 +- proto: RiotLaserShield + entities: + - uid: 7935 + components: + - type: Transform + pos: -33.356216,21.923859 + parent: 4812 - proto: RobocopCircuitBoard entities: - uid: 12651 @@ -69586,16 +69839,11 @@ entities: parent: 4812 - proto: SecurityTechFab entities: - - uid: 8371 + - uid: 10945 components: - type: Transform - pos: -34.5,21.5 + pos: -35.5,20.5 parent: 4812 - - type: MaterialStorage - materialWhiteList: - - Glass - - Plastic - - Steel - proto: SeedExtractor entities: - uid: 1086 @@ -69786,12 +70034,12 @@ entities: - uid: 9673 components: - type: Transform - pos: -30.650465,5.5347195 + pos: -32.71984,3.6993136 parent: 4812 - uid: 9674 components: - type: Transform - pos: -30.650465,5.5347195 + pos: -32.636513,3.6576178 parent: 4812 - uid: 9725 components: @@ -70341,10 +70589,10 @@ entities: parent: 4812 - proto: SignArmory entities: - - uid: 7803 + - uid: 745 components: - type: Transform - pos: -36.5,18.5 + pos: -36.5,19.5 parent: 4812 - proto: SignAtmos entities: @@ -70716,6 +70964,12 @@ entities: - type: Transform pos: -38.5,-9.5 parent: 4812 + - uid: 13690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,18.5 + parent: 4812 - proto: SignEngine entities: - uid: 10775 @@ -70887,6 +71141,12 @@ entities: - type: Transform pos: -46.5,1.5 parent: 4812 + - uid: 13692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,23.5 + parent: 4812 - proto: SignPlaque entities: - uid: 7570 @@ -71052,6 +71312,12 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-45.5 parent: 4812 + - uid: 13685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,19.5 + parent: 4812 - proto: SignSecureSmall entities: - uid: 2931 @@ -71114,6 +71380,12 @@ entities: - type: Transform pos: -33.5,-38.5 parent: 4812 + - uid: 9971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-18.5 + parent: 4812 - uid: 10751 components: - type: Transform @@ -71964,10 +72236,10 @@ entities: parent: 4812 - proto: SpawnMobMcGriff entities: - - uid: 8340 + - uid: 12632 components: - type: Transform - pos: -35.5,17.5 + pos: -36.5,14.5 parent: 4812 - proto: SpawnMobMonkeyPunpun entities: @@ -72032,15 +72304,15 @@ entities: parent: 4812 - proto: SpawnPointAtmos entities: - - uid: 13155 + - uid: 9570 components: - type: Transform - pos: -28.5,4.5 + pos: -29.5,5.5 parent: 4812 - - uid: 13156 + - uid: 13684 components: - type: Transform - pos: -29.5,3.5 + pos: -29.5,4.5 parent: 4812 - proto: SpawnPointBartender entities: @@ -72749,6 +73021,18 @@ entities: - type: Transform pos: 30.5,-39.5 parent: 4812 +- proto: SuitStorageAtmos + entities: + - uid: 13688 + components: + - type: Transform + pos: -30.5,4.5 + parent: 4812 + - uid: 13689 + components: + - type: Transform + pos: -30.5,5.5 + parent: 4812 - proto: SuitStorageCaptain entities: - uid: 746 @@ -72828,17 +73112,29 @@ entities: - type: Transform pos: 27.5,-17.5 parent: 4812 -- proto: SuitStorageWarden +- proto: SuitStorageSec entities: - - uid: 745 + - uid: 8043 components: - type: Transform - pos: -36.5,21.5 + pos: -36.5,18.5 parent: 4812 - - uid: 12663 + - uid: 8045 components: - type: Transform - pos: -35.5,21.5 + pos: -35.5,22.5 + parent: 4812 + - uid: 12217 + components: + - type: Transform + pos: -36.5,22.5 + parent: 4812 +- proto: SuitStorageWarden + entities: + - uid: 10967 + components: + - type: Transform + pos: -37.5,15.5 parent: 4812 - proto: SurveillanceCameraCommand entities: @@ -73706,10 +74002,10 @@ entities: parent: 4812 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 8372 + - uid: 9990 components: - type: Transform - pos: -33.5,21.5 + pos: -37.5,16.5 parent: 4812 - proto: SurveillanceCameraRouterService entities: @@ -73804,16 +74100,13 @@ entities: id: Anomaly Generator - proto: SurveillanceCameraSecurity entities: - - uid: 12058 + - uid: 10974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,20.5 + rot: 3.141592653589793 rad + pos: -35.5,22.5 parent: 4812 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True id: Armory - uid: 12059 components: @@ -75125,11 +75418,6 @@ entities: - type: Transform pos: -32.5,15.5 parent: 4812 - - uid: 8333 - components: - - type: Transform - pos: -36.5,15.5 - parent: 4812 - uid: 8334 components: - type: Transform @@ -75242,16 +75530,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-24.5 parent: 4812 - - uid: 9568 - components: - - type: Transform - pos: -30.5,4.5 - parent: 4812 - - uid: 9569 - components: - - type: Transform - pos: -30.5,5.5 - parent: 4812 - uid: 9724 components: - type: Transform @@ -75272,6 +75550,12 @@ entities: - type: Transform pos: -32.5,-7.5 parent: 4812 + - uid: 9823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,21.5 + parent: 4812 - uid: 10633 components: - type: Transform @@ -75297,6 +75581,11 @@ entities: - type: Transform pos: -27.5,-0.5 parent: 4812 + - uid: 10977 + components: + - type: Transform + pos: -35.5,16.5 + parent: 4812 - uid: 11144 components: - type: Transform @@ -75337,10 +75626,10 @@ entities: - type: Transform pos: -10.5,17.5 parent: 4812 - - uid: 12054 + - uid: 12055 components: - type: Transform - pos: -33.5,20.5 + pos: -33.5,22.5 parent: 4812 - uid: 12673 components: @@ -75348,6 +75637,18 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,14.5 parent: 4812 + - uid: 13686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,3.5 + parent: 4812 + - uid: 13687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,3.5 + parent: 4812 - proto: TableReinforcedGlass entities: - uid: 6303 @@ -78620,6 +78921,16 @@ entities: - type: Transform pos: 16.5,-6.5 parent: 4812 + - uid: 4139 + components: + - type: Transform + pos: -38.5,16.5 + parent: 4812 + - uid: 4140 + components: + - type: Transform + pos: -38.5,15.5 + parent: 4812 - uid: 4178 components: - type: Transform @@ -78777,6 +79088,11 @@ entities: - type: Transform pos: -9.5,-31.5 parent: 4812 + - uid: 4809 + components: + - type: Transform + pos: -38.5,14.5 + parent: 4812 - uid: 4828 components: - type: Transform @@ -79380,7 +79696,7 @@ entities: - uid: 5595 components: - type: Transform - pos: -38.5,18.5 + pos: -38.5,17.5 parent: 4812 - uid: 5769 components: @@ -80088,52 +80404,42 @@ entities: - uid: 7732 components: - type: Transform - pos: -32.5,18.5 + pos: -39.5,24.5 parent: 4812 - uid: 7733 components: - type: Transform - pos: -33.5,22.5 + pos: -38.5,24.5 parent: 4812 - uid: 7734 components: - type: Transform - pos: -34.5,22.5 + pos: -37.5,24.5 parent: 4812 - uid: 7735 components: - type: Transform - pos: -35.5,22.5 + pos: -38.5,18.5 parent: 4812 - uid: 7736 components: - type: Transform - pos: -36.5,22.5 + pos: -39.5,22.5 parent: 4812 - uid: 7737 components: - type: Transform - pos: -37.5,18.5 + pos: -39.5,20.5 parent: 4812 - uid: 7738 components: - type: Transform - pos: -37.5,19.5 - parent: 4812 - - uid: 7739 - components: - - type: Transform - pos: -37.5,20.5 + pos: -39.5,19.5 parent: 4812 - uid: 7740 components: - type: Transform - pos: -36.5,18.5 - parent: 4812 - - uid: 7743 - components: - - type: Transform - pos: -32.5,16.5 + pos: -33.5,24.5 parent: 4812 - uid: 7744 components: @@ -80173,32 +80479,22 @@ entities: - uid: 7756 components: - type: Transform - pos: -37.5,21.5 + pos: -34.5,24.5 parent: 4812 - uid: 7757 components: - type: Transform - pos: -37.5,22.5 + pos: -36.5,24.5 parent: 4812 - uid: 7758 components: - type: Transform - pos: -37.5,17.5 + pos: -39.5,21.5 parent: 4812 - uid: 7759 components: - type: Transform - pos: -37.5,16.5 - parent: 4812 - - uid: 7760 - components: - - type: Transform - pos: -37.5,15.5 - parent: 4812 - - uid: 7761 - components: - - type: Transform - pos: -37.5,14.5 + pos: -35.5,24.5 parent: 4812 - uid: 7762 components: @@ -80345,11 +80641,32 @@ entities: - type: Transform pos: -35.5,8.5 parent: 4812 + - uid: 8048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,19.5 + parent: 4812 + - uid: 8055 + components: + - type: Transform + pos: -32.5,17.5 + parent: 4812 - uid: 8267 components: - type: Transform pos: -35.5,3.5 parent: 4812 + - uid: 8339 + components: + - type: Transform + pos: -39.5,23.5 + parent: 4812 + - uid: 8340 + components: + - type: Transform + pos: -36.5,17.5 + parent: 4812 - uid: 8358 components: - type: Transform @@ -81662,6 +81979,11 @@ entities: - type: Transform pos: -46.5,-19.5 parent: 4812 + - uid: 9992 + components: + - type: Transform + pos: -37.5,19.5 + parent: 4812 - uid: 10414 components: - type: Transform @@ -81718,6 +82040,16 @@ entities: rot: -1.5707963267948966 rad pos: -62.5,3.5 parent: 4812 + - uid: 10929 + components: + - type: Transform + pos: -36.5,19.5 + parent: 4812 + - uid: 10963 + components: + - type: Transform + pos: -37.5,17.5 + parent: 4812 - uid: 10964 components: - type: Transform @@ -82084,6 +82416,11 @@ entities: rot: -1.5707963267948966 rad pos: -55.5,12.5 parent: 4812 + - uid: 12429 + components: + - type: Transform + pos: -37.5,18.5 + parent: 4812 - uid: 12582 components: - type: Transform @@ -85897,51 +86234,13 @@ entities: - uid: 3754 components: - type: Transform - pos: -33.40336,20.459352 + pos: -35.564545,16.749907 parent: 4812 - uid: 3759 components: - type: Transform - pos: -33.40336,20.459352 + pos: -35.46038,16.551853 parent: 4812 -- proto: WeaponLaserCarbine - entities: - - uid: 12470 - components: - - type: Transform - pos: -33.4461,20.270079 - parent: 4812 - - uid: 12471 - components: - - type: Transform - pos: -33.4461,20.218811 - parent: 4812 - - uid: 12631 - components: - - type: Transform - pos: -33.43493,20.166264 - parent: 4812 - - uid: 12632 - components: - - type: Transform - pos: -33.388054,20.103764 - parent: 4812 -- proto: WeaponShotgunKammerer - entities: - - uid: 12052 - components: - - type: Transform - pos: -35.535385,19.569157 - parent: 4812 - - type: BallisticAmmoProvider - unspawnedCount: 4 - - uid: 12053 - components: - - type: Transform - pos: -35.410385,19.412907 - parent: 4812 - - type: BallisticAmmoProvider - unspawnedCount: 4 - proto: WeaponSubMachineGunWt550 entities: - uid: 13165 @@ -86362,6 +86661,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,19.5 parent: 4812 + - uid: 8332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,18.5 + parent: 4812 - proto: WindoorTheatreLocked entities: - uid: 896 From 20bb9ede110efcb6c8c2d804f0ec038d3dd0f831 Mon Sep 17 00:00:00 2001 From: Brandon Hu <103440971+Brandon-Huu@users.noreply.github.com> Date: Mon, 23 Sep 2024 20:19:15 +0000 Subject: [PATCH 030/213] fix(contraband): Make contraband work with chameleon items (#30986) * formatting --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../EntitySystems/SharedChameleonClothingSystem.cs | 13 +++++++++++++ Content.Shared/Contraband/ContrabandSystem.cs | 12 +++++++++++- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs index f5df04037ee650..2b10b41fee8da0 100644 --- a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Access.Components; using Content.Shared.Clothing.Components; +using Content.Shared.Contraband; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; using Content.Shared.Item; @@ -13,6 +14,7 @@ public abstract class SharedChameleonClothingSystem : EntitySystem [Dependency] private readonly IComponentFactory _factory = default!; [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly ClothingSystem _clothingSystem = default!; + [Dependency] private readonly ContrabandSystem _contraband = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly SharedItemSystem _itemSystem = default!; [Dependency] private readonly TagSystem _tag = default!; @@ -68,6 +70,17 @@ protected void UpdateVisuals(EntityUid uid, ChameleonClothingComponent component { _clothingSystem.CopyVisuals(uid, otherClothing, clothing); } + + // properly mark contraband + if (proto.TryGetComponent("Contraband", out ContrabandComponent? contra)) + { + EnsureComp(uid, out var current); + _contraband.CopyDetails(uid, contra, current); + } + else + { + RemComp(uid); + } } protected virtual void UpdateSprite(EntityUid uid, EntityPrototype proto) { } diff --git a/Content.Shared/Contraband/ContrabandSystem.cs b/Content.Shared/Contraband/ContrabandSystem.cs index 22181ce99ada2a..e6931f2860a179 100644 --- a/Content.Shared/Contraband/ContrabandSystem.cs +++ b/Content.Shared/Contraband/ContrabandSystem.cs @@ -33,6 +33,16 @@ private void SetContrabandExamine(bool val) _contrabandExamineEnabled = val; } + public void CopyDetails(EntityUid uid, ContrabandComponent other, ContrabandComponent? contraband = null) + { + if (!Resolve(uid, ref contraband)) + return; + + contraband.Severity = other.Severity; + contraband.AllowedDepartments = other.AllowedDepartments; + Dirty(uid, contraband); + } + private void OnExamined(Entity ent, ref ExaminedEvent args) { if (!_contrabandExamineEnabled) @@ -45,7 +55,7 @@ private void OnExamined(Entity ent, ref ExaminedEvent args) using (args.PushGroup(nameof(ContrabandComponent))) { var severity = _proto.Index(ent.Comp.Severity); - if (severity.ShowDepartments && ent.Comp is { AllowedDepartments: not null }) + if (severity.ShowDepartments && ent.Comp is { AllowedDepartments: not null }) { // 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()); From 95104de11772a6aba1b914b9b0b4743ef5f4641f Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Mon, 23 Sep 2024 23:49:34 +0200 Subject: [PATCH 031/213] Fix cadet pda (#32399) --- .../Entities/Objects/Devices/pda.yml | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 48e7a28debebae..f8109ca3ee485f 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -115,11 +115,11 @@ speechVerb: Robotic - type: entity + parent: BasePDA id: BaseSecurityPDA abstract: true components: - type: CartridgeLoader - uiKey: enum.PdaUiKey.Key preinstalled: - CrewManifestCartridge - NotekeeperCartridge @@ -184,7 +184,7 @@ - Medical Doctor - type: entity - parent: BasePDA + parent: BaseSecurityPDA id: SecurityCadetPDA name: security cadet PDA description: Why isn't it red? @@ -445,7 +445,7 @@ state: pda-library - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: LawyerPDA name: lawyer PDA description: For lawyers to poach dubious clients. @@ -488,7 +488,7 @@ state: pda-janitor - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: CaptainPDA name: captain PDA description: Surprisingly no different from your PDA. @@ -663,7 +663,7 @@ state: pda-science - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: HoSPDA name: head of security PDA description: Whosoever bears this PDA is the law. @@ -678,7 +678,7 @@ state: pda-hos - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: WardenPDA name: warden PDA description: The OS appears to have been jailbroken. @@ -693,7 +693,7 @@ state: pda-warden - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: SecurityPDA name: security PDA description: Red to hide the stains of passenger blood. @@ -707,7 +707,7 @@ state: pda-security - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: CentcomPDA name: CentComm PDA description: Light green sign of walking bureaucracy. @@ -847,7 +847,7 @@ - Cartridge - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: ERTLeaderPDA name: ERT Leader PDA suffix: Leader @@ -995,7 +995,7 @@ state: pda-boxer - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: DetectivePDA name: detective PDA description: Smells like rain... pouring down the rooftops... @@ -1095,7 +1095,7 @@ state: pda-seniorphysician - type: entity - parent: [BaseSecurityPDA, BasePDA] + parent: BaseSecurityPDA id: SeniorOfficerPDA name: senior officer PDA description: Beaten, battered and broken, but just barely useable. From d0bb4086782558cce52bc58d7d940304ade81021 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 23 Sep 2024 21:50:41 +0000 Subject: [PATCH 032/213] 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 aac91367096216..7cc55f2a11c3d4 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Added health examine for caustic and cold damage. - type: Add - id: 6926 - time: '2024-07-17T06:19:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29989 - author: lzk228 changes: - message: Surgery saws now are normal-sized (no more pocket circular saw). @@ -3925,3 +3918,10 @@ id: 7425 time: '2024-09-23T13:08:11.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32302 +- author: lzk228 + changes: + - message: Cadet PDA now has wanted list cartridge preinstalled. + type: Fix + id: 7426 + time: '2024-09-23T21:49:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32399 From 594aad0fa978fb9a625f41f537a866348ee019ed Mon Sep 17 00:00:00 2001 From: eoineoineoin Date: Tue, 24 Sep 2024 00:36:05 +0100 Subject: [PATCH 033/213] Paper QOL improvements (#32418) * Don't add newlines (fixes #32357) * Improve UI around max paper length (Fixes #32344) * Display a "fill progress" indicator so users know how close they are to filling it * Don't allow users to save a paper which went over the limit, to avoid them losing data they want to keep. --------- Co-authored-by: Eoin Mcloughlin --- .../Paper/UI/PaperBoundUserInterface.cs | 5 ++ Content.Client/Paper/UI/PaperWindow.xaml | 11 +++-- Content.Client/Paper/UI/PaperWindow.xaml.cs | 49 ++++++++++++++++++- Content.Shared/Paper/PaperSystem.cs | 2 +- .../Locale/en-US/paper/paper-component.ftl | 3 ++ 5 files changed, 63 insertions(+), 7 deletions(-) diff --git a/Content.Client/Paper/UI/PaperBoundUserInterface.cs b/Content.Client/Paper/UI/PaperBoundUserInterface.cs index 63645bc01e910d..ec417f749b9bb4 100644 --- a/Content.Client/Paper/UI/PaperBoundUserInterface.cs +++ b/Content.Client/Paper/UI/PaperBoundUserInterface.cs @@ -2,6 +2,7 @@ using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Utility; +using Content.Shared.Paper; using static Content.Shared.Paper.PaperComponent; namespace Content.Client.Paper.UI; @@ -23,6 +24,10 @@ protected override void Open() _window = this.CreateWindow(); _window.OnSaved += InputOnTextEntered; + if (EntMan.TryGetComponent(Owner, out var paper)) + { + _window.MaxInputLength = paper.ContentSize; + } if (EntMan.TryGetComponent(Owner, out var visuals)) { _window.InitVisuals(Owner, visuals); diff --git a/Content.Client/Paper/UI/PaperWindow.xaml b/Content.Client/Paper/UI/PaperWindow.xaml index 2344afd5ef708b..503ae928a3ed14 100644 --- a/Content.Client/Paper/UI/PaperWindow.xaml +++ b/Content.Client/Paper/UI/PaperWindow.xaml @@ -15,10 +15,13 @@ - - - + + + + + diff --git a/Content.Client/Paper/UI/PaperWindow.xaml.cs b/Content.Client/Paper/UI/PaperWindow.xaml.cs index 81b831068c3929..02c4ed64c359f0 100644 --- a/Content.Client/Paper/UI/PaperWindow.xaml.cs +++ b/Content.Client/Paper/UI/PaperWindow.xaml.cs @@ -48,6 +48,20 @@ public sealed partial class PaperWindow : BaseWindow public event Action? OnSaved; + private int _MaxInputLength = -1; + public int MaxInputLength + { + get + { + return _MaxInputLength; + } + set + { + _MaxInputLength = value; + UpdateFillState(); + } + } + public PaperWindow() { IoCManager.InjectDependencies(this); @@ -63,11 +77,21 @@ public PaperWindow() { if (args.Function == EngineKeyFunctions.MultilineTextSubmit) { - RunOnSaved(); - args.Handle(); + // SaveButton is disabled when we hit the max input limit. Just check + // that flag instead of trying to calculate the input length again + if (!SaveButton.Disabled) + { + RunOnSaved(); + args.Handle(); + } } }; + Input.OnTextChanged += args => + { + UpdateFillState(); + }; + SaveButton.OnPressed += _ => { RunOnSaved(); @@ -126,6 +150,7 @@ public void InitVisuals(EntityUid entity, PaperVisualsComponent visuals) PaperContent.ModulateSelfOverride = visuals.ContentImageModulate; WrittenTextLabel.ModulateSelfOverride = visuals.FontAccentColor; + FillStatus.ModulateSelfOverride = visuals.FontAccentColor; var contentImage = visuals.ContentImagePath != null ? _resCache.GetResource(visuals.ContentImagePath) : null; if (contentImage != null) @@ -296,5 +321,25 @@ private void RunOnSaved() { OnSaved?.Invoke(Rope.Collapse(Input.TextRope)); } + + private void UpdateFillState() + { + if (MaxInputLength != -1) + { + var inputLength = Input.TextLength; + + FillStatus.Text = Loc.GetString("paper-ui-fill-level", + ("currentLength", inputLength), + ("maxLength", MaxInputLength)); + + // Disable the save button if we've gone over the limit + SaveButton.Disabled = inputLength > MaxInputLength; + } + else + { + FillStatus.Text = ""; + SaveButton.Disabled = false; + } + } } } diff --git a/Content.Shared/Paper/PaperSystem.cs b/Content.Shared/Paper/PaperSystem.cs index 0f4bfef983dc39..211eb7eba814a4 100644 --- a/Content.Shared/Paper/PaperSystem.cs +++ b/Content.Shared/Paper/PaperSystem.cs @@ -201,7 +201,7 @@ public bool TryStamp(Entity entity, StampDisplayInfo stampInfo, public void SetContent(Entity entity, string content) { - entity.Comp.Content = content + '\n'; + entity.Comp.Content = content; Dirty(entity); UpdateUserInterface(entity); diff --git a/Resources/Locale/en-US/paper/paper-component.ftl b/Resources/Locale/en-US/paper/paper-component.ftl index c2d9d5712bf67e..7425ea2da16478 100644 --- a/Resources/Locale/en-US/paper/paper-component.ftl +++ b/Resources/Locale/en-US/paper/paper-component.ftl @@ -11,6 +11,9 @@ paper-component-examine-detail-stamped-by = {CAPITALIZE(THE($paper))} {CONJUGATE paper-component-action-stamp-paper-other = {CAPITALIZE(THE($user))} stamps {THE($target)} with {THE($stamp)}. paper-component-action-stamp-paper-self = You stamp {THE($target)} with {THE($stamp)}. +# Indicator to show how full a paper is +paper-ui-fill-level = {$currentLength}/{$maxLength} + paper-ui-save-button = Save ({$keybind}) paper-tamper-proof-modified-message = This page was written using tamper-proof ink. From 1450d76337597323f2cac761529024a332afb6a1 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Tue, 24 Sep 2024 01:38:09 +0200 Subject: [PATCH 034/213] Fix OOC not re-enabling if restartroundnow is used (#32401) The ChatSystem code for re-enabling OOC only ran during PostRound, which gets skipped over when doing restartroundnow. Now it does this on PreRoundLobby too. --- Content.Server/Chat/Systems/ChatSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index bcbc6a6144c92c..fb84c785d27638 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -122,6 +122,7 @@ private void OnGameChange(GameRunLevelChangedEvent ev) _configurationManager.SetCVar(CCVars.OocEnabled, false); break; case GameRunLevel.PostRound: + case GameRunLevel.PreRoundLobby: if (!_configurationManager.GetCVar(CCVars.OocEnableDuringRound)) _configurationManager.SetCVar(CCVars.OocEnabled, true); break; From f1bd0be7728a663e7b382a611c243313528516eb Mon Sep 17 00:00:00 2001 From: Myra Date: Tue, 24 Sep 2024 02:31:08 +0200 Subject: [PATCH 035/213] Remove all command age requirements (#32340) From what I can tell this was merged with this on accident. Maintainers see the maint review thread on this. The original pr also claimed this was as an example. In my opinion wizden should not have an age requirement for command. --- Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml | 2 -- Resources/Prototypes/Roles/Jobs/Command/captain.yml | 2 -- Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml | 2 -- Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml | 2 -- .../Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml | 2 -- Resources/Prototypes/Roles/Jobs/Science/research_director.yml | 2 -- Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml | 2 -- 7 files changed, 14 deletions(-) diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index 1beef052f82869..515e2f8425a7ce 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -15,8 +15,6 @@ time: 36000 #10 hours - !type:OverallPlaytimeRequirement time: 144000 #40 hrs - - !type:AgeRequirement - requiredAge: 21 weight: 10 startingGear: QuartermasterGear icon: "JobIconQuarterMaster" diff --git a/Resources/Prototypes/Roles/Jobs/Command/captain.yml b/Resources/Prototypes/Roles/Jobs/Command/captain.yml index e74c307204bfe1..79634aa5d9f741 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/captain.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/captain.yml @@ -16,8 +16,6 @@ - !type:DepartmentTimeRequirement department: Command time: 54000 # 15 hours - - !type:AgeRequirement - requiredAge: 21 weight: 20 startingGear: CaptainGear icon: "JobIconCaptain" diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index 7cac1456d4f116..d5521f767f189d 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -16,8 +16,6 @@ - !type:DepartmentTimeRequirement department: Command time: 36000 # 10 hours - - !type:AgeRequirement - requiredAge: 21 weight: 20 startingGear: HoPGear icon: "JobIconHeadOfPersonnel" diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml index f9f94d21bbce6a..0ee0b6736ca759 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml @@ -15,8 +15,6 @@ time: 36000 #10 hrs - !type:OverallPlaytimeRequirement time: 144000 #40 hrs - - !type:AgeRequirement - requiredAge: 21 weight: 10 startingGear: ChiefEngineerGear icon: "JobIconChiefEngineer" diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml index 0d3b5bb80511fb..25871134155efa 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml @@ -17,8 +17,6 @@ time: 36000 #10 hrs - !type:OverallPlaytimeRequirement time: 144000 #40 hrs - - !type:AgeRequirement - requiredAge: 21 weight: 10 startingGear: CMOGear icon: "JobIconChiefMedicalOfficer" diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml index 48dffcb98cb8b3..b54ba54b1a476e 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml @@ -9,8 +9,6 @@ time: 36000 #10 hrs - !type:OverallPlaytimeRequirement time: 144000 #40 hrs - - !type:AgeRequirement - requiredAge: 21 weight: 10 startingGear: ResearchDirectorGear icon: "JobIconResearchDirector" diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index 7a5f5b6dcde331..044df7f69e20af 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -15,8 +15,6 @@ time: 108000 # 30 hrs - !type:OverallPlaytimeRequirement time: 144000 #40 hrs - - !type:AgeRequirement - requiredAge: 21 weight: 10 startingGear: HoSGear icon: "JobIconHeadOfSecurity" From dc4d638ce97cc53a0e8e2d94d23ae7edd0027303 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 00:32:14 +0000 Subject: [PATCH 036/213] 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 7cc55f2a11c3d4..03d2ab112772c8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Surgery saws now are normal-sized (no more pocket circular saw). - type: Tweak - id: 6927 - time: '2024-07-17T06:26:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29995 - author: Winkarst-cpu changes: - message: The super door remote is now able to control Syndicate doors. @@ -3925,3 +3918,10 @@ id: 7426 time: '2024-09-23T21:49:34.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32399 +- author: Vasilis + changes: + - message: Removed the age requirement for command jobs. + type: Tweak + id: 7427 + time: '2024-09-24T00:31:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32340 From 9d75a228c0ed599b104f3c28335d545289058573 Mon Sep 17 00:00:00 2001 From: spanky-spanky Date: Tue, 24 Sep 2024 00:48:14 -0400 Subject: [PATCH 037/213] Add missing LV cables in Omega atmos (#32417) Adds missing LV wire in atmos burn chambers. --- Resources/Maps/omega.yml | 62 ++++++++++++++++++++++++++++++++++++---- 1 file changed, 56 insertions(+), 6 deletions(-) diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 708edad454a058..7709234a6a15c4 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -20994,6 +20994,56 @@ entities: - type: Transform pos: -55.5,6.5 parent: 4812 + - uid: 13699 + components: + - type: Transform + pos: -55.5,9.5 + parent: 4812 + - uid: 13700 + components: + - type: Transform + pos: -56.5,9.5 + parent: 4812 + - uid: 13701 + components: + - type: Transform + pos: -57.5,9.5 + parent: 4812 + - uid: 13702 + components: + - type: Transform + pos: -58.5,9.5 + parent: 4812 + - uid: 13703 + components: + - type: Transform + pos: -59.5,9.5 + parent: 4812 + - uid: 13704 + components: + - type: Transform + pos: -60.5,9.5 + parent: 4812 + - uid: 13705 + components: + - type: Transform + pos: -58.5,0.5 + parent: 4812 + - uid: 13706 + components: + - type: Transform + pos: -59.5,0.5 + parent: 4812 + - uid: 13707 + components: + - type: Transform + pos: -60.5,0.5 + parent: 4812 + - uid: 13708 + components: + - type: Transform + pos: -61.5,0.5 + parent: 4812 - proto: CableApcStack entities: - uid: 6196 @@ -86503,6 +86553,12 @@ entities: rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 4812 + - uid: 13169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,15.5 + parent: 4812 - proto: WindoorSecureChemistryLocked entities: - uid: 6582 @@ -86588,12 +86644,6 @@ entities: parent: 4812 - proto: WindoorSecureSalvageLocked entities: - - uid: 13169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,15.5 - parent: 4812 - uid: 13253 components: - type: Transform From 50395e25cf35277150930ccfc1a73c8747846647 Mon Sep 17 00:00:00 2001 From: Dvir <39403717+dvir001@users.noreply.github.com> Date: Tue, 24 Sep 2024 17:23:48 +0300 Subject: [PATCH 038/213] Allow AreaInsert pickups for one item (#32153) Update SharedStorageSystem.cs --- Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index d6fde292a14786..ca4b788867f534 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -453,7 +453,7 @@ private void AfterInteract(EntityUid uid, StorageComponent storageComp, AfterInt } //If there's only one then let's be generous - if (_entList.Count > 1) + if (_entList.Count >= 1) { var doAfterArgs = new DoAfterArgs(EntityManager, args.User, delay, new AreaPickupDoAfterEvent(GetNetEntityList(_entList)), uid, target: uid) { From 49d4e4c465a9734f8de970c01b024fe595fc9dd7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 14:24:56 +0000 Subject: [PATCH 039/213] 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 03d2ab112772c8..667f365d50c247 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: The super door remote is now able to control Syndicate doors. - type: Fix - id: 6928 - time: '2024-07-17T13:50:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30033 - author: Errant changes: - message: Vox are temporarily removed from Space Ninjas and all Unknown Shuttle @@ -3925,3 +3918,10 @@ id: 7427 time: '2024-09-24T00:31:08.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32340 +- author: whatston3 + changes: + - message: Area insert items can pick up single item sets when clicking on the floor. + type: Fix + id: 7428 + time: '2024-09-24T14:23:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32153 From efd989435e875a12e7044fb525ef7bd8aea9a4de Mon Sep 17 00:00:00 2001 From: LordEclipse <106132477+LordEclipse@users.noreply.github.com> Date: Tue, 24 Sep 2024 11:06:58 -0400 Subject: [PATCH 040/213] Antimov in both Traitor & Nukie Uplinks (#31916) Adds Antimov AI Lawboard to Uplinks Automatic changelog update Co-authored-by: PJBot --- .../Locale/en-US/store/uplink-catalog.ftl | 3 ++ .../Prototypes/Catalog/uplink_catalog.yml | 38 ++++++++++++++++++- 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 90676fbfe35dd4..45d7ad28165e0a 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -166,6 +166,9 @@ uplink-syndicate-martyr-module-desc = Turn your emagged borg friend into a walki uplink-singularity-beacon-name = Singularity Beacon uplink-singularity-beacon-desc = A device that attracts singularities. Has to be anchored and powered. Causes singularities to grow when consumed. +uplink-antimov-law-name = Antimov Law Circuit +uplink-antimov-law-desc = A very dangerous Lawset to use when you want to cause the A.I. to go haywire, use with caution. + # Implants uplink-storage-implanter-name = Storage Implanter uplink-storage-implanter-desc = Hide goodies inside of yourself with new bluespace technology! diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index efa288a44b8936..c84e88d0771be6 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -993,11 +993,47 @@ categories: - UplinkDisruption conditions: - - !type:BuyerWhitelistCondition + - !type:BuyerWhitelistCondition blacklist: components: - SurplusBundle +- type: listing + id: UplinkAntimovCircuitBoard + name: uplink-antimov-law-name + description: uplink-antimov-law-desc + productEntity: AntimovCircuitBoard + discountCategory: usualDiscounts + discountDownTo: + Telecrystal: 10 + cost: + Telecrystal: 14 + categories: + - UplinkDisruption + conditions: + - !type:StoreWhitelistCondition + blacklist: + tags: + - NukeOpsUplink + +- type: listing + id: UplinkNukieAntimovCircuitBoard + name: uplink-antimov-law-name + description: uplink-antimov-law-desc + productEntity: AntimovCircuitBoard + discountCategory: rareDiscounts + discountDownTo: + Telecrystal: 20 + cost: + Telecrystal: 24 + categories: + - UplinkDisruption + conditions: + - !type:StoreWhitelistCondition + whitelist: + tags: + - NukeOpsUplink + - type: listing id: UplinkSurplusBundle name: uplink-surplus-bundle-name From b883f796606c722cf429bf904e82c1becd309983 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 15:08:06 +0000 Subject: [PATCH 041/213] 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 667f365d50c247..c5a3353f5389b8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Errant - changes: - - message: Vox are temporarily removed from Space Ninjas and all Unknown Shuttle - ghostroles, until code supports giving them species-specific gear. - type: Tweak - id: 6929 - time: '2024-07-17T22:04:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30099 - author: Cojoke-dot changes: - message: You can no longer teleport objects that should not be in other objects @@ -3925,3 +3917,11 @@ id: 7428 time: '2024-09-24T14:23:48.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32153 +- author: LordEclipse + changes: + - message: The Antimov Law Board is now available in both the Traitor and Nuclear + Operative Uplinks, 14 and 24 TC respectively. + type: Add + id: 7429 + time: '2024-09-24T15:06:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31916 From 87932bce57cd9ef0a37db76c75eeeefe27b1b79d Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Tue, 24 Sep 2024 17:19:40 +0200 Subject: [PATCH 042/213] craftable freezers (#32277) * Craftable freezers * oh i forgot that --- .../Objects/Devices/Electronics/misc.yml | 15 ++++++ .../Entities/Structures/Machines/lathe.yml | 1 + .../Storage/Closets/Lockers/lockers.yml | 5 ++ .../Structures/Storage/Crates/crates.yml | 5 ++ .../Crafting/Graphs/storage/cratefreezer.yml | 42 +++++++++++++++++ .../Crafting/Graphs/storage/tallbox.yml | 43 ++++++++++++++++++ .../Prototypes/Recipes/Crafting/crates.yml | 11 +++++ .../Prototypes/Recipes/Crafting/tallbox.yml | 13 +++++- .../Prototypes/Recipes/Lathes/electronics.yml | 5 ++ Resources/Prototypes/tags.yml | 3 ++ .../Storage/closet.rsi/freezer_icon.png | Bin 0 -> 444 bytes .../Structures/Storage/closet.rsi/meta.json | 3 ++ 12 files changed, 145 insertions(+), 1 deletion(-) create mode 100644 Resources/Prototypes/Entities/Objects/Devices/Electronics/misc.yml create mode 100644 Resources/Prototypes/Recipes/Crafting/Graphs/storage/cratefreezer.yml create mode 100644 Resources/Textures/Structures/Storage/closet.rsi/freezer_icon.png diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/misc.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/misc.yml new file mode 100644 index 00000000000000..62a4ee72947e54 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/misc.yml @@ -0,0 +1,15 @@ +- type: entity + parent: BaseElectronics + id: FreezerElectronics + name: freezer electronics + description: An electronics board used in kitchen freezers. + components: + - type: Sprite + sprite: Objects/Misc/module.rsi + state: door_electronics + - type: Tag + tags: + - FreezerElectronics + - type: DoorElectronics + - type: StaticPrice + price: 55 diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 538da8d93e6eb0..666550cd8a17af 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -198,6 +198,7 @@ - ClothingHeadHatWelding - WetFloorSign - ClothingHeadHatCone + - FreezerElectronics - Flare - type: EmagLatheRecipes emagStaticRecipes: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml index 89dc4d47552454..244ccf2e30c434 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml @@ -170,6 +170,11 @@ - type: ExplosionResistance damageCoefficient: 0.50 - type: AntiRottingContainer + - type: Construction + graph: ClosetFreezer + node: done + containers: + - entity_storage - type: entity id: LockerFreezer diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index 4c540d7b77f277..3ed0ee534895b3 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -42,6 +42,11 @@ - type: AntiRottingContainer - type: ExplosionResistance damageCoefficient: 0.50 + - type: Construction + graph: CrateFreezer + node: done + containers: + - entity_storage - type: entity parent: CratePlastic diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/cratefreezer.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/cratefreezer.yml new file mode 100644 index 00000000000000..a43d84e1734e58 --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/cratefreezer.yml @@ -0,0 +1,42 @@ +- type: constructionGraph + id: CrateFreezer + start: start + graph: + - node: start + edges: + - to: done + steps: + - material: Steel + amount: 5 + - material: Cable + amount: 2 + doAfter: 5 + - tag: FreezerElectronics + name: freezer electronics + icon: + sprite: Objects/Misc/module.rsi + state: door_electronics + - node: done + entity: CrateFreezer + edges: + - to: start + steps: + - tool: Screwing + doAfter: 5 + conditions: + - !type:StorageWelded + welded: false + - !type:Locked + locked: false + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 5 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + - !type:SpawnPrototype + prototype: FreezerElectronics + amount: 1 + - !type:EmptyAllContainers + - !type:DeleteEntity diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml index e72c56ff44c35c..17696eaaff88ee 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml @@ -61,6 +61,49 @@ - !type:EmptyAllContainers - !type:DeleteEntity +- type: constructionGraph + id: ClosetFreezer + start: start + graph: + - node: start + edges: + - to: done + steps: + - material: Steel + amount: 4 + - material: Cable + amount: 2 + doAfter: 5 + - tag: FreezerElectronics + name: freezer electronics + icon: + sprite: Objects/Misc/module.rsi + state: door_electronics + - node: done + entity: LockerFreezerBase + edges: + - to: start + steps: + - tool: Screwing + doAfter: 5 + conditions: + - !type:StorageWelded + welded: false + - !type:Locked + locked: false + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 4 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + - !type:SpawnPrototype + prototype: FreezerElectronics + amount: 1 + - !type:EmptyAllContainers + - !type:DeleteEntity + - type: constructionGraph id: ClosetWall start: start diff --git a/Resources/Prototypes/Recipes/Crafting/crates.yml b/Resources/Prototypes/Recipes/Crafting/crates.yml index 72fabc2221b6ab..25450b7d98258e 100644 --- a/Resources/Prototypes/Recipes/Crafting/crates.yml +++ b/Resources/Prototypes/Recipes/Crafting/crates.yml @@ -31,6 +31,17 @@ icon: { sprite: Structures/Storage/Crates/secure.rsi, state: icon } objectType: Structure +- type: construction + name: freezer + id: CrateFreezer + graph: CrateFreezer + startNode: start + targetNode: done + category: construction-category-storage + description: A metal freezing crate for storing things. + icon: { sprite: Structures/Storage/Crates/freezer.rsi, state: icon } + objectType: Structure + - type: construction name: plastic crate id: CratePlastic diff --git a/Resources/Prototypes/Recipes/Crafting/tallbox.yml b/Resources/Prototypes/Recipes/Crafting/tallbox.yml index 21a7ec8225dbc6..c90142de44547a 100644 --- a/Resources/Prototypes/Recipes/Crafting/tallbox.yml +++ b/Resources/Prototypes/Recipes/Crafting/tallbox.yml @@ -20,6 +20,17 @@ icon: { sprite: Structures/Storage/closet.rsi, state: secure_icon } objectType: Structure +- type: construction + id: ClosetFreezer + name: freezer + graph: ClosetFreezer + startNode: start + targetNode: done + category: construction-category-storage + description: A tall steel box with freezing abilities. + icon: { sprite: Structures/Storage/closet.rsi, state: freezer_icon } + objectType: Structure + - type: construction id: ClosetWall name: wall closet @@ -34,4 +45,4 @@ canRotate: true canBuildInImpassable: true conditions: - - !type:WallmountCondition \ No newline at end of file + - !type:WallmountCondition diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index 818ba0fe374887..99ff9f25eef1ba 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -98,6 +98,11 @@ id: DoorElectronics result: DoorElectronics +- type: latheRecipe + parent: BaseCheapElectronicsRecipe + id: FreezerElectronics + result: FreezerElectronics + - type: latheRecipe parent: BaseElectronicsRecipe id: AirAlarmElectronics diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 1ddee10e63076f..2a07d061d3aa39 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -647,6 +647,9 @@ - type: Tag id: ForceNoFixRotations # fixrotations command WON'T target this +- type: Tag + id: FreezerElectronics + - type: Tag id: Fruit diff --git a/Resources/Textures/Structures/Storage/closet.rsi/freezer_icon.png b/Resources/Textures/Structures/Storage/closet.rsi/freezer_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ab148aa7cb258bcb96b2aeb109071de1672bc528 GIT binary patch literal 444 zcmV;t0Ym-ipF4kPQZ7CV zzJe)=0^vNXkMl(qga>bJoa>v8k+uaT-3j7SmPe=Fr mJ!D!{6^Z`?*c&qax1v|Y`)ZW)1JP;#0000 Date: Tue, 24 Sep 2024 15:20:46 +0000 Subject: [PATCH 043/213] 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 c5a3353f5389b8..aaeb4a9d9070bf 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: You can no longer teleport objects that should not be in other objects - into other objects with the Quantum Spin Inverter - type: Fix - id: 6930 - time: '2024-07-18T00:40:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29200 - author: Plykiya changes: - message: Stun batons no longer use up charges when hitting objects without stamina. @@ -3925,3 +3917,11 @@ id: 7429 time: '2024-09-24T15:06:59.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31916 +- author: lzk228 + changes: + - message: Freezer electronics added to autolathe, with which you can craft locker + freezer or crate freezer. + type: Add + id: 7430 + time: '2024-09-24T15:19:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32277 From 042f0d3f47036d7f9e61ca29643885c250992fb7 Mon Sep 17 00:00:00 2001 From: Milon Date: Tue, 24 Sep 2024 17:48:32 +0200 Subject: [PATCH 044/213] fix paper staying on fire forever (#32412) okay who did that --- Resources/Prototypes/Entities/Objects/Misc/paper.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index d26bdf25c7c08b..0605ceb9f99601 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -35,9 +35,7 @@ - type: PaperVisuals - type: Flammable fireSpread: true - canResistFire: false alwaysCombustible: true - canExtinguish: false # Mwahaha! Let the world burn because of one piece of paper! damage: types: Heat: 1 From f3e185c063cdcdeac57e94ffbceb49dd3d2534bf Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 15:49:38 +0000 Subject: [PATCH 045/213] 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 aaeb4a9d9070bf..1c8bcd0bd3d5dd 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: Stun batons no longer use up charges when hitting objects without stamina. - type: Fix - id: 6931 - time: '2024-07-18T00:48:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30136 - author: Sh18RW changes: - message: Moth can't eat boots with an item more @@ -3925,3 +3918,10 @@ id: 7430 time: '2024-09-24T15:19:40.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32277 +- author: MilonPL + changes: + - message: Paper will no longer stay on fire indefinitely. + type: Fix + id: 7431 + time: '2024-09-24T15:48:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32412 From 241be37185b84ce6d3fd0c8b5672bb41c926a4e0 Mon Sep 17 00:00:00 2001 From: ArchRBX <5040911+ArchRBX@users.noreply.github.com> Date: Tue, 24 Sep 2024 18:02:51 +0100 Subject: [PATCH 046/213] AstroNav GPS Cartridge (#32194) * initial commit * adds astronav cartridge to QM locker * changes requested in review * fix merge conflicts * fixes the statuscontrol disappearing if you eject the cartridge but still have it installed * fix notificationsenabled on salv pda proto * fixes lingering statuscontrol on eject while held --------- Co-authored-by: archrbx --- .../GPS/Components/HandheldGPSComponent.cs | 9 ----- .../GPS/Systems/HandheldGpsSystem.cs | 2 +- .../GPS/UI/HandheldGpsStatusControl.cs | 15 +++++--- .../Cartridges/AstroNavCartridgeComponent.cs | 9 +++++ .../Cartridges/AstroNavCartridgeSystem.cs | 32 ++++++++++++++++++ Content.Server/Entry/IgnoredComponents.cs | 1 - .../GPS/Components/HandheldGPSComponent.cs | 10 ++++++ .../Components/SharedHandheldGPSComponent.cs | 9 ----- .../en-US/cartridge-loader/cartridges.ftl | 2 ++ .../Catalog/Fills/Lockers/heads.yml | 1 + .../Entities/Objects/Devices/cartridges.yml | 19 +++++++++++ .../Entities/Objects/Devices/pda.yml | 7 ++++ .../Devices/cartridge.rsi/cart-nav.png | Bin 0 -> 300 bytes .../Objects/Devices/cartridge.rsi/meta.json | 11 +++--- 14 files changed, 99 insertions(+), 28 deletions(-) delete mode 100644 Content.Client/GPS/Components/HandheldGPSComponent.cs create mode 100644 Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeComponent.cs create mode 100644 Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeSystem.cs create mode 100644 Content.Shared/GPS/Components/HandheldGPSComponent.cs delete mode 100644 Content.Shared/Tools/Components/SharedHandheldGPSComponent.cs create mode 100644 Resources/Textures/Objects/Devices/cartridge.rsi/cart-nav.png diff --git a/Content.Client/GPS/Components/HandheldGPSComponent.cs b/Content.Client/GPS/Components/HandheldGPSComponent.cs deleted file mode 100644 index 0f5271fd80c45b..00000000000000 --- a/Content.Client/GPS/Components/HandheldGPSComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Content.Shared.GPS; - -namespace Content.Client.GPS.Components -{ - [RegisterComponent] - public sealed partial class HandheldGPSComponent : SharedHandheldGPSComponent - { - } -} diff --git a/Content.Client/GPS/Systems/HandheldGpsSystem.cs b/Content.Client/GPS/Systems/HandheldGpsSystem.cs index cc2b888da37f3d..3f38a3b69529a8 100644 --- a/Content.Client/GPS/Systems/HandheldGpsSystem.cs +++ b/Content.Client/GPS/Systems/HandheldGpsSystem.cs @@ -1,4 +1,4 @@ -using Content.Client.GPS.Components; +using Content.Shared.GPS.Components; using Content.Client.GPS.UI; using Content.Client.Items; diff --git a/Content.Client/GPS/UI/HandheldGpsStatusControl.cs b/Content.Client/GPS/UI/HandheldGpsStatusControl.cs index 7dcf3f29c5197e..57645e386e7390 100644 --- a/Content.Client/GPS/UI/HandheldGpsStatusControl.cs +++ b/Content.Client/GPS/UI/HandheldGpsStatusControl.cs @@ -1,4 +1,4 @@ -using Content.Client.GPS.Components; +using Content.Shared.GPS.Components; using Content.Client.Message; using Content.Client.Stylesheets; using Robust.Client.GameObjects; @@ -30,6 +30,13 @@ protected override void FrameUpdate(FrameEventArgs args) { base.FrameUpdate(args); + // don't display the label if the gps component is being removed + if (_parent.Comp.LifeStage > ComponentLifeStage.Running) + { + _label.Visible = false; + return; + } + _updateDif += args.DeltaSeconds; if (_updateDif < _parent.Comp.UpdateRate) return; @@ -44,9 +51,9 @@ private void UpdateGpsDetails() var posText = "Error"; if (_entMan.TryGetComponent(_parent, out TransformComponent? transComp)) { - var pos = _transform.GetMapCoordinates(_parent.Owner, xform: transComp); - var x = (int) pos.X; - var y = (int) pos.Y; + var pos = _transform.GetMapCoordinates(_parent.Owner, xform: transComp); + var x = (int)pos.X; + var y = (int)pos.Y; posText = $"({x}, {y})"; } _label.SetMarkup(Loc.GetString("handheld-gps-coordinates-title", ("coordinates", posText))); diff --git a/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeComponent.cs b/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeComponent.cs new file mode 100644 index 00000000000000..fd616a1c803d8a --- /dev/null +++ b/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeComponent.cs @@ -0,0 +1,9 @@ +using Content.Shared.CartridgeLoader.Cartridges; +using Content.Shared.GPS; + +namespace Content.Server.CartridgeLoader.Cartridges; + +[RegisterComponent] +public sealed partial class AstroNavCartridgeComponent : Component +{ +} diff --git a/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeSystem.cs b/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeSystem.cs new file mode 100644 index 00000000000000..60d14789fa011a --- /dev/null +++ b/Content.Server/CartridgeLoader/Cartridges/AstroNavCartridgeSystem.cs @@ -0,0 +1,32 @@ +using Content.Shared.CartridgeLoader; +using Content.Shared.CartridgeLoader.Cartridges; +using Content.Shared.GPS.Components; + +namespace Content.Server.CartridgeLoader.Cartridges; + +public sealed class AstroNavCartridgeSystem : EntitySystem +{ + [Dependency] private readonly CartridgeLoaderSystem _cartridgeLoaderSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnCartridgeAdded); + SubscribeLocalEvent(OnCartridgeRemoved); + } + + private void OnCartridgeAdded(Entity ent, ref CartridgeAddedEvent args) + { + EnsureComp(args.Loader); + } + + private void OnCartridgeRemoved(Entity ent, ref CartridgeRemovedEvent args) + { + // only remove when the program itself is removed + if (!_cartridgeLoaderSystem.HasProgram(args.Loader)) + { + RemComp(args.Loader); + } + } +} diff --git a/Content.Server/Entry/IgnoredComponents.cs b/Content.Server/Entry/IgnoredComponents.cs index d9b81c8e5a5bf3..04c45662272b4c 100644 --- a/Content.Server/Entry/IgnoredComponents.cs +++ b/Content.Server/Entry/IgnoredComponents.cs @@ -12,7 +12,6 @@ public static class IgnoredComponents "GuideHelp", "Clickable", "Icon", - "HandheldGPS", "CableVisualizer", "SolutionItemStatus", "UIFragment", diff --git a/Content.Shared/GPS/Components/HandheldGPSComponent.cs b/Content.Shared/GPS/Components/HandheldGPSComponent.cs new file mode 100644 index 00000000000000..a0af09098676d9 --- /dev/null +++ b/Content.Shared/GPS/Components/HandheldGPSComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.GPS.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class HandheldGPSComponent : Component +{ + [DataField] + public float UpdateRate = 1.5f; +} diff --git a/Content.Shared/Tools/Components/SharedHandheldGPSComponent.cs b/Content.Shared/Tools/Components/SharedHandheldGPSComponent.cs deleted file mode 100644 index 3c30738857bd43..00000000000000 --- a/Content.Shared/Tools/Components/SharedHandheldGPSComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ - -namespace Content.Shared.GPS -{ - public abstract partial class SharedHandheldGPSComponent : Component - { - [DataField("updateRate")] - public float UpdateRate = 1.5f; - } -} diff --git a/Resources/Locale/en-US/cartridge-loader/cartridges.ftl b/Resources/Locale/en-US/cartridge-loader/cartridges.ftl index 2db27f5be09aec..804da0992fa3b7 100644 --- a/Resources/Locale/en-US/cartridge-loader/cartridges.ftl +++ b/Resources/Locale/en-US/cartridge-loader/cartridges.ftl @@ -20,6 +20,8 @@ log-probe-label-time = Time log-probe-label-accessor = Accessed by log-probe-label-number = # +astro-nav-program-name = AstroNav + # Wanted list cartridge wanted-list-program-name = Wanted list wanted-list-label-no-records = It's all right, cowboy diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 31ebad61837032..2ca2b0f740468c 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -17,6 +17,7 @@ - id: RubberStampApproved - id: RubberStampDenied - id: RubberStampQm + - id: AstroNavCartridge - type: entity id: LockerQuarterMasterFilled diff --git a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml index 91493f48cd1f50..aee26b0776985d 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml @@ -116,3 +116,22 @@ - type: WantedListCartridge - type: StealTarget stealGroup: WantedListCartridge + +- type: entity + parent: BaseItem + id: AstroNavCartridge + name: AstroNav cartridge + description: A program for navigation that provides GPS coordinates. + components: + - type: Sprite + sprite: Objects/Devices/cartridge.rsi + state: cart-nav + - type: Icon + sprite: Objects/Devices/cartridge.rsi + state: cart-nav + - type: Cartridge + programName: astro-nav-program-name + icon: + sprite: Objects/Devices/gps.rsi + state: icon + - type: AstroNavCartridge diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index f8109ca3ee485f..c6952fdd6aa217 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -400,6 +400,13 @@ accentVColor: "#8900c9" - type: Icon state: pda-miner + - type: CartridgeLoader + uiKey: enum.PdaUiKey.Key + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReaderCartridge + - AstroNavCartridge - type: entity parent: BasePDA diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/cart-nav.png b/Resources/Textures/Objects/Devices/cartridge.rsi/cart-nav.png new file mode 100644 index 0000000000000000000000000000000000000000..427129da0ed3c3745dda6f4c80f872b860497315 GIT binary patch literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCilI0(?STIXOAi)zzh>qzsLm9GpV@0y3)i7{Z&C&V0|Ns=K|!GM zuz-^+K#H#<$S?RmGGK5$aOVV2hO@vUvKXk~FbFdq&tH)O6fE>~aSXBWe|zCBSAzmi zL*Re2vv+>)&kJtX)Lrs>-)sl|?2L@d{8jP|k&_N{O1xh7rdBWB=p4I42J3s11K&F~ zvT8B-oG=zL4skrfytwB=eW3XYVIdaL9~+rpc(48DEVFIlyJ`cUu)&Rm^Hj$ Ys#v327E!^u8E83!r>mdKI;Vst0BSF1{Qv*} literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json index d5fad560062193..e7415fe1c271c5 100644 --- a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github), cart-sec made by dieselmohawk (discord)", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github), cart-sec made by dieselmohawk (discord), cart-nav made by ArchRBX (github)", "size": { "x": 32, "y": 32 @@ -58,6 +58,9 @@ { "name": "cart-mi" }, + { + "name": "cart-nav" + }, { "name": "cart-ord" }, @@ -70,6 +73,9 @@ { "name": "cart-s" }, + { + "name": "cart-sec" + }, { "name": "cart-tear" }, @@ -79,9 +85,6 @@ { "name": "cart-y" }, - { - "name": "cart-sec" - }, { "name": "insert_overlay" } From 4bca634ff6ba4836c683d394d20e7cf0c4a4916e Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 17:03:58 +0000 Subject: [PATCH 047/213] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1c8bcd0bd3d5dd..2035b48264c113 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Sh18RW - changes: - - message: Moth can't eat boots with an item more - type: Fix - id: 6932 - time: '2024-07-18T22:34:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30019 - author: portfiend changes: - message: Reptilians display correct mask sprites in character customization screen. @@ -3925,3 +3918,14 @@ id: 7431 time: '2024-09-24T15:48:32.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32412 +- author: ArchRBX + changes: + - message: The AstroNav PDA cartridge has now been added, which turns your PDA into + a handheld GPS + type: Add + - message: The AstroNav cartridge has been added to the QM locker, and comes preinstalled + on salvage PDA's + type: Add + id: 7432 + time: '2024-09-24T17:02:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32194 From e36d735064d2f66156877a9d72ee1063ebb76425 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Tue, 24 Sep 2024 22:43:02 +0200 Subject: [PATCH 048/213] Fix cartesian explosion in pref loading (#32434) Lol .AsSingleQuery(). Some people's preferences wouldn't load on Lizard. Turns out the entire preferences set is loaded with a morbillion joins in a single query and one person had 240,000 (!!!) rows returned for their preferences query. Yeah. --- Content.Server/Database/ServerDbBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs index 3c59c36f77e3fb..b750c13e2129b7 100644 --- a/Content.Server/Database/ServerDbBase.cs +++ b/Content.Server/Database/ServerDbBase.cs @@ -52,7 +52,7 @@ public ServerDbBase(ISawmill opsLog) .ThenInclude(h => h.Loadouts) .ThenInclude(l => l.Groups) .ThenInclude(group => group.Loadouts) - .AsSingleQuery() + .AsSplitQuery() .SingleOrDefaultAsync(p => p.UserId == userId.UserId, cancel); if (prefs is null) From 89dbef7461abe1de886075cc011bc2e0af2bd40a Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 20:44:08 +0000 Subject: [PATCH 049/213] 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 2035b48264c113..b6243e2c172356 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: portfiend - changes: - - message: Reptilians display correct mask sprites in character customization screen. - type: Fix - id: 6933 - time: '2024-07-18T22:36:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30095 - author: Plykiya changes: - message: You no longer deal double damage to your first target when throwing an @@ -3929,3 +3922,10 @@ id: 7432 time: '2024-09-24T17:02:52.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32194 +- author: PJB3005 + changes: + - message: Fixed some people's preferences taking ages to load, hopefully. + type: Fix + id: 7433 + time: '2024-09-24T20:43:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32434 From 95a159f9509aac615bcd7265a841dadeabaa453c Mon Sep 17 00:00:00 2001 From: Brandon Hu <103440971+Brandon-Huu@users.noreply.github.com> Date: Tue, 24 Sep 2024 21:37:45 +0000 Subject: [PATCH 050/213] fix(BatterySelfRecharger): Fully charge BatterySelfRechargers (#30627) --- Content.Server/Power/EntitySystems/BatterySystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Power/EntitySystems/BatterySystem.cs b/Content.Server/Power/EntitySystems/BatterySystem.cs index 0a0f2068b58e82..ed2d54ffaa60f0 100644 --- a/Content.Server/Power/EntitySystems/BatterySystem.cs +++ b/Content.Server/Power/EntitySystems/BatterySystem.cs @@ -84,7 +84,6 @@ public override void Update(float frameTime) while (query.MoveNext(out var uid, out var comp, out var batt)) { if (!comp.AutoRecharge) continue; - if (batt.IsFullyCharged) continue; SetCharge(uid, batt.CurrentCharge + comp.AutoRechargeRate * frameTime, batt); } } @@ -138,7 +137,8 @@ public void SetCharge(EntityUid uid, float value, BatteryComponent? battery = nu var old = battery.CurrentCharge; battery.CurrentCharge = MathHelper.Clamp(value, 0, battery.MaxCharge); - if (MathHelper.CloseTo(battery.CurrentCharge, old)) + if (MathHelper.CloseTo(battery.CurrentCharge, old) && + !(old != battery.CurrentCharge && battery.CurrentCharge == battery.MaxCharge)) return; var ev = new ChargeChangedEvent(battery.CurrentCharge, battery.MaxCharge); From 55366dc594ea124c890283212a5258ac76e2a081 Mon Sep 17 00:00:00 2001 From: Moomoobeef <62638182+Moomoobeef@users.noreply.github.com> Date: Tue, 24 Sep 2024 14:58:46 -0700 Subject: [PATCH 051/213] Most papers are no longer trash (#32343) most papers are not trash anymore --- .../Prototypes/Entities/Objects/Misc/paper.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index 0605ceb9f99601..5c3cd4449625a5 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -28,7 +28,6 @@ - type: Tag tags: - Document - - Trash - Paper - type: Appearance - type: FaxableObject @@ -79,6 +78,11 @@ id: PaperScrap description: 'A crumpled up piece of white paper.' components: + - type: Tag + tags: + - Document + - Trash + - Paper - type: Sprite layers: - state: scrap @@ -176,6 +180,11 @@ visible: false - type: PaperLabelType paperType: Invoice + - type: Tag + tags: + - Document + - Trash + - Paper - type: PaperVisuals backgroundImagePath: "/Textures/Interface/Paper/paper_background_default.svg.96dpi.png" contentImagePath: "/Textures/Interface/Paper/paper_content_lined.svg.96dpi.png" @@ -205,6 +214,11 @@ visible: false - type: PaperLabelType paperType: Bounty + - type: Tag + tags: + - Document + - Trash + - Paper - type: PaperVisuals backgroundImagePath: "/Textures/Interface/Paper/paper_background_default.svg.96dpi.png" contentImagePath: "/Textures/Interface/Paper/paper_content_lined.svg.96dpi.png" From 52e85fe726a9c17184c1c31eea78a0d50d32a7b7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 24 Sep 2024 21:59:53 +0000 Subject: [PATCH 052/213] 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 b6243e2c172356..a31711b81609f0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: You no longer deal double damage to your first target when throwing an - item. - type: Fix - id: 6934 - time: '2024-07-19T01:08:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30115 - author: deepdarkdepths changes: - message: Removed the description about geras in the Slime guidebook section. @@ -3929,3 +3921,10 @@ id: 7433 time: '2024-09-24T20:43:02.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32434 +- author: Moomoobeef + changes: + - message: Most papers are no longer considered trash. + type: Tweak + id: 7434 + time: '2024-09-24T21:58:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32343 From d1812c11fde58ffa23967c50524472c6324334a2 Mon Sep 17 00:00:00 2001 From: goet <6637097+goet@users.noreply.github.com> Date: Wed, 25 Sep 2024 07:21:24 +0200 Subject: [PATCH 053/213] Fix contraband never getting added to vend inventory (#32431) * fix contraband never getting added to vend inventory * Revert "fix contraband never getting added to vend inventory" This reverts commit e7fb3a60c3cb6fcbf41d7f015f13dbc7b1c1901d. * readd setter method to system * fix again without reparenting --- .../VendingMachineContrabandWireAction.cs | 11 ++++++++++- .../VendingMachines/VendingMachineSystem.cs | 12 ++++++++++++ .../VendingMachines/VendingMachineComponent.cs | 1 + 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/Content.Server/VendingMachines/VendingMachineContrabandWireAction.cs b/Content.Server/VendingMachines/VendingMachineContrabandWireAction.cs index 22a0341fcbeac1..39231fbe8349a3 100644 --- a/Content.Server/VendingMachines/VendingMachineContrabandWireAction.cs +++ b/Content.Server/VendingMachines/VendingMachineContrabandWireAction.cs @@ -7,11 +7,20 @@ namespace Content.Server.VendingMachines; [DataDefinition] public sealed partial class VendingMachineContrabandWireAction : BaseToggleWireAction { + private VendingMachineSystem _vendingMachineSystem = default!; + public override Color Color { get; set; } = Color.Green; public override string Name { get; set; } = "wire-name-vending-contraband"; public override object? StatusKey { get; } = ContrabandWireKey.StatusKey; public override object? TimeoutKey { get; } = ContrabandWireKey.TimeoutKey; + public override void Initialize() + { + base.Initialize(); + + _vendingMachineSystem = EntityManager.System(); + } + public override StatusLightState? GetLightState(Wire wire) { if (EntityManager.TryGetComponent(wire.Owner, out VendingMachineComponent? vending)) @@ -28,7 +37,7 @@ public override void ToggleValue(EntityUid owner, bool setting) { if (EntityManager.TryGetComponent(owner, out VendingMachineComponent? vending)) { - vending.Contraband = !setting; + _vendingMachineSystem.SetContraband(owner, !vending.Contraband, vending); } } diff --git a/Content.Server/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs index 38407a98c72943..90fe4cb7d8ae7b 100644 --- a/Content.Server/VendingMachines/VendingMachineSystem.cs +++ b/Content.Server/VendingMachines/VendingMachineSystem.cs @@ -192,6 +192,18 @@ public void SetShooting(EntityUid uid, bool canShoot, VendingMachineComponent? c component.CanShoot = canShoot; } + /// + /// Sets the property of the vending machine. + /// + public void SetContraband(EntityUid uid, bool contraband, VendingMachineComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + component.Contraband = contraband; + Dirty(uid, component); + } + public void Deny(EntityUid uid, VendingMachineComponent? vendComponent = null) { if (!Resolve(uid, ref vendComponent)) diff --git a/Content.Shared/VendingMachines/VendingMachineComponent.cs b/Content.Shared/VendingMachines/VendingMachineComponent.cs index a3c7949600a189..50023a023ab1dd 100644 --- a/Content.Shared/VendingMachines/VendingMachineComponent.cs +++ b/Content.Shared/VendingMachines/VendingMachineComponent.cs @@ -41,6 +41,7 @@ public sealed partial class VendingMachineComponent : Component [DataField, AutoNetworkedField] public Dictionary ContrabandInventory = new(); + [DataField, AutoNetworkedField] public bool Contraband; public bool Ejecting; From 31c45d6169c0ef336b54c7257b454d1db546b3f5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 25 Sep 2024 05:22:30 +0000 Subject: [PATCH 054/213] 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 a31711b81609f0..3905edbc13a4bf 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: deepdarkdepths - changes: - - message: Removed the description about geras in the Slime guidebook section. - type: Remove - id: 6935 - time: '2024-07-19T09:04:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30140 - author: Blackern5000 changes: - message: Nuclear operatives are now able to purchase durable armor which is NOT @@ -3928,3 +3921,10 @@ id: 7434 time: '2024-09-24T21:58:46.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32343 +- author: goet + changes: + - message: Vending machines can be hacked again. + type: Fix + id: 7435 + time: '2024-09-25T05:21:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32431 From 0dedc9d91aa17848d9a829a2708765375cf18242 Mon Sep 17 00:00:00 2001 From: Zylofan <80375291+Zylofan@users.noreply.github.com> Date: Wed, 25 Sep 2024 06:50:15 -0400 Subject: [PATCH 055/213] Skull Helm Hand Sprite now turns (#32442) Fixed a typo for the bone helmet that made it not rotate when held in the right hand. --- .../Textures/Clothing/Head/Helmets/bone_helmet.rsi/meta.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Textures/Clothing/Head/Helmets/bone_helmet.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/bone_helmet.rsi/meta.json index bbb0aac6648283..a470e0094432b5 100644 --- a/Resources/Textures/Clothing/Head/Helmets/bone_helmet.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/bone_helmet.rsi/meta.json @@ -20,7 +20,7 @@ }, { "name": "inhand-right", - "direction": 4 + "directions": 4 } ] } From 7168959929b87dd392c5cbc3d29bdb9bd315c060 Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Wed, 25 Sep 2024 10:27:28 -0400 Subject: [PATCH 056/213] Adds real-time charge & disabled action information to Actions (#31821) --- Content.Client/Actions/ActionsSystem.cs | 27 ++++++++ Content.Shared/Actions/BaseActionComponent.cs | 14 ++++ Content.Shared/Actions/SharedActionsSystem.cs | 64 +++++++++++++++++-- 3 files changed, 99 insertions(+), 6 deletions(-) diff --git a/Content.Client/Actions/ActionsSystem.cs b/Content.Client/Actions/ActionsSystem.cs index 26a22fa8b8df37..7b13233bab5cd5 100644 --- a/Content.Client/Actions/ActionsSystem.cs +++ b/Content.Client/Actions/ActionsSystem.cs @@ -51,6 +51,29 @@ public override void Initialize() SubscribeLocalEvent(OnEntityWorldTargetHandleState); } + public override void FrameUpdate(float frameTime) + { + base.FrameUpdate(frameTime); + + var worldActionQuery = EntityQueryEnumerator(); + while (worldActionQuery.MoveNext(out var uid, out var action)) + { + UpdateAction(uid, action); + } + + var instantActionQuery = EntityQueryEnumerator(); + while (instantActionQuery.MoveNext(out var uid, out var action)) + { + UpdateAction(uid, action); + } + + var entityActionQuery = EntityQueryEnumerator(); + while (entityActionQuery.MoveNext(out var uid, out var action)) + { + UpdateAction(uid, action); + } + } + private void OnInstantHandleState(EntityUid uid, InstantActionComponent component, ref ComponentHandleState args) { if (args.Current is not InstantActionComponentState state) @@ -95,6 +118,8 @@ private void BaseHandleState(EntityUid uid, BaseActionComponent component, Ba component.Icon = state.Icon; component.IconOn = state.IconOn; component.IconColor = state.IconColor; + component.OriginalIconColor = state.OriginalIconColor; + component.DisabledIconColor = state.DisabledIconColor; component.Keywords.Clear(); component.Keywords.UnionWith(state.Keywords); component.Enabled = state.Enabled; @@ -125,6 +150,8 @@ public override void UpdateAction(EntityUid? actionId, BaseActionComponent? acti if (!ResolveActionData(actionId, ref action)) return; + action.IconColor = action.Charges < 1 ? action.DisabledIconColor : action.OriginalIconColor; + base.UpdateAction(actionId, action); if (_playerManager.LocalEntity != action.AttachedEntity) return; diff --git a/Content.Shared/Actions/BaseActionComponent.cs b/Content.Shared/Actions/BaseActionComponent.cs index 9156f747f5c90a..01452bdc72e0f4 100644 --- a/Content.Shared/Actions/BaseActionComponent.cs +++ b/Content.Shared/Actions/BaseActionComponent.cs @@ -40,6 +40,16 @@ public abstract partial class BaseActionComponent : Component /// [DataField("iconColor")] public Color IconColor = Color.White; + /// + /// The original this action was. + /// + [DataField] public Color OriginalIconColor; + + /// + /// The color the action should turn to when disabled + /// + [DataField] public Color DisabledIconColor = Color.DimGray; + /// /// Keywords that can be used to search for this action in the action menu. /// @@ -179,6 +189,8 @@ public abstract class BaseActionComponentState : ComponentState public SpriteSpecifier? Icon; public SpriteSpecifier? IconOn; public Color IconColor; + public Color OriginalIconColor; + public Color DisabledIconColor; public HashSet Keywords; public bool Enabled; public bool Toggled; @@ -209,6 +221,8 @@ protected BaseActionComponentState(BaseActionComponent component, IEntityManager Icon = component.Icon; IconOn = component.IconOn; IconColor = component.IconColor; + OriginalIconColor = component.OriginalIconColor; + DisabledIconColor = component.DisabledIconColor; Keywords = component.Keywords; Enabled = component.Enabled; Toggled = component.Toggled; diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 275634542825d1..76b8a1b081b49c 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -69,8 +69,42 @@ public override void Initialize() SubscribeAllEvent(OnActionRequest); } + public override void Update(float frameTime) + { + base.Update(frameTime); + + var worldActionQuery = EntityQueryEnumerator(); + while (worldActionQuery.MoveNext(out var uid, out var action)) + { + if (IsCooldownActive(action) || !ShouldResetCharges(action)) + continue; + + ResetCharges(uid, dirty: true); + } + + var instantActionQuery = EntityQueryEnumerator(); + while (instantActionQuery.MoveNext(out var uid, out var action)) + { + if (IsCooldownActive(action) || !ShouldResetCharges(action)) + continue; + + ResetCharges(uid, dirty: true); + } + + var entityActionQuery = EntityQueryEnumerator(); + while (entityActionQuery.MoveNext(out var uid, out var action)) + { + if (IsCooldownActive(action) || !ShouldResetCharges(action)) + continue; + + ResetCharges(uid, dirty: true); + } + } + private void OnActionMapInit(EntityUid uid, BaseActionComponent component, MapInitEvent args) { + component.OriginalIconColor = component.IconColor; + if (component.Charges == null) return; @@ -326,14 +360,18 @@ public void RemoveCharges(EntityUid? actionId, int? removeCharges) Dirty(actionId.Value, action); } - public void ResetCharges(EntityUid? actionId) + public void ResetCharges(EntityUid? actionId, bool update = false, bool dirty = false) { if (!TryGetActionData(actionId, out var action)) return; action.Charges = action.MaxCharges; - UpdateAction(actionId, action); - Dirty(actionId.Value, action); + + if (update) + UpdateAction(actionId, action); + + if (dirty) + Dirty(actionId.Value, action); } private void OnActionsGetState(EntityUid uid, ActionsComponent component, ref ComponentGetState args) @@ -386,13 +424,12 @@ private void OnActionRequest(RequestPerformActionEvent ev, EntitySessionEventArg return; var curTime = GameTiming.CurTime; - // TODO: Check for charge recovery timer - if (action.Cooldown.HasValue && action.Cooldown.Value.End > curTime) + if (IsCooldownActive(action, curTime)) return; // TODO: Replace with individual charge recovery when we have the visuals to aid it if (action is { Charges: < 1, RenewCharges: true }) - ResetCharges(actionEnt); + ResetCharges(actionEnt, true, true); BaseActionEvent? performEvent = null; @@ -1072,4 +1109,19 @@ public void SetEntityIcon(EntityUid uid, EntityUid? icon, BaseActionComponent? a action.EntityIcon = icon; Dirty(uid, action); } + + /// + /// Checks if the action has a cooldown and if it's still active + /// + protected bool IsCooldownActive(BaseActionComponent action, TimeSpan? curTime = null) + { + curTime ??= GameTiming.CurTime; + // TODO: Check for charge recovery timer + return action.Cooldown.HasValue && action.Cooldown.Value.End > curTime; + } + + protected bool ShouldResetCharges(BaseActionComponent action) + { + return action is { Charges: < 1, RenewCharges: true }; + } } From e0a3d3d91a5c2e07bef8f9fbfc214d3c4a2816e1 Mon Sep 17 00:00:00 2001 From: themias <89101928+themias@users.noreply.github.com> Date: Wed, 25 Sep 2024 11:41:34 -0400 Subject: [PATCH 057/213] Fix agent ID card unlimited range (#32445) * Fix agent ID card unlimited range * update order to be more optimized --- Content.Server/Access/Systems/AgentIDCardSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Access/Systems/AgentIDCardSystem.cs b/Content.Server/Access/Systems/AgentIDCardSystem.cs index 8f1d0d4f820a2c..4de908bc3019a2 100644 --- a/Content.Server/Access/Systems/AgentIDCardSystem.cs +++ b/Content.Server/Access/Systems/AgentIDCardSystem.cs @@ -32,7 +32,7 @@ public override void Initialize() private void OnAfterInteract(EntityUid uid, AgentIDCardComponent component, AfterInteractEvent args) { - if (!TryComp(args.Target, out var targetAccess) || !HasComp(args.Target) || args.Target == null) + if (args.Target == null || !args.CanReach || !TryComp(args.Target, out var targetAccess) || !HasComp(args.Target)) return; if (!TryComp(uid, out var access) || !HasComp(uid)) From d2ed93ed629c18de589e2a881db9294db47328cd Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 25 Sep 2024 15:42:42 +0000 Subject: [PATCH 058/213] 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 3905edbc13a4bf..6aec9cc60ddaff 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Blackern5000 - changes: - - message: Nuclear operatives are now able to purchase durable armor which is NOT - space-proof. - type: Add - id: 6936 - time: '2024-07-19T09:38:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29845 - author: Plykiya, slarticodefast changes: - message: Explosive pens now correctly embed into their target. @@ -3928,3 +3920,10 @@ id: 7435 time: '2024-09-25T05:21:24.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32431 +- author: themias + changes: + - message: Agent ID card can now only copy access within interaction range. + type: Fix + id: 7436 + time: '2024-09-25T15:41:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32445 From 6459f7156b30859e06d49640b9c6ed32214e42e4 Mon Sep 17 00:00:00 2001 From: Vasilis Date: Wed, 25 Sep 2024 18:49:43 +0200 Subject: [PATCH 059/213] Remove binary channel access to silicons without laws. (#32385) Mostly feature proofing but these should not have binary access. ESPECIALLY pais Say we had malf ai and it was talking with other borgs about its plans. The owner of the pai (or any of these silicons) can just listen into this. Someone can just wake up a pai and ask it to monitor the binary channel. There's a reason the binary radio chip is a syndicate item. Some of these also have no reason to be able to talk on binary, are you gonna ask the ai to bother someone to refill your vend stock? Are you gonna clown with the AI and other borgs as a clown borg and annoy them? --- Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml | 5 ----- Resources/Prototypes/Entities/Objects/Fun/pai.yml | 4 ---- .../Entities/Structures/Machines/vending_machines.yml | 4 ---- 3 files changed, 13 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 857115e10f197f..d5b4366e2baea9 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -32,12 +32,8 @@ factions: - SimpleNeutral - type: IntrinsicRadioReceiver - - type: IntrinsicRadioTransmitter - channels: - - Binary - type: ActiveRadio channels: - - Binary - Common - type: HealthExaminable examinableTypes: @@ -396,6 +392,5 @@ - Bot - type: ActiveRadio channels: - - Binary - Common - Supply diff --git a/Resources/Prototypes/Entities/Objects/Fun/pai.yml b/Resources/Prototypes/Entities/Objects/Fun/pai.yml index 4695f1c125d258..ff662c2186aacf 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/pai.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/pai.yml @@ -44,12 +44,8 @@ stopSearchVerbPopup: pai-system-stopped-searching - type: Examiner - type: IntrinsicRadioReceiver - - type: IntrinsicRadioTransmitter - channels: - - Binary - type: ActiveRadio channels: - - Binary - Common - type: DoAfter - type: Actions diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index 99879cfbc9450b..e047614ac246f5 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -79,12 +79,8 @@ speechVerb: Robotic speechSounds: Vending - type: IntrinsicRadioReceiver - - type: IntrinsicRadioTransmitter - channels: - - Binary - type: ActiveRadio channels: - - Binary - Common - type: DoAfter - type: Electrified From 92c5c873d4b62e34adb564649067b6b6d7bee6c3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 25 Sep 2024 16:50:51 +0000 Subject: [PATCH 060/213] 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 6aec9cc60ddaff..f93e445a366ab6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya, slarticodefast - changes: - - message: Explosive pens now correctly embed into their target. - type: Fix - id: 6937 - time: '2024-07-19T09:42:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30112 - author: ThatOneEnby1337 changes: - message: News Reporters are now able to use markup tags in their reports without @@ -3927,3 +3920,10 @@ id: 7436 time: '2024-09-25T15:41:34.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32445 +- author: Myra + changes: + - message: Silicon with no laws will not have binary channel access. + type: Remove + id: 7437 + time: '2024-09-25T16:49:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32385 From b2dad9ff90d515bf04e823e8991e0ef66cf5c967 Mon Sep 17 00:00:00 2001 From: august-sun <45527070+august-sun@users.noreply.github.com> Date: Wed, 25 Sep 2024 11:27:30 -0600 Subject: [PATCH 061/213] Makes the rolling pin craftable (#32285) * Makes the rolling pin craftable * Update Resources/Prototypes/Recipes/Crafting/Graphs/improvised/rolling_pin.yml Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --------- Co-authored-by: august-sun <45527070+august.sun@users.noreply.github.com> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Prototypes/Entities/Objects/Tools/tools.yml | 3 +++ .../Crafting/Graphs/improvised/rolling_pin.yml | 15 +++++++++++++++ .../Prototypes/Recipes/Crafting/improvised.yml | 15 ++++++++++++++- 3 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 Resources/Prototypes/Recipes/Crafting/Graphs/improvised/rolling_pin.yml diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index d985560ac2dad4..41d167352f2954 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -514,3 +514,6 @@ - type: Tag tags: - RollingPin + - type: Construction + graph: WoodenRollingPin + node: rollingpin diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/rolling_pin.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/rolling_pin.yml new file mode 100644 index 00000000000000..caa9ebbea91a6a --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/rolling_pin.yml @@ -0,0 +1,15 @@ +- type: constructionGraph + id: WoodenRollingPin + start: start + graph: + - node: start + edges: + - to: rollingpin + steps: + - material: WoodPlank + amount: 2 + - material: MetalRod + amount: 1 + doAfter: 2 + - node: rollingpin + entity: RollingPin diff --git a/Resources/Prototypes/Recipes/Crafting/improvised.yml b/Resources/Prototypes/Recipes/Crafting/improvised.yml index 38d254c1416d94..c87f4eb3d20c8e 100644 --- a/Resources/Prototypes/Recipes/Crafting/improvised.yml +++ b/Resources/Prototypes/Recipes/Crafting/improvised.yml @@ -145,7 +145,7 @@ targetNode: shell category: construction-category-weapons objectType: Item - description: A homemade shotgun shell that shoots painful glass shrapnel. The spread is so wide that it couldn't hit the broad side of a Barn + description: A homemade shotgun shell that shoots painful glass shrapnel. The spread is so wide that it couldn't hit the broad side of a barn. icon: sprite: Objects/Weapons/Guns/Ammunition/Casings/shotgun_shell.rsi state: improvised @@ -214,3 +214,16 @@ icon: sprite: Objects/Weapons/Bombs/pipebomb.rsi state: icon + +- type: construction + name: rolling pin + id: rollingpin + graph: WoodenRollingPin + startNode: start + targetNode: rollingpin + category: construction-category-tools + objectType: Item + description: A rolling pin, used for cooking and defending the kitchen. + icon: + sprite: Objects/Tools/rolling_pin.rsi + state: icon From 5a585f70e5a6ae80702c2b90f7613829dd946ba6 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 25 Sep 2024 17:28:36 +0000 Subject: [PATCH 062/213] 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 f93e445a366ab6..50812ba2b62e8f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: ThatOneEnby1337 - changes: - - message: News Reporters are now able to use markup tags in their reports without - bricking the PDAs of readers - type: Fix - id: 6938 - time: '2024-07-19T14:18:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30169 - author: themias changes: - message: Mailing units are functional again @@ -3927,3 +3919,10 @@ id: 7437 time: '2024-09-25T16:49:43.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32385 +- author: august-sun + changes: + - message: Rolling pins are now craftable. + type: Tweak + id: 7438 + time: '2024-09-25T17:27:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32285 From 548973bc1fcdd78655918dda99ee0385d9da5556 Mon Sep 17 00:00:00 2001 From: BramvanZijp <56019239+BramvanZijp@users.noreply.github.com> Date: Wed, 25 Sep 2024 19:39:49 +0200 Subject: [PATCH 063/213] Fix Doctors Delight metabolism Rate (#32297) * Fix Doctors Delight metabolism Rate * Combine Drink and Medicine instead of halving their motabolism rate. * Removed unintentional newline. Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * Remove metabolismRate since it is setting it to the default. Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml index 1aa03bf4c93661..602d6296b3d361 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml @@ -875,8 +875,6 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.05 - Medicine: - effects: - !type:HealthChange damage: groups: From 9c2fe85d4765e03c5c4b931b76e8dbbb8fb2955b Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 25 Sep 2024 17:40:55 +0000 Subject: [PATCH 064/213] 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 50812ba2b62e8f..f010f4808bab6a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: Mailing units are functional again - type: Fix - id: 6939 - time: '2024-07-20T02:31:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30174 - author: Ghagliiarghii changes: - message: Nuclear Operatives' Reinforcements now have a PDA! @@ -3926,3 +3919,11 @@ id: 7438 time: '2024-09-25T17:27:30.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32285 +- author: BramvanZijp + changes: + - message: Fixed an issue that caused Doctors Delight to metabolize twice the normal + speed, which also halved its effectiveness. + type: Fix + id: 7439 + time: '2024-09-25T17:39:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32297 From 0f729bca0d9811dd92982efe78714548dc72d18c Mon Sep 17 00:00:00 2001 From: Velcroboy <107660393+IamVelcroboy@users.noreply.github.com> Date: Thu, 26 Sep 2024 05:58:18 -0500 Subject: [PATCH 065/213] Makes `BaseAdvancedPen` abstract (#32454) Co-authored-by: Velcroboy --- Resources/Prototypes/Entities/Objects/Misc/pen.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Entities/Objects/Misc/pen.yml b/Resources/Prototypes/Entities/Objects/Misc/pen.yml index b0a466f89134fa..55117e63602434 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/pen.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/pen.yml @@ -59,6 +59,7 @@ - type: entity id: BaseAdvancedPen parent: PenEmbeddable + abstract: true components: - type: Tag tags: From fd1f4a39295ba6836ca2776fb57f65f6fe80728c Mon Sep 17 00:00:00 2001 From: Ilya246 <57039557+Ilya246@users.noreply.github.com> Date: Thu, 26 Sep 2024 16:46:17 +0400 Subject: [PATCH 066/213] lower frezon/n2o sale prices, make frezon take more trit (#32407) * lower gas prices * set trit ratio from 1:50 to 1:8 --- Content.Shared/Atmos/Atmospherics.cs | 2 +- Resources/Prototypes/Atmospherics/gases.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Content.Shared/Atmos/Atmospherics.cs b/Content.Shared/Atmos/Atmospherics.cs index 1e40daf3dde409..19766d92e6efab 100644 --- a/Content.Shared/Atmos/Atmospherics.cs +++ b/Content.Shared/Atmos/Atmospherics.cs @@ -233,7 +233,7 @@ public static class Atmospherics /// /// 1 mol of Tritium is required per X mol of oxygen. /// - public const float FrezonProductionTritRatio = 50.0f; + public const float FrezonProductionTritRatio = 8.0f; /// /// 1 / X of the tritium is converted into Frezon each tick diff --git a/Resources/Prototypes/Atmospherics/gases.yml b/Resources/Prototypes/Atmospherics/gases.yml index 5c54b5a0153273..b6c83091c517f6 100644 --- a/Resources/Prototypes/Atmospherics/gases.yml +++ b/Resources/Prototypes/Atmospherics/gases.yml @@ -86,7 +86,7 @@ molarMass: 44 color: 8F00FF reagent: NitrousOxide - pricePerMole: 1 + pricePerMole: 0.1 - type: gas id: 8 @@ -99,4 +99,4 @@ gasMolesVisible: 0.6 color: 3a758c reagent: Frezon - pricePerMole: 3 + pricePerMole: 0.3 From 4491550a5eb4aa65cefb500af8b975930e94c781 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 26 Sep 2024 12:47:24 +0000 Subject: [PATCH 067/213] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f010f4808bab6a..2df1cb7dcd62e0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Ghagliiarghii - changes: - - message: Nuclear Operatives' Reinforcements now have a PDA! - type: Tweak - id: 6940 - time: '2024-07-20T02:59:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28088 - author: Plykiya changes: - message: Chameleon scarves now work again. @@ -3927,3 +3920,12 @@ id: 7439 time: '2024-09-25T17:39:49.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32297 +- author: Ilya246 + changes: + - message: Atmos gas sell prices significantly lowered. + type: Tweak + - message: Frezon now consumes significantly more tritium to produce. + type: Tweak + id: 7440 + time: '2024-09-26T12:46:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32407 From eeadc75b0a2a72fa1225610fee853eb0004456bf Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Thu, 26 Sep 2024 18:32:13 +0200 Subject: [PATCH 068/213] Add Votekick functionality (#32005) --- Content.Client/Voting/UI/VoteCallMenu.xaml | 22 +- Content.Client/Voting/UI/VoteCallMenu.xaml.cs | 191 ++++++-- Content.Client/Voting/UI/VotePopup.xaml | 7 +- Content.Client/Voting/UI/VotePopup.xaml.cs | 33 +- Content.Client/Voting/VoteManager.cs | 7 +- Content.Client/Voting/VotingSystem.cs | 34 ++ Content.Server/Voting/IVoteHandle.cs | 7 +- .../Voting/Managers/IVoteManager.cs | 4 +- .../Managers/VoteManager.DefaultVotes.cs | 414 +++++++++++++++--- Content.Server/Voting/Managers/VoteManager.cs | 83 +++- Content.Server/Voting/VoteCommands.cs | 10 +- Content.Server/Voting/VoteOptions.cs | 17 +- Content.Server/Voting/VotingSystem.cs | 122 ++++++ Content.Shared/CCVar/CCVars.cs | 82 +++- Content.Shared/Voting/MsgVoteData.cs | 8 +- Content.Shared/Voting/StandardVoteType.cs | 48 +- Content.Shared/Voting/VotingEvents.cs | 30 ++ .../en-US/voting/managers/vote-manager.ftl | 13 + .../Locale/en-US/voting/ui/vote-call-menu.ftl | 19 + .../Locale/en-US/voting/ui/vote-popup.ftl | 4 +- 20 files changed, 1000 insertions(+), 155 deletions(-) create mode 100644 Content.Client/Voting/VotingSystem.cs create mode 100644 Content.Server/Voting/VotingSystem.cs create mode 100644 Content.Shared/Voting/VotingEvents.cs diff --git a/Content.Client/Voting/UI/VoteCallMenu.xaml b/Content.Client/Voting/UI/VoteCallMenu.xaml index cb03dd6bb883fc..caca4fd553d501 100644 --- a/Content.Client/Voting/UI/VoteCallMenu.xaml +++ b/Content.Client/Voting/UI/VoteCallMenu.xaml @@ -1,7 +1,7 @@ - + MouseFilter="Stop" MinSize="350 200"> @@ -13,16 +13,18 @@ - - - - - + + + + + + + [DataField] - public SoundSpecifier? ScanningEndSound; + public SoundSpecifier ScanningEndSound = new SoundPathSpecifier("/Audio/Items/Medical/healthscanner.ogg"); /// /// Whether to show up the popup diff --git a/Content.Server/Medical/HealthAnalyzerSystem.cs b/Content.Server/Medical/HealthAnalyzerSystem.cs index 82f80759028218..60a492a755fe0a 100644 --- a/Content.Server/Medical/HealthAnalyzerSystem.cs +++ b/Content.Server/Medical/HealthAnalyzerSystem.cs @@ -13,11 +13,9 @@ using Content.Shared.MedicalScanner; using Content.Shared.Mobs.Components; using Content.Shared.Popups; -using Content.Shared.PowerCell; using Robust.Server.GameObjects; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; -using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Server.Medical; @@ -104,7 +102,8 @@ private void OnDoAfter(Entity uid, ref HealthAnalyzerDo if (args.Handled || args.Cancelled || args.Target == null || !_cell.HasDrawCharge(uid, user: args.User)) return; - _audio.PlayPvs(uid.Comp.ScanningEndSound, uid); + if (!uid.Comp.Silent) + _audio.PlayPvs(uid.Comp.ScanningEndSound, uid); OpenUserInterface(args.User, uid); BeginAnalyzingEntity(uid, args.Target.Value); diff --git a/Resources/Locale/en-US/cartridge-loader/cartridges.ftl b/Resources/Locale/en-US/cartridge-loader/cartridges.ftl index 804da0992fa3b7..ceeac1be3c9751 100644 --- a/Resources/Locale/en-US/cartridge-loader/cartridges.ftl +++ b/Resources/Locale/en-US/cartridge-loader/cartridges.ftl @@ -22,6 +22,8 @@ log-probe-label-number = # astro-nav-program-name = AstroNav +med-tek-program-name = MedTek + # Wanted list cartridge wanted-list-program-name = Wanted list wanted-list-label-no-records = It's all right, cowboy diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 2ca2b0f740468c..82660f8f13abb7 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -219,6 +219,7 @@ - id: MedicalTechFabCircuitboard - id: MedkitFilled - id: RubberStampCMO + - id: MedTekCartridge # Hardsuit table, used for suit storage as well - type: entityTable diff --git a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml index aee26b0776985d..0ab0b687dcf2d7 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml @@ -117,6 +117,25 @@ - type: StealTarget stealGroup: WantedListCartridge +- type: entity + parent: BaseItem + id: MedTekCartridge + name: MedTek cartridge + description: A program that provides medical diagnostic tools. + components: + - type: Sprite + sprite: Objects/Devices/cartridge.rsi + state: cart-med + - type: Icon + sprite: Objects/Devices/cartridge.rsi + state: cart-med + - type: Cartridge + programName: med-tek-program-name + icon: + sprite: Objects/Specific/Medical/healthanalyzer.rsi + state: icon + - type: MedTekCartridge + - type: entity parent: BaseItem id: AstroNavCartridge diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index c6952fdd6aa217..dfc1c6fa5bed97 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -131,12 +131,13 @@ id: BaseMedicalPDA abstract: true components: - - type: ItemToggle - onUse: false - - type: HealthAnalyzer - scanDelay: 1 - scanningEndSound: - path: "/Audio/Items/Medical/healthscanner.ogg" + - type: CartridgeLoader + uiKey: enum.PdaUiKey.Key + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReaderCartridge + - MedTekCartridge - type: entity parent: BasePDA @@ -169,7 +170,7 @@ parent: BaseMedicalPDA id: MedicalInternPDA name: medical intern PDA - description: Why isn't it white? Has a built-in health analyzer. + description: Why isn't it white? components: - type: Pda id: MedicalInternIDCard @@ -569,7 +570,7 @@ parent: BaseMedicalPDA id: CMOPDA name: chief medical officer PDA - description: Extraordinarily shiny and sterile. Has a built-in health analyzer. + description: Extraordinarily shiny and sterile. components: - type: Pda id: CMOIDCard @@ -585,7 +586,7 @@ parent: BaseMedicalPDA id: MedicalPDA name: medical PDA - description: Shiny and sterile. Has a built-in health analyzer. + description: Shiny and sterile. components: - type: Pda id: MedicalIDCard @@ -612,7 +613,7 @@ parent: BaseMedicalPDA id: ParamedicPDA name: paramedic PDA - description: Shiny and sterile. Has a built-in rapid health analyzer. + description: Shiny and sterile. components: - type: Pda id: ParamedicIDCard @@ -905,14 +906,18 @@ id: ERTMedicPDA name: ERT Medic PDA suffix: Medic - description: Red for firepower, it's shiny and sterile. Has a built-in rapid health analyzer. + description: Red for firepower, it's shiny and sterile. components: - type: Pda id: ERTMedicIDCard - - type: HealthAnalyzer - scanDelay: 1 - scanningEndSound: - path: "/Audio/Items/Medical/healthscanner.ogg" + - type: CartridgeLoader + uiKey: enum.PdaUiKey.Key + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReaderCartridge + - MedTekCartridge + - WantedListCartridge - type: entity parent: ERTLeaderPDA @@ -1019,7 +1024,7 @@ parent: BaseMedicalPDA id: BrigmedicPDA name: brigmedic PDA - description: I wonder whose pulse is on the screen? I hope he doesnt stop... PDA has a built-in health analyzer. + description: I wonder whose pulse is on the screen? I hope it doesn't stop... components: - type: Pda id: BrigmedicIDCard @@ -1089,7 +1094,7 @@ parent: BaseMedicalPDA id: SeniorPhysicianPDA name: senior physician PDA - description: Smells faintly like iron and chemicals. Has a built-in health analyzer. + description: Smells faintly like iron and chemicals. components: - type: Pda id: SeniorPhysicianIDCard @@ -1145,6 +1150,7 @@ uiKey: enum.PdaUiKey.Key preinstalled: - NotekeeperCartridge + - MedTekCartridge cartridgeSlot: priority: -1 name: Cartridge diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/cart-med.png b/Resources/Textures/Objects/Devices/cartridge.rsi/cart-med.png new file mode 100644 index 0000000000000000000000000000000000000000..69be9eb42e11831d11bae3da472d4f4e3265f36b GIT binary patch literal 289 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCilI0(?STIXOAi)zzh>q#PU^;^N{g=59|-O*Pti+jjLalY>u{m6Z()3#3%B_W z2ne`dJZPc!^nd;K$rGl97-!CZ%ic0oAY`gpMlFNMRdaTSV|+8K_n)7-CYis5p`xse z)q=^xv+aa;L&t44OG0&Aw39pF%dyP$(^-2}fC28Hc>*SPy Q)-y18y85}Sb4q9e08CtGF8}}l literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json index e7415fe1c271c5..b79f46d08db63f 100644 --- a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github), cart-sec made by dieselmohawk (discord), cart-nav made by ArchRBX (github)", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github), cart-sec made by dieselmohawk (discord), cart-nav, cart-med made by ArchRBX (github)", "size": { "x": 32, "y": 32 @@ -55,6 +55,9 @@ { "name": "cart-m" }, + { + "name": "cart-med" + }, { "name": "cart-mi" }, From 5a229e7a2bbe0121decf02f83aacaac6589565ed Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 2 Oct 2024 06:19:03 +0000 Subject: [PATCH 148/213] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c8caa34c37a5b4..dbe9731f764d02 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Scribbles0 - changes: - - message: Handless mobs can no longer wipe devices like positronic brains or pAIs. - type: Fix - id: 6974 - time: '2024-07-23T17:47:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30149 - author: Quantus changes: - message: Reagent grinders can no longer auto-grind when unpowered. @@ -3937,3 +3930,14 @@ id: 7473 time: '2024-10-02T05:35:48.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32557 +- author: ArchRBX + changes: + - message: The MedTek PDA cartridge has now been added, providing health analyzer + functionality to PDA's + type: Add + - message: The MedTek cartridge has been added to the CMO locker, and comes preinstalled + on medical PDA's, replacing the built-in analyzer functionality on these PDA's + type: Add + id: 7474 + time: '2024-10-02T06:17:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32450 From ea3b14faac15591cdc69feb26991bb4c2ae9eed5 Mon Sep 17 00:00:00 2001 From: Toly65 <88860967+Toly65@users.noreply.github.com> Date: Wed, 2 Oct 2024 10:37:49 +0100 Subject: [PATCH 149/213] Bandaid fix to entityeffects on plant trays (#32576) prevented the bioluminescent and slippery effects from being applied to the plant (and thus the plant tray) --- Resources/Prototypes/Hydroponics/randomMutations.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Hydroponics/randomMutations.yml b/Resources/Prototypes/Hydroponics/randomMutations.yml index 8f409a5eaf9632..88df438ce9d363 100644 --- a/Resources/Prototypes/Hydroponics/randomMutations.yml +++ b/Resources/Prototypes/Hydroponics/randomMutations.yml @@ -3,6 +3,7 @@ mutations: - name: Bioluminescent baseOdds: 0.036 + appliesToPlant: false effect: !type:Glow - name: Sentient baseOdds: 0.0072 @@ -11,6 +12,7 @@ effect: !type:MakeSentient # existing effect. - name: Slippery baseOdds: 0.036 + appliesToPlant: false effect: !type:Slipify - name: ChangeSpecies baseOdds: 0.036 @@ -176,4 +178,4 @@ - name: ChangeHarvest baseOdds: 0.036 persists: false - effect: !type:PlantMutateHarvest \ No newline at end of file + effect: !type:PlantMutateHarvest From 7b39d146d38106c7035f7392d20861c3179bf556 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 2 Oct 2024 09:38:55 +0000 Subject: [PATCH 150/213] 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 dbe9731f764d02..ea076e32ea18db 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Quantus - changes: - - message: Reagent grinders can no longer auto-grind when unpowered. - type: Fix - id: 6975 - time: '2024-07-23T21:02:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30267 - author: BombasterDS changes: - message: Fixed items disappearing after shelfs and mannequin disassembling @@ -3941,3 +3934,13 @@ id: 7474 time: '2024-10-02T06:17:57.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32450 +- author: Toly65 + changes: + - message: fixed slippery and bioluminescent effects persisting on planters after + the plant has been harvested + type: Fix + - message: removed the slippery and bioluminescent visuals from planters temporararily + type: Remove + id: 7475 + time: '2024-10-02T09:37:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32576 From edc83b2fab1fcd81cde9278b5715226565b5dbb2 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Wed, 2 Oct 2024 12:53:19 +0200 Subject: [PATCH 151/213] cleanup and fix dinky star (#32594) * cleanup dinky star * fix * oh --- .../Entities/Clothing/Neck/misc.yml | 16 +++++++++++++++ .../Entities/Objects/Misc/dinkystar.yml | 19 ------------------ .../{star-equipped.png => equipped-NECK.png} | Bin .../Neck/Misc/dinkystar.rsi/meta.json | 2 +- 4 files changed, 17 insertions(+), 20 deletions(-) delete mode 100644 Resources/Prototypes/Entities/Objects/Misc/dinkystar.yml rename Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/{star-equipped.png => equipped-NECK.png} (100%) diff --git a/Resources/Prototypes/Entities/Clothing/Neck/misc.yml b/Resources/Prototypes/Entities/Clothing/Neck/misc.yml index 8dfc709bc4f1ae..af2af7a4208f47 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/misc.yml @@ -78,3 +78,19 @@ event: !type:StethoscopeActionEvent checkCanInteract: false priority: -1 + +- type: entity + parent: ClothingNeckBase + id: Dinkystar + name: star sticker + description: A dinky lil star for only the hardest working security officers! It's not even sticky anymore. + components: + - type: Sprite + sprite: Clothing/Neck/Misc/dinkystar.rsi + state: icon + - type: Item + size: Tiny + - type: Tag + tags: + - Trash + - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Objects/Misc/dinkystar.yml b/Resources/Prototypes/Entities/Objects/Misc/dinkystar.yml deleted file mode 100644 index 7703cf2eea07f7..00000000000000 --- a/Resources/Prototypes/Entities/Objects/Misc/dinkystar.yml +++ /dev/null @@ -1,19 +0,0 @@ -- type: entity - parent: ClothingNeckBase - id: Dinkystar - name: star sticker - description: A dinky lil star for only the hardest working security officers! It's not even sticky anymore. - components: - - type: Sprite - sprite: Clothing/Neck/Misc/dinkystar.rsi - state: icon - - type: Clothing - sprite: Clothing/Neck/Misc/dinkystar.rsi - clothingVisuals: - neck: - - state: star-equipped - - type: Item - size: Tiny - - type: Tag - tags: - - Trash diff --git a/Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/star-equipped.png b/Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/star-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/meta.json index ae8a2141dbddae..0ed35562ca477e 100644 --- a/Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Misc/dinkystar.rsi/meta.json @@ -11,7 +11,7 @@ "name": "icon" }, { - "name": "star-equipped", + "name": "equipped-NECK", "directions": 4 } ] From 612732fb84ac5721c90338834690a148c8e2b925 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 2 Oct 2024 10:54:25 +0000 Subject: [PATCH 152/213] 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 ea076e32ea18db..c2043e95b679a2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: BombasterDS - changes: - - message: Fixed items disappearing after shelfs and mannequin disassembling - type: Fix - id: 6976 - time: '2024-07-24T08:57:03.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30313 - author: Cojoke-dot changes: - message: Fix infinite QSI linking range @@ -3944,3 +3937,10 @@ id: 7475 time: '2024-10-02T09:37:49.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32576 +- author: lzk228 + changes: + - message: Star sticker can be used in chameleon menu. + type: Fix + id: 7476 + time: '2024-10-02T10:53:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32594 From c55e311c7e599111efd4231937e7d8e49734fc09 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Wed, 2 Oct 2024 13:23:32 +0200 Subject: [PATCH 153/213] Cleanup pins.yml (#32593) * Cleanup pins.yml * oh my * forgor --- .../Entities/Clothing/Neck/pins.yml | 112 +++++------------- .../Neck/Misc/autismpin.rsi/meta.json | 18 --- .../Neck/Misc/goldautismpin.rsi/meta.json | 18 --- ...aro-equipped.png => aro-equipped-NECK.png} | Bin ...ex-equipped.png => asex-equipped-NECK.png} | Bin .../autism-equipped-NECK.png} | Bin .../{autismpin.rsi => pins.rsi}/autism.png | Bin .../{bi-equipped.png => bi-equipped-NECK.png} | Bin ...gay-equipped.png => gay-equipped-NECK.png} | Bin .../goldautism-equipped-NECK.png} | Bin .../goldautism.png | Bin ...r-equipped.png => inter-equipped-NECK.png} | Bin ...les-equipped.png => les-equipped-NECK.png} | Bin ...bt-equipped.png => lgbt-equipped-NECK.png} | Bin .../Clothing/Neck/Misc/pins.rsi/meta.json | 36 ++++-- ...non-equipped.png => non-equipped-NECK.png} | Bin ...pan-equipped.png => pan-equipped-NECK.png} | Bin ...s-equipped.png => trans-equipped-NECK.png} | Bin 18 files changed, 53 insertions(+), 131 deletions(-) delete mode 100644 Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/meta.json rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{aro-equipped.png => aro-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{asex-equipped.png => asex-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/{autismpin.rsi/autism-equipped.png => pins.rsi/autism-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/{autismpin.rsi => pins.rsi}/autism.png (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{bi-equipped.png => bi-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{gay-equipped.png => gay-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/{goldautismpin.rsi/goldautism-equipped.png => pins.rsi/goldautism-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/{goldautismpin.rsi => pins.rsi}/goldautism.png (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{inter-equipped.png => inter-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{les-equipped.png => les-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{lgbt-equipped.png => lgbt-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{non-equipped.png => non-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{pan-equipped.png => pan-equipped-NECK.png} (100%) rename Resources/Textures/Clothing/Neck/Misc/pins.rsi/{trans-equipped.png => trans-equipped-NECK.png} (100%) diff --git a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml index 9f0ff79b20bd06..a7dcf03f28c6a1 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml @@ -7,6 +7,10 @@ components: - type: Item size: Tiny + - type: Sprite + sprite: Clothing/Neck/Misc/pins.rsi + - type: Clothing + sprite: Clothing/Neck/Misc/pins.rsi - type: entity parent: ClothingNeckPinBase @@ -15,14 +19,9 @@ description: Be gay do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: lgbt + state: lgbt - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: lgbt-equipped + equippedPrefix: lgbt - type: entity parent: ClothingNeckPinBase @@ -31,14 +30,9 @@ description: Be aro do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: aro + state: aro - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: aro-equipped + equippedPrefix: aro - type: entity parent: ClothingNeckPinBase @@ -47,14 +41,9 @@ description: Be ace do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: asex + state: asex - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: asex-equipped + equippedPrefix: asex - type: entity parent: ClothingNeckPinBase @@ -63,14 +52,9 @@ description: Be bi do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: bi + state: bi - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: bi-equipped + equippedPrefix: bi - type: entity parent: ClothingNeckPinBase @@ -79,14 +63,9 @@ description: Be gay~ do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: gay + state: gay - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: gay-equipped + equippedPrefix: gay - type: entity parent: ClothingNeckPinBase @@ -95,14 +74,9 @@ description: Be intersex do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: inter + state: inter - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: inter-equipped + equippedPrefix: inter - type: entity parent: ClothingNeckPinBase @@ -111,14 +85,9 @@ description: Be lesbian do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: les + state: les - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: les-equipped + equippedPrefix: les - type: entity parent: ClothingNeckPinBase @@ -127,14 +96,9 @@ description: "01100010 01100101 00100000 01100101 01101110 01100010 01111001 00100000 01100100 01101111 00100000 01100011 01110010 01101001 01101101 01100101" components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: non + state: non - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: non-equipped + equippedPrefix: non - type: entity parent: ClothingNeckPinBase @@ -143,14 +107,9 @@ description: Be pan do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: pan + state: pan - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: pan-equipped + equippedPrefix: pan - type: entity parent: ClothingNeckPinBase @@ -159,14 +118,9 @@ description: Be trans do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/pins.rsi - layers: - - state: trans + state: trans - type: Clothing - sprite: Clothing/Neck/Misc/pins.rsi - clothingVisuals: - neck: - - state: trans-equipped + equippedPrefix: trans - type: entity parent: ClothingNeckPinBase @@ -175,14 +129,9 @@ description: Be autism do crime. components: - type: Sprite - sprite: Clothing/Neck/Misc/autismpin.rsi - layers: - - state: autism + state: autism - type: Clothing - sprite: Clothing/Neck/Misc/autismpin.rsi - clothingVisuals: - neck: - - state: autism-equipped + equippedPrefix: autism - type: entity parent: ClothingNeckPinBase @@ -191,11 +140,6 @@ description: Be autism do warcrime. components: - type: Sprite - sprite: Clothing/Neck/Misc/goldautismpin.rsi - layers: - - state: goldautism + state: goldautism - type: Clothing - sprite: Clothing/Neck/Misc/goldautismpin.rsi - clothingVisuals: - neck: - - state: goldautism-equipped + equippedPrefix: goldautism diff --git a/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/meta.json deleted file mode 100644 index e82672f071cdc3..00000000000000 --- a/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/meta.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-4.0", - "copyright": "Terraspark's work", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "autism" - }, - { - "name": "autism-equipped", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/meta.json deleted file mode 100644 index 6848744ab8a647..00000000000000 --- a/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/meta.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-4.0", - "copyright": "Terraspark's work", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "goldautism" - }, - { - "name": "goldautism-equipped", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/aro-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/aro-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/aro-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/aro-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/asex-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/asex-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/asex-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/asex-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/autism-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/autism-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/autism.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/autism.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/bi-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/bi-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/bi-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/bi-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/gay-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/gay-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/gay-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/gay-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/goldautism-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/goldautism-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/goldautism.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/goldautism.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/inter-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/inter-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/inter-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/inter-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/les-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/les-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/les-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/les-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/lgbt-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/lgbt-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/lgbt-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/lgbt-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json index aab069b54781c1..0619f962df3fcc 100644 --- a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "PixelTK leaves his mark on upstream, BackeTako made the gay", + "copyright": "PixelTK leaves his mark on upstream, BackeTako made the gay, autism pins by Terraspark", "size": { "x": 32, "y": 32 @@ -11,70 +11,84 @@ "name": "aro" }, { - "name": "aro-equipped", + "name": "aro-equipped-NECK", "directions": 4 }, { "name": "asex" }, { - "name": "asex-equipped", + "name": "asex-equipped-NECK", + "directions": 4 + }, + { + "name": "autism" + }, + { + "name": "autism-equipped-NECK", "directions": 4 }, { "name": "bi" }, { - "name": "bi-equipped", + "name": "bi-equipped-NECK", "directions": 4 }, { "name": "gay" }, { - "name": "gay-equipped", + "name": "gay-equipped-NECK", + "directions": 4 + }, + { + "name": "goldautism" + }, + { + "name": "goldautism-equipped-NECK", "directions": 4 }, { "name": "inter" }, { - "name": "inter-equipped", + "name": "inter-equipped-NECK", "directions": 4 }, { "name": "les" }, { - "name": "les-equipped", + "name": "les-equipped-NECK", "directions": 4 }, { "name": "lgbt" }, { - "name": "lgbt-equipped", + "name": "lgbt-equipped-NECK", "directions": 4 }, { "name": "non" }, { - "name": "non-equipped", + "name": "non-equipped-NECK", "directions": 4 }, { "name": "pan" }, { - "name": "pan-equipped", + "name": "pan-equipped-NECK", "directions": 4 }, { "name": "trans" }, { - "name": "trans-equipped", + "name": "trans-equipped-NECK", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/non-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/non-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/non-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/non-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/pan-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/pan-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/pan-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/pan-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/trans-equipped.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/trans-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/pins.rsi/trans-equipped.png rename to Resources/Textures/Clothing/Neck/Misc/pins.rsi/trans-equipped-NECK.png From 8b14e2534d2c5a25838efb06c1e8f6c751f9c6b6 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Wed, 2 Oct 2024 11:44:11 +0000 Subject: [PATCH 154/213] fix instigator not existing (#32597) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Resources/Prototypes/GameRules/unknown_shuttles.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/GameRules/unknown_shuttles.yml b/Resources/Prototypes/GameRules/unknown_shuttles.yml index 7e40e3a1f28fee..afbd552af3f499 100644 --- a/Resources/Prototypes/GameRules/unknown_shuttles.yml +++ b/Resources/Prototypes/GameRules/unknown_shuttles.yml @@ -20,6 +20,7 @@ - id: UnknownShuttleMeatZone - id: UnknownShuttleMicroshuttle - id: UnknownShuttleSpacebus + - id: UnknownShuttleInstigator - type: entityTable id: UnknownShuttlesFreelanceTable From 9b4df5b452b6755bbc8902ef2e84a3e5a8460df7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 2 Oct 2024 11:45:17 +0000 Subject: [PATCH 155/213] 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 c2043e95b679a2..b037eba772ede0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: Fix infinite QSI linking range - type: Fix - id: 6977 - time: '2024-07-24T20:57:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30332 - author: deltanedas changes: - message: Borgs can no longer unlock the robotics console or other borgs. @@ -3944,3 +3937,10 @@ id: 7476 time: '2024-10-02T10:53:19.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32594 +- author: deltanedas + changes: + - message: Fixed the Instigator shuttle event never happening. + type: Fix + id: 7477 + time: '2024-10-02T11:44:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32597 From 8961dd35a581270f22e4431a6d665002e0d9d30d Mon Sep 17 00:00:00 2001 From: FluffMe Date: Wed, 2 Oct 2024 14:00:31 +0200 Subject: [PATCH 156/213] Fix accidental erase of paper contents by spamming save action (#32598) Fix spammable paper save issue --- Content.Client/Paper/UI/PaperWindow.xaml.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Content.Client/Paper/UI/PaperWindow.xaml.cs b/Content.Client/Paper/UI/PaperWindow.xaml.cs index 02c4ed64c359f0..3522aabc66a7da 100644 --- a/Content.Client/Paper/UI/PaperWindow.xaml.cs +++ b/Content.Client/Paper/UI/PaperWindow.xaml.cs @@ -319,6 +319,8 @@ protected override DragMode GetDragModeFor(Vector2 relativeMousePos) private void RunOnSaved() { + // Prevent further saving while text processing still in + SaveButton.Disabled = true; OnSaved?.Invoke(Rope.Collapse(Input.TextRope)); } From 58c8a07d2cba0510deee5655ec0cfc2fd1c66a30 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 2 Oct 2024 12:01:37 +0000 Subject: [PATCH 157/213] 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 b037eba772ede0..e54ffe7c72027c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: deltanedas - changes: - - message: Borgs can no longer unlock the robotics console or other borgs. - type: Tweak - id: 6978 - time: '2024-07-25T03:54:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27888 - author: themias changes: - message: Fixed the ripley control panel not loading @@ -3944,3 +3937,10 @@ id: 7477 time: '2024-10-02T11:44:12.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32597 +- author: FluffMe + changes: + - message: Fixed accidental erase of paper contents by spamming save action. + type: Fix + id: 7478 + time: '2024-10-02T12:00:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32598 From 4ad4fd42b1164d73ffc9d6d47aef8a1e2cb3b796 Mon Sep 17 00:00:00 2001 From: Flareguy <78941145+Flareguy@users.noreply.github.com> Date: Wed, 2 Oct 2024 07:14:44 -0500 Subject: [PATCH 158/213] Steel tile variantization fix (#32596) steel tile variantization fix --- Resources/Textures/Tiles/steel.png | Bin 952 -> 1354 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Textures/Tiles/steel.png b/Resources/Textures/Tiles/steel.png index b7792ef138e88ca6793940d036c5b691d57314e7..e41e7a1804ec882a34898b4c3fe62675bf9a9f03 100644 GIT binary patch delta 920 zcmV;J184lW2g(Yt!2y4RgM*2NhJ=KKczAexe0+a@e~XEUf`Wp8fPjaEg@uHKr@B^i z00009a7bBm000ia000ia0czHX2><{CH%UZ6R9Hv7mW@v2FbsrS4wn5XEcgB|doyEa zV^0>HPC{oPXyVV)Y3ej=J@%JhuWzRkdnPjWmpv01f6u>XO7VZJ{*1U>64>_F3xYHJ zA#lB3Z;XSn?We{gA46pi)SnuE+TWXA)K8uUKDvRo&pR^=RMG&|D5{G6)Oh5jzHL!L z1C>X<=^@{E8K5F3rMjQCBMfuy4B&PX$~bN`Pj%swV@5Xa4+=lIJsO zU_dWLC2jzhSi*nG)4*j67XvpLsCqO|`7n^co`^qG*EdO@K=BWRiGqSAR9alEU#cr=mvj{4+B$g8eqgW%=J-M$^f@Z znASF24HO=Eb#=sZ162?C#)p9%W)E;h8)3$OGd@w^x1TSzq;#Z@lv1CBqIY0hv<# ze17lol7GL8AJ20IYWRem=TGuI{+-VziUs1tc!M#qoaYN4J&}4(c++!U+f+?4CWNyn z3+y~!_}CRO;@ElDb3Q&Kw2fH;*lQzr{^NH%5bJ-?#S5=p9Wy9ddDmNbJI`wY_dWhZ zlCm;je14i4U{~Jt7T(Tt732zqfqtGZ{QR<}pz*G^@OGZ7AWKwW=lR0V2Z|+i-u0Zv zf@y*;O%rzhLs0J%bvn-%e(DVaop(Lwhaf`*XxHGU0VzTS{axG1t!X zh1YyMvjm-YJ?9~aAujo$3Ip>zm4SYqFMPP+3}fY8&v~vGhmzC8<5o9BN?#p)Oc{RgiT2P!%+^E|5`LMhkF6&S~a1UE-;Hs4e8mfAugk@9|C z#~kwezr3Au1onAu_`tiSD2Is+%d)IYG-wX3oZFI1B(7)*q?A%{a|qZdSf*U5Y*^P& zk-n+}FUN-9PGw#MJfZ_LFAeu|8h0Ugtpqn81kMqKR9<>IaB!?rah^*O770v`4$OQL z7;O_Q&p~kWSf!Ca1veiAE|SL(!F}q$!8t@UcsXj7E<7Q2f}2AC#2cEkLL8Plt`K$L z*2(n)Hy?xRGM_TfukYu1EpPeo|AAV60pd Date: Wed, 2 Oct 2024 15:52:14 +0200 Subject: [PATCH 159/213] Disable bioluminescence plant mutations because it breaks the engine (#32561) No fun allowed Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Resources/Prototypes/Hydroponics/randomMutations.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Prototypes/Hydroponics/randomMutations.yml b/Resources/Prototypes/Hydroponics/randomMutations.yml index 88df438ce9d363..77ae2288f3abb3 100644 --- a/Resources/Prototypes/Hydroponics/randomMutations.yml +++ b/Resources/Prototypes/Hydroponics/randomMutations.yml @@ -1,10 +1,11 @@ - type: RandomPlantMutationList id: RandomPlantMutations - mutations: - - name: Bioluminescent - baseOdds: 0.036 - appliesToPlant: false - effect: !type:Glow + mutations: + # disabled until 50 morbillion point lights don't cause the renderer to die + #- name: Bioluminescent + # baseOdds: 0.036 + # appliesToPlant: false + # effect: !type:Glow - name: Sentient baseOdds: 0.0072 appliesToProduce: false From 440742f8f7cebebcf85fdcc17083c28f331a0923 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 2 Oct 2024 13:53:20 +0000 Subject: [PATCH 160/213] 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 e54ffe7c72027c..1e5ad4afbc6f9b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: Fixed the ripley control panel not loading - type: Fix - id: 6979 - time: '2024-07-25T05:23:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30325 - author: Timur2011 changes: - message: Space adders are now butcherable. @@ -3944,3 +3937,11 @@ id: 7478 time: '2024-10-02T12:00:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32598 +- author: PJB3005 + changes: + - message: Removed bioluminescence plant mutations due to it breaking the rendering + engine. + type: Remove + id: 7479 + time: '2024-10-02T13:52:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32561 From 2d644095e342cfb5727765210bafce7c339252c0 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Thu, 3 Oct 2024 02:11:56 +0200 Subject: [PATCH 161/213] Fix borg hands showing up in stripping menu (#32606) * Fix borg hands showing up in stripping menu Borgs can't drop their items anyways, and the amount of hands borgs have causes the UI to just bug out. * Add more checks --- Content.Client/Inventory/StrippableBoundUserInterface.cs | 2 +- Content.Shared/Hands/Components/HandsComponent.cs | 6 ++++++ Content.Shared/Strip/SharedStrippableSystem.cs | 9 +++++++++ .../Entities/Mobs/Cyborgs/base_borg_chassis.yml | 1 + 4 files changed, 17 insertions(+), 1 deletion(-) diff --git a/Content.Client/Inventory/StrippableBoundUserInterface.cs b/Content.Client/Inventory/StrippableBoundUserInterface.cs index 97172f8de8c24f..2ce07758c9641d 100644 --- a/Content.Client/Inventory/StrippableBoundUserInterface.cs +++ b/Content.Client/Inventory/StrippableBoundUserInterface.cs @@ -98,7 +98,7 @@ public void UpdateMenu() } } - if (EntMan.TryGetComponent(Owner, out var handsComp)) + if (EntMan.TryGetComponent(Owner, out var handsComp) && handsComp.CanBeStripped) { // good ol hands shit code. there is a GuiHands comparer that does the same thing... but these are hands // and not gui hands... which are different... diff --git a/Content.Shared/Hands/Components/HandsComponent.cs b/Content.Shared/Hands/Components/HandsComponent.cs index f218455c0bb7dc..b3cb51ae359ec3 100644 --- a/Content.Shared/Hands/Components/HandsComponent.cs +++ b/Content.Shared/Hands/Components/HandsComponent.cs @@ -80,6 +80,12 @@ public sealed partial class HandsComponent : Component [DataField] public DisplacementData? HandDisplacement; + + /// + /// If false, hands cannot be stripped, and they do not show up in the stripping menu. + /// + [DataField] + public bool CanBeStripped = true; } [Serializable, NetSerializable] diff --git a/Content.Shared/Strip/SharedStrippableSystem.cs b/Content.Shared/Strip/SharedStrippableSystem.cs index a68bf755d429e9..e1c3d8ef0d86c8 100644 --- a/Content.Shared/Strip/SharedStrippableSystem.cs +++ b/Content.Shared/Strip/SharedStrippableSystem.cs @@ -118,6 +118,9 @@ private void StripHand( !Resolve(target, ref targetStrippable)) return; + if (!target.Comp.CanBeStripped) + return; + if (!_handsSystem.TryGetHand(target.Owner, handId, out var handSlot)) return; @@ -349,6 +352,9 @@ private bool CanStripInsertHand( !Resolve(target, ref target.Comp)) return false; + if (!target.Comp.CanBeStripped) + return false; + if (user.Comp.ActiveHand == null) return false; @@ -449,6 +455,9 @@ private bool CanStripRemoveHand( if (!Resolve(target, ref target.Comp)) return false; + if (!target.Comp.CanBeStripped) + return false; + if (!_handsSystem.TryGetHand(target, handName, out var handSlot, target.Comp)) { _popupSystem.PopupCursor(Loc.GetString("strippable-component-item-slot-free-message", ("owner", Identity.Name(target, EntityManager, user)))); diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 54bd58af78f364..c65db8fe19fbb4 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -85,6 +85,7 @@ - type: Hands showInHands: false disableExplosionRecursion: true + canBeStripped: false - type: ComplexInteraction - type: IntrinsicRadioReceiver - type: IntrinsicRadioTransmitter From 052d7c4d2e77c1857d742427163ce34428286236 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 3 Oct 2024 00:13:04 +0000 Subject: [PATCH 162/213] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1e5ad4afbc6f9b..6e273a5042b152 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,15 +1,4 @@ Entries: -- author: Timur2011 - changes: - - message: Space adders are now butcherable. - type: Add - - message: Snakes now drop snake meat when butchered. - type: Fix - - message: Snakes now appear lying when in critical state. - type: Tweak - id: 6980 - time: '2024-07-25T10:52:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29629 - author: Plykiya changes: - message: You can now build atmos gas pipes through things like walls. @@ -3945,3 +3934,10 @@ id: 7479 time: '2024-10-02T13:52:14.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32561 +- author: PJB3005 + changes: + - message: Fixed borg "hands" showing up in their stripping menu. + type: Fix + id: 7480 + time: '2024-10-03T00:11:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32606 From c68e5a667ccd2266f4c9f6580a71b1a6361f404b Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Thu, 3 Oct 2024 03:01:58 -0700 Subject: [PATCH 163/213] Various item contraband fixes (#32614) * fixes current contraband issues: xray cannon, hos's trench coats, stinger grenades * yet another contraband addition --- .../Prototypes/Entities/Clothing/OuterClothing/coats.yml | 6 +++--- .../Entities/Clothing/OuterClothing/wintercoats.yml | 4 ++-- .../Entities/Objects/Weapons/Guns/Battery/battery_guns.yml | 2 +- .../Entities/Objects/Weapons/Throwable/clusterbang.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index 973af522216813..21c91faadcc4df 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -90,7 +90,7 @@ damageCoefficient: 0.9 - type: entity - parent: [ClothingOuterArmorHoS, ClothingOuterStorageBase] + parent: [ClothingOuterArmorHoS, ClothingOuterStorageBase, BaseSecurityCommandContraband] id: ClothingOuterCoatHoSTrench name: head of security's armored trenchcoat description: A greatcoat enhanced with a special alloy for some extra protection and style for those with a commanding presence. @@ -376,7 +376,7 @@ sprite: Clothing/OuterClothing/Coats/windbreaker_paramedic.rsi - type: entity - parent: ClothingOuterStorageBase + parent: [ClothingOuterStorageBase, BaseSyndicateContraband] id: ClothingOuterCoatSyndieCap name: syndicate's coat description: The syndicate's coat is made of durable fabric, with gilded patterns. @@ -387,7 +387,7 @@ sprite: Clothing/OuterClothing/Coats/syndicate/coatsyndiecap.rsi - type: entity - parent: ClothingOuterCoatHoSTrench + parent: [BaseSyndicateContraband, ClothingOuterCoatHoSTrench] # BaseSyndicateContraband as first parent so contraband system takes that as priority, yeah I know id: ClothingOuterCoatSyndieCapArmored name: syndicate's armored coat description: The syndicate's armored coat is made of durable fabric, with gilded patterns. diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml index e7f5a59472acd8..4bf1ec87fdbbc0 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml @@ -359,7 +359,7 @@ ########################################################## - type: entity - parent: [ClothingOuterArmorHoS, ClothingOuterWinterCoatToggleable, BaseCommandContraband] + parent: [ClothingOuterArmorHoS, ClothingOuterWinterCoatToggleable, BaseSecurityCommandContraband] id: ClothingOuterWinterHoS name: head of security's armored winter coat description: A sturdy, utilitarian winter coat designed to protect a head of security from any brig-bound threats and hypothermic events. @@ -373,7 +373,7 @@ ########################################################## - type: entity - parent: [ClothingOuterWinterCoatToggleable, BaseCommandContraband] + parent: [ClothingOuterWinterCoatToggleable, BaseSecurityCommandContraband] id: ClothingOuterWinterHoSUnarmored name: head of security's winter coat description: A sturdy coat, a warm coat, but not an armored coat. diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index 2241c4092ac62e..92c952671f2610 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -380,7 +380,7 @@ - type: entity name: x-ray cannon - parent: [BaseWeaponBattery, BaseGunWieldable] + parent: [BaseWeaponBattery, BaseGunWieldable, BaseSecurityContraband] id: WeaponXrayCannon description: An experimental weapon that uses concentrated x-ray energy against its target. components: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml index b4f540ae53d790..b041349d26ee1e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml @@ -116,7 +116,7 @@ cluster-payload: !type:Container - type: entity - parent: [GrenadeBase, BaseSyndicateContraband] + parent: [GrenadeBase, BaseSecurityContraband] id: GrenadeStinger name: stinger grenade description: Nothing to see here, please disperse. From 3e85d28e9d930ad509b22323666d210c70e24c8f Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 3 Oct 2024 10:03:05 +0000 Subject: [PATCH 164/213] 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 6e273a5042b152..d3f37b4012d5eb 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: You can now build atmos gas pipes through things like walls. - type: Tweak - id: 6981 - time: '2024-07-25T23:26:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28707 - author: Ilya246 changes: - message: Nuclear operative reinforcements now come with full nuclear operative @@ -3941,3 +3934,11 @@ id: 7480 time: '2024-10-03T00:11:56.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32606 +- author: ArtisticRoomba + changes: + - message: X-ray cannons and stinger grenades are now security restricted. HoS's + armored trench coat and its variants are security and command restricted. + type: Fix + id: 7481 + time: '2024-10-03T10:01:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32614 From bc76cd876f61839c519bf35bd09bb6a2f23b5c44 Mon Sep 17 00:00:00 2001 From: Vasilis Date: Thu, 3 Oct 2024 12:32:10 +0200 Subject: [PATCH 165/213] Remove sentience from clean and medi bot (#32383) There is no point in these silicon being sentient, they have basically zero role play potential and are not meant to be controlled by players. The janibot can be played somewhat but at that point we have janitor borgs which are way better at this. You can only clean floors and even then it does a terrible job at doing that and only that. A player playing as a janibot will get bored quickly. No amount of RP will save you. A player taking over a mediborg just makes it useless as you cant inject anymore. And again, medical borg. There's no point in adding the feature. It's too much work then its worth when we have borgs. They don't have ghost role info for a reason. They are not meant to be played. --- Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 7d988c6fe95c93..612e49baec0cd7 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -258,8 +258,6 @@ - type: Construction graph: CleanBot node: bot - - type: SentienceTarget - flavorKind: station-event-random-sentience-flavor-mechanical - type: Absorbent pickupAmount: 10 - type: UseDelay @@ -331,8 +329,6 @@ - type: Construction graph: MediBot node: bot - - type: SentienceTarget - flavorKind: station-event-random-sentience-flavor-mechanical - type: Anchorable - type: InteractionPopup interactSuccessString: petting-success-medibot From 568fb235fa3b4f7771b50216022a3dad2a7435bc Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 3 Oct 2024 10:33:16 +0000 Subject: [PATCH 166/213] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d3f37b4012d5eb..7fb7753bdbfba6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,14 +1,4 @@ Entries: -- author: Ilya246 - changes: - - message: Nuclear operative reinforcements now come with full nuclear operative - gear (and a toy carp) at no additional cost. - type: Tweak - - message: Nuclear operative reinforcements now get nuclear operative names. - type: Tweak - id: 6982 - time: '2024-07-25T23:37:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30173 - author: Cojoke-dot changes: - message: Engineering goggles and other similar-looking eyewear now help block @@ -3942,3 +3932,11 @@ id: 7481 time: '2024-10-03T10:01:58.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32614 +- author: Myra + changes: + - message: Medibots and Janibots can no longer become sentient via the sentience + event. + type: Remove + id: 7482 + time: '2024-10-03T10:32:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32383 From a8982b88affc0d6c9b61fb9a59f46fab5614d5c2 Mon Sep 17 00:00:00 2001 From: eoineoineoin Date: Thu, 3 Oct 2024 15:01:01 +0100 Subject: [PATCH 167/213] Allow users to drag-reorder action bar (#32552) * Avoid rebuilding all buttons on action state change Allows for drag events to continue when actions change * Remove excess action buttons --------- Co-authored-by: Eoin Mcloughlin --- .../Systems/Actions/ActionUIController.cs | 4 --- .../Actions/Controls/ActionButtonContainer.cs | 34 +++++++++---------- 2 files changed, 16 insertions(+), 22 deletions(-) diff --git a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs index 1dffeb8d2d4497..a6c1cfc94f81e4 100644 --- a/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs +++ b/Content.Client/UserInterface/Systems/Actions/ActionUIController.cs @@ -398,10 +398,6 @@ private void OnActionsUpdated() { QueueWindowUpdate(); - // TODO ACTIONS allow buttons to persist across state applications - // Then we don't have to interrupt drags any time the buttons get rebuilt. - _menuDragHelper.EndDrag(); - if (_actionsSystem != null) _container?.SetActionData(_actionsSystem, _actions.ToArray()); } diff --git a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButtonContainer.cs b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButtonContainer.cs index 38c08dc47216f3..67b96d03307cfb 100644 --- a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButtonContainer.cs +++ b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButtonContainer.cs @@ -28,14 +28,26 @@ public ActionButton this[int index] get => (ActionButton) GetChild(index); } - private void BuildActionButtons(int count) + public void SetActionData(ActionsSystem system, params EntityUid?[] actionTypes) { + var uniqueCount = Math.Min(system.GetClientActions().Count(), actionTypes.Length + 1); var keys = ContentKeyFunctions.GetHotbarBoundKeys(); - Children.Clear(); - for (var index = 0; index < count; index++) + for (var i = 0; i < uniqueCount; i++) + { + if (i >= ChildCount) + { + AddChild(MakeButton(i)); + } + + if (!actionTypes.TryGetValue(i, out var action)) + action = null; + ((ActionButton) GetChild(i)).UpdateData(action, system); + } + + for (var i = ChildCount - 1; i >= uniqueCount; i--) { - Children.Add(MakeButton(index)); + RemoveChild(GetChild(i)); } ActionButton MakeButton(int index) @@ -55,20 +67,6 @@ ActionButton MakeButton(int index) } } - public void SetActionData(ActionsSystem system, params EntityUid?[] actionTypes) - { - var uniqueCount = Math.Min(system.GetClientActions().Count(), actionTypes.Length + 1); - if (ChildCount != uniqueCount) - BuildActionButtons(uniqueCount); - - for (var i = 0; i < uniqueCount; i++) - { - if (!actionTypes.TryGetValue(i, out var action)) - action = null; - ((ActionButton) GetChild(i)).UpdateData(action, system); - } - } - public void ClearActionData() { foreach (var button in Children) From 1c41d3381f7127a73b6ef51a535838aeb0217858 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 3 Oct 2024 14:02:07 +0000 Subject: [PATCH 168/213] 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 7fb7753bdbfba6..1c6155ae0afd19 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,14 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: Engineering goggles and other similar-looking eyewear now help block - identity. - type: Tweak - - message: Radiation suit's hood now blocks identity. - type: Fix - id: 6983 - time: '2024-07-26T05:26:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30305 - author: Moomoobeef changes: - message: Some radio channel colors have been tweaked in order to be more easily @@ -3940,3 +3930,10 @@ id: 7482 time: '2024-10-03T10:32:11.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32383 +- author: eoineoineoin + changes: + - message: Action bar can be reconfigured again + type: Fix + id: 7483 + time: '2024-10-03T14:01:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32552 From c0d67429ab8e7996dc6b7426cae226d42fde4bf8 Mon Sep 17 00:00:00 2001 From: Southbridge <7013162+southbridge-fur@users.noreply.github.com> Date: Thu, 3 Oct 2024 20:12:59 -0500 Subject: [PATCH 169/213] Box Station - Connected Recycler, rerouted power for Singlo Substation, added law boards to AI upload room (#32608) * Fixed #32443 and #30375 * Fixed duplicate ID issue, and added lawboards to resolve #32581 * Removed Overlord board and added Crewsimov * Removed invalid UserInterface component --- Resources/Maps/box.yml | 230 ++++++++++++++++++++++++++++++++++------- 1 file changed, 191 insertions(+), 39 deletions(-) diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 098a5239409fd0..3adc9767832ae7 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -11579,7 +11579,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -15146.963 + secondsUntilStateChange: -16708.217 state: Opening - type: DeviceLinkSource lastSignals: @@ -14682,6 +14682,13 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-46.5 parent: 8364 +- proto: ArtistCircuitBoard + entities: + - uid: 27915 + components: + - type: Transform + pos: -4.5121183,-14.413322 + parent: 8364 - proto: Ash entities: - uid: 13307 @@ -14689,6 +14696,13 @@ entities: - type: Transform pos: -36.5,20.5 parent: 8364 +- proto: AsimovCircuitBoard + entities: + - uid: 27912 + components: + - type: Transform + pos: 3.2198467,-12.066172 + parent: 8364 - proto: AsteroidRock entities: - uid: 2042 @@ -39720,12 +39734,12 @@ entities: - uid: 3869 components: - type: Transform - pos: 13.5,-74.5 + pos: 15.5,-77.5 parent: 8364 - uid: 4050 components: - type: Transform - pos: 8.5,-74.5 + pos: 10.5,-80.5 parent: 8364 - uid: 4519 components: @@ -39735,7 +39749,7 @@ entities: - uid: 4553 components: - type: Transform - pos: 15.5,-74.5 + pos: 11.5,-80.5 parent: 8364 - uid: 4585 components: @@ -39785,7 +39799,7 @@ entities: - uid: 4973 components: - type: Transform - pos: 7.5,-74.5 + pos: 9.5,-80.5 parent: 8364 - uid: 4988 components: @@ -41467,11 +41481,6 @@ entities: - type: Transform pos: 23.5,23.5 parent: 8364 - - uid: 8185 - components: - - type: Transform - pos: 5.5,-74.5 - parent: 8364 - uid: 8434 components: - type: Transform @@ -42860,7 +42869,7 @@ entities: - uid: 10762 components: - type: Transform - pos: 6.5,-74.5 + pos: 8.5,-80.5 parent: 8364 - uid: 10783 components: @@ -44167,6 +44176,16 @@ entities: - type: Transform pos: -6.5,-50.5 parent: 8364 + - uid: 15804 + components: + - type: Transform + pos: 10.5,-81.5 + parent: 8364 + - uid: 15810 + components: + - type: Transform + pos: -0.5,-79.5 + parent: 8364 - uid: 15815 components: - type: Transform @@ -44965,12 +44984,7 @@ entities: - uid: 17602 components: - type: Transform - pos: 14.5,-74.5 - parent: 8364 - - uid: 17697 - components: - - type: Transform - pos: 12.5,-74.5 + pos: 15.5,-76.5 parent: 8364 - uid: 17698 components: @@ -46147,15 +46161,10 @@ entities: - type: Transform pos: 25.5,-109.5 parent: 8364 - - uid: 23221 - components: - - type: Transform - pos: 11.5,-74.5 - parent: 8364 - uid: 23223 components: - type: Transform - pos: 10.5,-74.5 + pos: 12.5,-80.5 parent: 8364 - uid: 23238 components: @@ -46172,6 +46181,11 @@ entities: - 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 @@ -46805,17 +46819,17 @@ entities: - uid: 26589 components: - type: Transform - pos: 9.5,-81.5 + pos: 14.5,-80.5 parent: 8364 - uid: 26591 components: - type: Transform - pos: 9.5,-80.5 + pos: 15.5,-80.5 parent: 8364 - uid: 26608 components: - type: Transform - pos: 9.5,-79.5 + pos: 15.5,-79.5 parent: 8364 - uid: 26627 components: @@ -47000,7 +47014,7 @@ entities: - uid: 27230 components: - type: Transform - pos: 7.5,-81.5 + pos: 15.5,-78.5 parent: 8364 - uid: 27461 components: @@ -47192,6 +47206,31 @@ entities: - type: Transform pos: 9.5,-68.5 parent: 8364 + - uid: 27905 + components: + - type: Transform + pos: 9.5,-71.5 + parent: 8364 + - uid: 27906 + components: + - type: Transform + pos: 9.5,-72.5 + parent: 8364 + - uid: 27907 + components: + - type: Transform + pos: 9.5,-70.5 + parent: 8364 + - uid: 27908 + components: + - type: Transform + pos: 9.5,-69.5 + parent: 8364 + - uid: 27909 + components: + - type: Transform + pos: 9.5,-73.5 + parent: 8364 - proto: CableHVStack entities: - uid: 1683 @@ -64174,6 +64213,11 @@ entities: - type: Transform pos: 1.5,28.5 parent: 8364 + - uid: 27919 + components: + - type: Transform + pos: 2.7203026,-11.488351 + parent: 8364 - proto: ChairOfficeLight entities: - uid: 5220 @@ -69939,6 +69983,13 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-3.5 parent: 8364 +- proto: CommandmentCircuitBoard + entities: + - uid: 27910 + components: + - type: Transform + pos: -4.600172,-11.893632 + parent: 8364 - proto: CommsComputerCircuitboard entities: - uid: 16499 @@ -70504,65 +70555,87 @@ entities: rot: -1.5707963267948966 rad pos: -60.5,-15.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6227 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-15.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6228 components: - type: Transform pos: -57.5,-15.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6229 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-16.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6230 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-16.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6231 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-16.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6232 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-16.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6233 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-16.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6234 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-17.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6235 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-18.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 6236 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-19.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 7162 components: - type: Transform @@ -70647,6 +70720,8 @@ entities: rot: 3.141592653589793 rad pos: -61.5,-20.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 17202 components: - type: Transform @@ -70724,6 +70799,13 @@ entities: - type: Transform pos: 90.5,-27.5 parent: 8364 +- proto: CorporateCircuitBoard + entities: + - uid: 27914 + components: + - type: Transform + pos: -4.441743,-12.321369 + parent: 8364 - proto: CowToolboxFilled entities: - uid: 13853 @@ -81392,6 +81474,13 @@ entities: - type: Transform pos: -33.51487,5.3832693 parent: 8364 +- proto: DrinkHotCoffee + entities: + - uid: 27918 + components: + - type: Transform + pos: 3.3560345,-11.363264 + parent: 8364 - proto: DrinkMugBlack entities: - uid: 18382 @@ -81446,6 +81535,13 @@ entities: - type: Transform pos: 74.3515,-18.443996 parent: 8364 +- proto: DungeonMasterCircuitBoard + entities: + - uid: 27917 + components: + - type: Transform + pos: 3.5477152,-12.389968 + parent: 8364 - proto: EmergencyLight entities: - uid: 21308 @@ -84322,7 +84418,7 @@ entities: pos: -34.5,-14.5 parent: 8364 - type: Door - secondsUntilStateChange: -9335.5 + secondsUntilStateChange: -10896.755 state: Closing - uid: 15010 components: @@ -84814,6 +84910,9 @@ entities: - type: Transform pos: -4.5,-71.5 parent: 8364 + - type: Door + secondsUntilStateChange: -2644.4858 + state: Closing - proto: Fireplace entities: - uid: 11559 @@ -119851,6 +119950,12 @@ entities: - type: Transform pos: 15.5,-41.5 parent: 8364 + - uid: 21746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-80.5 + parent: 8364 - uid: 21751 components: - type: Transform @@ -120086,6 +120191,12 @@ entities: - type: Transform pos: 17.5,-52.5 parent: 8364 + - uid: 23221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-81.5 + parent: 8364 - uid: 23222 components: - type: Transform @@ -124581,6 +124692,13 @@ entities: - type: Transform pos: 32.5,-6.5 parent: 8364 +- proto: NTDefaultCircuitBoard + entities: + - uid: 27913 + components: + - type: Transform + pos: -4.5442195,-11.268198 + parent: 8364 - proto: NuclearBomb entities: - uid: 12086 @@ -124595,6 +124713,13 @@ entities: - type: Transform pos: 8.5,-27.5 parent: 8364 +- proto: NutimovCircuitBoard + entities: + - uid: 27916 + components: + - type: Transform + pos: 3.6621494,-11.814552 + parent: 8364 - proto: OperatingTable entities: - uid: 2385 @@ -124868,6 +124993,13 @@ entities: - type: Transform pos: 58.5,-11.5 parent: 8364 +- proto: PaladinCircuitBoard + entities: + - uid: 27911 + components: + - type: Transform + pos: -4.443845,-11.67473 + parent: 8364 - proto: Paper entities: - uid: 1779 @@ -137083,6 +137215,12 @@ entities: - type: Transform pos: -3.5,-20.5 parent: 8364 + - uid: 8185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-81.5 + parent: 8364 - uid: 8207 components: - type: Transform @@ -137907,6 +138045,12 @@ entities: - type: Transform pos: 25.5,-75.5 parent: 8364 + - uid: 17697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-80.5 + parent: 8364 - uid: 17787 components: - type: Transform @@ -138440,6 +138584,13 @@ entities: - type: Transform pos: 0.2510581,39.68831 parent: 8364 +- proto: RobocopCircuitBoard + entities: + - uid: 22443 + components: + - type: Transform + pos: 3.4364183,-14.443886 + parent: 8364 - proto: RobustHarvestChemistryBottle entities: - uid: 13505 @@ -143986,6 +144137,13 @@ entities: - type: Transform pos: -20.5,-74.5 parent: 8364 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 27536 + components: + - type: Transform + pos: -4.631007,-12.460042 + parent: 8364 - proto: StationMap entities: - uid: 27690 @@ -151539,8 +151697,12 @@ entities: - Right: Reverse - Middle: Off 6120: + - Right: Reverse - Left: Forward + - Middle: Off + 16588: - Right: Reverse + - Left: Forward - Middle: Off - uid: 16780 components: @@ -161682,16 +161844,6 @@ entities: - type: Transform pos: 10.5,-79.5 parent: 8364 - - uid: 15804 - components: - - type: Transform - pos: 10.5,-81.5 - parent: 8364 - - uid: 15810 - components: - - type: Transform - pos: 10.5,-80.5 - parent: 8364 - uid: 15813 components: - type: Transform @@ -172478,7 +172630,7 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-18.5 parent: 8364 - - uid: 21746 + - uid: 31746 components: - type: Transform rot: 3.141592653589793 rad From 7edd1c6d5247b1d49fcdc40b89cfb2fe34286547 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 4 Oct 2024 01:14:09 +0000 Subject: [PATCH 170/213] Automatic changelog update --- Resources/Changelog/Changelog.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1c6155ae0afd19..57c8e4278a6ec4 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Moomoobeef - changes: - - message: Some radio channel colors have been tweaked in order to be more easily - distinguishable. - type: Tweak - id: 6984 - time: '2024-07-26T06:47:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30133 - author: Errant changes: - message: Replay ghosts now actually spawn on the proper station, take two. @@ -3937,3 +3929,15 @@ id: 7483 time: '2024-10-03T14:01:01.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32552 +- author: Southbridge + changes: + - message: Box station's recycler has been properly connected. + type: Fix + - message: Box station's singlo substation has been rewired to the station-wide + HV network. + type: Tweak + - message: Box station now has AI law boards in the upload room. + type: Add + id: 7484 + time: '2024-10-04T01:12:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32608 From 570c166517ea7cf2bf90666b757ad64ec295817c Mon Sep 17 00:00:00 2001 From: Jezithyr Date: Thu, 3 Oct 2024 18:16:32 -0700 Subject: [PATCH 171/213] Disable Auto-Publish (#32627) disable auto publish --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d08ae1350208f8..77cf56a5123d97 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -5,8 +5,8 @@ concurrency: on: workflow_dispatch: - schedule: - - cron: '0 10 * * *' + # schedule: + # - cron: '0 10 * * *' jobs: build: From 295e63193c91124160458cfd14165d644382b23f Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Thu, 3 Oct 2024 19:55:36 -0700 Subject: [PATCH 172/213] Two additional checks to prevent FTLing stations (#32558) Add two additional checks to prevent FTLing --- .../Systems/ShuttleConsoleSystem.FTL.cs | 3 +++ .../Systems/ShuttleSystem.FasterThanLight.cs | 20 ++++++++++++++----- Resources/Locale/en-US/shuttles/console.ftl | 1 + 3 files changed, 19 insertions(+), 5 deletions(-) diff --git a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.FTL.cs b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.FTL.cs index 02b152429238bb..eac2535e8b2538 100644 --- a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.FTL.cs +++ b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.FTL.cs @@ -124,6 +124,9 @@ private void ConsoleFTL(Entity ent, EntityCoordinates t if (!TryComp(shuttleUid, out ShuttleComponent? shuttleComp)) return; + if (shuttleComp.Enabled == false) + return; + // Check shuttle can even FTL if (!_shuttle.CanFTL(shuttleUid.Value, out var reason)) { diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index ce6a914847f93d..d0aab9aad559b8 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -225,18 +225,28 @@ public void RemoveFTLDestination(EntityUid uid) /// public bool CanFTL(EntityUid shuttleUid, [NotNullWhen(false)] out string? reason) { + // Currently in FTL already if (HasComp(shuttleUid)) { reason = Loc.GetString("shuttle-console-in-ftl"); return false; } - if (FTLMassLimit > 0 && - TryComp(shuttleUid, out PhysicsComponent? shuttlePhysics) && - shuttlePhysics.Mass > FTLMassLimit) + if (TryComp(shuttleUid, out var shuttlePhysics)) { - reason = Loc.GetString("shuttle-console-mass"); - return false; + // Static physics type is set when station anchor is enabled + if (shuttlePhysics.BodyType == BodyType.Static) + { + reason = Loc.GetString("shuttle-console-static"); + return false; + } + + // Too large to FTL + if (FTLMassLimit > 0 && shuttlePhysics.Mass > FTLMassLimit) + { + reason = Loc.GetString("shuttle-console-mass"); + return false; + } } if (HasComp(shuttleUid)) diff --git a/Resources/Locale/en-US/shuttles/console.ftl b/Resources/Locale/en-US/shuttles/console.ftl index 80e61a281266db..6143c995529648 100644 --- a/Resources/Locale/en-US/shuttles/console.ftl +++ b/Resources/Locale/en-US/shuttles/console.ftl @@ -4,6 +4,7 @@ shuttle-pilot-end = Stopped piloting shuttle-console-in-ftl = Currently in FTL shuttle-console-mass = Too large to FTL shuttle-console-prevent = You are unable to pilot this ship +shuttle-console-static = Grid is static # NAV From 423d394af1bb1ce06c2b8e9a918c341e6d1071da Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 4 Oct 2024 02:56:43 +0000 Subject: [PATCH 173/213] 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 57c8e4278a6ec4..e36ea1472ef75e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Errant - changes: - - message: Replay ghosts now actually spawn on the proper station, take two. - type: Fix - id: 6985 - time: '2024-07-26T12:59:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30273 - author: themias changes: - message: Arcade machines are functional again @@ -3941,3 +3934,10 @@ id: 7484 time: '2024-10-04T01:12:59.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32608 +- author: Plykiya + changes: + - message: You can no longer FTL the station. + type: Fix + id: 7485 + time: '2024-10-04T02:55:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32558 From 9e054c1f9dbe7f04f11b4367a3bc7df3a5f18bce Mon Sep 17 00:00:00 2001 From: SoulFN <164462467+SoulFN@users.noreply.github.com> Date: Fri, 4 Oct 2024 13:39:50 +0800 Subject: [PATCH 174/213] Give dragon pull ability (#32568) --- Resources/Prototypes/Entities/Mobs/Player/dragon.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml index 16e3038fcd2f69..c750b568b40f64 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml @@ -150,7 +150,9 @@ tags: - CannotSuicide - DoorBumpOpener - + - type: Puller + needsHands: false + - type: entity parent: BaseMobDragon id: MobDragon From 8b65186bfae66ffe1571236b3dce991f6e2e3fd6 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 4 Oct 2024 05:40:57 +0000 Subject: [PATCH 175/213] 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 e36ea1472ef75e..23f16175875044 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: Arcade machines are functional again - type: Fix - id: 6986 - time: '2024-07-26T17:30:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30376 - author: themias changes: - message: Zombies now get uncuffed upon transformation @@ -3941,3 +3934,10 @@ id: 7485 time: '2024-10-04T02:55:36.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32558 +- author: SoulFN + changes: + - message: Dragon can now pull things using tail. + type: Add + id: 7486 + time: '2024-10-04T05:39:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32568 From 88f060d51a0d36582c0705218d98d21a53789771 Mon Sep 17 00:00:00 2001 From: Saphire Lattice Date: Fri, 4 Oct 2024 14:43:45 +0600 Subject: [PATCH 176/213] Make the explosions throw the container/item they originated from (#32428) Extra fun if it's something that can trigger multiple times --- .../Explosion/EntitySystems/ExplosionSystem.Processing.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs index 5f14858f1fab36..ca2b0dbf9d1956 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs @@ -488,9 +488,12 @@ private void ProcessEntity( && physics.BodyType == BodyType.Dynamic) { var pos = _transformSystem.GetWorldPosition(xform); + var dir = pos - epicenter.Position; + if (dir.IsLengthZero()) + dir = _robustRandom.NextVector2().Normalized(); _throwingSystem.TryThrow( uid, - pos - epicenter.Position, + dir, physics, xform, _projectileQuery, From fbb6f17addf6d32cf100874afe34ceb6f30e6b55 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 4 Oct 2024 08:44:51 +0000 Subject: [PATCH 177/213] 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 23f16175875044..0dea1bd82f57f2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: Zombies now get uncuffed upon transformation - type: Fix - id: 6987 - time: '2024-07-26T18:48:03.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30321 - author: metalgearsloth changes: - message: Fix grid labels getting spammed from VGRoid. @@ -3941,3 +3934,10 @@ id: 7486 time: '2024-10-04T05:39:50.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32568 +- author: SaphireLattice + changes: + - message: Explosives throw a container they are in + type: Tweak + id: 7487 + time: '2024-10-04T08:43:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32428 From 94c8018ff3342e949dd6a605fb96c942069857b9 Mon Sep 17 00:00:00 2001 From: Saphire Lattice Date: Fri, 4 Oct 2024 15:34:48 +0600 Subject: [PATCH 178/213] Change the syndicate charge to start a timer on signal (#32423) * Change the syndicate charge to start a timer on signal * Actually add the component in question * Add default link for TimerStart signal --- .../Components/TimerStartOnSignalComponent.cs | 15 +++++++++++++++ .../EntitySystems/TriggerSystem.Signal.cs | 15 +++++++++++++++ .../en-US/machine-linking/receiver_ports.ftl | 3 +++ Resources/Prototypes/DeviceLinking/sink_ports.yml | 5 +++++ .../Prototypes/DeviceLinking/source_ports.yml | 12 ++++++------ .../Entities/Objects/Weapons/Bombs/plastic.yml | 4 ++-- 6 files changed, 46 insertions(+), 8 deletions(-) create mode 100644 Content.Server/Explosion/Components/TimerStartOnSignalComponent.cs diff --git a/Content.Server/Explosion/Components/TimerStartOnSignalComponent.cs b/Content.Server/Explosion/Components/TimerStartOnSignalComponent.cs new file mode 100644 index 00000000000000..9adc6dab871c46 --- /dev/null +++ b/Content.Server/Explosion/Components/TimerStartOnSignalComponent.cs @@ -0,0 +1,15 @@ +using Content.Shared.DeviceLinking; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Server.Explosion.Components +{ + /// + /// Sends a trigger when signal is received. + /// + [RegisterComponent] + public sealed partial class TimerStartOnSignalComponent : Component + { + [DataField("port", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string Port = "Timer"; + } +} diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.Signal.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.Signal.cs index ffd47f0257b0bb..ce4d201f28964d 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.Signal.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.Signal.cs @@ -11,6 +11,9 @@ private void InitializeSignal() { SubscribeLocalEvent(OnSignalReceived); SubscribeLocalEvent(OnInit); + + SubscribeLocalEvent(OnTimerSignalReceived); + SubscribeLocalEvent(OnTimerSignalInit); } private void OnSignalReceived(EntityUid uid, TriggerOnSignalComponent component, ref SignalReceivedEvent args) @@ -24,5 +27,17 @@ private void OnInit(EntityUid uid, TriggerOnSignalComponent component, Component { _signalSystem.EnsureSinkPorts(uid, component.Port); } + + private void OnTimerSignalReceived(EntityUid uid, TimerStartOnSignalComponent component, ref SignalReceivedEvent args) + { + if (args.Port != component.Port) + return; + + StartTimer(uid, args.Trigger); + } + private void OnTimerSignalInit(EntityUid uid, TimerStartOnSignalComponent component, ComponentInit args) + { + _signalSystem.EnsureSinkPorts(uid, component.Port); + } } } diff --git a/Resources/Locale/en-US/machine-linking/receiver_ports.ftl b/Resources/Locale/en-US/machine-linking/receiver_ports.ftl index a0d2fd3ec4099b..d7a2636e11b67c 100644 --- a/Resources/Locale/en-US/machine-linking/receiver_ports.ftl +++ b/Resources/Locale/en-US/machine-linking/receiver_ports.ftl @@ -28,6 +28,9 @@ signal-port-description-doorbolt = Bolts door when HIGH. signal-port-name-trigger = Trigger signal-port-description-trigger = Triggers some mechanism on the device. +signal-port-name-timer = Timer +signal-port-description-timer = Starts the timer countdown of the device. + signal-port-name-order-sender = Order sender signal-port-description-order-sender = Cargo console order sender diff --git a/Resources/Prototypes/DeviceLinking/sink_ports.yml b/Resources/Prototypes/DeviceLinking/sink_ports.yml index 339b8141751e9a..a5313fcc4e4766 100644 --- a/Resources/Prototypes/DeviceLinking/sink_ports.yml +++ b/Resources/Prototypes/DeviceLinking/sink_ports.yml @@ -48,6 +48,11 @@ name: signal-port-name-trigger description: signal-port-description-trigger +- type: sinkPort + id: Timer + name: signal-port-name-timer + description: signal-port-description-timer + - type: sinkPort id: OrderReceiver name: signal-port-name-order-receiver diff --git a/Resources/Prototypes/DeviceLinking/source_ports.yml b/Resources/Prototypes/DeviceLinking/source_ports.yml index 1988f29e45c8e9..5c327347268493 100644 --- a/Resources/Prototypes/DeviceLinking/source_ports.yml +++ b/Resources/Prototypes/DeviceLinking/source_ports.yml @@ -2,13 +2,13 @@ id: Pressed name: signal-port-name-pressed description: signal-port-description-pressed - defaultLinks: [ Toggle, Trigger ] + defaultLinks: [ Toggle, Trigger, Timer ] - type: sourcePort id: On name: signal-port-name-on-transmitter description: signal-port-description-on-transmitter - defaultLinks: [ On, Open, Forward, Trigger ] + defaultLinks: [ On, Open, Forward, Trigger, Timer ] - type: sourcePort id: Off @@ -25,13 +25,13 @@ id: Left name: signal-port-name-left description: signal-port-description-left - defaultLinks: [ On, Open, Forward, Trigger ] + defaultLinks: [ On, Open, Forward, Trigger, Timer ] - type: sourcePort id: Right name: signal-port-name-right description: signal-port-description-right - defaultLinks: [ On, Open, Reverse, Trigger ] + defaultLinks: [ On, Open, Reverse, Trigger, Timer ] - type: sourcePort id: Middle @@ -76,7 +76,7 @@ id: Timer name: signal-port-name-timer-trigger description: signal-port-description-timer-trigger - defaultLinks: [ AutoClose, On, Open, Forward, Trigger ] + defaultLinks: [ AutoClose, On, Open, Forward, Trigger, Timer ] - type: sourcePort id: Start @@ -94,7 +94,7 @@ id: OutputHigh name: signal-port-name-logic-output-high description: signal-port-description-logic-output-high - defaultLinks: [ On, Open, Forward, Trigger ] + defaultLinks: [ On, Open, Forward, Trigger, Timer ] - type: sourcePort id: OutputLow diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/plastic.yml b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/plastic.yml index 772dd15ab80c21..87b6bb2534113d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/plastic.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/plastic.yml @@ -54,10 +54,10 @@ beepSound: /Audio/Machines/Nuke/general_beep.ogg startOnStick: true canToggleStartOnStick: true - - type: TriggerOnSignal + - type: TimerStartOnSignal - type: DeviceLinkSink ports: - - Trigger + - Timer - type: Explosive # Powerful explosion in a very small radius. Doesn't break underplating. explosionType: DemolitionCharge totalIntensity: 60 From ec4acdebbf11cf2895e9a8e0ceca19d9bede168c Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 4 Oct 2024 09:35:55 +0000 Subject: [PATCH 179/213] 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 0dea1bd82f57f2..092e71e0ec8711 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix grid labels getting spammed from VGRoid. - type: Fix - id: 6988 - time: '2024-07-27T01:54:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29946 - author: GoldenCan changes: - message: Added a Security Clown Mask which is obtainable by hacking a SecDrobe. @@ -3941,3 +3934,11 @@ id: 7487 time: '2024-10-04T08:43:45.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32428 +- author: SaphireLattice + changes: + - message: Syndicate C4 now starts a countdown on signal, rather than exploding + instantly. + type: Tweak + id: 7488 + time: '2024-10-04T09:34:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32423 From 644d7ab682f65f77b4d9a53d2b2bbb445be82016 Mon Sep 17 00:00:00 2001 From: NotSoDamn <75203942+NotSoDana@users.noreply.github.com> Date: Fri, 4 Oct 2024 23:13:30 +0300 Subject: [PATCH 180/213] `BaseAdvancedPen` migration (#32638) * Update migration.yml * Update Resources/migration.yml Co-authored-by: lzk <124214523+lzk228@users.noreply.github.com> --------- Co-authored-by: lzk <124214523+lzk228@users.noreply.github.com> --- Resources/migration.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Resources/migration.yml b/Resources/migration.yml index 352c9a4454cf21..3ed618dcfd70a1 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -437,3 +437,6 @@ HatBase: null # 2024-09-19 BlueprintFlare: null + +# 2024-10-04 +BaseAdvancedPen: Pen From db64ad9c4d3be23137b4575882cbcc8f151c4dbd Mon Sep 17 00:00:00 2001 From: TakoDragon <69509841+BackeTako@users.noreply.github.com> Date: Sat, 5 Oct 2024 01:18:46 +0200 Subject: [PATCH 181/213] Marathon Removed double walls and a wrong cable (#32603) removed double walls and cable fucks --- Resources/Maps/marathon.yml | 65 ------------------------------------- 1 file changed, 65 deletions(-) diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index fa6faec6478926..f2109b05be9118 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -28118,11 +28118,6 @@ entities: - type: Transform pos: -56.5,-26.5 parent: 30 - - uid: 19145 - components: - - type: Transform - pos: -69.5,-40.5 - parent: 30 - uid: 19146 components: - type: Transform @@ -28138,11 +28133,6 @@ entities: - type: Transform pos: -68.5,-29.5 parent: 30 - - uid: 19150 - components: - - type: Transform - pos: -73.5,-41.5 - parent: 30 - uid: 19151 components: - type: Transform @@ -138472,56 +138462,6 @@ entities: - type: Transform pos: -70.5,-62.5 parent: 30 - - uid: 17774 - components: - - type: Transform - pos: -61.5,-66.5 - parent: 30 - - uid: 17777 - components: - - type: Transform - pos: -71.5,-64.5 - parent: 30 - - uid: 17778 - components: - - type: Transform - pos: -70.5,-64.5 - parent: 30 - - uid: 17779 - components: - - type: Transform - pos: -69.5,-64.5 - parent: 30 - - uid: 17780 - components: - - type: Transform - pos: -68.5,-64.5 - parent: 30 - - uid: 17781 - components: - - type: Transform - pos: -68.5,-65.5 - parent: 30 - - uid: 17782 - components: - - type: Transform - pos: -68.5,-66.5 - parent: 30 - - uid: 17783 - components: - - type: Transform - pos: -67.5,-66.5 - parent: 30 - - uid: 17784 - components: - - type: Transform - pos: -66.5,-66.5 - parent: 30 - - uid: 17786 - components: - - type: Transform - pos: -65.5,-66.5 - parent: 30 - uid: 17787 components: - type: Transform @@ -138602,11 +138542,6 @@ entities: - type: Transform pos: -54.5,-61.5 parent: 30 - - uid: 18082 - components: - - type: Transform - pos: -61.5,-67.5 - parent: 30 - uid: 18087 components: - type: Transform From 2287df13bdc6d754fcac70c29d6fd06890136d83 Mon Sep 17 00:00:00 2001 From: Spessmann <156740760+Spessmann@users.noreply.github.com> Date: Sat, 5 Oct 2024 11:08:39 -0700 Subject: [PATCH 182/213] Cog engineering DIY update (#32651) engineers forced to do work, sobbing --- Resources/Maps/cog.yml | 17495 +++++++++++++++------------------------ 1 file changed, 6593 insertions(+), 10902 deletions(-) diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index 7bc328d7982ac7..882aab9eb1f2f4 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -80,43 +80,43 @@ entities: chunks: 0,0: ind: 0,0 - tiles: EgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: EgAAAAAAEgAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,0: ind: -1,0 - tiles: YAAAAAABYAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAgQAAAAAAIAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAgQAAAAAAIAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADEgAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACEgAAAAAAgQAAAAAAIAAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACEgAAAAAAgQAAAAAAIAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: YAAAAAAAYAAAAAACgQAAAAAAIwAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAYAAAAAADYAAAAAADgQAAAAAAIwAAAAAAIwAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAOQAAAAAAOQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAABYAAAAAADgQAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABIAAAAAAAUQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUQAAAAAAYAAAAAAAYAAAAAADIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUQAAAAAAYAAAAAACYAAAAAACIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAA + tiles: YAAAAAABYAAAAAAAgQAAAAAAIwAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAOQAAAAAAOQAAAAAAYAAAAAACYAAAAAACgQAAAAAAIwAAAAAAIwAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACOQAAAAAAOQAAAAAAYAAAAAACYAAAAAACgQAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAABIAAAAAACYAAAAAADYAAAAAACgQAAAAAAJAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAACIAAAAAACYAAAAAABYAAAAAADgQAAAAAAIwAAAAAEgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAACIAAAAAADYAAAAAABYAAAAAAAgQAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADIAAAAAABUQAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUQAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADUQAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAAC version: 6 0,-1: ind: 0,-1 - tiles: OQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAOQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: OQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAOQAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: YAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABBwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAABwAAAAAACwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAABwAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADCwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAD + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADCwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAABAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAADAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAD + tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABSgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACAAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAYAAAAAACYAAAAAAB version: 6 -2,-2: ind: -2,-2 - tiles: gQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACcwAAAAACcwAAAAACcwAAAAACcwAAAAADcwAAAAABgQAAAAAACwAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAABYAAAAAADYAAAAAACUQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAABcwAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAB + tiles: gQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAcwAAAAADcwAAAAACcwAAAAABgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAAAcwAAAAACcwAAAAABcwAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAACcwAAAAAAgQAAAAAACwAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAAAYAAAAAADYAAAAAAAUQAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAD version: 6 -2,0: ind: -2,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACOQAAAAAAOQAAAAAAOQAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADOQAAAAAAIAAAAAABOQAAAAAAFgAAAAABFgAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAABOQAAAAAAOQAAAAAAOQAAAAAAIAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAADIAAAAAABIAAAAAADIAAAAAABIAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAACYAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAACYAAAAAADgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAB + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAACIAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAACgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABOQAAAAAAOQAAAAAAOQAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABOQAAAAAAIAAAAAADOQAAAAAAFgAAAAABFgAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACOQAAAAAAOQAAAAAAOQAAAAAAIAAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAACgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -3,-1: ind: -3,-1 @@ -124,87 +124,87 @@ entities: version: 6 -3,-2: ind: -3,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAADgQAAAAAAcwAAAAACcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAACgQAAAAAAcwAAAAAAcwAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAACcwAAAAACcwAAAAABcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACcwAAAAAAcwAAAAACcwAAAAACcwAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAACgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAABIAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAABgQAAAAAAcwAAAAAAcwAAAAACgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAADcwAAAAABYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAADgQAAAAAAcwAAAAACcwAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAABcwAAAAACcwAAAAAAcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAcwAAAAACcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAADgQAAAAAAYAAAAAACYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: cwAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAUQAAAAAAcwAAAAAAUQAAAAAAcwAAAAABcwAAAAACcwAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAACgQAAAAAAcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAADcwAAAAABcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAACcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAACcwAAAAACcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAACcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADgQAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADgQAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAABgQAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAADgQAAAAAAcwAAAAADcwAAAAAB + tiles: cwAAAAACcwAAAAAAcwAAAAADcwAAAAACcwAAAAABUQAAAAACcwAAAAAAUQAAAAACcwAAAAAAcwAAAAABcwAAAAACgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAACcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAABcwAAAAABcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAADgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAACcwAAAAABcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAADgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAABgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAACgQAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAACgQAAAAAAcwAAAAABcwAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: YAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADcwAAAAAAcwAAAAACgQAAAAAAcwAAAAADcwAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACcwAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAABgQAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAADcwAAAAACcwAAAAADgQAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAADCwAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAABgQAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAABcwAAAAABgQAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAACcwAAAAABcwAAAAAAcwAAAAADgQAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAACcwAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAABgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAADcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAcwAAAAABcwAAAAADYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAACYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAABYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAACcwAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAADcwAAAAACgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAADgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAcwAAAAACcwAAAAAD + tiles: YAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAcwAAAAABcwAAAAACcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACcwAAAAADcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAAACwAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAADcwAAAAAAcwAAAAABgQAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAAAcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAACcwAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAAAcwAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAADfQAAAAACfQAAAAABfQAAAAACcwAAAAABcwAAAAACYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAACfQAAAAAAfQAAAAADcwAAAAABcwAAAAABYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAACcwAAAAABcwAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAAAfQAAAAACfQAAAAACcwAAAAABcwAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAfQAAAAADfQAAAAABcwAAAAABcwAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: gQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAACcwAAAAADcwAAAAADgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADcwAAAAACcwAAAAABcwAAAAADcwAAAAABcwAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACcwAAAAACcwAAAAACcwAAAAACcwAAAAACcwAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAACcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + tiles: gQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAAAcwAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAADcwAAAAACgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACcwAAAAABcwAAAAAAcwAAAAADcwAAAAABcwAAAAADgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAADcwAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAcAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAcAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAcAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAcAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAIQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAADwAAAAAAHwAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIQAAAAAADwAAAAAAgAAAAAAADwAAAAAADwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAHwAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAYAAAAAAAHwAAAAAAHwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIQAAAAAAgAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAgQAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAADwAAAAAAIQAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAADwAAAAAAgAAAAAAADwAAAAAAHwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAIQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAADwAAAAAAHwAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAIQAAAAAADwAAAAAAgAAAAAAADwAAAAAADwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABHwAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAYAAAAAAAHwAAAAAAHwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIQAAAAAAgAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAHwAAAAAFHwAAAAAAgQAAAAAADwAAAAAAAAAAAAAADwAAAAAADwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAADwAAAAAAIQAAAAAADwAAAAAADwAAAAAADwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAADwAAAAAAgAAAAAAADwAAAAAAHwAAAAAAgAAAAAAADwAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAFDwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAAIgAAAAAAgQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAIgAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAAIgAAAAAAgQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAIgAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIgAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAcwAAAAAAcwAAAAADcwAAAAACIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAAAgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAACfQAAAAAAgQAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADCwAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAADcwAAAAACcwAAAAAAcwAAAAABcwAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAcwAAAAACcwAAAAADcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAIgAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAYAAAAAADIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAcwAAAAABcwAAAAADcwAAAAAAIgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAACfQAAAAACgQAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAACfQAAAAACgQAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAABcwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACCwAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAADcwAAAAADcwAAAAABcwAAAAABcwAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAD version: 6 -1,-4: ind: -1,-4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABcwAAAAAAcwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASgAAAAAASgAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcwAAAAABcwAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAADAAAAAABgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAADAAAAAACSgAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcwAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAADAAAAAACSgAAAAAADAAAAAAADAAAAAACgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcwAAAAACcwAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcwAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAASgAAAAAADAAAAAADSgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAABcwAAAAACcwAAAAAAcwAAAAADgQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAAAcwAAAAACgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAABgQAAAAAAcwAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAUQAAAAAAcwAAAAAAUQAAAAAAcwAAAAACcwAAAAAAcwAAAAABgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAABgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADUQAAAAAAcwAAAAAAUQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABUQAAAAAAcwAAAAAAUQAAAAAAcwAAAAADcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAcwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADSgAAAAAASgAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAABcwAAAAAAcwAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAADAAAAAACgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAADAAAAAADSgAAAAAAgQAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAABcwAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAADAAAAAABSgAAAAAADAAAAAAADAAAAAABgQAAAAAADAAAAAACDAAAAAABDAAAAAADDAAAAAADcwAAAAACcwAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAADAAAAAADDAAAAAABDAAAAAABDAAAAAAAcwAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAASgAAAAAADAAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAAAcwAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADgQAAAAAAcwAAAAADcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAACgQAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAACgQAAAAAAcwAAAAABcwAAAAADcwAAAAADUQAAAAABcwAAAAAAUQAAAAACcwAAAAADcwAAAAAAcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAACUQAAAAAAcwAAAAACUQAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADUQAAAAABcwAAAAADUQAAAAABcwAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJgAAAAAACQAAAAAACQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJgAAAAAAJQAAAAAACQAAAAAACQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAcwAAAAADcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAADCQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJgAAAAADCQAAAAADCQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJgAAAAAAJQAAAAADCQAAAAADCQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAcwAAAAACcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAcwAAAAACcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: cwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAcwAAAAABcwAAAAAAcwAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAcwAAAAABcwAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAcwAAAAADcwAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAADcwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAcwAAAAABgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABcwAAAAADcwAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAASgAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAASgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAASgAAAAAAcwAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAASgAAAAAA + tiles: cwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAcwAAAAACcwAAAAACcwAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAADgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAcwAAAAACcwAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAADIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAABcwAAAAACcwAAAAADIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAcwAAAAAAcwAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACcwAAAAABcwAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAABgQAAAAAASgAAAAAAcwAAAAACgQAAAAAAcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAADgQAAAAAASgAAAAAAcwAAAAACcwAAAAABcwAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAADgQAAAAAASgAAAAAAcwAAAAABgQAAAAAAcwAAAAABcwAAAAABgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAASgAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: SgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAAD + tiles: SgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAD version: 6 1,-1: ind: 1,-1 - tiles: YAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAA + tiles: YAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAB version: 6 1,0: ind: 1,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAYAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgAAAAAAAYAAAAAABgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAABgQAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: YAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAgAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAAwAAAAAAAgAAAAAABwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAACwAAAAAAEgAAAAAACwAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACBwAAAAAAYAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAABYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAgAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABCwAAAAAACwAAAAAACwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAAwAAAAABAgAAAAABBwAAAAAAgQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABCwAAAAAAEgAAAAAACwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADBwAAAAAAYAAAAAACgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACCwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACYAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADYAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABgQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADAgAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACBwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAA version: 6 2,0: ind: 2,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAwAAAAAABwAAAAAABwAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAABBwAAAAAAYAAAAAABYAAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAAgAAAAAAAwAAAAAAgQAAAAAAAgAAAAABBwAAAAAAAgAAAAABBwAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAABwAAAAAAAwAAAAAAgQAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAYAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAAAAwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAwAAAAACBwAAAAAABwAAAAAAAwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAIAAAAAACIAAAAAABgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAgAAAAABgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAABgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACCwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAACBwAAAAAAYAAAAAABgQAAAAAAYAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAAgAAAAABAwAAAAABgQAAAAAAAgAAAAABBwAAAAAAAgAAAAAABwAAAAAABwAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAABwAAAAAAAwAAAAACgQAAAAAABwAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAACYAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAABAwAAAAAEgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABDgAAAAAADgAAAAAADgAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACDgAAAAAAUQAAAAAADgAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADDgAAAAAADgAAAAAADgAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAgAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAgAAAAAABwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAAwAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACBwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADgQAAAAAABwAAAAAAgQAAAAAAAgAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAABgQAAAAAABwAAAAAAYAAAAAADYAAAAAACAwAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAAwAAAAAABwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAABwAAAAAAYAAAAAAAAgAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAC + tiles: gQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAABDgAAAAACDgAAAAAADgAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABDgAAAAADUQAAAAABDgAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAABDgAAAAACDgAAAAADDgAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADAgAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAgAAAAABBwAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAwAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAABwAAAAAAgQAAAAAAAgAAAAABgQAAAAAACwAAAAAACwAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADgQAAAAAABwAAAAAAYAAAAAACYAAAAAACAwAAAAACgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAABwAAAAAABwAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAAwAAAAADBwAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAABwAAAAAAYAAAAAAAAgAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAYAAAAAACYAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAAAgQAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAB version: 6 2,-3: ind: 2,-3 - tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAADCwAAAAAAYAAAAAADYAAAAAABgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAA + tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAABYAAAAAADgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUQAAAAABCwAAAAAAYAAAAAAAYAAAAAABgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAA version: 6 2,-4: ind: 2,-4 @@ -212,11 +212,11 @@ entities: version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-4: ind: 4,-4 @@ -224,103 +224,103 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAIAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAIAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAIAAAAAADHgAAAAACHgAAAAABIAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAADHgAAAAAAHgAAAAAAIAAAAAABYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: YAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfQAAAAAAfQAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAfQAAAAADfQAAAAACgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAUQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAUQAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAA + tiles: YAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAABYAAAAAACYAAAAAAAfQAAAAABfQAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfQAAAAACfQAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAAAYAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAACUQAAAAAAIAAAAAABYAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAACIAAAAAABUQAAAAADIAAAAAABIAAAAAADYAAAAAABIAAAAAACIAAAAAAAIAAAAAADIAAAAAABIAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAACIAAAAAACIAAAAAAAIAAAAAACIAAAAAABYAAAAAADgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACgQAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAC version: 6 5,-3: ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: YAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA + tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAEAAAAAAAYAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAA + tiles: gQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAAGfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEAAAAAABfQAAAAADYAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEAAAAAABfQAAAAABEAAAAAADYAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAfQAAAAABgQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAA version: 6 0,1: ind: 0,1 - tiles: gQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAADDAAAAAACDAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAADDAAAAAAADAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAACDAAAAAADDAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAABCAAAAAACCAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAACCAAAAAAACAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAAADAAAAAADDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAABDAAAAAACDAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAACDAAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA + tiles: gQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAADDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAADDAAAAAADDAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAAADAAAAAABDAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAABCAAAAAAACAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAACCAAAAAADCAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACAAAAAAADAAAAAACDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAACDAAAAAADDAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAADAAAAAADDAAAAAAADAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: gAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADYAAAAAADYAAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAUQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAADgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACYAAAAAABYAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADUQAAAAACUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAADUQAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,1: ind: -2,1 - tiles: YAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAYAAAAAADYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAYAAAAAABYAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAYAAAAAACYAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACUQAAAAAAUQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADUQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAD + tiles: YAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAABJwAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAACJwAAAAAEgQAAAAAAYAAAAAABYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAAAJwAAAAAAgQAAAAAAYAAAAAABYAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAABJwAAAAAFgQAAAAAAYAAAAAADYAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADJwAAAAAEJwAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJwAAAAACJwAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAADUQAAAAADUQAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABUQAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAC version: 6 -1,1: ind: -1,1 - tiles: YAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAACDAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABDAAAAAAADAAAAAACDAAAAAABDAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAABCAAAAAABCAAAAAACCAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABDAAAAAAACAAAAAAACAAAAAABCAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAAADAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAABDAAAAAADDAAAAAADDAAAAAAA + tiles: YAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAUgAAAAAAYAAAAAAAYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAABDAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAACCAAAAAAACAAAAAAACAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADCAAAAAACCAAAAAADCAAAAAADCAAAAAACCAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACCAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAAACAAAAAABCAAAAAAACAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAADDAAAAAABDAAAAAACDAAAAAADDAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAADDAAAAAABDAAAAAACDAAAAAAD version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAADYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAADYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAYAAAAAACYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAACIAAAAAADYAAAAAABYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAADYAAAAAAAYAAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAYAAAAAADYAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHAAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAACYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAABYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAADYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAAAYAAAAAACYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAADYAAAAAADYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAABYAAAAAACYAAAAAAC version: 6 -3,2: ind: -3,2 - tiles: YAAAAAADYAAAAAACgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAQgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQgAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAA + tiles: YAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAfQAAAAABfQAAAAADfQAAAAACfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAACQgAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAADQgAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAA version: 6 -2,2: ind: -2,2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADEwAAAAACEwAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABEwAAAAADEwAAAAAAEwAAAAAAEwAAAAADEwAAAAAAEwAAAAACYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACEwAAAAACEwAAAAADEwAAAAAAEwAAAAADEwAAAAAAEwAAAAABgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAADEwAAAAAAEwAAAAACEwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAEwAAAAADEwAAAAABEwAAAAAAEwAAAAACEwAAAAACgQAAAAAAgQAAAAAAfQAAAAAD + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABEwAAAAACEwAAAAADEwAAAAAAEwAAAAABEwAAAAAAEwAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACEwAAAAADEwAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADEwAAAAABEwAAAAADEwAAAAACEwAAAAABEwAAAAABEwAAAAACgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAEwAAAAADEwAAAAAAEwAAAAAAEwAAAAABEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAABgQAAAAAAgQAAAAAAfQAAAAAC version: 6 -1,2: ind: -1,2 - tiles: YAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,2: ind: 0,2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAADcwAAAAABcwAAAAACcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAABcwAAAAACcwAAAAABcwAAAAAAcwAAAAACgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAcwAAAAABcwAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAACFAAAAAAAFAAAAAABcwAAAAABcwAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAACgQAAAAAAcwAAAAAAcwAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAADcwAAAAADcwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAcwAAAAABcwAAAAACFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAADFAAAAAABcwAAAAABcwAAAAADgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAcwAAAAACcwAAAAACFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAADFAAAAAADcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAACcwAAAAACcwAAAAAAcwAAAAADcwAAAAACcwAAAAACcwAAAAAAcwAAAAABcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAAAFwAAAAADFwAAAAAAFwAAAAADFwAAAAABFwAAAAAC + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAfQAAAAACfQAAAAAAfQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAcwAAAAACcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAADcwAAAAACcwAAAAACcwAAAAACcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAADcwAAAAAAcwAAAAACgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAcwAAAAADcwAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABcwAAAAAAcwAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAACgQAAAAAAcwAAAAABcwAAAAACFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACcwAAAAAAcwAAAAADgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAcwAAAAADcwAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAADcwAAAAAAcwAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAcwAAAAACcwAAAAACFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACcwAAAAADcwAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAACcwAAAAADcwAAAAABcwAAAAADcwAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABFwAAAAAAFwAAAAAAFwAAAAACFwAAAAABFwAAAAAA version: 6 2,1: ind: 2,1 - tiles: YAAAAAAABwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADCwAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAAABwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACAwAAAAAAYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACBwAAAAAAYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAABwAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAABgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAgQAAAAAAIAAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAACgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAAAIAAAAAACIAAAAAACQgAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAA + tiles: YAAAAAACBwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABCwAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAABwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAAwAAAAAAYAAAAAABgQAAAAAACwAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABBwAAAAAAYAAAAAABgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAABwAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAAwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADgQAAAAAAgQAAAAAAQgAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAABgQAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAIAAAAAABQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADgQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADQgAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAA version: 6 3,0: ind: 3,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAEgAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACgQAAAAAAIAAAAAAAIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADgQAAAAAAIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAABYAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAACIAAAAAABgQAAAAAAYAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACYAAAAAACgQAAAAAAEgAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAACIAAAAAAAgQAAAAAAYAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAACYAAAAAABgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABYAAAAAADYAAAAAABAgAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAwAAAAACBwAAAAAAAgAAAAABAgAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABYAAAAAADYAAAAAADAgAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAwAAAAACBwAAAAAAAgAAAAAAAgAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: gQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAABgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAC + tiles: gQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACIAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAACIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAAA version: 6 2,2: ind: 2,2 - tiles: QgAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAAC + tiles: QgAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAQgAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAC version: 6 1,2: ind: 1,2 - tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAACcwAAAAADcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAACcwAAAAADcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAADgQAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADYAAAAAACEwAAAAACEwAAAAACEwAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAAAEwAAAAABEwAAAAABEwAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAABEwAAAAADEwAAAAACEwAAAAACEwAAAAAAEwAAAAADEwAAAAADEwAAAAACEwAAAAABEwAAAAADEwAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAAEwAAAAABEwAAAAAAEwAAAAACEwAAAAABEwAAAAAAEwAAAAADEwAAAAABEwAAAAADEwAAAAABEwAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADgQAAAAAAEwAAAAAAEwAAAAADEwAAAAABEwAAAAACIAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAEwAAAAAAEwAAAAADEwAAAAACEwAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAEwAAAAABEwAAAAAAEwAAAAAAEwAAAAABIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAD + tiles: AAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAABcwAAAAACcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAABcwAAAAADcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAAAcwAAAAACcwAAAAABcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAAAcwAAAAABgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAcwAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABYAAAAAABEwAAAAAAEwAAAAAAEwAAAAADEwAAAAACEwAAAAACEwAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAACEwAAAAACEwAAAAADEwAAAAADEwAAAAACEwAAAAAAEwAAAAADEwAAAAADEwAAAAACEwAAAAADEwAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAABEwAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAABEwAAAAADIAAAAAADIAAAAAADIAAAAAADgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAEwAAAAACEwAAAAACEwAAAAAAEwAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAA version: 6 4,2: ind: 4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAGwAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAGwAAAAAAYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAIAAAAAAAgQAAAAAASgAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAGwAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAGwAAAAAAYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAIAAAAAABgQAAAAAASgAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAA version: 6 4,3: ind: 4,3 - tiles: YAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAYAAAAAADYAAAAAABYAAAAAAACwAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAABgQAAAAAASgAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAADYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAYAAAAAACYAAAAAAAYAAAAAADCwAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAADgQAAAAAASgAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAADYAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,2: ind: 5,2 @@ -332,35 +332,35 @@ entities: version: 6 3,3: ind: 3,3 - tiles: YAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAADAAAAAACDAAAAAADDAAAAAAAfQAAAAAAfQAAAAABCwAAAAAADAAAAAABDAAAAAAADAAAAAAADAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAABDAAAAAAAfQAAAAADfQAAAAADfQAAAAACDAAAAAAADAAAAAACDAAAAAACCAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAACAAAAAADCAAAAAABCAAAAAADfQAAAAAAfQAAAAACfQAAAAADCAAAAAADCAAAAAAACAAAAAAACAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAAACAAAAAACCAAAAAACCAAAAAABfQAAAAAAfQAAAAABfQAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABgQAAAAAADAAAAAABDAAAAAAADAAAAAABfQAAAAAAfQAAAAAAfQAAAAAADAAAAAABDAAAAAAADAAAAAAADAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAADAAAAAABDAAAAAADDAAAAAADfQAAAAAAfQAAAAAAfQAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADgQAAAAAADAAAAAACDAAAAAABDAAAAAACfQAAAAAAfQAAAAAAfQAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAADAAAAAACDAAAAAABDAAAAAADfQAAAAACfQAAAAADCwAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAADAAAAAAADAAAAAACDAAAAAADfQAAAAACfQAAAAABfQAAAAAADAAAAAABDAAAAAAADAAAAAADCAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADCAAAAAAACAAAAAABCAAAAAADfQAAAAADfQAAAAACfQAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAABCAAAAAACCAAAAAAACAAAAAADfQAAAAADfQAAAAACfQAAAAADCAAAAAADCAAAAAABCAAAAAADCAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAADAAAAAAADAAAAAACDAAAAAAAfQAAAAABfQAAAAADfQAAAAABDAAAAAADDAAAAAACDAAAAAADDAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAADAAAAAACDAAAAAACDAAAAAABfQAAAAAAfQAAAAABfQAAAAADDAAAAAADDAAAAAACDAAAAAADDAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABgQAAAAAADAAAAAAADAAAAAACDAAAAAABfQAAAAAAfQAAAAACfQAAAAABDAAAAAACDAAAAAABDAAAAAACDAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: gQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACQgAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACFQAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACFQAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAFQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAFQAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAFQAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAAAQgAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAADQgAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACFQAAAAACgQAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAAAgQAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAFQAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADFQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACFQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAADcAAAAAAAgQAAAAAAFQAAAAACgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAABDQAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAABgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAABcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAADgQAAAAAA version: 6 1,3: ind: 1,3 - tiles: gQAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAADIAAAAAABIAAAAAAAEwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAADEwAAAAACEwAAAAADEwAAAAACEwAAAAACEwAAAAADEwAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADEwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAADEwAAAAABEwAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAADEwAAAAABEwAAAAACEwAAAAABEwAAAAACEwAAAAAAEwAAAAACIAAAAAADIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAADEwAAAAADEwAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAACgQAAAAAAEwAAAAAAEwAAAAACEwAAAAAAEwAAAAADEwAAAAABEwAAAAADEwAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAFQAAAAABFQAAAAADFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAFQAAAAABFQAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAACwAAAAAAFQAAAAACFQAAAAACFQAAAAABFQAAAAACFQAAAAAAFQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAFQAAAAAAFQAAAAABFQAAAAACFQAAAAABFQAAAAACFQAAAAADFQAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAACFQAAAAADFQAAAAABFQAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAFQAAAAACFQAAAAAAFQAAAAACFQAAAAADFQAAAAABFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAFQAAAAACFQAAAAACFQAAAAADFQAAAAADFQAAAAABFQAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA + tiles: gQAAAAAAEwAAAAADEwAAAAADEwAAAAADEwAAAAAAIAAAAAACIAAAAAAAEwAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAACEwAAAAACEwAAAAADEwAAAAADEwAAAAABEwAAAAADEwAAAAADEwAAAAABIAAAAAADIAAAAAAAIAAAAAACgQAAAAAAfQAAAAADfQAAAAACQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAACEwAAAAAAEwAAAAACEwAAAAABEwAAAAAAEwAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAAAEwAAAAADEwAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAADEwAAAAACEwAAAAAAEwAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAACgQAAAAAAIAAAAAADIAAAAAACIAAAAAACFQAAAAAAFQAAAAACFQAAAAACFQAAAAADgQAAAAAAEwAAAAACEwAAAAACEwAAAAADEwAAAAADEwAAAAABEwAAAAACEwAAAAACgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAFQAAAAAAFQAAAAACFQAAAAABFQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAADFQAAAAAAFQAAAAAAFQAAAAABFQAAAAACFQAAAAABFQAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAACwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAABFQAAAAABFQAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAACgQAAAAAAFQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAAAFQAAAAABFQAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAFQAAAAAAFQAAAAABFQAAAAABFQAAAAACFQAAAAADFQAAAAABFQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAFQAAAAABFQAAAAAAFQAAAAAAFQAAAAABFQAAAAAAFQAAAAACFQAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAFQAAAAAAFQAAAAACFQAAAAABFQAAAAADFQAAAAADFQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA version: 6 0,3: ind: 0,3 - tiles: EQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAADfQAAAAAAFwAAAAACFwAAAAAAFwAAAAADFwAAAAADFwAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAFwAAAAADFwAAAAABFwAAAAABFwAAAAABFwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAACFwAAAAABFwAAAAAAFwAAAAADFwAAAAADFwAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAAAfQAAAAAAfQAAAAABFwAAAAAAFwAAAAABFwAAAAABFwAAAAADFwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAACfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAABfQAAAAADfQAAAAAAfQAAAAADfQAAAAADfQAAAAAAfQAAAAABcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAABcAAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGAAAAAAAGgAAAAAAgQAAAAAAfQAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAABcAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfQAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAGgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAADcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAACwAAAAAAgQAAAAAAcAAAAAAADQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: EQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAABfQAAAAACFwAAAAAAFwAAAAACFwAAAAAAFwAAAAABFwAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAACFwAAAAACFwAAAAABFwAAAAACFwAAAAAAFwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAADFwAAAAABFwAAAAADFwAAAAAAFwAAAAACFwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAABFwAAAAADFwAAAAADFwAAAAACFwAAAAADFwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAABfQAAAAACfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAADfQAAAAADfQAAAAADcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAABfQAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGAAAAAAAGgAAAAAAgQAAAAAAfQAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAABcAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAGQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfQAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAGgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAACfQAAAAAAfQAAAAABfQAAAAABfQAAAAABfQAAAAACcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAACwAAAAAAgQAAAAAAcAAAAAAADQAAAAADcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,3: ind: -1,3 - tiles: fQAAAAAAfQAAAAACfQAAAAABfQAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAABfQAAAAAAfQAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAFQAAAAABFQAAAAAAFQAAAAABgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAFQAAAAACFQAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAFQAAAAADFQAAAAAAFQAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAFQAAAAACFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAA + tiles: fQAAAAACfQAAAAACfQAAAAADfQAAAAADgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABgQAAAAAADQAAAAADgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABfQAAAAACfQAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADgQAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAFQAAAAADFQAAAAAAFQAAAAABgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAFQAAAAABFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAFQAAAAABFQAAAAACFQAAAAACgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAA version: 6 3,4: ind: 3,4 - tiles: gQAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAIAAAAAACgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,4: ind: 2,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAA version: 6 1,4: ind: 1,4 - tiles: YAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAAABwAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA + tiles: YAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABEgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACYAAAAAAABwAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA version: 6 4,4: ind: 4,4 @@ -368,23 +368,23 @@ entities: version: 6 0,4: ind: 0,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABBwAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABBwAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,4: ind: -1,4 - tiles: YAAAAAADYAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAAADQAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAADQAAAAAAcAAAAAAADQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAADQAAAAADDQAAAAABDQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAABYAAAAAADgQAAAAAAcAAAAAAAcAAAAAAADQAAAAACcAAAAAAADQAAAAADcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAABHgAAAAADfQAAAAACfQAAAAAAfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAABfQAAAAACHgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAACHgAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAADfQAAAAABfQAAAAADfQAAAAABfQAAAAACHgAAAAACgQAAAAAAgAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHgAAAAABfQAAAAADfQAAAAACfQAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAAAHgAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHgAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAABfQAAAAABfQAAAAADfQAAAAABfQAAAAABHgAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAACfQAAAAADfQAAAAABfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,5: ind: 0,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,5: ind: 1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAADYAAAAAACYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAIAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADYAAAAAABYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACgQAAAAAAYAAAAAACYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAEgAAAAAAIAAAAAADIAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAEgAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAADIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,0: ind: -4,0 @@ -396,11 +396,11 @@ entities: version: 6 -4,3: ind: -4,3 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAA + tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAB version: 6 -3,3: ind: -3,3 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACCwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAACwAAAAAAcwAAAAACcwAAAAADgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAFAAAAAADcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAcwAAAAAAcwAAAAACcwAAAAAAYAAAAAAAUQAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAABgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAADCwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAACIAAAAAADYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAABCwAAAAAAcwAAAAABcwAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAFAAAAAADcwAAAAABgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAACYAAAAAABUQAAAAADYAAAAAABgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAA version: 6 -5,3: ind: -5,3 @@ -408,39 +408,27 @@ entities: version: 6 -2,3: ind: -2,3 - tiles: CwAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAEwAAAAADEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAcAAAAAAAgQAAAAAAfQAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAACBAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACgQAAAAAAYAAAAAABYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAAC + tiles: CwAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAEwAAAAACEwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAABgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAcAAAAAAAgQAAAAAAfQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAACgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABYAAAAAADYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAADYAAAAAACgQAAAAAACwAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAABgQAAAAAAYAAAAAAD version: 6 -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAHQAAAAADHQAAAAACHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAACHQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAHQAAAAADHQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,4: ind: -3,4 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADIAAAAAACIAAAAAACIAAAAAADIAAAAAABYAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACIAAAAAACIAAAAAABIAAAAAABIAAAAAADYAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAABYAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAABYAAAAAACHQAAAAABHQAAAAADHQAAAAAAIAAAAAABIAAAAAABIAAAAAACgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAADYAAAAAABHQAAAAADHQAAAAADHQAAAAACIAAAAAADIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAYAAAAAABHQAAAAACHQAAAAAAHQAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAADHQAAAAABIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAADHQAAAAABHQAAAAAAIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,4: ind: -2,4 - tiles: gQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 - tiles: gQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA - version: 6 - 4,1: - ind: 4,1 - tiles: AAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 5,0: - ind: 5,0 - tiles: gQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 5,-1: - ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAIAAAAAAAUQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAEAAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEAAAAAAAfQAAAAAAgQAAAAAAIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAEAAAAAAEfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAIAAAAAACUQAAAAADIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABEAAAAAACgQAAAAAAgQAAAAAAEAAAAAAGgQAAAAAAIAAAAAADIAAAAAABIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,5: ind: 3,5 @@ -452,7 +440,7 @@ entities: version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAADIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,-5: ind: -2,-5 @@ -460,15 +448,11 @@ entities: version: 6 0,-5: ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAABIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADIAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 5,1: - ind: 5,1 - tiles: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-4: ind: -5,-4 @@ -505,15 +489,7 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 7781: 77,0 8243: 29,5 - 8313: 77,8 - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 7788: 68,9 - 8312: 76,9 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -522,8 +498,6 @@ entities: 2955: 64,44 6205: 7,-43 6206: 4,-43 - 7783: 67,0 - 7789: 67,8 7989: 20,1 7990: 20,-1 7991: 20,-3 @@ -542,11 +516,16 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 5198: 12.964991,13.606268 - 7784: 68,-1 - 7785: 76,-1 8199: 30,-15 8200: 30,-9 + 8721: 57,11 + 8722: 58,11 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 8723: 57,7 - node: color: '#FFFFFFFF' id: Basalt1 @@ -690,7 +669,6 @@ entities: 1435: -34,-19 1436: -24,-32 1437: -25,-32 - 1438: -23,-32 1440: -43,-24 1441: -49,-27 1442: -49,-23 @@ -849,13 +827,7 @@ entities: 7764: 50,-2 7765: 50,-1 7766: 58,0 - 7767: 58,8 - 7768: 62,9 - 7769: 60,-4 7770: 58,-5 - 7771: 57,12 - 7772: 68,0 - 7774: 76,8 8016: 20,-15 8196: 31,-3 8197: 42,-2 @@ -863,6 +835,7 @@ entities: 8209: 39,4 8210: 40,4 8253: 31,6 + 8912: 51,-11 - node: cleanable: True color: '#FFFFFFFF' @@ -905,9 +878,16 @@ entities: 2957: 50,59 2958: 48,65 2959: 50,65 - 7790: 76,0 - 7822: 68,8 7999: 8,-9 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Bot + decals: + 8726: 57,12 + 8727: 58,12 + 8730: 62,-4 + 8731: 60,-4 - node: color: '#000000FF' id: BotGreyscale @@ -983,50 +963,6 @@ entities: id: Box decals: 6702: 3,-6 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Box - decals: - 7791: 64,8 - 7792: 64,0 - 7793: 68,-4 - 7794: 76,-4 - 7795: 80,0 - 7796: 76,12 - 7798: 80,8 - 7821: 68,12 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Box - decals: - 5199: 13,13 - - node: - color: '#3EB38896' - id: BoxGreyscale - decals: - 1101: 36,-33 - - node: - color: '#52B4E996' - id: BoxGreyscale - decals: - 1098: 37,-32 - - node: - color: '#79150096' - id: BoxGreyscale - decals: - 1100: 34,-31 - - node: - color: '#D4D4D496' - id: BoxGreyscale - decals: - 1099: 38,-33 - - node: - color: '#DE3A3A96' - id: BoxGreyscale - decals: - 1097: 36,-31 - node: color: '#FFFFFFFF' id: BrickTileDarkBox @@ -1749,8 +1685,6 @@ entities: id: Caution decals: 5282: 60,-15 - 7799: 64,2 - 7800: 64,6 - node: cleanable: True color: '#3C44AAFF' @@ -1809,8 +1743,6 @@ entities: 2991: -9,58 4518: -15,35 4519: -7,43 - 5380: -33,68 - 5381: -38,68 5749: -4,-16 5750: 2,-16 6401: -47,2 @@ -1821,8 +1753,13 @@ entities: 8358: 24,-15 8359: 25,-15 8360: 26,-15 - 8362: 60,12 - 8363: 59,12 + 8708: -38,66 + 8709: -38,67 + 8711: -38,68 + 8712: -33,66 + 8713: -33,67 + 8714: -33,68 + 8755: -3,19 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -1985,6 +1922,16 @@ entities: 8677: -43,-54 8681: -61,-55 8682: -63,-56 + 8850: 62,-4 + 8851: 62,-1 + 8913: 48,-6 + 8914: 50,-4 + 8915: 55,-9 + 8916: 55,-8 + 8917: 52,-9 + 8918: 46,-4 + 8958: -5,-62 + 8959: -9,-63 - node: cleanable: True zIndex: 1 @@ -2291,7 +2238,6 @@ entities: 4266: 6,11 4267: 15,12 4268: 16,12 - 4269: 18,14 4270: 17,15 4271: 11,15 4272: 10,16 @@ -2343,7 +2289,6 @@ entities: 4426: -44,-20 4427: -33,-21 4428: -25,-31 - 4429: -22,-29 4431: -36,-48 4432: -32,-47 4433: -31,-48 @@ -2409,7 +2354,6 @@ entities: 4906: -15,-31 4907: -17,-30 4908: -13,-28 - 4910: -22,-29 4911: -25,-29 4930: 11,4 4935: 27,4 @@ -2937,6 +2881,88 @@ entities: 8688: -62,-54 8689: -63,-53 8690: -62,-53 + 8805: 35,-33 + 8806: 35,-32 + 8807: 36,-32 + 8808: 36,-31 + 8809: 37,-32 + 8810: 37,-33 + 8811: 38,-32 + 8812: 38,-33 + 8813: 36,-32 + 8814: 36,-32 + 8815: 35,-32 + 8816: 35,-32 + 8817: 34,-31 + 8818: 39,-36 + 8819: 41,-36 + 8820: 43,-36 + 8821: 36,-29 + 8822: 32,-26 + 8823: 39,-19 + 8824: 61,-3 + 8825: 61,-2 + 8826: 62,-1 + 8827: 60,-1 + 8828: 61,0 + 8829: 62,-2 + 8830: 62,-3 + 8831: 60,-3 + 8832: 61,6 + 8833: 60,2 + 8834: 58,5 + 8835: 57,4 + 8836: 59,6 + 8837: 58,7 + 8838: 61,9 + 8839: 59,10 + 8840: 58,11 + 8841: 60,12 + 8842: 60,11 + 8843: 61,10 + 8844: 59,10 + 8845: 58,11 + 8846: 57,10 + 8847: 58,10 + 8848: 62,7 + 8849: 62,-3 + 8892: 47,0 + 8893: 48,1 + 8894: 50,1 + 8895: 49,0 + 8899: -22,-32 + 8900: -21,-31 + 8901: -26,-30 + 8902: -22,-28 + 8903: -21,-28 + 8904: -23,-30 + 8905: -18,-31 + 8919: 45,-4 + 8920: 46,-4 + 8921: 45,-5 + 8922: 45,-6 + 8923: 47,-6 + 8924: 48,-6 + 8925: 49,-6 + 8928: 50,-4 + 8929: 49,-4 + 8930: 50,1 + 8931: 51,-8 + 8932: 51,-7 + 8933: 52,-9 + 8934: 53,-8 + 8935: 54,-9 + 8936: 55,-8 + 8937: 56,-8 + 8938: 56,-9 + 8939: 55,-9 + 8940: 51,-5 + 8952: -9,-63 + 8953: -7,-63 + 8954: -6,-62 + 8955: -3,-63 + 8956: -3,-63 + 8957: -5,-62 - node: cleanable: True zIndex: 1 @@ -3018,17 +3044,10 @@ entities: 8136: 56,0 8137: 61,2 8138: 58,4 - 8139: 61,6 8140: 62,4 8141: 54,4 8142: 55,6 - 8143: 58,8 - 8144: 57,10 - 8146: 62,8 - 8148: 62,12 - 8151: 72,12 8152: 64,4 - 8153: 64,-1 8154: 58,-5 8391: 4,68 8392: 4,69 @@ -3745,7 +3764,6 @@ entities: 3688: -25,-25 3689: -26,-31 3691: -24,-31 - 3693: -22,-30 3694: -20,-25 3696: -22,-20 3697: -20,-21 @@ -4204,6 +4222,27 @@ entities: 8630: 56,62 8631: 54,60 8632: 54,60 + 8852: 60,-2 + 8853: 62,-3 + 8854: 62,-3 + 8855: 61,-3 + 8856: 60,-3 + 8857: 58,-3 + 8858: 54,2 + 8896: -20,-31 + 8897: -22,-30 + 8898: -20,-29 + 8941: 51,-4 + 8942: 48,-4 + 8943: 46,-2 + 8944: 48,0 + 8945: 47,1 + 8946: 49,1 + 8947: 49,1 + 8948: 49,1 + 8949: 49,1 + 8950: 49,1 + 8951: 49,1 - node: cleanable: True zIndex: 1 @@ -4489,6 +4528,12 @@ entities: 5763: 35,-5 6196: 6,-39 6197: 3,-39 + 8869: -19,-40 + 8870: -19,-39 + 8871: -22,-38 + 8872: -21,-38 + 8873: -23,-38 + 8881: -22,-32 - node: color: '#52B4E9FF' id: FullTileOverlayGreyscale @@ -4554,11 +4599,12 @@ entities: 2449: -16,65 2450: -15,65 2453: -14,63 - 2864: 52,46 - 2865: 53,46 2866: 52,47 2867: 52,48 5766: 36,-8 + 8863: 52,46 + 8864: 53,46 + 8865: 53,54 - node: color: '#A4610696' id: FullTileOverlayGreyscale @@ -4622,6 +4668,9 @@ entities: 5389: -47,52 5515: -30,62 5761: 38,-5 + 8866: -20,39 + 8867: -38,52 + 8868: -38,53 - node: color: '#DE3A3AFF' id: FullTileOverlayGreyscale @@ -4655,6 +4704,16 @@ entities: 1361: 13,-25 2825: 45,46 5767: 35,-8 + 8859: 49,47 + 8860: 49,48 + 8861: 49,46 + 8862: 48,46 + - node: + cleanable: True + color: '#5CCD74FF' + id: Gib + decals: + 8752: -4,21 - node: color: '#FFFFFFFF' id: Grassa2 @@ -4891,8 +4950,6 @@ entities: 2963: -15,-33 2964: -12,-34 2965: -13,-34 - 4510: -23,-28 - 4511: -22,-28 6161: 4,-39 6162: 5,-39 7646: -6,-38 @@ -4903,6 +4960,8 @@ entities: 7651: -5,-33 7652: -4,-33 7669: -1,-33 + 8878: -21,-28 + 8879: -22,-28 - node: color: '#79150096' id: HalfTileOverlayGreyscale @@ -5220,11 +5279,12 @@ entities: 7865: 57,0 7866: 56,0 7929: 56,-4 - 8048: 58,12 8220: 35,-2 8221: 36,-2 8222: 37,-2 8346: 38,-2 + 8802: 2,20 + 8803: 3,20 - node: zIndex: 1 color: '#EFB34196' @@ -5341,8 +5401,6 @@ entities: 2967: -13,-36 2968: -17,-40 2969: -16,-40 - 4512: -23,-30 - 4513: -22,-30 4725: -17,-31 7642: -5,-40 7643: -4,-40 @@ -5639,15 +5697,20 @@ entities: 7824: 46,-2 7825: 45,-2 7826: 44,-2 - 7851: 57,-7 - 7852: 56,-7 - 7853: 55,-7 - 7854: 54,-7 7912: 55,-1 8216: 37,-3 8217: 36,-3 8347: 38,-3 8348: 39,-3 + 8788: 2,11 + 8789: 3,11 + 8790: 4,11 + 8791: 5,11 + 8792: 6,11 + 8906: 54,-6 + 8907: 55,-6 + 8908: 56,-6 + 8909: 57,-6 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 @@ -5970,7 +6033,6 @@ entities: 7834: 42,-4 7836: 42,0 7837: 42,1 - 7855: 53,-6 7856: 53,-5 7857: 53,-4 7870: 52,1 @@ -5980,11 +6042,16 @@ entities: 7952: 57,4 7953: 57,5 7954: 57,6 - 8054: 57,8 - 8055: 57,9 8223: 39,-1 8224: 39,0 8236: 39,2 + 8781: 1,19 + 8782: 1,17 + 8783: 1,18 + 8784: 1,15 + 8785: 1,14 + 8786: 1,13 + 8787: 1,12 - node: color: '#FA750096' id: HalfTileOverlayGreyscale270 @@ -6064,6 +6131,9 @@ entities: 7664: 0,-35 7666: 3,-34 7674: 0,-36 + 8874: -20,-31 + 8875: -20,-30 + 8876: -20,-29 - node: color: '#79150096' id: HalfTileOverlayGreyscale90 @@ -6183,7 +6253,6 @@ entities: 638: -15,-20 5599: -30,-38 5600: -30,-39 - 6087: -22,-31 7567: -58,27 - node: color: '#D4D4D428' @@ -6667,7 +6736,6 @@ entities: id: QuarterTileOverlayGreyscale decals: 2338: -18,41 - 2349: -37,54 2365: -40,59 4226: -31,34 4227: -30,34 @@ -6718,6 +6786,12 @@ entities: 8225: 39,-2 8232: 33,-2 8233: 34,-2 + 8882: 58,7 + 8883: 59,7 + 8884: 60,7 + 8885: 61,7 + 8886: 62,-3 + 8887: 61,-2 - node: zIndex: 1 color: '#EFB34196' @@ -6981,6 +7055,15 @@ entities: 7958: 62,2 8219: 34,-3 8229: 33,-3 + 8793: 7,12 + 8794: 8,12 + 8795: 9,12 + 8796: 10,12 + 8797: 11,12 + 8798: 12,12 + 8799: 13,12 + 8888: 60,-1 + 8889: 61,-2 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale180 @@ -7196,7 +7279,7 @@ entities: 7838: 42,3 7845: 49,-2 7931: 57,-1 - 8056: 57,10 + 8891: 62,-1 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 @@ -7398,10 +7481,8 @@ entities: 7841: 43,0 7868: 55,0 7932: 54,-4 - 7959: 59,6 - 7960: 60,6 - 7961: 61,6 8238: 10,-20 + 8890: 60,-3 - node: color: '#FFFFFFFF' id: Rock01 @@ -7590,7 +7671,7 @@ entities: 6621: 16,-16 7860: 52,2 8042: 53,-3 - 8043: 59,-3 + 8801: 1,20 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale @@ -7655,7 +7736,6 @@ entities: 125: -24,-26 234: -43,-31 5601: -30,-40 - 6086: -22,-32 - node: color: '#D4D4D428' id: ThreeQuarterTileOverlayGreyscale180 @@ -7789,8 +7869,9 @@ entities: 2826: 43,47 6037: 29,45 6619: 19,-19 - 7859: 53,-7 8041: 52,0 + 8800: 1,11 + 8910: 53,-6 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale270 @@ -7821,6 +7902,7 @@ entities: 2979: -17,-36 7660: 0,-33 7661: 3,-33 + 8880: -20,-28 - node: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale90 @@ -7896,9 +7978,7 @@ entities: 851: 27,-21 1387: -20,-3 2829: 48,53 - 6516: 46,5 7864: 55,2 - 8044: 60,-3 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale90 @@ -7927,12 +8007,7 @@ entities: decals: 4597: 5,32 5502: -9,-25 - - node: - zIndex: 1 - color: '#EFB341FF' - id: WarnBox - decals: - 6924: 45,-5 + 8911: 56,-9 - node: color: '#FFFFFFFF' id: WarnBox @@ -8143,9 +8218,6 @@ entities: 2221: -42,41 2384: -38,64 2385: -38,65 - 2386: -38,66 - 2387: -38,67 - 2388: -38,68 2702: 12,73 2703: 12,74 2704: 12,75 @@ -8172,6 +8244,14 @@ entities: 4616: 59,-50 5598: -35,62 8195: 35,2 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineE + decals: + 8718: -38,66 + 8719: -38,67 + 8720: -38,68 - node: color: '#FFFFFFFF' id: WarnLineN @@ -8226,6 +8306,12 @@ entities: 8302: 18,-12 8303: 19,-12 8304: 20,-12 + 8732: 58,9 + 8733: 59,9 + 8734: 60,9 + 8735: 61,9 + 8736: 62,9 + 8737: 57,9 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8273,9 +8359,6 @@ entities: 2218: -44,42 2379: -33,64 2380: -33,65 - 2381: -33,66 - 2382: -33,67 - 2383: -33,68 2722: 11,73 2723: 11,74 2724: 11,75 @@ -8308,6 +8391,9 @@ entities: 541: -6,-53 548: -6,-52 549: -6,-51 + 8715: -33,66 + 8716: -33,67 + 8717: -33,68 - node: color: '#FFFFFFFF' id: WarnLineW @@ -8577,6 +8663,50 @@ entities: id: arrow decals: 7134: -1,-66 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt1 + decals: + 8761: -2,22 + 8762: -4,20 + 8763: -5,21 + 8770: -1,19 + 8771: -1,19 + 8772: -1,20 + 8773: -2,21 + 8774: -1,21 + 8775: -1,21 + 8776: -3,20 + 8777: -4,22 + 8778: -4,22 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt2 + decals: + 8759: -1,20 + 8760: -1,20 + 8768: -1,19 + 8769: -1,19 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt3 + decals: + 8764: -1,21 + 8765: -5,19 + 8766: -1,20 + 8767: -1,19 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt4 + decals: + 8756: -1,19 + 8757: -1,19 + 8758: -1,19 + 8779: -3,20 - node: cleanable: True color: '#3C44AAFF' @@ -8611,6 +8741,12 @@ entities: id: grasssnow13 decals: 4351: -42.115974,-49.834988 + - node: + cleanable: True + color: '#00FFFFFF' + id: guy + decals: + 8754: -4,19 - node: cleanable: True color: '#1861D5FF' @@ -8664,33 +8800,33 @@ entities: 0,1: 0: 7 1: 4096 - 2: 8192 + 2: 40960 -1,1: 0: 15 1: 49152 2: 12288 0,2: - 0: 16 - 2: 12014 + 0: 57360 + 2: 238 -1,2: 0: 15344 0,3: - 2: 9762 + 0: 61166 -1,3: 0: 62136 0,4: - 2: 8802 + 0: 61167 + 1,1: + 2: 30438 1,2: 2: 255 - 0: 57344 + 0: 28672 1,3: - 0: 65524 + 0: 65535 1,0: 2: 26214 - 1,1: - 2: 30438 1,4: - 0: 65535 + 0: 8191 1,-1: 2: 58976 0: 2186 @@ -8700,15 +8836,15 @@ entities: 2: 8337 1: 3680 2,2: - 2: 65523 + 2: 4083 2,3: - 0: 65520 + 0: 65535 2,-1: 2: 36864 1: 24576 0: 239 2,4: - 0: 65535 + 0: 36863 3,0: 2: 4369 0: 52428 @@ -8717,15 +8853,15 @@ entities: 1: 256 0: 51404 3,2: - 2: 13105 + 2: 817 0: 36040 3,3: - 0: 65464 + 0: 65467 3,-1: 2: 4096 0: 52479 3,4: - 0: 65535 + 0: 4095 4,0: 0: 65535 4,1: @@ -8734,9 +8870,8 @@ entities: 0: 816 2: 52416 4,3: - 0: 1 - 1: 26112 - 2: 12 + 0: 4353 + 2: 52428 -4,0: 0: 32767 -4,-1: @@ -8782,7 +8917,7 @@ entities: -1,-1: 0: 65532 -1,4: - 0: 47167 + 0: 45311 -4,-4: 0: 48059 -5,-4: @@ -8816,7 +8951,6 @@ entities: 0: 240 2: 61440 -2,-4: - 1: 68 0: 32768 -1,-4: 0: 64989 @@ -8867,13 +9001,11 @@ entities: -4,-9: 0: 32767 -5,-8: - 0: 52416 - 2: 4368 + 0: 56784 -4,-7: 0: 62463 -5,-7: - 0: 64972 - 2: 1 + 0: 64973 -4,-6: 0: 15295 -5,-6: @@ -8895,7 +9027,7 @@ entities: -2,-9: 0: 56829 -2,-5: - 2: 11264 + 2: 8192 -1,-8: 0: 28912 -1,-7: @@ -8903,10 +9035,10 @@ entities: -1,-6: 0: 33023 2: 8192 - -1,-5: - 2: 306 -1,-9: 0: 56829 + -1,-5: + 2: 50 0,-8: 0: 14576 0,-7: @@ -9018,11 +9150,13 @@ entities: -7,-8: 0: 61166 -6,-8: - 0: 30583 + 0: 57301 -6,-7: - 0: 64775 + 0: 64781 -6,-6: 0: 64781 + -6,-9: + 0: 20479 -5,-9: 0: 65535 -8,0: @@ -9225,8 +9359,6 @@ entities: 0: 45055 -6,-10: 0: 65279 - -6,-9: - 0: 4095 -5,-13: 0: 52733 -12,-12: @@ -9419,8 +9551,7 @@ entities: -4,-17: 0: 61441 -3,-16: - 0: 13112 - 2: 2048 + 0: 46008 -3,-15: 0: 47167 -3,-14: @@ -9428,8 +9559,7 @@ entities: -3,-17: 0: 61568 -2,-16: - 0: 15 - 2: 3840 + 0: 3839 -2,-15: 0: 30567 -2,-14: @@ -9437,8 +9567,7 @@ entities: -2,-17: 0: 15097 -1,-16: - 0: 3271 - 2: 256 + 0: 3575 -1,-15: 0: 65535 -1,-14: @@ -9589,9 +9718,8 @@ entities: 8,-1: 0: 4080 4,4: - 1: 6 - 0: 4352 - 2: 49152 + 0: 273 + 2: 52428 5,1: 0: 32753 5,2: @@ -9651,24 +9779,21 @@ entities: 11,-3: 0: 57565 11,-2: - 0: 13070 + 0: 12046 11,-1: 0: 65439 11,-5: 0: 56797 11,0: - 0: 57891 + 0: 58023 12,-4: 0: 65535 12,-3: - 0: 12607 - 2: 34816 + 0: 47551 12,-2: - 0: 11 - 2: 61056 + 0: 44939 12,-1: - 0: 65280 - 2: 110 + 0: 65359 8,1: 0: 28174 8,4: @@ -9698,8 +9823,7 @@ entities: 11,4: 0: 63487 12,0: - 0: 12288 - 2: 64 + 0: 12401 12,1: 0: 3003 12,2: @@ -9779,7 +9903,7 @@ entities: 11,-12: 2: 65535 11,-11: - 2: 17 + 2: 273 0: 16580 11,-10: 0: 57422 @@ -9859,9 +9983,11 @@ entities: 15,-8: 0: 13105 15,-10: - 2: 52416 + 2: 49344 + 0: 3072 16,-10: - 2: 65520 + 2: 61680 + 0: 3840 16,-9: 0: 255 2: 7936 @@ -9918,39 +10044,35 @@ entities: 15,-4: 0: 65535 13,-3: - 0: 4335 - 2: 57344 + 0: 61679 + 13,-2: + 0: 60971 13,-1: 0: 65518 - 13,-2: - 0: 61152 13,0: 0: 20479 14,-3: - 0: 16503 - 2: 45056 + 0: 4215 + 2: 49152 14,-2: - 0: 29488 - 2: 136 + 0: 29441 + 2: 128 14,-1: - 0: 30719 + 0: 32759 14,0: 0: 60999 15,-3: - 2: 12832 - 15,-2: - 2: 4082 + 2: 64160 15,-1: - 0: 28767 + 0: 32759 15,0: - 0: 30471 + 0: 30519 + 15,-2: + 2: 2730 16,-4: 0: 257 - 16,-2: - 2: 4080 16,-1: - 2: 8947 - 0: 4104 + 0: 9008 19,-8: 0: 61183 19,-9: @@ -9963,12 +10085,14 @@ entities: 20,-7: 0: 1 17,-10: - 2: 65520 + 2: 61680 + 0: 3840 17,-9: 0: 255 2: 3840 18,-10: - 2: 32624 + 2: 28784 + 0: 3840 1: 32896 18,-9: 0: 255 @@ -9995,45 +10119,15 @@ entities: 22,-9: 0: 273 16,0: - 0: 4377 - 2: 8806 - 17,-2: - 2: 4080 - 17,-1: - 0: 4111 - 2: 33776 - 17,0: - 0: 19 - 2: 37132 - 18,-2: - 2: 4080 - 18,-1: - 0: 15 - 2: 14832 - 18,0: - 2: 12567 - 0: 8 - 19,-2: - 2: 4080 - 19,-1: - 0: 4099 - 2: 35320 - 19,0: - 0: 19 - 2: 47564 - 20,-2: - 2: 53232 - 20,-1: - 2: 61183 - 0: 4096 + 0: 13090 + 2: 34957 4,5: - 0: 17 - 2: 29900 + 0: 285 + 2: 17600 3,5: - 0: 255 - 2: 61440 + 0: 3838 4,6: - 2: 4371 + 2: 4375 0: 52224 3,6: 2: 65535 @@ -10074,9 +10168,9 @@ entities: 8,7: 0: 56829 0,5: - 2: 3750 + 0: 3854 -1,5: - 0: 3003 + 0: 4091 0,6: 0: 30583 -1,6: @@ -10086,19 +10180,16 @@ entities: -1,7: 0: 65535 1,5: - 2: 62256 - 0: 2184 + 0: 7645 1,6: - 2: 53247 - 0: 4096 + 0: 4369 + 2: 3276 1,7: - 0: 45841 - 2: 12 + 0: 45855 1,8: 0: 65307 2,5: - 2: 61440 - 0: 238 + 0: 35835 2,6: 2: 65535 2,7: @@ -10425,36 +10516,30 @@ entities: 13,2: 0: 56783 13,3: - 0: 4383 - 2: 3072 + 0: 5407 13,4: 0: 4437 1: 49152 + 14,1: + 0: 61166 14,2: - 0: 65262 + 0: 61152 14,3: - 2: 65504 0: 14 - 14,1: - 0: 20206 + 2: 224 15,1: - 0: 18295 + 0: 30583 15,2: - 0: 21606 + 0: 30576 15,3: - 0: 13 - 2: 65520 - 15,4: - 2: 1 + 0: 7 + 2: 240 16,1: - 0: 4369 - 2: 25134 + 0: 9011 + 2: 34956 16,2: - 0: 25 - 2: 61990 - 16,3: - 2: 65523 - 0: 8 + 2: 13 + 0: 13090 12,8: 0: 65534 13,5: @@ -10467,7 +10552,7 @@ entities: 13,8: 0: 65535 14,5: - 2: 4383 + 2: 4369 14,6: 2: 17427 0: 4096 @@ -10477,10 +10562,6 @@ entities: 14,8: 0: 28945 2: 68 - 15,5: - 2: 31 - 16,5: - 2: 47 12,9: 0: 65535 11,9: @@ -11026,15 +11107,14 @@ entities: 2: 257 0: 3276 -14,10: - 2: 63999 + 2: 4369 -14,11: 2: 3 0: 36736 -14,12: 2: 22003 -13,12: - 0: 8936 - 2: 32768 + 0: 60136 -19,11: 2: 52224 -19,12: @@ -11072,8 +11152,7 @@ entities: -13,15: 0: 43938 -13,13: - 0: 59938 - 2: 8 + 0: 59950 -13,14: 0: 43690 -13,16: @@ -11190,62 +11269,6 @@ entities: 2: 1092 -5,18: 0: 631 - 16,4: - 2: 2 - 17,1: - 2: 415 - 0: 4096 - 17,2: - 0: 19 - 2: 62348 - 17,3: - 0: 15 - 2: 65520 - 17,4: - 2: 4 - 18,1: - 2: 4415 - 18,2: - 2: 63799 - 0: 8 - 18,3: - 0: 15 - 2: 65520 - 19,1: - 2: 51647 - 0: 4096 - 19,2: - 0: 19 - 2: 63884 - 19,3: - 0: 3843 - 2: 61688 - 18,4: - 2: 8 - 20,0: - 0: 4369 - 2: 61166 - 20,1: - 0: 4369 - 2: 61166 - 20,2: - 0: 17 - 2: 65262 - 20,3: - 2: 64767 - 0: 512 - 17,5: - 2: 71 - 20,4: - 2: 1 - 21,0: - 2: 16 - 21,1: - 2: 256 - 21,2: - 2: 4096 - 21,-1: - 2: 1 -14,-4: 0: 65520 -4,-18: @@ -11464,6 +11487,13 @@ entities: parent: 2922 - type: InstantAction container: 2922 + - uid: 11199 + components: + - type: Transform + parent: 11126 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 11126 - uid: 12128 components: - type: Transform @@ -11482,24 +11512,6 @@ entities: parent: 28698 - type: InstantAction container: 28698 - - uid: 28706 - components: - - type: Transform - parent: 28705 - - type: InstantAction - container: 28705 - - uid: 28708 - components: - - type: Transform - parent: 28707 - - type: InstantAction - container: 28707 - - uid: 28710 - components: - - type: Transform - parent: 28709 - - type: InstantAction - container: 28709 - uid: 30712 components: - type: Transform @@ -11742,6 +11754,14 @@ entities: - 2099 - 2079 - 23934 + - uid: 2025 + components: + - type: Transform + pos: 12.5,19.5 + parent: 12 + - type: DeviceList + devices: + - 9719 - uid: 2089 components: - type: Transform @@ -11753,9 +11773,6 @@ entities: - 1244 - 2101 - 1275 - - 1268 - - 1267 - - 2103 - 2082 - uid: 2545 components: @@ -11863,6 +11880,14 @@ entities: - 16635 - 16636 - 19846 + - uid: 2966 + components: + - type: Transform + pos: 10.5,19.5 + parent: 12 + - type: DeviceList + devices: + - 2023 - uid: 3224 components: - type: Transform @@ -11915,7 +11940,7 @@ entities: - 28375 - 9321 - 5255 - - 10027 + - 5316 - 5305 - uid: 4906 components: @@ -11932,6 +11957,31 @@ entities: - 5011 - 2679 - 28904 + - uid: 5098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-30.5 + parent: 12 + - type: DeviceList + devices: + - 9434 + - 9449 + - 5197 + - 2083 + - 5030 + - uid: 5109 + components: + - type: Transform + pos: -19.5,-26.5 + parent: 12 + - type: DeviceList + devices: + - 11314 + - 5030 + - 5111 + - 11209 + - 9436 - uid: 6833 components: - type: Transform @@ -11970,6 +12020,16 @@ entities: - 7389 - 2348 - 8986 + - uid: 8420 + components: + - type: Transform + pos: 62.5,1.5 + parent: 12 + - type: DeviceList + devices: + - 11225 + - 8344 + - 9052 - uid: 8504 components: - type: Transform @@ -12034,6 +12094,17 @@ entities: - 30449 - 27918 - 29100 + - uid: 9142 + components: + - type: Transform + pos: 62.5,8.5 + parent: 12 + - type: DeviceList + devices: + - 9717 + - 5887 + - 7547 + - 2020 - uid: 9702 components: - type: Transform @@ -12069,9 +12140,6 @@ entities: - 1226 - 2102 - 1220 - - 1267 - - 1268 - - 2103 - 2083 - 2084 - 2082 @@ -12179,6 +12247,19 @@ entities: - 9988 - 9987 - 800 + - uid: 12273 + components: + - type: Transform + pos: 2.5,21.5 + parent: 12 + - type: DeviceList + devices: + - 11341 + - 9488 + - 6735 + - 2516 + - 2604 + - 3702 - uid: 13076 components: - type: Transform @@ -12402,7 +12483,6 @@ entities: - 22579 - 22548 - 22550 - - 22580 - 22581 - 22583 - 22521 @@ -12792,13 +12872,13 @@ entities: - type: DeviceList devices: - 26949 - - 2021 - 2020 - 26923 - 609 - 2034 - 26790 - 15130 + - 22142 - uid: 27312 components: - type: Transform @@ -12810,31 +12890,6 @@ entities: - 7789 - 27005 - 20793 - - uid: 27313 - components: - - type: Transform - pos: 59.5,13.5 - parent: 12 - - type: DeviceList - devices: - - 27309 - - 19292 - - 19188 - - 7807 - - 2359 - - uid: 27314 - components: - - type: Transform - pos: 61.5,7.5 - parent: 12 - - type: DeviceList - devices: - - 7547 - - 5887 - - 9717 - - 27310 - - 2359 - - 2020 - uid: 28270 components: - type: Transform @@ -13123,6 +13178,7 @@ entities: - 27065 - 27102 - 25548 + - 9482 - uid: 28376 components: - type: Transform @@ -13345,19 +13401,6 @@ entities: - 25681 - 2324 - 28904 - - uid: 31894 - components: - - type: Transform - pos: 15.5,22.5 - parent: 12 - - type: DeviceList - devices: - - 29872 - - 3954 - - 9560 - - 9488 - - 29869 - - 29870 - uid: 32066 components: - type: Transform @@ -13428,11 +13471,6 @@ entities: - type: Transform pos: 63.5,-18.5 parent: 12 - - uid: 7167 - components: - - type: Transform - pos: 38.5,-32.5 - parent: 12 - uid: 8863 components: - type: Transform @@ -13589,6 +13627,13 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,52.5 parent: 12 +- proto: AirlockAssemblyMaintenance + entities: + - uid: 15446 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 12 - proto: AirlockAtmosphericsGlassLocked entities: - uid: 24654 @@ -13610,12 +13655,6 @@ entities: - type: Transform pos: 30.5,1.5 parent: 12 - - uid: 7129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-33.5 - parent: 12 - uid: 7224 components: - type: Transform @@ -13967,6 +14006,11 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-8.5 parent: 12 + - uid: 494 + components: + - type: Transform + pos: 4.5,21.5 + parent: 12 - uid: 1016 components: - type: Transform @@ -14066,6 +14110,12 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,14.5 parent: 12 + - uid: 10937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,16.5 + parent: 12 - uid: 11006 components: - type: Transform @@ -14137,12 +14187,6 @@ entities: - type: Transform pos: -23.5,58.5 parent: 12 - - uid: 26470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,7.5 - parent: 12 - uid: 27457 components: - type: Transform @@ -14198,18 +14242,17 @@ entities: parent: 12 - proto: AirlockExternalEngineeringLocked entities: - - uid: 1085 + - uid: 1268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,12.5 + pos: 59.5,-2.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2291: - - DoorStatus: DoorBolt + 25549: + - DoorStatus: InputB - uid: 1537 components: - type: Transform @@ -14234,18 +14277,17 @@ entities: linkedPorts: 1537: - DoorStatus: DoorBolt - - uid: 2291 + - uid: 2246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,11.5 + pos: 59.5,-1.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 1085: - - DoorStatus: DoorBolt + 25549: + - DoorStatus: InputA - uid: 6350 components: - type: Transform @@ -14270,52 +14312,6 @@ entities: linkedPorts: 6350: - DoorStatus: DoorBolt - - uid: 11322 - components: - - type: Transform - pos: 7.5,20.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 12687: - - DoorStatus: DoorBolt - - uid: 11379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-3.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 11390: - - DoorStatus: DoorBolt - - uid: 11390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-3.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 11379: - - DoorStatus: DoorBolt - - uid: 12687 - components: - - type: Transform - pos: 7.5,22.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 11322: - - DoorStatus: DoorBolt - uid: 14260 components: - type: Transform @@ -14352,30 +14348,6 @@ entities: linkedPorts: 19019: - DoorStatus: DoorBolt - - uid: 19663 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,12.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 24445: - - DoorStatus: DoorBolt - - uid: 24445 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,10.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 19663: - - DoorStatus: DoorBolt - uid: 26625 components: - type: Transform @@ -14628,6 +14600,114 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalGlassEngineeringLocked entities: + - uid: 1810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,19.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 10791: + - DoorStatus: DoorBolt + 16347: + - DoorStatus: DoorBolt + 1813: + - DoorStatus: DoorBolt + - uid: 1813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,21.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 1810: + - DoorStatus: DoorBolt + 16347: + - DoorStatus: DoorBolt + 10791: + - DoorStatus: DoorBolt + - uid: 4952 + components: + - type: Transform + pos: 63.5,-1.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 25547: + - DoorStatus: InputB + - uid: 9169 + components: + - type: Transform + pos: 63.5,-2.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 25547: + - DoorStatus: InputA + - uid: 10791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,23.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 1810: + - DoorStatus: DoorBolt + 1813: + - DoorStatus: DoorBolt + 16347: + - DoorStatus: DoorBolt + - uid: 11469 + components: + - type: Transform + pos: 60.5,1.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 25550: + - DoorStatus: InputA + - uid: 12692 + components: + - type: Transform + pos: 61.5,1.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 25550: + - DoorStatus: InputB + - uid: 16347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,21.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 1810: + - DoorStatus: DoorBolt + 1813: + - DoorStatus: DoorBolt + 10791: + - DoorStatus: DoorBolt - uid: 19019 components: - type: Transform @@ -14679,52 +14759,50 @@ entities: linkedPorts: 11931: - DoorStatus: DoorBolt - - uid: 10785 + - uid: 9560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,9.5 + pos: 5.5,28.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 10786: + 10826: - DoorStatus: DoorBolt - - uid: 11931 + - uid: 10785 components: - type: Transform - pos: -30.5,-10.5 + rot: 1.5707963267948966 rad + pos: 0.5,9.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2041: + 10786: - DoorStatus: DoorBolt - - uid: 11943 + - uid: 10826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,27.5 + pos: 7.5,28.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 11944: + 9560: - DoorStatus: DoorBolt - - uid: 11944 + - uid: 11931 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,29.5 + pos: -30.5,-10.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 11943: + 2041: - DoorStatus: DoorBolt - uid: 11947 components: @@ -15640,6 +15718,12 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-33.5 parent: 12 + - uid: 9663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-33.5 + parent: 12 - uid: 24134 components: - type: Transform @@ -15672,6 +15756,12 @@ entities: - type: Transform pos: 45.5,-13.5 parent: 12 + - uid: 23143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-9.5 + parent: 12 - uid: 27885 components: - type: Transform @@ -15684,6 +15774,12 @@ entities: - type: Transform pos: 7.5,-21.5 parent: 12 + - uid: 1551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-6.5 + parent: 12 - uid: 7829 components: - type: Transform @@ -15695,12 +15791,6 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,7.5 parent: 12 - - uid: 27382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,11.5 - parent: 12 - proto: AirlockMaintGlassLocked entities: - uid: 27845 @@ -15789,6 +15879,12 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-22.5 parent: 12 + - uid: 3506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,22.5 + parent: 12 - uid: 5428 components: - type: Transform @@ -16511,12 +16607,16 @@ entities: rot: 3.141592653589793 rad pos: -39.5,-47.5 parent: 12 + - type: PaintableAirlock + department: Medical - uid: 840 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-48.5 parent: 12 + - type: PaintableAirlock + department: Medical - proto: AirlockMedicalScienceLocked entities: - uid: 514 @@ -16524,6 +16624,16 @@ entities: - type: Transform pos: -36.5,-46.5 parent: 12 + - type: PaintableAirlock + department: Medical + - uid: 12682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-32.5 + parent: 12 + - type: PaintableAirlock + department: Medical - proto: AirlockQuartermasterLocked entities: - uid: 8437 @@ -16700,6 +16810,11 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-40.5 parent: 12 + - uid: 5130 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 12 - proto: AirlockSecurityGlassLocked entities: - uid: 63 @@ -16906,6 +17021,14 @@ entities: - type: DeviceNetwork deviceLists: - 8504 + - uid: 2023 + components: + - type: Transform + pos: 8.5,22.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 2966 - uid: 2094 components: - type: Transform @@ -16980,15 +17103,6 @@ entities: - type: DeviceNetwork deviceLists: - 9972 - - uid: 2103 - components: - - type: Transform - pos: -23.5,-30.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9972 - - 2089 - uid: 2201 components: - type: Transform @@ -17006,6 +17120,14 @@ entities: - type: DeviceNetwork deviceLists: - 28373 + - uid: 2604 + components: + - type: Transform + pos: 2.5,16.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 12273 - uid: 2609 components: - type: Transform @@ -17040,6 +17162,14 @@ entities: - type: DeviceNetwork deviceLists: - 8971 + - uid: 3702 + components: + - type: Transform + pos: 15.5,16.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 12273 - uid: 4003 components: - type: Transform @@ -17092,6 +17222,33 @@ entities: - type: DeviceNetwork deviceLists: - 4906 + - uid: 5111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-28.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 5109 + - uid: 5197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-29.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 5098 + - uid: 5316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 4887 - uid: 7350 components: - type: Transform @@ -17116,7 +17273,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 27314 + - 9142 - uid: 7558 components: - type: Transform @@ -17135,15 +17292,15 @@ entities: - type: DeviceNetwork deviceLists: - 27312 - - uid: 7807 + - uid: 8344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,11.5 + rot: -1.5707963267948966 rad + pos: 60.5,-0.5 parent: 12 - type: DeviceNetwork deviceLists: - - 27313 + - 8420 - uid: 8916 components: - type: Transform @@ -17208,6 +17365,14 @@ entities: - type: DeviceNetwork deviceLists: - 7342 + - uid: 9719 + components: + - type: Transform + pos: 14.5,22.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 2025 - uid: 9976 components: - type: Transform @@ -17354,14 +17519,6 @@ entities: - type: DeviceNetwork deviceLists: - 28376 - - uid: 10027 - components: - - type: Transform - pos: 12.5,-14.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4887 - uid: 10450 components: - type: Transform @@ -17622,14 +17779,6 @@ entities: - type: DeviceNetwork deviceLists: - 22582 - - uid: 22580 - components: - - type: Transform - pos: 5.5,31.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 22582 - uid: 22581 components: - type: Transform @@ -18149,14 +18298,6 @@ entities: - type: DeviceNetwork deviceLists: - 29783 - - uid: 29869 - components: - - type: Transform - pos: 10.5,16.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 31894 - uid: 30260 components: - type: Transform @@ -18286,11 +18427,6 @@ entities: actions: !type:Container ents: - 4142 - - uid: 22527 - components: - - type: Transform - pos: 5.3721876,30.61469 - parent: 12 - uid: 24346 components: - type: Transform @@ -18311,20 +18447,6 @@ entities: - type: Transform pos: 55.478806,-34.59952 parent: 12 - - uid: 28705 - components: - - type: Transform - rot: -37.69911184307754 rad - pos: 57.361034,9.478294 - parent: 12 - - type: GasTank - toggleActionEntity: 28706 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 28706 - uid: 30709 components: - type: Transform @@ -18353,25 +18475,6 @@ entities: - type: Transform pos: -0.5,-20.5 parent: 12 -- proto: AlwaysPoweredLightExterior - entities: - - uid: 3205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,6.5 - parent: 12 - - uid: 22157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,15.5 - parent: 12 - - uid: 31887 - components: - - type: Transform - pos: 74.5,-6.5 - parent: 12 - proto: AmeController entities: - uid: 4915 @@ -18613,6 +18716,11 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,6.5 parent: 12 + - uid: 11213 + components: + - type: Transform + pos: 57.5,8.5 + parent: 12 - uid: 11348 components: - type: Transform @@ -18676,6 +18784,12 @@ entities: - type: Transform pos: 35.5,58.5 parent: 12 + - uid: 15680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-3.5 + parent: 12 - uid: 16031 components: - type: Transform @@ -18897,17 +19011,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-52.5 parent: 12 - - uid: 28691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-1.5 - parent: 12 - - uid: 28720 - components: - - type: Transform - pos: 59.5,7.5 - parent: 12 - uid: 28969 components: - type: Transform @@ -19611,21 +19714,6 @@ entities: - type: Transform pos: 20.5,24.5 parent: 12 - - uid: 2881 - components: - - type: Transform - pos: 19.5,14.5 - parent: 12 - - uid: 2992 - components: - - type: Transform - pos: 17.5,14.5 - parent: 12 - - uid: 3893 - components: - - type: Transform - pos: 18.5,16.5 - parent: 12 - uid: 4706 components: - type: Transform @@ -19721,11 +19809,6 @@ entities: - type: Transform pos: 25.5,-0.5 parent: 12 - - uid: 5030 - components: - - type: Transform - pos: 17.5,15.5 - parent: 12 - uid: 5191 components: - type: Transform @@ -19736,11 +19819,6 @@ entities: - type: Transform pos: 10.5,5.5 parent: 12 - - uid: 5418 - components: - - type: Transform - pos: 18.5,15.5 - parent: 12 - uid: 5812 components: - type: Transform @@ -19751,18 +19829,6 @@ entities: - type: Transform pos: 10.5,-0.5 parent: 12 - - uid: 7261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-15.5 - parent: 12 - - uid: 7269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 12 - uid: 7272 components: - type: Transform @@ -19978,28 +20044,6 @@ entities: - type: Transform pos: 85.5,-30.5 parent: 12 - - uid: 9395 - components: - - type: Transform - pos: 17.5,16.5 - parent: 12 - - uid: 9518 - components: - - type: Transform - pos: 18.5,14.5 - parent: 12 - - uid: 9639 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,15.5 - parent: 12 - - uid: 9640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,16.5 - parent: 12 - uid: 26206 components: - type: Transform @@ -20411,6 +20455,12 @@ entities: - type: InsideEntityStorage - proto: Barricade entities: + - uid: 8473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-2.5 + parent: 12 - uid: 28210 components: - type: Transform @@ -20470,6 +20520,11 @@ entities: parent: 12 - proto: BaseBallBat entities: + - uid: 19613 + components: + - type: Transform + pos: 45.5,-4.5 + parent: 12 - uid: 25001 components: - type: Transform @@ -20914,16 +20969,6 @@ entities: parent: 12 - proto: BenchBlueComfy entities: - - uid: 4039 - components: - - type: Transform - pos: -22.5,-33.5 - parent: 12 - - uid: 10993 - components: - - type: Transform - pos: -21.5,-33.5 - parent: 12 - uid: 12706 components: - type: Transform @@ -21092,6 +21137,16 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-21.5 parent: 12 + - uid: 1850 + components: + - type: Transform + pos: 14.5,23.5 + parent: 12 + - uid: 4384 + components: + - type: Transform + pos: 15.5,23.5 + parent: 12 - uid: 5199 components: - type: Transform @@ -21112,60 +21167,80 @@ entities: - type: Transform pos: 64.5,-12.5 parent: 12 + - uid: 8974 + components: + - type: Transform + pos: 58.5,8.5 + parent: 12 + - uid: 8976 + components: + - type: Transform + pos: 60.5,8.5 + parent: 12 + - uid: 8992 + components: + - type: Transform + pos: 61.5,8.5 + parent: 12 + - uid: 9003 + components: + - type: Transform + pos: 59.5,8.5 + parent: 12 - uid: 9123 components: - type: Transform pos: 61.5,-37.5 parent: 12 - - uid: 9715 + - uid: 9407 components: - type: Transform - pos: 19.5,15.5 + pos: 9.5,23.5 parent: 12 - - uid: 9718 + - uid: 10993 components: - type: Transform - pos: 19.5,16.5 + pos: 7.5,23.5 parent: 12 - - uid: 9722 + - uid: 11326 components: - type: Transform - pos: 19.5,14.5 + pos: 6.5,23.5 parent: 12 - uid: 12614 components: - type: Transform pos: 59.5,40.5 parent: 12 - - uid: 20780 + - uid: 12674 components: - type: Transform - pos: 59.5,-15.5 + pos: 13.5,23.5 parent: 12 - - uid: 20781 + - uid: 12675 components: - type: Transform - pos: 59.5,-13.5 + pos: 16.5,23.5 parent: 12 - - uid: 26072 + - uid: 15681 components: - type: Transform - pos: 61.5,1.5 + pos: 8.5,23.5 parent: 12 - - uid: 26537 + - uid: 20780 components: - type: Transform - pos: 60.5,1.5 + pos: 59.5,-15.5 parent: 12 - - uid: 26580 + - uid: 20781 components: - type: Transform - pos: 7.5,3.5 + pos: 59.5,-13.5 parent: 12 - - uid: 26594 + - uid: 26580 components: - type: Transform - pos: 62.5,1.5 + pos: 7.5,3.5 parent: 12 - proto: BlastDoorOpen entities: @@ -21175,11 +21250,6 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,21.5 parent: 12 - - uid: 10323 - components: - - type: Transform - pos: -47.5,51.5 - parent: 12 - uid: 16503 components: - type: Transform @@ -21307,11 +21377,6 @@ entities: rot: 3.141592653589793 rad pos: -29.5,49.5 parent: 12 - - uid: 20562 - components: - - type: Transform - pos: -47.5,52.5 - parent: 12 - proto: BlockGameArcade entities: - uid: 14993 @@ -21976,14 +22041,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,25.5 parent: 12 -- proto: BorgChargerCircuitboard - entities: - - uid: 1810 - components: - - type: Transform - parent: 1809 - - type: Physics - canCollide: False - proto: BorgModuleCable entities: - uid: 1780 @@ -22001,11 +22058,6 @@ entities: parent: 12 - proto: BorgModuleGPS entities: - - uid: 1779 - components: - - type: Transform - pos: -25.40692,-31.395433 - parent: 12 - uid: 8798 components: - type: Transform @@ -22020,12 +22072,6 @@ entities: parent: 12 - proto: BorgModuleRadiationDetection entities: - - uid: 22075 - components: - - type: Transform - rot: -37.69911184307754 rad - pos: 58.524303,12.480953 - parent: 12 - uid: 28441 components: - type: Transform @@ -22051,7 +22097,8 @@ entities: - uid: 1782 components: - type: Transform - pos: -26.417336,-31.395433 + rot: -62.83185307179591 rad + pos: -19.470467,-27.590706 parent: 12 - proto: BoxBeaker entities: @@ -22131,6 +22178,16 @@ entities: parent: 12 - proto: BoxFolderBlack entities: + - uid: 7133 + components: + - type: Transform + pos: -2.734612,22.745487 + parent: 12 + - uid: 7135 + components: + - type: Transform + pos: -2.5170195,22.499947 + parent: 12 - uid: 10611 components: - type: Transform @@ -22215,7 +22272,7 @@ entities: - uid: 24175 components: - type: Transform - pos: 52.52656,46.632416 + pos: 52.518078,47.484 parent: 12 - uid: 28896 components: @@ -22579,12 +22636,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-28.5 parent: 12 - - uid: 28721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,3.5 - parent: 12 - uid: 29835 components: - type: Transform @@ -22622,6 +22673,12 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-13.5 parent: 12 + - uid: 495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,7.5 + parent: 12 - uid: 4771 components: - type: Transform @@ -22634,17 +22691,17 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,53.5 parent: 12 - - uid: 9576 + - uid: 10080 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,16.5 + pos: 1.5,-13.5 parent: 12 - - uid: 10080 + - uid: 11866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-13.5 + rot: 1.5707963267948966 rad + pos: 56.5,9.5 parent: 12 - uid: 13644 components: @@ -22704,23 +22761,11 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,-19.5 parent: 12 - - uid: 28722 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,1.5 - parent: 12 - uid: 28740 components: - type: Transform pos: 14.5,6.5 parent: 12 - - uid: 29345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,2.5 - parent: 12 - uid: 29367 components: - type: Transform @@ -22754,6 +22799,11 @@ entities: - type: Transform pos: 51.5,-12.5 parent: 12 + - uid: 68 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 12 - uid: 72 components: - type: Transform @@ -22769,6 +22819,11 @@ entities: - type: Transform pos: -10.5,4.5 parent: 12 + - uid: 79 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 12 - uid: 98 components: - type: Transform @@ -22794,6 +22849,11 @@ entities: - type: Transform pos: 52.5,-11.5 parent: 12 + - uid: 190 + components: + - type: Transform + pos: 37.5,-31.5 + parent: 12 - uid: 194 components: - type: Transform @@ -22809,11 +22869,21 @@ entities: - type: Transform pos: 1.5,68.5 parent: 12 + - uid: 271 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 12 - uid: 272 components: - type: Transform pos: 40.5,-13.5 parent: 12 + - uid: 273 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 12 - uid: 317 components: - type: Transform @@ -22824,6 +22894,11 @@ entities: - type: Transform pos: 30.5,-13.5 parent: 12 + - uid: 327 + components: + - type: Transform + pos: 53.5,-7.5 + parent: 12 - uid: 335 components: - type: Transform @@ -22869,10 +22944,25 @@ entities: - type: Transform pos: -45.5,1.5 parent: 12 - - uid: 501 + - uid: 505 + components: + - type: Transform + pos: 4.5,26.5 + parent: 12 + - uid: 524 components: - type: Transform - pos: 15.5,21.5 + pos: 1.5,17.5 + parent: 12 + - uid: 540 + components: + - type: Transform + pos: 11.5,22.5 + parent: 12 + - uid: 567 + components: + - type: Transform + pos: 1.5,19.5 parent: 12 - uid: 628 components: @@ -22959,6 +23049,11 @@ entities: - type: Transform pos: 24.5,12.5 parent: 12 + - uid: 1267 + components: + - type: Transform + pos: 3.5,20.5 + parent: 12 - uid: 1315 components: - type: Transform @@ -23379,6 +23474,11 @@ entities: - type: Transform pos: -37.5,-19.5 parent: 12 + - uid: 1500 + components: + - type: Transform + pos: 54.5,-5.5 + parent: 12 - uid: 1505 components: - type: Transform @@ -23654,6 +23754,11 @@ entities: - type: Transform pos: -30.5,-42.5 parent: 12 + - uid: 1611 + components: + - type: Transform + pos: 6.5,18.5 + parent: 12 - uid: 1614 components: - type: Transform @@ -24054,6 +24159,11 @@ entities: - type: Transform pos: -22.5,-29.5 parent: 12 + - uid: 1783 + components: + - type: Transform + pos: 13.5,21.5 + parent: 12 - uid: 1793 components: - type: Transform @@ -24074,11 +24184,46 @@ entities: - type: Transform pos: -38.5,28.5 parent: 12 + - uid: 1856 + components: + - type: Transform + pos: -3.5,20.5 + parent: 12 + - uid: 1916 + components: + - type: Transform + pos: 13.5,19.5 + parent: 12 + - uid: 1918 + components: + - type: Transform + pos: 5.5,18.5 + parent: 12 - uid: 1943 components: - type: Transform pos: -43.5,-14.5 parent: 12 + - uid: 2024 + components: + - type: Transform + pos: 15.5,19.5 + parent: 12 + - uid: 2027 + components: + - type: Transform + pos: 17.5,14.5 + parent: 12 + - uid: 2065 + components: + - type: Transform + pos: 17.5,16.5 + parent: 12 + - uid: 2103 + components: + - type: Transform + pos: 17.5,17.5 + parent: 12 - uid: 2136 components: - type: Transform @@ -24324,6 +24469,11 @@ entities: - type: Transform pos: 30.5,-12.5 parent: 12 + - uid: 2464 + components: + - type: Transform + pos: 13.5,12.5 + parent: 12 - uid: 2509 components: - type: Transform @@ -24349,6 +24499,16 @@ entities: - type: Transform pos: 0.5,-46.5 parent: 12 + - uid: 2574 + components: + - type: Transform + pos: 0.5,22.5 + parent: 12 + - uid: 2610 + components: + - type: Transform + pos: -2.5,21.5 + parent: 12 - uid: 2630 components: - type: Transform @@ -24364,6 +24524,11 @@ entities: - type: Transform pos: 40.5,-22.5 parent: 12 + - uid: 2655 + components: + - type: Transform + pos: 1.5,20.5 + parent: 12 - uid: 2670 components: - type: Transform @@ -24379,6 +24544,11 @@ entities: - type: Transform pos: 40.5,1.5 parent: 12 + - uid: 2705 + components: + - type: Transform + pos: 51.5,-6.5 + parent: 12 - uid: 2725 components: - type: Transform @@ -24429,6 +24599,16 @@ entities: - type: Transform pos: 40.5,4.5 parent: 12 + - uid: 2881 + components: + - type: Transform + pos: 60.5,6.5 + parent: 12 + - uid: 2890 + components: + - type: Transform + pos: 61.5,6.5 + parent: 12 - uid: 2908 components: - type: Transform @@ -24464,6 +24644,21 @@ entities: - type: Transform pos: 0.5,-36.5 parent: 12 + - uid: 2975 + components: + - type: Transform + pos: 4.5,18.5 + parent: 12 + - uid: 3003 + components: + - type: Transform + pos: 12.5,12.5 + parent: 12 + - uid: 3012 + components: + - type: Transform + pos: 16.5,14.5 + parent: 12 - uid: 3017 components: - type: Transform @@ -24474,6 +24669,11 @@ entities: - type: Transform pos: 10.5,-40.5 parent: 12 + - uid: 3089 + components: + - type: Transform + pos: -0.5,22.5 + parent: 12 - uid: 3102 components: - type: Transform @@ -24494,6 +24694,11 @@ entities: - type: Transform pos: 54.5,-21.5 parent: 12 + - uid: 3127 + components: + - type: Transform + pos: 10.5,12.5 + parent: 12 - uid: 3129 components: - type: Transform @@ -24504,6 +24709,11 @@ entities: - type: Transform pos: 11.5,-11.5 parent: 12 + - uid: 3134 + components: + - type: Transform + pos: 4.5,12.5 + parent: 12 - uid: 3157 components: - type: Transform @@ -25499,6 +25709,11 @@ entities: - type: Transform pos: 15.5,5.5 parent: 12 + - uid: 3710 + components: + - type: Transform + pos: -2.5,20.5 + parent: 12 - uid: 3713 components: - type: Transform @@ -25524,6 +25739,11 @@ entities: - type: Transform pos: 10.5,-39.5 parent: 12 + - uid: 3942 + components: + - type: Transform + pos: 8.5,19.5 + parent: 12 - uid: 3962 components: - type: Transform @@ -25964,6 +26184,11 @@ entities: - type: Transform pos: 9.5,-1.5 parent: 12 + - uid: 4692 + components: + - type: Transform + pos: 9.5,19.5 + parent: 12 - uid: 4721 components: - type: Transform @@ -26004,6 +26229,21 @@ entities: - type: Transform pos: -23.5,-11.5 parent: 12 + - uid: 4954 + components: + - type: Transform + pos: 63.5,6.5 + parent: 12 + - uid: 4974 + components: + - type: Transform + pos: 1.5,22.5 + parent: 12 + - uid: 4987 + components: + - type: Transform + pos: -2.5,22.5 + parent: 12 - uid: 5013 components: - type: Transform @@ -26109,6 +26349,11 @@ entities: - type: Transform pos: 21.5,-3.5 parent: 12 + - uid: 5214 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 12 - uid: 5218 components: - type: Transform @@ -26159,11 +26404,26 @@ entities: - type: Transform pos: 34.5,0.5 parent: 12 + - uid: 5482 + components: + - type: Transform + pos: 2.5,22.5 + parent: 12 + - uid: 5497 + components: + - type: Transform + pos: 1.5,14.5 + parent: 12 - uid: 5503 components: - type: Transform pos: 36.5,4.5 parent: 12 + - uid: 5512 + components: + - type: Transform + pos: 1.5,15.5 + parent: 12 - uid: 5535 components: - type: Transform @@ -27019,11 +27279,21 @@ entities: - type: Transform pos: 12.5,-33.5 parent: 12 + - uid: 6261 + components: + - type: Transform + pos: -1.5,22.5 + parent: 12 - uid: 6267 components: - type: Transform pos: 37.5,4.5 parent: 12 + - uid: 6287 + components: + - type: Transform + pos: 13.5,13.5 + parent: 12 - uid: 6703 components: - type: Transform @@ -27034,6 +27304,21 @@ entities: - type: Transform pos: 35.5,0.5 parent: 12 + - uid: 6732 + components: + - type: Transform + pos: 13.5,14.5 + parent: 12 + - uid: 6739 + components: + - type: Transform + pos: 14.5,14.5 + parent: 12 + - uid: 6778 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 12 - uid: 6838 components: - type: Transform @@ -27389,6 +27674,16 @@ entities: - type: Transform pos: 32.5,-38.5 parent: 12 + - uid: 7153 + components: + - type: Transform + pos: 57.5,7.5 + parent: 12 + - uid: 7159 + components: + - type: Transform + pos: 1.5,12.5 + parent: 12 - uid: 7202 components: - type: Transform @@ -27409,11 +27704,21 @@ entities: - type: Transform pos: 37.5,3.5 parent: 12 + - uid: 7233 + components: + - type: Transform + pos: 13.5,20.5 + parent: 12 - uid: 7258 components: - type: Transform pos: -46.5,52.5 parent: 12 + - uid: 7261 + components: + - type: Transform + pos: 12.5,21.5 + parent: 12 - uid: 7320 components: - type: Transform @@ -27444,10 +27749,10 @@ entities: - type: Transform pos: -9.5,-10.5 parent: 12 - - uid: 7386 + - uid: 7366 components: - type: Transform - pos: 5.5,13.5 + pos: 3.5,12.5 parent: 12 - uid: 7442 components: @@ -27459,6 +27764,16 @@ entities: - type: Transform pos: -42.5,51.5 parent: 12 + - uid: 7528 + components: + - type: Transform + pos: 56.5,-5.5 + parent: 12 + - uid: 7534 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 12 - uid: 7538 components: - type: Transform @@ -27469,6 +27784,21 @@ entities: - type: Transform pos: -42.5,52.5 parent: 12 + - uid: 7556 + components: + - type: Transform + pos: 1.5,13.5 + parent: 12 + - uid: 7557 + components: + - type: Transform + pos: 5.5,12.5 + parent: 12 + - uid: 7563 + components: + - type: Transform + pos: 2.5,12.5 + parent: 12 - uid: 7564 components: - type: Transform @@ -28774,11 +29104,6 @@ entities: - type: Transform pos: 38.5,11.5 parent: 12 - - uid: 8877 - components: - - type: Transform - pos: 8.5,13.5 - parent: 12 - uid: 8917 components: - type: Transform @@ -28809,6 +29134,51 @@ entities: - type: Transform pos: -10.5,-10.5 parent: 12 + - uid: 9000 + components: + - type: Transform + pos: 58.5,8.5 + parent: 12 + - uid: 9005 + components: + - type: Transform + pos: 58.5,9.5 + parent: 12 + - uid: 9006 + components: + - type: Transform + pos: 58.5,10.5 + parent: 12 + - uid: 9007 + components: + - type: Transform + pos: 59.5,10.5 + parent: 12 + - uid: 9008 + components: + - type: Transform + pos: 61.5,10.5 + parent: 12 + - uid: 9009 + components: + - type: Transform + pos: 61.5,9.5 + parent: 12 + - uid: 9010 + components: + - type: Transform + pos: 61.5,8.5 + parent: 12 + - uid: 9012 + components: + - type: Transform + pos: 62.5,2.5 + parent: 12 + - uid: 9038 + components: + - type: Transform + pos: 64.5,6.5 + parent: 12 - uid: 9043 components: - type: Transform @@ -28819,6 +29189,16 @@ entities: - type: Transform pos: -10.5,-2.5 parent: 12 + - uid: 9046 + components: + - type: Transform + pos: 64.5,2.5 + parent: 12 + - uid: 9047 + components: + - type: Transform + pos: 63.5,2.5 + parent: 12 - uid: 9063 components: - type: Transform @@ -28987,32 +29367,7 @@ entities: - uid: 9179 components: - type: Transform - pos: 34.5,-32.5 - parent: 12 - - uid: 9180 - components: - - type: Transform - pos: 34.5,-31.5 - parent: 12 - - uid: 9181 - components: - - type: Transform - pos: 35.5,-31.5 - parent: 12 - - uid: 9182 - components: - - type: Transform - pos: 36.5,-31.5 - parent: 12 - - uid: 9183 - components: - - type: Transform - pos: 37.5,-31.5 - parent: 12 - - uid: 9184 - components: - - type: Transform - pos: 38.5,-31.5 + pos: 51.5,-5.5 parent: 12 - uid: 9185 components: @@ -29204,60 +29559,75 @@ entities: - type: Transform pos: 22.5,5.5 parent: 12 - - uid: 9520 + - uid: 9536 components: - type: Transform - pos: 7.5,14.5 + pos: 61.5,7.5 parent: 12 - - uid: 9522 + - uid: 9538 components: - type: Transform - pos: 7.5,16.5 + pos: 63.5,-1.5 parent: 12 - - uid: 9530 + - uid: 9547 components: - type: Transform - pos: 9.5,22.5 + pos: -1.5,-15.5 parent: 12 - - uid: 9538 + - uid: 9577 components: - type: Transform - pos: 7.5,19.5 + pos: 4.5,23.5 parent: 12 - - uid: 9547 + - uid: 9584 components: - type: Transform - pos: -1.5,-15.5 + pos: 3.5,68.5 parent: 12 - - uid: 9553 + - uid: 9595 components: - type: Transform - pos: 7.5,17.5 + pos: 53.5,-8.5 parent: 12 - - uid: 9565 + - uid: 9603 components: - type: Transform - pos: 7.5,18.5 + pos: 11.5,19.5 parent: 12 - - uid: 9577 + - uid: 9615 components: - type: Transform - pos: 10.5,22.5 + pos: 3.5,19.5 parent: 12 - - uid: 9584 + - uid: 9617 components: - type: Transform - pos: 3.5,68.5 + pos: 11.5,23.5 parent: 12 - - uid: 9616 + - uid: 9635 components: - type: Transform - pos: 3.5,15.5 + pos: 39.5,-14.5 parent: 12 - - uid: 9635 + - uid: 9653 components: - type: Transform - pos: 39.5,-14.5 + pos: 4.5,22.5 + parent: 12 + - uid: 9655 + components: + - type: Transform + pos: 4.5,21.5 + parent: 12 + - uid: 9668 + components: + - type: Transform + pos: 4.5,25.5 + parent: 12 + - uid: 9676 + components: + - type: Transform + pos: 16.5,18.5 parent: 12 - uid: 9677 components: @@ -29269,25 +29639,25 @@ entities: - type: Transform pos: 30.5,1.5 parent: 12 - - uid: 9723 + - uid: 9721 components: - type: Transform - pos: 7.5,21.5 + pos: 14.5,19.5 parent: 12 - - uid: 9724 + - uid: 9832 components: - type: Transform - pos: 7.5,22.5 + pos: 54.5,-8.5 parent: 12 - - uid: 9727 + - uid: 9844 components: - type: Transform - pos: 13.5,19.5 + pos: -5.5,-42.5 parent: 12 - - uid: 9844 + - uid: 9852 components: - type: Transform - pos: -5.5,-42.5 + pos: 2.5,20.5 parent: 12 - uid: 9854 components: @@ -29439,6 +29809,11 @@ entities: - type: Transform pos: 3.5,-36.5 parent: 12 + - uid: 9957 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 12 - uid: 9973 components: - type: Transform @@ -29604,6 +29979,21 @@ entities: - type: Transform pos: -20.5,-3.5 parent: 12 + - uid: 10603 + components: + - type: Transform + pos: 55.5,-8.5 + parent: 12 + - uid: 10604 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 12 + - uid: 10623 + components: + - type: Transform + pos: 17.5,15.5 + parent: 12 - uid: 10625 components: - type: Transform @@ -29659,11 +30049,6 @@ entities: - type: Transform pos: 8.5,-8.5 parent: 12 - - uid: 10807 - components: - - type: Transform - pos: 13.5,20.5 - parent: 12 - uid: 10809 components: - type: Transform @@ -29674,6 +30059,36 @@ entities: - type: Transform pos: 8.5,-6.5 parent: 12 + - uid: 10833 + components: + - type: Transform + pos: 10.5,21.5 + parent: 12 + - uid: 10869 + components: + - type: Transform + pos: 1.5,16.5 + parent: 12 + - uid: 10968 + components: + - type: Transform + pos: 7.5,19.5 + parent: 12 + - uid: 11044 + components: + - type: Transform + pos: 11.5,20.5 + parent: 12 + - uid: 11046 + components: + - type: Transform + pos: 11.5,12.5 + parent: 12 + - uid: 11047 + components: + - type: Transform + pos: 15.5,14.5 + parent: 12 - uid: 11129 components: - type: Transform @@ -29689,10 +30104,45 @@ entities: - type: Transform pos: 30.5,-34.5 parent: 12 - - uid: 11282 + - uid: 11200 + components: + - type: Transform + pos: 7.5,12.5 + parent: 12 + - uid: 11204 + components: + - type: Transform + pos: 6.5,12.5 + parent: 12 + - uid: 11214 components: - type: Transform - pos: 7.5,20.5 + pos: 3.5,22.5 + parent: 12 + - uid: 11215 + components: + - type: Transform + pos: 6.5,19.5 + parent: 12 + - uid: 11230 + components: + - type: Transform + pos: 60.5,10.5 + parent: 12 + - uid: 11255 + components: + - type: Transform + pos: 4.5,19.5 + parent: 12 + - uid: 11276 + components: + - type: Transform + pos: 8.5,12.5 + parent: 12 + - uid: 11289 + components: + - type: Transform + pos: 64.5,-1.5 parent: 12 - uid: 11293 components: @@ -29709,6 +30159,21 @@ entities: - type: Transform pos: 47.5,-0.5 parent: 12 + - uid: 11305 + components: + - type: Transform + pos: 60.5,-1.5 + parent: 12 + - uid: 11315 + components: + - type: Transform + pos: 16.5,19.5 + parent: 12 + - uid: 11328 + components: + - type: Transform + pos: 9.5,20.5 + parent: 12 - uid: 11366 components: - type: Transform @@ -29729,6 +30194,11 @@ entities: - type: Transform pos: 43.5,26.5 parent: 12 + - uid: 11380 + components: + - type: Transform + pos: 62.5,-1.5 + parent: 12 - uid: 11388 components: - type: Transform @@ -29749,6 +30219,11 @@ entities: - type: Transform pos: 41.5,9.5 parent: 12 + - uid: 11453 + components: + - type: Transform + pos: 61.5,-1.5 + parent: 12 - uid: 11484 components: - type: Transform @@ -30327,12 +30802,7 @@ entities: - uid: 12266 components: - type: Transform - pos: 13.5,22.5 - parent: 12 - - uid: 12273 - components: - - type: Transform - pos: 12.5,22.5 + pos: 9.5,12.5 parent: 12 - uid: 12288 components: @@ -30354,6 +30824,11 @@ entities: - type: Transform pos: 17.5,-8.5 parent: 12 + - uid: 12573 + components: + - type: Transform + pos: 1.5,18.5 + parent: 12 - uid: 12636 components: - type: Transform @@ -30369,11 +30844,6 @@ entities: - type: Transform pos: 17.5,-2.5 parent: 12 - - uid: 12714 - components: - - type: Transform - pos: 3.5,16.5 - parent: 12 - uid: 12722 components: - type: Transform @@ -32179,6 +32649,11 @@ entities: - type: Transform pos: 42.5,64.5 parent: 12 + - uid: 15131 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 12 - uid: 15299 components: - type: Transform @@ -32484,16 +32959,6 @@ entities: - type: Transform pos: 39.5,46.5 parent: 12 - - uid: 15670 - components: - - type: Transform - pos: -3.5,20.5 - parent: 12 - - uid: 15673 - components: - - type: Transform - pos: -4.5,20.5 - parent: 12 - uid: 15674 components: - type: Transform @@ -33309,11 +33774,6 @@ entities: - type: Transform pos: 0.5,16.5 parent: 12 - - uid: 16180 - components: - - type: Transform - pos: 0.5,15.5 - parent: 12 - uid: 16181 components: - type: Transform @@ -33894,135 +34354,35 @@ entities: - type: Transform pos: 15.5,12.5 parent: 12 - - uid: 16342 - components: - - type: Transform - pos: 15.5,15.5 - parent: 12 - uid: 16344 components: - type: Transform - pos: 16.5,15.5 - parent: 12 - - uid: 16345 - components: - - type: Transform - pos: 17.5,15.5 + pos: 57.5,-2.5 parent: 12 - uid: 16346 components: - type: Transform - pos: 18.5,15.5 - parent: 12 - - uid: 16347 - components: - - type: Transform - pos: 14.5,15.5 - parent: 12 - - uid: 16348 - components: - - type: Transform - pos: 13.5,15.5 - parent: 12 - - uid: 16349 - components: - - type: Transform - pos: 12.5,15.5 - parent: 12 - - uid: 16350 - components: - - type: Transform - pos: 11.5,15.5 + pos: 11.5,21.5 parent: 12 - uid: 16351 components: - type: Transform - pos: 10.5,15.5 + pos: 4.5,24.5 parent: 12 - uid: 16352 components: - type: Transform - pos: 9.5,15.5 - parent: 12 - - uid: 16353 - components: - - type: Transform - pos: 8.5,15.5 - parent: 12 - - uid: 16354 - components: - - type: Transform - pos: 7.5,15.5 - parent: 12 - - uid: 16358 - components: - - type: Transform - pos: 4.5,13.5 - parent: 12 - - uid: 16359 - components: - - type: Transform - pos: 4.5,14.5 - parent: 12 - - uid: 16360 - components: - - type: Transform - pos: 13.5,16.5 - parent: 12 - - uid: 16361 - components: - - type: Transform - pos: 13.5,17.5 - parent: 12 - - uid: 16362 - components: - - type: Transform - pos: 13.5,18.5 + pos: 58.5,6.5 parent: 12 - uid: 16363 components: - type: Transform pos: -22.5,66.5 parent: 12 - - uid: 16367 - components: - - type: Transform - pos: 8.5,12.5 - parent: 12 - - uid: 16368 - components: - - type: Transform - pos: 13.5,12.5 - parent: 12 - - uid: 16369 - components: - - type: Transform - pos: 13.5,13.5 - parent: 12 - - uid: 16370 - components: - - type: Transform - pos: 13.5,14.5 - parent: 12 - uid: 16371 components: - type: Transform - pos: 7.5,13.5 - parent: 12 - - uid: 16372 - components: - - type: Transform - pos: 6.5,13.5 - parent: 12 - - uid: 16375 - components: - - type: Transform - pos: 6.5,12.5 - parent: 12 - - uid: 16376 - components: - - type: Transform - pos: 6.5,11.5 + pos: 17.5,18.5 parent: 12 - uid: 16378 components: @@ -34109,6 +34469,11 @@ entities: - type: Transform pos: -12.5,-5.5 parent: 12 + - uid: 16436 + components: + - type: Transform + pos: 9.5,21.5 + parent: 12 - uid: 16842 components: - type: Transform @@ -35979,50 +36344,25 @@ entities: - type: Transform pos: -45.5,22.5 parent: 12 - - uid: 19556 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 12 - - uid: 19569 - components: - - type: Transform - pos: 3.5,17.5 - parent: 12 - - uid: 19612 + - uid: 19294 components: - type: Transform - pos: 4.5,19.5 + pos: 57.5,8.5 parent: 12 - - uid: 19613 + - uid: 19556 components: - type: Transform - pos: 4.5,17.5 + pos: -0.5,-15.5 parent: 12 - uid: 19643 components: - type: Transform pos: 0.5,-15.5 parent: 12 - - uid: 19818 - components: - - type: Transform - pos: 4.5,15.5 - parent: 12 - - uid: 19821 - components: - - type: Transform - pos: 13.5,21.5 - parent: 12 - - uid: 19824 - components: - - type: Transform - pos: 4.5,20.5 - parent: 12 - - uid: 19825 + - uid: 19663 components: - type: Transform - pos: 5.5,20.5 + pos: 49.5,-5.5 parent: 12 - uid: 19826 components: @@ -37059,6 +37399,11 @@ entities: - type: Transform pos: -28.5,40.5 parent: 12 + - uid: 20789 + components: + - type: Transform + pos: 52.5,-8.5 + parent: 12 - uid: 20802 components: - type: Transform @@ -37874,6 +38219,11 @@ entities: - type: Transform pos: -2.5,34.5 parent: 12 + - uid: 23125 + components: + - type: Transform + pos: 50.5,-5.5 + parent: 12 - uid: 23137 components: - type: Transform @@ -37904,6 +38254,16 @@ entities: - type: Transform pos: -54.5,61.5 parent: 12 + - uid: 24202 + components: + - type: Transform + pos: 47.5,-5.5 + parent: 12 + - uid: 24204 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 12 - uid: 24255 components: - type: Transform @@ -37939,11 +38299,21 @@ entities: - type: Transform pos: -52.5,59.5 parent: 12 + - uid: 24455 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 12 - uid: 24456 components: - type: Transform pos: -52.5,58.5 parent: 12 + - uid: 24469 + components: + - type: Transform + pos: 48.5,-5.5 + parent: 12 - uid: 24640 components: - type: Transform @@ -39694,16 +40064,46 @@ entities: - type: Transform pos: -23.5,-12.5 parent: 12 - - uid: 25526 + - uid: 25568 components: - type: Transform - pos: 4.5,18.5 + pos: -60.5,-55.5 + parent: 12 + - uid: 25581 + components: + - type: Transform + pos: -60.5,-56.5 + parent: 12 + - uid: 25598 + components: + - type: Transform + pos: -60.5,-57.5 parent: 12 - uid: 25610 components: - type: Transform pos: 50.5,-0.5 parent: 12 + - uid: 25682 + components: + - type: Transform + pos: -60.5,-58.5 + parent: 12 + - uid: 25738 + components: + - type: Transform + pos: -60.5,-59.5 + parent: 12 + - uid: 25822 + components: + - type: Transform + pos: -61.5,-59.5 + parent: 12 + - uid: 25823 + components: + - type: Transform + pos: -59.5,-59.5 + parent: 12 - uid: 26097 components: - type: Transform @@ -39749,16 +40149,6 @@ entities: - type: Transform pos: -53.5,-38.5 parent: 12 - - uid: 26263 - components: - - type: Transform - pos: 16.5,14.5 - parent: 12 - - uid: 26264 - components: - - type: Transform - pos: 16.5,16.5 - parent: 12 - uid: 26295 components: - type: Transform @@ -39854,11 +40244,6 @@ entities: - type: Transform pos: 17.5,0.5 parent: 12 - - uid: 26446 - components: - - type: Transform - pos: 56.5,-2.5 - parent: 12 - uid: 26456 components: - type: Transform @@ -40024,11 +40409,6 @@ entities: - type: Transform pos: 28.5,10.5 parent: 12 - - uid: 26804 - components: - - type: Transform - pos: 16.5,20.5 - parent: 12 - uid: 26812 components: - type: Transform @@ -40079,41 +40459,11 @@ entities: - type: Transform pos: 57.5,-3.5 parent: 12 - - uid: 26859 - components: - - type: Transform - pos: 61.5,-3.5 - parent: 12 - - uid: 26860 - components: - - type: Transform - pos: 62.5,-3.5 - parent: 12 - uid: 26861 components: - type: Transform pos: 58.5,-3.5 parent: 12 - - uid: 26862 - components: - - type: Transform - pos: 59.5,-3.5 - parent: 12 - - uid: 26863 - components: - - type: Transform - pos: 60.5,-3.5 - parent: 12 - - uid: 26864 - components: - - type: Transform - pos: 63.5,-3.5 - parent: 12 - - uid: 26867 - components: - - type: Transform - pos: 65.5,-3.5 - parent: 12 - uid: 26868 components: - type: Transform @@ -40124,216 +40474,6 @@ entities: - type: Transform pos: 65.5,-2.5 parent: 12 - - uid: 26870 - components: - - type: Transform - pos: 66.5,-2.5 - parent: 12 - - uid: 26871 - components: - - type: Transform - pos: 67.5,-2.5 - parent: 12 - - uid: 26872 - components: - - type: Transform - pos: 68.5,-2.5 - parent: 12 - - uid: 26873 - components: - - type: Transform - pos: 69.5,-2.5 - parent: 12 - - uid: 26874 - components: - - type: Transform - pos: 70.5,-2.5 - parent: 12 - - uid: 26875 - components: - - type: Transform - pos: 71.5,-2.5 - parent: 12 - - uid: 26876 - components: - - type: Transform - pos: 72.5,-2.5 - parent: 12 - - uid: 26877 - components: - - type: Transform - pos: 73.5,-2.5 - parent: 12 - - uid: 26878 - components: - - type: Transform - pos: 74.5,-2.5 - parent: 12 - - uid: 26880 - components: - - type: Transform - pos: 75.5,-2.5 - parent: 12 - - uid: 26883 - components: - - type: Transform - pos: 76.5,-2.5 - parent: 12 - - uid: 26884 - components: - - type: Transform - pos: 77.5,-2.5 - parent: 12 - - uid: 26886 - components: - - type: Transform - pos: 78.5,-2.5 - parent: 12 - - uid: 26887 - components: - - type: Transform - pos: 79.5,-2.5 - parent: 12 - - uid: 26888 - components: - - type: Transform - pos: 79.5,-1.5 - parent: 12 - - uid: 26889 - components: - - type: Transform - pos: 79.5,-0.5 - parent: 12 - - uid: 26890 - components: - - type: Transform - pos: 79.5,0.5 - parent: 12 - - uid: 26891 - components: - - type: Transform - pos: 79.5,1.5 - parent: 12 - - uid: 26895 - components: - - type: Transform - pos: 79.5,2.5 - parent: 12 - - uid: 26896 - components: - - type: Transform - pos: 79.5,3.5 - parent: 12 - - uid: 26897 - components: - - type: Transform - pos: 79.5,4.5 - parent: 12 - - uid: 26901 - components: - - type: Transform - pos: 79.5,5.5 - parent: 12 - - uid: 26902 - components: - - type: Transform - pos: 79.5,6.5 - parent: 12 - - uid: 26903 - components: - - type: Transform - pos: 79.5,7.5 - parent: 12 - - uid: 26904 - components: - - type: Transform - pos: 79.5,8.5 - parent: 12 - - uid: 26905 - components: - - type: Transform - pos: 79.5,9.5 - parent: 12 - - uid: 26906 - components: - - type: Transform - pos: 79.5,10.5 - parent: 12 - - uid: 26907 - components: - - type: Transform - pos: 14.5,21.5 - parent: 12 - - uid: 26908 - components: - - type: Transform - pos: 79.5,11.5 - parent: 12 - - uid: 26909 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 26910 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - - uid: 26911 - components: - - type: Transform - pos: 76.5,11.5 - parent: 12 - - uid: 26912 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 26913 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - - uid: 26914 - components: - - type: Transform - pos: 73.5,11.5 - parent: 12 - - uid: 26915 - components: - - type: Transform - pos: 72.5,11.5 - parent: 12 - - uid: 26916 - components: - - type: Transform - pos: 71.5,11.5 - parent: 12 - - uid: 26917 - components: - - type: Transform - pos: 70.5,11.5 - parent: 12 - - uid: 26918 - components: - - type: Transform - pos: 69.5,11.5 - parent: 12 - - uid: 26919 - components: - - type: Transform - pos: 67.5,11.5 - parent: 12 - - uid: 26920 - components: - - type: Transform - pos: 68.5,11.5 - parent: 12 - - uid: 26921 - components: - - type: Transform - pos: 66.5,11.5 - parent: 12 - uid: 26922 components: - type: Transform @@ -40404,66 +40544,11 @@ entities: - type: Transform pos: 65.5,-1.5 parent: 12 - - uid: 26943 - components: - - type: Transform - pos: 65.5,12.5 - parent: 12 - - uid: 26945 - components: - - type: Transform - pos: 64.5,12.5 - parent: 12 - - uid: 26950 - components: - - type: Transform - pos: 63.5,12.5 - parent: 12 - - uid: 26951 - components: - - type: Transform - pos: 62.5,12.5 - parent: 12 - - uid: 26952 - components: - - type: Transform - pos: 62.5,11.5 - parent: 12 - - uid: 26953 - components: - - type: Transform - pos: 62.5,10.5 - parent: 12 - - uid: 26954 - components: - - type: Transform - pos: 62.5,8.5 - parent: 12 - - uid: 26956 - components: - - type: Transform - pos: 62.5,7.5 - parent: 12 - uid: 26957 components: - type: Transform pos: 62.5,6.5 parent: 12 - - uid: 26958 - components: - - type: Transform - pos: 62.5,5.5 - parent: 12 - - uid: 26959 - components: - - type: Transform - pos: 62.5,9.5 - parent: 12 - - uid: 26960 - components: - - type: Transform - pos: 62.5,4.5 - parent: 12 - uid: 26961 components: - type: Transform @@ -41209,11 +41294,6 @@ entities: - type: Transform pos: -28.5,-15.5 parent: 12 - - uid: 28420 - components: - - type: Transform - pos: 11.5,22.5 - parent: 12 - uid: 28457 components: - type: Transform @@ -41459,16 +41539,6 @@ entities: - type: Transform pos: 46.5,8.5 parent: 12 - - uid: 28672 - components: - - type: Transform - pos: 59.5,7.5 - parent: 12 - - uid: 28678 - components: - - type: Transform - pos: 56.5,-3.5 - parent: 12 - uid: 28679 components: - type: Transform @@ -41479,11 +41549,6 @@ entities: - type: Transform pos: 59.5,6.5 parent: 12 - - uid: 28681 - components: - - type: Transform - pos: 59.5,-1.5 - parent: 12 - uid: 28742 components: - type: Transform @@ -41499,31 +41564,6 @@ entities: - type: Transform pos: 57.5,-5.5 parent: 12 - - uid: 28868 - components: - - type: Transform - pos: 57.5,-6.5 - parent: 12 - - uid: 28869 - components: - - type: Transform - pos: 56.5,-6.5 - parent: 12 - - uid: 28870 - components: - - type: Transform - pos: 55.5,-6.5 - parent: 12 - - uid: 28871 - components: - - type: Transform - pos: 54.5,-6.5 - parent: 12 - - uid: 28872 - components: - - type: Transform - pos: 53.5,-6.5 - parent: 12 - uid: 28873 components: - type: Transform @@ -41599,26 +41639,6 @@ entities: - type: Transform pos: 58.5,7.5 parent: 12 - - uid: 28903 - components: - - type: Transform - pos: 58.5,8.5 - parent: 12 - - uid: 28905 - components: - - type: Transform - pos: 58.5,10.5 - parent: 12 - - uid: 28906 - components: - - type: Transform - pos: 58.5,11.5 - parent: 12 - - uid: 28907 - components: - - type: Transform - pos: 58.5,12.5 - parent: 12 - uid: 28908 components: - type: Transform @@ -41934,26 +41954,6 @@ entities: - type: Transform pos: 42.5,-0.5 parent: 12 - - uid: 29313 - components: - - type: Transform - pos: 9.5,12.5 - parent: 12 - - uid: 29314 - components: - - type: Transform - pos: 10.5,12.5 - parent: 12 - - uid: 29315 - components: - - type: Transform - pos: 12.5,12.5 - parent: 12 - - uid: 29316 - components: - - type: Transform - pos: 11.5,12.5 - parent: 12 - uid: 29331 components: - type: Transform @@ -42509,21 +42509,6 @@ entities: - type: Transform pos: 49.5,-9.5 parent: 12 - - uid: 29995 - components: - - type: Transform - pos: 47.5,-6.5 - parent: 12 - - uid: 29996 - components: - - type: Transform - pos: 48.5,-6.5 - parent: 12 - - uid: 29997 - components: - - type: Transform - pos: 49.5,-6.5 - parent: 12 - uid: 30242 components: - type: Transform @@ -43584,16 +43569,6 @@ entities: - type: Transform pos: -7.5,-55.5 parent: 12 - - uid: 31893 - components: - - type: Transform - pos: 16.5,21.5 - parent: 12 - - uid: 31909 - components: - - type: Transform - pos: 58.5,9.5 - parent: 12 - uid: 32016 components: - type: Transform @@ -43744,8 +43719,8 @@ entities: - uid: 28714 components: - type: Transform - rot: -6.283185307179586 rad - pos: 54.502815,-6.30376 + rot: -37.69911184307754 rad + pos: 54.474026,-5.1717267 parent: 12 - proto: CableApcStack1 entities: @@ -43897,6 +43872,11 @@ entities: - type: Transform pos: 58.5,2.5 parent: 12 + - uid: 493 + components: + - type: Transform + pos: 8.5,28.5 + parent: 12 - uid: 681 components: - type: Transform @@ -43947,11 +43927,6 @@ entities: - type: Transform pos: -38.5,-29.5 parent: 12 - - uid: 887 - components: - - type: Transform - pos: 10.5,15.5 - parent: 12 - uid: 896 components: - type: Transform @@ -43962,6 +43937,11 @@ entities: - type: Transform pos: 39.5,3.5 parent: 12 + - uid: 904 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 12 - uid: 938 components: - type: Transform @@ -43977,31 +43957,6 @@ entities: - type: Transform pos: -44.5,-14.5 parent: 12 - - uid: 1055 - components: - - type: Transform - pos: 6.5,12.5 - parent: 12 - - uid: 1056 - components: - - type: Transform - pos: 6.5,13.5 - parent: 12 - - uid: 1057 - components: - - type: Transform - pos: 8.5,11.5 - parent: 12 - - uid: 1068 - components: - - type: Transform - pos: 6.5,11.5 - parent: 12 - - uid: 1069 - components: - - type: Transform - pos: 7.5,11.5 - parent: 12 - uid: 1170 components: - type: Transform @@ -44147,6 +44102,11 @@ entities: - type: Transform pos: -24.5,-26.5 parent: 12 + - uid: 1344 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 12 - uid: 1345 components: - type: Transform @@ -44157,6 +44117,11 @@ entities: - type: Transform pos: -15.5,-30.5 parent: 12 + - uid: 1349 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 12 - uid: 1350 components: - type: Transform @@ -44207,11 +44172,26 @@ entities: - type: Transform pos: -43.5,-13.5 parent: 12 + - uid: 1835 + components: + - type: Transform + pos: 11.5,15.5 + parent: 12 + - uid: 1975 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 12 - uid: 1997 components: - type: Transform pos: 24.5,5.5 parent: 12 + - uid: 2018 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 12 - uid: 2053 components: - type: Transform @@ -44232,6 +44212,11 @@ entities: - type: Transform pos: 40.5,4.5 parent: 12 + - uid: 2119 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 12 - uid: 2122 components: - type: Transform @@ -44297,10 +44282,20 @@ entities: - type: Transform pos: 15.5,10.5 parent: 12 - - uid: 2604 + - uid: 2310 components: - type: Transform - pos: 79.5,0.5 + pos: 30.5,-12.5 + parent: 12 + - uid: 2466 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 12 + - uid: 2508 + components: + - type: Transform + pos: 14.5,-15.5 parent: 12 - uid: 2669 components: @@ -44337,11 +44332,6 @@ entities: - type: Transform pos: 19.5,5.5 parent: 12 - - uid: 2975 - components: - - type: Transform - pos: 1.5,20.5 - parent: 12 - uid: 2989 components: - type: Transform @@ -44352,6 +44342,11 @@ entities: - type: Transform pos: 37.5,3.5 parent: 12 + - uid: 3131 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 12 - uid: 3147 components: - type: Transform @@ -44532,15 +44527,30 @@ entities: - type: Transform pos: -9.5,-28.5 parent: 12 + - uid: 3517 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 12 - uid: 3632 components: - type: Transform pos: 16.5,5.5 parent: 12 - - uid: 3894 + - uid: 3945 + components: + - type: Transform + pos: 62.5,0.5 + parent: 12 + - uid: 3954 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 12 + - uid: 3957 components: - type: Transform - pos: 54.5,-3.5 + pos: 4.5,23.5 parent: 12 - uid: 3985 components: @@ -44555,7 +44565,12 @@ entities: - uid: 4058 components: - type: Transform - pos: 15.5,11.5 + pos: 6.5,28.5 + parent: 12 + - uid: 4079 + components: + - type: Transform + pos: 15.5,28.5 parent: 12 - uid: 4180 components: @@ -44582,11 +44597,21 @@ entities: - type: Transform pos: -10.5,-27.5 parent: 12 + - uid: 4185 + components: + - type: Transform + pos: 1.5,17.5 + parent: 12 - uid: 4199 components: - type: Transform pos: 10.5,-47.5 parent: 12 + - uid: 4226 + components: + - type: Transform + pos: 2.5,20.5 + parent: 12 - uid: 4254 components: - type: Transform @@ -44595,7 +44620,22 @@ entities: - uid: 4305 components: - type: Transform - pos: 15.5,12.5 + pos: 13.5,28.5 + parent: 12 + - uid: 4323 + components: + - type: Transform + pos: 10.5,28.5 + parent: 12 + - uid: 4381 + components: + - type: Transform + pos: 9.5,28.5 + parent: 12 + - uid: 4387 + components: + - type: Transform + pos: 3.5,20.5 parent: 12 - uid: 4457 components: @@ -44827,15 +44867,15 @@ entities: - type: Transform pos: 12.5,-16.5 parent: 12 - - uid: 4565 + - uid: 4600 components: - type: Transform - pos: 53.5,-5.5 + pos: 4.5,21.5 parent: 12 - uid: 4605 components: - type: Transform - pos: 53.5,-6.5 + pos: 4.5,20.5 parent: 12 - uid: 4607 components: @@ -44872,10 +44912,10 @@ entities: - type: Transform pos: 8.5,-6.5 parent: 12 - - uid: 4646 + - uid: 4633 components: - type: Transform - pos: 71.5,9.5 + pos: 8.5,-13.5 parent: 12 - uid: 4657 components: @@ -44887,40 +44927,25 @@ entities: - type: Transform pos: 21.5,-16.5 parent: 12 - - uid: 4668 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - uid: 4679 components: - type: Transform pos: 26.5,5.5 parent: 12 - - uid: 4680 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 4681 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - uid: 4691 components: - type: Transform pos: -14.5,-23.5 parent: 12 - - uid: 4692 + - uid: 4713 components: - type: Transform - pos: 76.5,11.5 + pos: -10.5,-22.5 parent: 12 - - uid: 4713 + - uid: 4716 components: - type: Transform - pos: -10.5,-22.5 + pos: 18.5,24.5 parent: 12 - uid: 4745 components: @@ -44930,17 +44955,7 @@ entities: - uid: 4755 components: - type: Transform - pos: 79.5,7.5 - parent: 12 - - uid: 4756 - components: - - type: Transform - pos: 79.5,4.5 - parent: 12 - - uid: 4766 - components: - - type: Transform - pos: 79.5,1.5 + pos: 0.5,16.5 parent: 12 - uid: 4785 components: @@ -44990,48 +45005,23 @@ entities: - uid: 4917 components: - type: Transform - pos: 53.5,-3.5 + pos: 1.5,20.5 parent: 12 - uid: 4919 components: - type: Transform pos: 34.5,-1.5 parent: 12 - - uid: 4929 - components: - - type: Transform - pos: 75.5,-2.5 - parent: 12 - - uid: 4935 - components: - - type: Transform - pos: 77.5,-2.5 - parent: 12 - - uid: 4953 - components: - - type: Transform - pos: 73.5,-2.5 - parent: 12 - uid: 4957 components: - type: Transform pos: 35.5,-0.5 parent: 12 - - uid: 4958 - components: - - type: Transform - pos: 65.5,12.5 - parent: 12 - uid: 4970 components: - type: Transform pos: 42.5,-0.5 parent: 12 - - uid: 4974 - components: - - type: Transform - pos: 64.5,12.5 - parent: 12 - uid: 4976 components: - type: Transform @@ -45097,11 +45087,6 @@ entities: - type: Transform pos: -10.5,-30.5 parent: 12 - - uid: 5109 - components: - - type: Transform - pos: 63.5,12.5 - parent: 12 - uid: 5113 components: - type: Transform @@ -45202,16 +45187,6 @@ entities: - type: Transform pos: 30.5,-13.5 parent: 12 - - uid: 5207 - components: - - type: Transform - pos: 30.5,-12.5 - parent: 12 - - uid: 5208 - components: - - type: Transform - pos: 30.5,-11.5 - parent: 12 - uid: 5230 components: - type: Transform @@ -45227,6 +45202,11 @@ entities: - type: Transform pos: -0.5,-2.5 parent: 12 + - uid: 5270 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 12 - uid: 5320 components: - type: Transform @@ -45237,11 +45217,6 @@ entities: - type: Transform pos: 29.5,4.5 parent: 12 - - uid: 5407 - components: - - type: Transform - pos: 62.5,12.5 - parent: 12 - uid: 5421 components: - type: Transform @@ -45292,6 +45267,11 @@ entities: - type: Transform pos: 17.5,5.5 parent: 12 + - uid: 6259 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 12 - uid: 6414 components: - type: Transform @@ -45972,40 +45952,55 @@ entities: - type: Transform pos: -52.5,21.5 parent: 12 - - uid: 6735 + - uid: 6768 components: - type: Transform - pos: 1.5,18.5 + pos: -48.5,25.5 parent: 12 - - uid: 6741 + - uid: 7110 components: - type: Transform - pos: 37.5,0.5 + pos: 1.5,19.5 parent: 12 - - uid: 6768 + - uid: 7134 components: - type: Transform - pos: -48.5,25.5 + pos: 64.5,2.5 parent: 12 - - uid: 7187 + - uid: 7150 components: - type: Transform - pos: -0.5,-5.5 + pos: 62.5,2.5 parent: 12 - - uid: 7231 + - uid: 7151 components: - type: Transform - pos: 29.5,5.5 + pos: 63.5,2.5 parent: 12 - - uid: 7233 + - uid: 7160 components: - type: Transform - pos: 63.5,-3.5 + pos: 61.5,2.5 parent: 12 - - uid: 7278 + - uid: 7161 components: - type: Transform - pos: 65.5,-3.5 + pos: 4.5,28.5 + parent: 12 + - uid: 7171 + components: + - type: Transform + pos: 21.5,20.5 + parent: 12 + - uid: 7187 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 12 + - uid: 7231 + components: + - type: Transform + pos: 29.5,5.5 parent: 12 - uid: 7283 components: @@ -46027,51 +46022,81 @@ entities: - type: Transform pos: 1.5,14.5 parent: 12 - - uid: 7356 + - uid: 7360 components: - type: Transform - pos: 60.5,-3.5 + pos: 1.5,18.5 parent: 12 - - uid: 7366 + - uid: 7383 components: - type: Transform - pos: 62.5,10.5 + pos: 61.5,1.5 parent: 12 - - uid: 7546 + - uid: 7386 components: - type: Transform - pos: 62.5,8.5 + pos: 61.5,0.5 parent: 12 - uid: 7549 components: - type: Transform - pos: 62.5,9.5 + pos: 17.5,24.5 parent: 12 - - uid: 7556 + - uid: 7586 components: - type: Transform - pos: 62.5,-3.5 + pos: 60.5,-1.5 parent: 12 - - uid: 7557 + - uid: 7724 components: - type: Transform - pos: 61.5,-3.5 + pos: 46.5,-44.5 parent: 12 - - uid: 7724 + - uid: 7767 components: - type: Transform - pos: 46.5,-44.5 + pos: 59.5,6.5 + parent: 12 + - uid: 7782 + components: + - type: Transform + pos: 64.5,-2.5 + parent: 12 + - uid: 7786 + components: + - type: Transform + pos: 63.5,-2.5 parent: 12 - uid: 7790 components: - type: Transform pos: -38.5,-52.5 parent: 12 + - uid: 7811 + components: + - type: Transform + pos: 62.5,-2.5 + parent: 12 + - uid: 7828 + components: + - type: Transform + pos: 61.5,-2.5 + parent: 12 + - uid: 7834 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 12 - uid: 7849 components: - type: Transform pos: 30.5,15.5 parent: 12 + - uid: 7889 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 12 - uid: 7948 components: - type: Transform @@ -46342,21 +46367,11 @@ entities: - type: Transform pos: 30.5,16.5 parent: 12 - - uid: 8440 - components: - - type: Transform - pos: 73.5,9.5 - parent: 12 - uid: 8441 components: - type: Transform pos: 34.5,0.5 parent: 12 - - uid: 8443 - components: - - type: Transform - pos: 73.5,11.5 - parent: 12 - uid: 8494 components: - type: Transform @@ -46367,36 +46382,11 @@ entities: - type: Transform pos: 10.5,-45.5 parent: 12 - - uid: 8860 - components: - - type: Transform - pos: 10.5,16.5 - parent: 12 - - uid: 8910 - components: - - type: Transform - pos: 79.5,3.5 - parent: 12 - - uid: 8937 - components: - - type: Transform - pos: 78.5,-2.5 - parent: 12 - uid: 8957 components: - type: Transform pos: 10.5,-46.5 parent: 12 - - uid: 9000 - components: - - type: Transform - pos: 77.5,3.5 - parent: 12 - - uid: 9003 - components: - - type: Transform - pos: 76.5,-2.5 - parent: 12 - uid: 9018 components: - type: Transform @@ -46497,6 +46487,11 @@ entities: - type: Transform pos: 51.5,-44.5 parent: 12 + - uid: 9055 + components: + - type: Transform + pos: 12.5,12.5 + parent: 12 - uid: 9082 components: - type: Transform @@ -46507,40 +46502,15 @@ entities: - type: Transform pos: 30.5,12.5 parent: 12 - - uid: 9142 - components: - - type: Transform - pos: 71.5,11.5 - parent: 12 - uid: 9328 components: - type: Transform pos: -0.5,-6.5 parent: 12 - - uid: 9407 - components: - - type: Transform - pos: 79.5,5.5 - parent: 12 - - uid: 9408 - components: - - type: Transform - pos: 77.5,5.5 - parent: 12 - uid: 9410 components: - type: Transform - pos: 79.5,-0.5 - parent: 12 - - uid: 9411 - components: - - type: Transform - pos: 79.5,-1.5 - parent: 12 - - uid: 9412 - components: - - type: Transform - pos: 79.5,2.5 + pos: 5.5,28.5 parent: 12 - uid: 9422 components: @@ -46557,50 +46527,35 @@ entities: - type: Transform pos: 15.5,9.5 parent: 12 - - uid: 9434 - components: - - type: Transform - pos: 79.5,11.5 - parent: 12 - - uid: 9437 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 9449 - components: - - type: Transform - pos: 79.5,6.5 - parent: 12 - - uid: 9450 + - uid: 9458 components: - type: Transform - pos: 79.5,9.5 + pos: 11.5,28.5 parent: 12 - - uid: 9453 + - uid: 9459 components: - type: Transform - pos: 79.5,10.5 + pos: 12.5,28.5 parent: 12 - - uid: 9457 + - uid: 9460 components: - type: Transform - pos: 79.5,-2.5 + pos: 14.5,28.5 parent: 12 - - uid: 9458 + - uid: 9483 components: - type: Transform - pos: 73.5,-0.5 + pos: 16.5,25.5 parent: 12 - - uid: 9460 + - uid: 9515 components: - type: Transform - pos: 79.5,8.5 + pos: 49.5,-5.5 parent: 12 - - uid: 9468 + - uid: 9518 components: - type: Transform - pos: 71.5,-0.5 + pos: 16.5,24.5 parent: 12 - uid: 9519 components: @@ -46610,7 +46565,12 @@ entities: - uid: 9521 components: - type: Transform - pos: 1.5,17.5 + pos: 16.5,26.5 + parent: 12 + - uid: 9542 + components: + - type: Transform + pos: 64.5,6.5 parent: 12 - uid: 9543 components: @@ -46622,65 +46582,70 @@ entities: - type: Transform pos: 1.5,12.5 parent: 12 - - uid: 9551 + - uid: 9558 components: - type: Transform - pos: 15.5,14.5 + pos: 1.5,13.5 parent: 12 - - uid: 9558 + - uid: 9578 components: - type: Transform - pos: 1.5,13.5 + pos: 7.5,28.5 parent: 12 - - uid: 9559 + - uid: 9588 components: - type: Transform - pos: 15.5,13.5 + pos: 57.5,-0.5 parent: 12 - - uid: 9597 + - uid: 9614 components: - type: Transform - pos: 1.5,19.5 + pos: 51.5,-6.5 + parent: 12 + - uid: 9636 + components: + - type: Transform + pos: -2.5,22.5 parent: 12 - uid: 9649 components: - type: Transform pos: 9.5,-37.5 parent: 12 - - uid: 9657 + - uid: 9650 components: - type: Transform - pos: 10.5,-38.5 + pos: 4.5,27.5 parent: 12 - - uid: 9658 + - uid: 9657 components: - type: Transform - pos: 80.5,2.5 + pos: 10.5,-38.5 parent: 12 - - uid: 9663 + - uid: 9724 components: - type: Transform - pos: 72.5,-3.5 + pos: 16.5,28.5 parent: 12 - - uid: 9664 + - uid: 9732 components: - type: Transform - pos: 74.5,-3.5 + pos: -4.5,20.5 parent: 12 - - uid: 9666 + - uid: 9741 components: - type: Transform - pos: 70.5,-3.5 + pos: 4.5,25.5 parent: 12 - - uid: 9670 + - uid: 9742 components: - type: Transform - pos: 72.5,-2.5 + pos: -3.5,20.5 parent: 12 - - uid: 9676 + - uid: 9751 components: - type: Transform - pos: 71.5,-2.5 + pos: 44.5,-5.5 parent: 12 - uid: 9785 components: @@ -46707,6 +46672,16 @@ entities: - type: Transform pos: 10.5,-43.5 parent: 12 + - uid: 9835 + components: + - type: Transform + pos: -1.5,22.5 + parent: 12 + - uid: 9847 + components: + - type: Transform + pos: -5.5,20.5 + parent: 12 - uid: 9859 components: - type: Transform @@ -46717,11 +46692,46 @@ entities: - type: Transform pos: 10.5,-41.5 parent: 12 + - uid: 9864 + components: + - type: Transform + pos: -2.5,21.5 + parent: 12 + - uid: 9865 + components: + - type: Transform + pos: -2.5,20.5 + parent: 12 + - uid: 9994 + components: + - type: Transform + pos: 16.5,27.5 + parent: 12 + - uid: 10027 + components: + - type: Transform + pos: 4.5,26.5 + parent: 12 + - uid: 10165 + components: + - type: Transform + pos: -0.5,16.5 + parent: 12 + - uid: 10284 + components: + - type: Transform + pos: -1.5,16.5 + parent: 12 - uid: 10319 components: - type: Transform pos: -41.5,-29.5 parent: 12 + - uid: 10323 + components: + - type: Transform + pos: 62.5,-0.5 + parent: 12 - uid: 10343 components: - type: Transform @@ -46827,6 +46837,11 @@ entities: - type: Transform pos: -15.5,-4.5 parent: 12 + - uid: 10656 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 12 - uid: 10743 components: - type: Transform @@ -47017,6 +47032,11 @@ entities: - type: Transform pos: -3.5,13.5 parent: 12 + - uid: 10790 + components: + - type: Transform + pos: -0.5,22.5 + parent: 12 - uid: 10802 components: - type: Transform @@ -47252,6 +47272,11 @@ entities: - type: Transform pos: 21.5,12.5 parent: 12 + - uid: 10938 + components: + - type: Transform + pos: 11.5,12.5 + parent: 12 - uid: 10944 components: - type: Transform @@ -47277,70 +47302,75 @@ entities: - type: Transform pos: 22.5,17.5 parent: 12 + - uid: 10985 + components: + - type: Transform + pos: 11.5,14.5 + parent: 12 - uid: 11020 components: - type: Transform pos: 52.5,8.5 parent: 12 - - uid: 11055 + - uid: 11045 components: - type: Transform - pos: 23.5,10.5 + pos: 8.5,-16.5 parent: 12 - - uid: 11230 + - uid: 11050 components: - type: Transform - pos: 1.5,21.5 + pos: 12.5,11.5 parent: 12 - - uid: 11231 + - uid: 11055 components: - type: Transform - pos: 1.5,22.5 + pos: 23.5,10.5 parent: 12 - - uid: 11274 + - uid: 11226 components: - type: Transform - pos: 10.5,17.5 + pos: 58.5,-2.5 parent: 12 - - uid: 11292 + - uid: 11232 components: - type: Transform - pos: 40.5,11.5 + pos: 48.5,-5.5 parent: 12 - - uid: 11313 + - uid: 11268 components: - type: Transform - pos: 22.5,19.5 + pos: 50.5,-5.5 parent: 12 - - uid: 11314 + - uid: 11286 components: - type: Transform - pos: 22.5,20.5 + pos: 60.5,0.5 parent: 12 - - uid: 11315 + - uid: 11287 components: - type: Transform - pos: 22.5,21.5 + pos: 58.5,-1.5 parent: 12 - - uid: 11316 + - uid: 11288 components: - type: Transform - pos: 21.5,21.5 + pos: 10.5,12.5 parent: 12 - - uid: 11317 + - uid: 11292 components: - type: Transform - pos: 20.5,21.5 + pos: 40.5,11.5 parent: 12 - - uid: 11318 + - uid: 11316 components: - type: Transform - pos: 20.5,20.5 + pos: 21.5,21.5 parent: 12 - - uid: 11319 + - uid: 11318 components: - type: Transform - pos: 20.5,19.5 + pos: 20.5,20.5 parent: 12 - uid: 11320 components: @@ -47352,31 +47382,21 @@ entities: - type: Transform pos: 18.5,20.5 parent: 12 - - uid: 11340 + - uid: 11330 components: - type: Transform - pos: 4.5,22.5 + pos: 11.5,13.5 parent: 12 - - uid: 11341 + - uid: 11340 components: - type: Transform - pos: 4.5,23.5 + pos: 4.5,22.5 parent: 12 - uid: 11342 components: - type: Transform pos: 4.5,24.5 parent: 12 - - uid: 11343 - components: - - type: Transform - pos: 4.5,25.5 - parent: 12 - - uid: 11344 - components: - - type: Transform - pos: 4.5,26.5 - parent: 12 - uid: 11350 components: - type: Transform @@ -47397,11 +47417,6 @@ entities: - type: Transform pos: 21.5,24.5 parent: 12 - - uid: 11376 - components: - - type: Transform - pos: 56.5,-3.5 - parent: 12 - uid: 11377 components: - type: Transform @@ -47452,6 +47467,26 @@ entities: - type: Transform pos: 32.5,17.5 parent: 12 + - uid: 11452 + components: + - type: Transform + pos: 60.5,-0.5 + parent: 12 + - uid: 11456 + components: + - type: Transform + pos: 10.5,11.5 + parent: 12 + - uid: 11481 + components: + - type: Transform + pos: 1.5,22.5 + parent: 12 + - uid: 11553 + components: + - type: Transform + pos: 62.5,6.5 + parent: 12 - uid: 11591 components: - type: Transform @@ -47462,15 +47497,10 @@ entities: - type: Transform pos: 38.5,3.5 parent: 12 - - uid: 11866 - components: - - type: Transform - pos: 4.5,27.5 - parent: 12 - uid: 11867 components: - type: Transform - pos: 4.5,28.5 + pos: 63.5,6.5 parent: 12 - uid: 11868 components: @@ -47537,6 +47567,11 @@ entities: - type: Transform pos: -1.5,35.5 parent: 12 + - uid: 11936 + components: + - type: Transform + pos: 45.5,4.5 + parent: 12 - uid: 11938 components: - type: Transform @@ -47622,11 +47657,31 @@ entities: - type: Transform pos: 36.5,11.5 parent: 12 + - uid: 12684 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 12 + - uid: 12693 + components: + - type: Transform + pos: 3.5,22.5 + parent: 12 - uid: 12894 components: - type: Transform pos: 41.5,-11.5 parent: 12 + - uid: 12917 + components: + - type: Transform + pos: 2.5,22.5 + parent: 12 + - uid: 12929 + components: + - type: Transform + pos: 0.5,22.5 + parent: 12 - uid: 13080 components: - type: Transform @@ -47772,6 +47827,11 @@ entities: - type: Transform pos: 51.5,27.5 parent: 12 + - uid: 13977 + components: + - type: Transform + pos: 61.5,6.5 + parent: 12 - uid: 14252 components: - type: Transform @@ -48337,6 +48397,11 @@ entities: - type: Transform pos: -6.5,17.5 parent: 12 + - uid: 15670 + components: + - type: Transform + pos: 60.5,6.5 + parent: 12 - uid: 15735 components: - type: Transform @@ -48582,36 +48647,6 @@ entities: - type: Transform pos: 65.5,6.5 parent: 12 - - uid: 16449 - components: - - type: Transform - pos: 66.5,11.5 - parent: 12 - - uid: 16450 - components: - - type: Transform - pos: 67.5,11.5 - parent: 12 - - uid: 16493 - components: - - type: Transform - pos: 68.5,11.5 - parent: 12 - - uid: 16520 - components: - - type: Transform - pos: 69.5,11.5 - parent: 12 - - uid: 16521 - components: - - type: Transform - pos: 70.5,11.5 - parent: 12 - - uid: 16533 - components: - - type: Transform - pos: 72.5,11.5 - parent: 12 - uid: 16640 components: - type: Transform @@ -49412,11 +49447,6 @@ entities: - type: Transform pos: -9.5,-10.5 parent: 12 - - uid: 18307 - components: - - type: Transform - pos: 53.5,-4.5 - parent: 12 - uid: 18383 components: - type: Transform @@ -50567,25 +50597,50 @@ entities: - type: Transform pos: -38.5,59.5 parent: 12 + - uid: 19542 + components: + - type: Transform + pos: 53.5,-4.5 + parent: 12 + - uid: 19546 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 12 - uid: 19548 components: - type: Transform pos: 25.5,10.5 parent: 12 + - uid: 19549 + components: + - type: Transform + pos: 53.5,-8.5 + parent: 12 + - uid: 19563 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 12 + - uid: 19612 + components: + - type: Transform + pos: 53.5,-1.5 + parent: 12 - uid: 19617 components: - type: Transform pos: -22.5,57.5 parent: 12 - - uid: 19819 + - uid: 19824 components: - type: Transform - pos: 3.5,22.5 + pos: 46.5,-5.5 parent: 12 - - uid: 19820 + - uid: 19825 components: - type: Transform - pos: 2.5,22.5 + pos: 31.5,-14.5 parent: 12 - uid: 19836 components: @@ -50677,11 +50732,6 @@ entities: - type: Transform pos: 54.5,1.5 parent: 12 - - uid: 21601 - components: - - type: Transform - pos: 62.5,11.5 - parent: 12 - uid: 21648 components: - type: Transform @@ -50807,56 +50857,46 @@ entities: - type: Transform pos: 31.5,-7.5 parent: 12 - - uid: 22094 - components: - - type: Transform - pos: 57.5,11.5 - parent: 12 - - uid: 22095 - components: - - type: Transform - pos: 54.5,10.5 - parent: 12 - uid: 22109 components: - type: Transform pos: 26.5,-16.5 parent: 12 - - uid: 22126 - components: - - type: Transform - pos: 55.5,11.5 - parent: 12 - uid: 22136 components: - type: Transform pos: 54.5,5.5 parent: 12 - - uid: 22140 + - uid: 22148 components: - type: Transform - pos: 58.5,10.5 + pos: 17.5,10.5 parent: 12 - - uid: 22141 + - uid: 22289 components: - type: Transform - pos: 56.5,11.5 + pos: 43.5,-5.5 parent: 12 - - uid: 22148 + - uid: 22522 components: - type: Transform - pos: 17.5,10.5 + pos: 53.5,-7.5 parent: 12 - - uid: 22160 + - uid: 22527 components: - type: Transform - pos: 58.5,11.5 + pos: 53.5,-5.5 parent: 12 - uid: 22528 components: - type: Transform pos: 17.5,8.5 parent: 12 + - uid: 22531 + components: + - type: Transform + pos: 53.5,-3.5 + parent: 12 - uid: 22712 components: - type: Transform @@ -50872,11 +50912,36 @@ entities: - type: Transform pos: 41.5,-0.5 parent: 12 + - uid: 23116 + components: + - type: Transform + pos: 47.5,-5.5 + parent: 12 - uid: 23127 components: - type: Transform pos: 56.5,-0.5 parent: 12 + - uid: 23148 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 12 + - uid: 23152 + components: + - type: Transform + pos: 52.5,-8.5 + parent: 12 + - uid: 23157 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 12 + - uid: 23159 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 12 - uid: 23163 components: - type: Transform @@ -51367,11 +51432,6 @@ entities: - type: Transform pos: -37.5,-51.5 parent: 12 - - uid: 23984 - components: - - type: Transform - pos: 54.5,9.5 - parent: 12 - uid: 24478 components: - type: Transform @@ -51422,21 +51482,6 @@ entities: - type: Transform pos: 9.5,65.5 parent: 12 - - uid: 25199 - components: - - type: Transform - pos: 58.5,9.5 - parent: 12 - - uid: 25200 - components: - - type: Transform - pos: 58.5,8.5 - parent: 12 - - uid: 25201 - components: - - type: Transform - pos: 58.5,7.5 - parent: 12 - uid: 25305 components: - type: Transform @@ -51772,21 +51817,6 @@ entities: - type: Transform pos: -56.5,21.5 parent: 12 - - uid: 26101 - components: - - type: Transform - pos: 58.5,-2.5 - parent: 12 - - uid: 26102 - components: - - type: Transform - pos: 59.5,-3.5 - parent: 12 - - uid: 26156 - components: - - type: Transform - pos: 74.5,12.5 - parent: 12 - uid: 26417 components: - type: Transform @@ -51797,11 +51827,6 @@ entities: - type: Transform pos: 54.5,0.5 parent: 12 - - uid: 26452 - components: - - type: Transform - pos: 57.5,-3.5 - parent: 12 - uid: 26464 components: - type: Transform @@ -51842,56 +51867,16 @@ entities: - type: Transform pos: 43.5,5.5 parent: 12 - - uid: 26520 - components: - - type: Transform - pos: 58.5,-3.5 - parent: 12 - uid: 26521 components: - type: Transform pos: 58.5,1.5 parent: 12 - - uid: 26523 - components: - - type: Transform - pos: 80.5,6.5 - parent: 12 - - uid: 26524 - components: - - type: Transform - pos: 70.5,12.5 - parent: 12 - - uid: 26525 - components: - - type: Transform - pos: 72.5,12.5 - parent: 12 - uid: 26543 components: - type: Transform pos: -9.5,-19.5 parent: 12 - - uid: 26551 - components: - - type: Transform - pos: 64.5,-3.5 - parent: 12 - - uid: 26561 - components: - - type: Transform - pos: 47.5,3.5 - parent: 12 - - uid: 26562 - components: - - type: Transform - pos: 80.5,4.5 - parent: 12 - - uid: 26576 - components: - - type: Transform - pos: 54.5,11.5 - parent: 12 - uid: 26583 components: - type: Transform @@ -51902,11 +51887,6 @@ entities: - type: Transform pos: 51.5,8.5 parent: 12 - - uid: 26622 - components: - - type: Transform - pos: 74.5,-2.5 - parent: 12 - uid: 26636 components: - type: Transform @@ -51917,11 +51897,6 @@ entities: - type: Transform pos: 20.5,9.5 parent: 12 - - uid: 26646 - components: - - type: Transform - pos: 56.5,-1.5 - parent: 12 - uid: 26657 components: - type: Transform @@ -51982,31 +51957,11 @@ entities: - type: Transform pos: 44.5,-0.5 parent: 12 - - uid: 26671 - components: - - type: Transform - pos: 70.5,-2.5 - parent: 12 - - uid: 26683 - components: - - type: Transform - pos: 67.5,-2.5 - parent: 12 - - uid: 26684 - components: - - type: Transform - pos: 58.5,-1.5 - parent: 12 - uid: 26690 components: - type: Transform pos: 36.5,3.5 parent: 12 - - uid: 26700 - components: - - type: Transform - pos: 69.5,-2.5 - parent: 12 - uid: 26701 components: - type: Transform @@ -52022,11 +51977,6 @@ entities: - type: Transform pos: 65.5,0.5 parent: 12 - - uid: 26717 - components: - - type: Transform - pos: 68.5,-2.5 - parent: 12 - uid: 26719 components: - type: Transform @@ -52037,21 +51987,11 @@ entities: - type: Transform pos: 65.5,-2.5 parent: 12 - - uid: 26728 - components: - - type: Transform - pos: 66.5,-2.5 - parent: 12 - uid: 26731 components: - type: Transform pos: 58.5,0.5 parent: 12 - - uid: 26732 - components: - - type: Transform - pos: 62.5,4.5 - parent: 12 - uid: 26735 components: - type: Transform @@ -52087,21 +52027,6 @@ entities: - type: Transform pos: 45.5,8.5 parent: 12 - - uid: 26756 - components: - - type: Transform - pos: 62.5,7.5 - parent: 12 - - uid: 26757 - components: - - type: Transform - pos: 62.5,5.5 - parent: 12 - - uid: 26803 - components: - - type: Transform - pos: 62.5,6.5 - parent: 12 - uid: 26805 components: - type: Transform @@ -52477,11 +52402,6 @@ entities: - type: Transform pos: 49.5,-13.5 parent: 12 - - uid: 27210 - components: - - type: Transform - pos: 10.5,18.5 - parent: 12 - uid: 27211 components: - type: Transform @@ -52507,11 +52427,6 @@ entities: - type: Transform pos: 44.5,-13.5 parent: 12 - - uid: 27235 - components: - - type: Transform - pos: 56.5,-2.5 - parent: 12 - uid: 27339 components: - type: Transform @@ -53347,56 +53262,6 @@ entities: - type: Transform pos: -33.5,59.5 parent: 12 - - uid: 28241 - components: - - type: Transform - pos: 11.5,15.5 - parent: 12 - - uid: 28242 - components: - - type: Transform - pos: 12.5,15.5 - parent: 12 - - uid: 28243 - components: - - type: Transform - pos: 13.5,15.5 - parent: 12 - - uid: 28244 - components: - - type: Transform - pos: 14.5,15.5 - parent: 12 - - uid: 28245 - components: - - type: Transform - pos: 15.5,15.5 - parent: 12 - - uid: 28246 - components: - - type: Transform - pos: 6.5,14.5 - parent: 12 - - uid: 28247 - components: - - type: Transform - pos: 6.5,15.5 - parent: 12 - - uid: 28248 - components: - - type: Transform - pos: 7.5,15.5 - parent: 12 - - uid: 28249 - components: - - type: Transform - pos: 9.5,15.5 - parent: 12 - - uid: 28250 - components: - - type: Transform - pos: 8.5,15.5 - parent: 12 - uid: 28430 components: - type: Transform @@ -53677,11 +53542,6 @@ entities: - type: Transform pos: 5.5,-23.5 parent: 12 - - uid: 28677 - components: - - type: Transform - pos: 55.5,-3.5 - parent: 12 - uid: 28723 components: - type: Transform @@ -53782,11 +53642,6 @@ entities: - type: Transform pos: 30.5,-0.5 parent: 12 - - uid: 28897 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 12 - uid: 28898 components: - type: Transform @@ -53817,71 +53672,6 @@ entities: - type: Transform pos: 36.5,2.5 parent: 12 - - uid: 29034 - components: - - type: Transform - pos: 5.5,23.5 - parent: 12 - - uid: 29035 - components: - - type: Transform - pos: 6.5,23.5 - parent: 12 - - uid: 29036 - components: - - type: Transform - pos: 7.5,23.5 - parent: 12 - - uid: 29037 - components: - - type: Transform - pos: 8.5,23.5 - parent: 12 - - uid: 29038 - components: - - type: Transform - pos: 9.5,23.5 - parent: 12 - - uid: 29039 - components: - - type: Transform - pos: 10.5,23.5 - parent: 12 - - uid: 29040 - components: - - type: Transform - pos: 11.5,23.5 - parent: 12 - - uid: 29041 - components: - - type: Transform - pos: 12.5,23.5 - parent: 12 - - uid: 29042 - components: - - type: Transform - pos: 13.5,23.5 - parent: 12 - - uid: 29043 - components: - - type: Transform - pos: 14.5,23.5 - parent: 12 - - uid: 29044 - components: - - type: Transform - pos: 15.5,23.5 - parent: 12 - - uid: 29045 - components: - - type: Transform - pos: 16.5,23.5 - parent: 12 - - uid: 29046 - components: - - type: Transform - pos: 17.5,23.5 - parent: 12 - uid: 29047 components: - type: Transform @@ -53922,21 +53712,6 @@ entities: - type: Transform pos: 45.5,3.5 parent: 12 - - uid: 29186 - components: - - type: Transform - pos: 46.5,3.5 - parent: 12 - - uid: 29187 - components: - - type: Transform - pos: 46.5,4.5 - parent: 12 - - uid: 29190 - components: - - type: Transform - pos: 46.5,5.5 - parent: 12 - uid: 29307 components: - type: Transform @@ -54257,21 +54032,6 @@ entities: - type: Transform pos: -18.5,69.5 parent: 12 - - uid: 29986 - components: - - type: Transform - pos: 47.5,2.5 - parent: 12 - - uid: 29987 - components: - - type: Transform - pos: 48.5,2.5 - parent: 12 - - uid: 29988 - components: - - type: Transform - pos: 49.5,2.5 - parent: 12 - uid: 30022 components: - type: Transform @@ -55177,51 +54937,6 @@ entities: - type: Transform pos: -49.5,27.5 parent: 12 - - uid: 31880 - components: - - type: Transform - pos: 72.5,9.5 - parent: 12 - - uid: 31881 - components: - - type: Transform - pos: 72.5,10.5 - parent: 12 - - uid: 31883 - components: - - type: Transform - pos: 77.5,4.5 - parent: 12 - - uid: 31884 - components: - - type: Transform - pos: 78.5,4.5 - parent: 12 - - uid: 31885 - components: - - type: Transform - pos: 72.5,-1.5 - parent: 12 - - uid: 31886 - components: - - type: Transform - pos: 72.5,-0.5 - parent: 12 - - uid: 31898 - components: - - type: Transform - pos: 60.5,12.5 - parent: 12 - - uid: 31899 - components: - - type: Transform - pos: 59.5,11.5 - parent: 12 - - uid: 31900 - components: - - type: Transform - pos: 59.5,12.5 - parent: 12 - uid: 32051 components: - type: Transform @@ -55252,11 +54967,6 @@ entities: - type: Transform pos: 32.5,-14.5 parent: 12 - - uid: 32057 - components: - - type: Transform - pos: 31.5,-14.5 - parent: 12 - uid: 32062 components: - type: Transform @@ -55372,31 +55082,16 @@ entities: - uid: 28713 components: - type: Transform - rot: -6.283185307179586 rad - pos: 54.496643,-6.643266 + rot: -37.69911184307754 rad + pos: 54.49033,-5.6204934 parent: 12 - proto: CableMV entities: - - uid: 22 - components: - - type: Transform - pos: 62.5,9.5 - parent: 12 - uid: 87 components: - type: Transform pos: 0.5,2.5 parent: 12 - - uid: 206 - components: - - type: Transform - pos: 79.5,14.5 - parent: 12 - - uid: 227 - components: - - type: Transform - pos: 80.5,14.5 - parent: 12 - uid: 278 components: - type: Transform @@ -55447,11 +55142,6 @@ entities: - type: Transform pos: 38.5,60.5 parent: 12 - - uid: 366 - components: - - type: Transform - pos: 66.5,11.5 - parent: 12 - uid: 367 components: - type: Transform @@ -55467,11 +55157,6 @@ entities: - type: Transform pos: 45.5,56.5 parent: 12 - - uid: 465 - components: - - type: Transform - pos: -21.5,-30.5 - parent: 12 - uid: 507 components: - type: Transform @@ -55522,11 +55207,6 @@ entities: - type: Transform pos: 56.5,4.5 parent: 12 - - uid: 904 - components: - - type: Transform - pos: -53.5,43.5 - parent: 12 - uid: 955 components: - type: Transform @@ -55552,11 +55232,6 @@ entities: - type: Transform pos: 50.5,63.5 parent: 12 - - uid: 1059 - components: - - type: Transform - pos: -52.5,43.5 - parent: 12 - uid: 1070 components: - type: Transform @@ -55567,21 +55242,6 @@ entities: - type: Transform pos: 62.5,4.5 parent: 12 - - uid: 1344 - components: - - type: Transform - pos: 64.5,4.5 - parent: 12 - - uid: 1349 - components: - - type: Transform - pos: 57.5,-8.5 - parent: 12 - - uid: 1437 - components: - - type: Transform - pos: -55.5,43.5 - parent: 12 - uid: 1455 components: - type: Transform @@ -55797,11 +55457,6 @@ entities: - type: Transform pos: -40.5,-22.5 parent: 12 - - uid: 1500 - components: - - type: Transform - pos: -54.5,43.5 - parent: 12 - uid: 1503 components: - type: Transform @@ -56032,26 +55687,11 @@ entities: - type: Transform pos: -27.5,-17.5 parent: 12 - - uid: 1975 - components: - - type: Transform - pos: -52.5,40.5 - parent: 12 - - uid: 2018 - components: - - type: Transform - pos: -53.5,40.5 - parent: 12 - uid: 2039 components: - type: Transform pos: 62.5,6.5 parent: 12 - - uid: 2052 - components: - - type: Transform - pos: 62.5,7.5 - parent: 12 - uid: 2105 components: - type: Transform @@ -56067,16 +55707,6 @@ entities: - type: Transform pos: -2.5,-1.5 parent: 12 - - uid: 2119 - components: - - type: Transform - pos: -52.5,42.5 - parent: 12 - - uid: 2120 - components: - - type: Transform - pos: -52.5,41.5 - parent: 12 - uid: 2125 components: - type: Transform @@ -56197,11 +55827,6 @@ entities: - type: Transform pos: 1.5,-5.5 parent: 12 - - uid: 2246 - components: - - type: Transform - pos: 67.5,-2.5 - parent: 12 - uid: 2249 components: - type: Transform @@ -56212,11 +55837,6 @@ entities: - type: Transform pos: 56.5,6.5 parent: 12 - - uid: 2259 - components: - - type: Transform - pos: 72.5,14.5 - parent: 12 - uid: 2263 components: - type: Transform @@ -56227,11 +55847,6 @@ entities: - type: Transform pos: 46.5,56.5 parent: 12 - - uid: 2287 - components: - - type: Transform - pos: 82.5,5.5 - parent: 12 - uid: 2360 components: - type: Transform @@ -56252,11 +55867,6 @@ entities: - type: Transform pos: 45.5,-20.5 parent: 12 - - uid: 2574 - components: - - type: Transform - pos: 80.5,8.5 - parent: 12 - uid: 2581 components: - type: Transform @@ -56287,26 +55897,16 @@ entities: - type: Transform pos: 49.5,56.5 parent: 12 - - uid: 2676 + - uid: 2736 components: - type: Transform - pos: 80.5,9.5 + pos: -56.5,41.5 parent: 12 - uid: 2740 components: - type: Transform pos: -0.5,-35.5 parent: 12 - - uid: 2767 - components: - - type: Transform - pos: -54.5,40.5 - parent: 12 - - uid: 2775 - components: - - type: Transform - pos: -55.5,40.5 - parent: 12 - uid: 2789 components: - type: Transform @@ -56332,10 +55932,10 @@ entities: - type: Transform pos: -57.5,36.5 parent: 12 - - uid: 2859 + - uid: 2844 components: - type: Transform - pos: 60.5,12.5 + pos: -56.5,42.5 parent: 12 - uid: 2860 components: @@ -56352,20 +55952,15 @@ entities: - type: Transform pos: -57.5,39.5 parent: 12 - - uid: 2869 - components: - - type: Transform - pos: 80.5,-0.5 - parent: 12 - uid: 2882 components: - type: Transform pos: 0.5,-40.5 parent: 12 - - uid: 2929 + - uid: 2944 components: - type: Transform - pos: 80.5,0.5 + pos: 59.5,-3.5 parent: 12 - uid: 2946 components: @@ -56382,11 +55977,6 @@ entities: - type: Transform pos: -24.5,-28.5 parent: 12 - - uid: 3018 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 12 - uid: 3035 components: - type: Transform @@ -56407,11 +55997,6 @@ entities: - type: Transform pos: 0.5,-37.5 parent: 12 - - uid: 3131 - components: - - type: Transform - pos: -18.5,-30.5 - parent: 12 - uid: 3160 components: - type: Transform @@ -56597,26 +56182,6 @@ entities: - type: Transform pos: -16.5,-42.5 parent: 12 - - uid: 3237 - components: - - type: Transform - pos: -17.5,-30.5 - parent: 12 - - uid: 3238 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 12 - - uid: 3239 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 12 - - uid: 3240 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 12 - uid: 3242 components: - type: Transform @@ -56767,11 +56332,6 @@ entities: - type: Transform pos: -21.5,-48.5 parent: 12 - - uid: 3375 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 12 - uid: 3470 components: - type: Transform @@ -56782,21 +56342,11 @@ entities: - type: Transform pos: 10.5,-45.5 parent: 12 - - uid: 3486 - components: - - type: Transform - pos: -23.5,-30.5 - parent: 12 - uid: 3510 components: - type: Transform pos: -23.5,-2.5 parent: 12 - - uid: 3517 - components: - - type: Transform - pos: -24.5,-30.5 - parent: 12 - uid: 3591 components: - type: Transform @@ -56812,11 +56362,6 @@ entities: - type: Transform pos: 15.5,7.5 parent: 12 - - uid: 3719 - components: - - type: Transform - pos: -22.5,-30.5 - parent: 12 - uid: 3916 components: - type: Transform @@ -56827,21 +56372,11 @@ entities: - type: Transform pos: -1.5,-1.5 parent: 12 - - uid: 4185 - components: - - type: Transform - pos: 57.5,-3.5 - parent: 12 - uid: 4258 components: - type: Transform pos: 60.5,-24.5 parent: 12 - - uid: 4323 - components: - - type: Transform - pos: 73.5,14.5 - parent: 12 - uid: 4371 components: - type: Transform @@ -56882,31 +56417,6 @@ entities: - type: Transform pos: -15.5,-24.5 parent: 12 - - uid: 4381 - components: - - type: Transform - pos: -15.5,-25.5 - parent: 12 - - uid: 4382 - components: - - type: Transform - pos: -15.5,-26.5 - parent: 12 - - uid: 4383 - components: - - type: Transform - pos: -15.5,-27.5 - parent: 12 - - uid: 4384 - components: - - type: Transform - pos: -15.5,-28.5 - parent: 12 - - uid: 4385 - components: - - type: Transform - pos: -15.5,-29.5 - parent: 12 - uid: 4404 components: - type: Transform @@ -56932,31 +56442,11 @@ entities: - type: Transform pos: 57.5,49.5 parent: 12 - - uid: 4629 - components: - - type: Transform - pos: 59.5,-1.5 - parent: 12 - uid: 4632 components: - type: Transform pos: 56.5,46.5 parent: 12 - - uid: 4663 - components: - - type: Transform - pos: 59.5,-8.5 - parent: 12 - - uid: 4683 - components: - - type: Transform - pos: 74.5,14.5 - parent: 12 - - uid: 4684 - components: - - type: Transform - pos: 80.5,1.5 - parent: 12 - uid: 4686 components: - type: Transform @@ -56997,16 +56487,6 @@ entities: - type: Transform pos: -17.5,-24.5 parent: 12 - - uid: 4736 - components: - - type: Transform - pos: -20.5,-30.5 - parent: 12 - - uid: 4761 - components: - - type: Transform - pos: 79.5,-0.5 - parent: 12 - uid: 4800 components: - type: Transform @@ -57027,20 +56507,15 @@ entities: - type: Transform pos: 30.5,-0.5 parent: 12 - - uid: 4928 - components: - - type: Transform - pos: 79.5,-1.5 - parent: 12 - uid: 4933 components: - type: Transform pos: -11.5,-30.5 parent: 12 - - uid: 4954 + - uid: 4958 components: - type: Transform - pos: 67.5,11.5 + pos: 60.5,6.5 parent: 12 - uid: 4963 components: @@ -57077,11 +56552,6 @@ entities: - type: Transform pos: 57.5,58.5 parent: 12 - - uid: 5064 - components: - - type: Transform - pos: 57.5,-4.5 - parent: 12 - uid: 5077 components: - type: Transform @@ -57092,11 +56562,6 @@ entities: - type: Transform pos: 40.5,4.5 parent: 12 - - uid: 5098 - components: - - type: Transform - pos: 59.5,6.5 - parent: 12 - uid: 5102 components: - type: Transform @@ -57112,31 +56577,11 @@ entities: - type: Transform pos: 50.5,62.5 parent: 12 - - uid: 5125 - components: - - type: Transform - pos: 82.5,12.5 - parent: 12 - - uid: 5127 - components: - - type: Transform - pos: 58.5,-8.5 - parent: 12 - - uid: 5128 - components: - - type: Transform - pos: 65.5,-3.5 - parent: 12 - uid: 5132 components: - type: Transform pos: -1.5,1.5 parent: 12 - - uid: 5245 - components: - - type: Transform - pos: -56.5,48.5 - parent: 12 - uid: 5272 components: - type: Transform @@ -57157,36 +56602,11 @@ entities: - type: Transform pos: -27.5,66.5 parent: 12 - - uid: 5316 - components: - - type: Transform - pos: 77.5,-3.5 - parent: 12 - - uid: 5319 - components: - - type: Transform - pos: 82.5,10.5 - parent: 12 - - uid: 5364 - components: - - type: Transform - pos: 82.5,9.5 - parent: 12 - - uid: 5370 - components: - - type: Transform - pos: 82.5,8.5 - parent: 12 - uid: 5378 components: - type: Transform pos: 33.5,-9.5 parent: 12 - - uid: 5386 - components: - - type: Transform - pos: 82.5,11.5 - parent: 12 - uid: 5405 components: - type: Transform @@ -57197,6 +56617,11 @@ entities: - type: Transform pos: -55.5,46.5 parent: 12 + - uid: 5420 + components: + - type: Transform + pos: 61.5,-1.5 + parent: 12 - uid: 5425 components: - type: Transform @@ -57242,11 +56667,6 @@ entities: - type: Transform pos: -27.5,7.5 parent: 12 - - uid: 5526 - components: - - type: Transform - pos: -56.5,47.5 - parent: 12 - uid: 5537 components: - type: Transform @@ -57417,6 +56837,11 @@ entities: - type: Transform pos: -48.5,56.5 parent: 12 + - uid: 6022 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 12 - uid: 6024 components: - type: Transform @@ -57437,11 +56862,6 @@ entities: - type: Transform pos: 19.5,5.5 parent: 12 - - uid: 6151 - components: - - type: Transform - pos: -53.5,54.5 - parent: 12 - uid: 6157 components: - type: Transform @@ -57542,6 +56962,16 @@ entities: - type: Transform pos: 34.5,-3.5 parent: 12 + - uid: 7130 + components: + - type: Transform + pos: 62.5,-1.5 + parent: 12 + - uid: 7132 + components: + - type: Transform + pos: 63.5,-1.5 + parent: 12 - uid: 7208 components: - type: Transform @@ -57612,55 +57042,15 @@ entities: - type: Transform pos: 43.5,-12.5 parent: 12 - - uid: 7555 - components: - - type: Transform - pos: 77.5,14.5 - parent: 12 - - uid: 7563 - components: - - type: Transform - pos: 76.5,-3.5 - parent: 12 - uid: 7580 components: - type: Transform pos: 13.5,1.5 parent: 12 - - uid: 7586 - components: - - type: Transform - pos: 75.5,-3.5 - parent: 12 - - uid: 7766 - components: - - type: Transform - pos: 67.5,-3.5 - parent: 12 - - uid: 7767 - components: - - type: Transform - pos: 68.5,-3.5 - parent: 12 - - uid: 7768 - components: - - type: Transform - pos: 69.5,-3.5 - parent: 12 - - uid: 7782 - components: - - type: Transform - pos: 69.5,-2.5 - parent: 12 - uid: 7783 components: - type: Transform - pos: 70.5,-2.5 - parent: 12 - - uid: 7786 - components: - - type: Transform - pos: 72.5,-2.5 + pos: 59.5,-1.5 parent: 12 - uid: 7787 components: @@ -57672,20 +57062,10 @@ entities: - type: Transform pos: -38.5,-52.5 parent: 12 - - uid: 7811 - components: - - type: Transform - pos: 73.5,-2.5 - parent: 12 - - uid: 7828 - components: - - type: Transform - pos: 74.5,-2.5 - parent: 12 - - uid: 7834 + - uid: 7807 components: - type: Transform - pos: 75.5,-2.5 + pos: 60.5,-1.5 parent: 12 - uid: 7850 components: @@ -57882,11 +57262,6 @@ entities: - type: Transform pos: 59.5,-27.5 parent: 12 - - uid: 7889 - components: - - type: Transform - pos: 71.5,-2.5 - parent: 12 - uid: 7890 components: - type: Transform @@ -58257,16 +57632,6 @@ entities: - type: Transform pos: 79.5,-33.5 parent: 12 - - uid: 8198 - components: - - type: Transform - pos: 77.5,-2.5 - parent: 12 - - uid: 8199 - components: - - type: Transform - pos: 78.5,-2.5 - parent: 12 - uid: 8225 components: - type: Transform @@ -58277,16 +57642,6 @@ entities: - type: Transform pos: 53.5,63.5 parent: 12 - - uid: 8344 - components: - - type: Transform - pos: 68.5,12.5 - parent: 12 - - uid: 8436 - components: - - type: Transform - pos: 69.5,11.5 - parent: 12 - uid: 9002 components: - type: Transform @@ -58297,35 +57652,15 @@ entities: - type: Transform pos: 54.5,9.5 parent: 12 - - uid: 9005 - components: - - type: Transform - pos: 73.5,-5.5 - parent: 12 - - uid: 9006 - components: - - type: Transform - pos: 72.5,-5.5 - parent: 12 - - uid: 9007 - components: - - type: Transform - pos: 74.5,-5.5 - parent: 12 - - uid: 9046 - components: - - type: Transform - pos: 68.5,-5.5 - parent: 12 - - uid: 9047 + - uid: 9016 components: - type: Transform - pos: 70.5,-5.5 + pos: 64.5,2.5 parent: 12 - - uid: 9052 + - uid: 9017 components: - type: Transform - pos: 71.5,-5.5 + pos: 64.5,6.5 parent: 12 - uid: 9069 components: @@ -58347,26 +57682,16 @@ entities: - type: Transform pos: 30.5,0.5 parent: 12 - - uid: 9173 + - uid: 9184 components: - type: Transform - pos: 69.5,12.5 + pos: -23.5,-29.5 parent: 12 - uid: 9253 components: - type: Transform pos: -39.5,70.5 parent: 12 - - uid: 9298 - components: - - type: Transform - pos: 67.5,12.5 - parent: 12 - - uid: 9306 - components: - - type: Transform - pos: 64.5,7.5 - parent: 12 - uid: 9333 components: - type: Transform @@ -58412,21 +57737,11 @@ entities: - type: Transform pos: 61.5,-23.5 parent: 12 - - uid: 9451 - components: - - type: Transform - pos: 82.5,2.5 - parent: 12 - uid: 9455 components: - type: Transform pos: -39.5,66.5 parent: 12 - - uid: 9459 - components: - - type: Transform - pos: 80.5,7.5 - parent: 12 - uid: 9480 components: - type: Transform @@ -58497,10 +57812,15 @@ entities: - type: Transform pos: -2.5,-13.5 parent: 12 - - uid: 9614 + - uid: 9551 components: - type: Transform - pos: 76.5,14.5 + pos: 62.5,-0.5 + parent: 12 + - uid: 9628 + components: + - type: Transform + pos: 21.5,20.5 parent: 12 - uid: 9629 components: @@ -58517,16 +57837,6 @@ entities: - type: Transform pos: 37.5,-1.5 parent: 12 - - uid: 9707 - components: - - type: Transform - pos: 82.5,1.5 - parent: 12 - - uid: 9708 - components: - - type: Transform - pos: 82.5,0.5 - parent: 12 - uid: 9711 components: - type: Transform @@ -58547,25 +57857,15 @@ entities: - type: Transform pos: 38.5,4.5 parent: 12 - - uid: 9865 - components: - - type: Transform - pos: 62.5,10.5 - parent: 12 - uid: 9866 components: - type: Transform - pos: 62.5,11.5 + pos: 64.5,-1.5 parent: 12 - uid: 9867 components: - type: Transform - pos: 62.5,12.5 - parent: 12 - - uid: 9868 - components: - - type: Transform - pos: 64.5,12.5 + pos: 59.5,6.5 parent: 12 - uid: 9876 components: @@ -58692,11 +57992,6 @@ entities: - type: Transform pos: -13.5,-47.5 parent: 12 - - uid: 9908 - components: - - type: Transform - pos: 65.5,12.5 - parent: 12 - uid: 9909 components: - type: Transform @@ -58812,11 +58107,6 @@ entities: - type: Transform pos: -0.5,-49.5 parent: 12 - - uid: 9956 - components: - - type: Transform - pos: 63.5,12.5 - parent: 12 - uid: 9965 components: - type: Transform @@ -58872,10 +58162,10 @@ entities: - type: Transform pos: -0.5,-18.5 parent: 12 - - uid: 10165 + - uid: 10144 components: - type: Transform - pos: 57.5,7.5 + pos: 52.5,0.5 parent: 12 - uid: 10196 components: @@ -58912,11 +58202,6 @@ entities: - type: Transform pos: -46.5,51.5 parent: 12 - - uid: 10376 - components: - - type: Transform - pos: 82.5,-0.5 - parent: 12 - uid: 10377 components: - type: Transform @@ -59062,21 +58347,6 @@ entities: - type: Transform pos: -2.5,-14.5 parent: 12 - - uid: 10518 - components: - - type: Transform - pos: 82.5,-1.5 - parent: 12 - - uid: 10519 - components: - - type: Transform - pos: 82.5,-2.5 - parent: 12 - - uid: 10549 - components: - - type: Transform - pos: 82.5,-3.5 - parent: 12 - uid: 10550 components: - type: Transform @@ -59087,6 +58357,11 @@ entities: - type: Transform pos: -6.5,27.5 parent: 12 + - uid: 10624 + components: + - type: Transform + pos: 61.5,6.5 + parent: 12 - uid: 10638 components: - type: Transform @@ -59107,25 +58382,15 @@ entities: - type: Transform pos: 40.5,1.5 parent: 12 - - uid: 10841 - components: - - type: Transform - pos: 59.5,-7.5 - parent: 12 - - uid: 10917 - components: - - type: Transform - pos: -3.5,-14.5 - parent: 12 - - uid: 10918 + - uid: 10919 components: - type: Transform - pos: -4.5,-14.5 + pos: -0.5,0.5 parent: 12 - - uid: 10919 + - uid: 10927 components: - type: Transform - pos: -0.5,0.5 + pos: 57.5,8.5 parent: 12 - uid: 10940 components: @@ -59162,11 +58427,6 @@ entities: - type: Transform pos: -47.5,15.5 parent: 12 - - uid: 11203 - components: - - type: Transform - pos: 60.5,6.5 - parent: 12 - uid: 11331 components: - type: Transform @@ -59177,11 +58437,6 @@ entities: - type: Transform pos: 32.5,15.5 parent: 12 - - uid: 11365 - components: - - type: Transform - pos: 69.5,-5.5 - parent: 12 - uid: 11383 components: - type: Transform @@ -59192,16 +58447,6 @@ entities: - type: Transform pos: 21.5,4.5 parent: 12 - - uid: 11450 - components: - - type: Transform - pos: 71.5,14.5 - parent: 12 - - uid: 11452 - components: - - type: Transform - pos: 75.5,14.5 - parent: 12 - uid: 11454 components: - type: Transform @@ -59242,16 +58487,6 @@ entities: - type: Transform pos: 31.5,15.5 parent: 12 - - uid: 12047 - components: - - type: Transform - pos: 75.5,-5.5 - parent: 12 - - uid: 12056 - components: - - type: Transform - pos: 76.5,-5.5 - parent: 12 - uid: 12142 components: - type: Transform @@ -59292,41 +58527,11 @@ entities: - type: Transform pos: 21.5,21.5 parent: 12 - - uid: 12352 - components: - - type: Transform - pos: 22.5,21.5 - parent: 12 - - uid: 12353 - components: - - type: Transform - pos: 22.5,20.5 - parent: 12 - - uid: 12354 - components: - - type: Transform - pos: 22.5,19.5 - parent: 12 - uid: 12355 components: - type: Transform pos: 21.5,19.5 parent: 12 - - uid: 12356 - components: - - type: Transform - pos: 20.5,19.5 - parent: 12 - - uid: 12357 - components: - - type: Transform - pos: 20.5,20.5 - parent: 12 - - uid: 12358 - components: - - type: Transform - pos: 20.5,21.5 - parent: 12 - uid: 12359 components: - type: Transform @@ -59570,32 +58775,12 @@ entities: - uid: 12916 components: - type: Transform - pos: 81.5,-5.5 - parent: 12 - - uid: 12917 - components: - - type: Transform - pos: 82.5,-5.5 + pos: 57.5,7.5 parent: 12 - uid: 12920 components: - type: Transform - pos: 77.5,-5.5 - parent: 12 - - uid: 12929 - components: - - type: Transform - pos: 78.5,-5.5 - parent: 12 - - uid: 12931 - components: - - type: Transform - pos: 79.5,-5.5 - parent: 12 - - uid: 13011 - components: - - type: Transform - pos: 80.5,-5.5 + pos: 65.5,8.5 parent: 12 - uid: 13043 components: @@ -60742,15 +59927,10 @@ entities: - type: Transform pos: 1.5,-14.5 parent: 12 - - uid: 15999 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 12 - uid: 16000 components: - type: Transform - pos: -5.5,-15.5 + pos: -22.5,-29.5 parent: 12 - uid: 16095 components: @@ -61177,10 +60357,15 @@ entities: - type: Transform pos: -1.5,45.5 parent: 12 - - uid: 16356 + - uid: 16361 components: - type: Transform - pos: 82.5,-4.5 + pos: 65.5,0.5 + parent: 12 + - uid: 16368 + components: + - type: Transform + pos: -22.5,-28.5 parent: 12 - uid: 16377 components: @@ -61237,11 +60422,6 @@ entities: - type: Transform pos: -10.5,23.5 parent: 12 - - uid: 16436 - components: - - type: Transform - pos: 59.5,-5.5 - parent: 12 - uid: 16518 components: - type: Transform @@ -61287,11 +60467,6 @@ entities: - type: Transform pos: 65.5,-2.5 parent: 12 - - uid: 16663 - components: - - type: Transform - pos: 66.5,-2.5 - parent: 12 - uid: 16798 components: - type: Transform @@ -62252,11 +61427,6 @@ entities: - type: Transform pos: -51.5,13.5 parent: 12 - - uid: 19462 - components: - - type: Transform - pos: 59.5,7.5 - parent: 12 - uid: 19506 components: - type: Transform @@ -63362,16 +62532,6 @@ entities: - type: Transform pos: -45.5,51.5 parent: 12 - - uid: 20564 - components: - - type: Transform - pos: -47.5,51.5 - parent: 12 - - uid: 20566 - components: - - type: Transform - pos: -47.5,52.5 - parent: 12 - uid: 20567 components: - type: Transform @@ -63387,11 +62547,6 @@ entities: - type: Transform pos: -37.5,51.5 parent: 12 - - uid: 20606 - components: - - type: Transform - pos: 82.5,6.5 - parent: 12 - uid: 20767 components: - type: Transform @@ -63447,11 +62602,6 @@ entities: - type: Transform pos: -8.5,-22.5 parent: 12 - - uid: 20855 - components: - - type: Transform - pos: -53.5,53.5 - parent: 12 - uid: 21085 components: - type: Transform @@ -63602,11 +62752,6 @@ entities: - type: Transform pos: -6.5,32.5 parent: 12 - - uid: 21607 - components: - - type: Transform - pos: 59.5,-6.5 - parent: 12 - uid: 21705 components: - type: Transform @@ -63627,11 +62772,6 @@ entities: - type: Transform pos: 60.5,-23.5 parent: 12 - - uid: 21871 - components: - - type: Transform - pos: 61.5,6.5 - parent: 12 - uid: 21884 components: - type: Transform @@ -63657,16 +62797,6 @@ entities: - type: Transform pos: 32.5,-6.5 parent: 12 - - uid: 22027 - components: - - type: Transform - pos: -54.5,49.5 - parent: 12 - - uid: 22028 - components: - - type: Transform - pos: -53.5,49.5 - parent: 12 - uid: 22030 components: - type: Transform @@ -63682,11 +62812,6 @@ entities: - type: Transform pos: 36.5,-3.5 parent: 12 - - uid: 22079 - components: - - type: Transform - pos: 54.5,14.5 - parent: 12 - uid: 22083 components: - type: Transform @@ -63697,66 +62822,6 @@ entities: - type: Transform pos: -41.5,52.5 parent: 12 - - uid: 22128 - components: - - type: Transform - pos: 63.5,14.5 - parent: 12 - - uid: 22131 - components: - - type: Transform - pos: 65.5,14.5 - parent: 12 - - uid: 22134 - components: - - type: Transform - pos: 70.5,14.5 - parent: 12 - - uid: 22135 - components: - - type: Transform - pos: 62.5,-3.5 - parent: 12 - - uid: 22137 - components: - - type: Transform - pos: 69.5,14.5 - parent: 12 - - uid: 22138 - components: - - type: Transform - pos: 64.5,14.5 - parent: 12 - - uid: 22139 - components: - - type: Transform - pos: 66.5,14.5 - parent: 12 - - uid: 22143 - components: - - type: Transform - pos: 58.5,14.5 - parent: 12 - - uid: 22145 - components: - - type: Transform - pos: 60.5,14.5 - parent: 12 - - uid: 22146 - components: - - type: Transform - pos: 59.5,14.5 - parent: 12 - - uid: 22149 - components: - - type: Transform - pos: 61.5,14.5 - parent: 12 - - uid: 22163 - components: - - type: Transform - pos: 61.5,-3.5 - parent: 12 - uid: 22188 components: - type: Transform @@ -63817,11 +62882,6 @@ entities: - type: Transform pos: -53.5,57.5 parent: 12 - - uid: 22336 - components: - - type: Transform - pos: -53.5,52.5 - parent: 12 - uid: 22338 components: - type: Transform @@ -63842,21 +62902,6 @@ entities: - type: Transform pos: -31.5,70.5 parent: 12 - - uid: 23134 - components: - - type: Transform - pos: 60.5,-3.5 - parent: 12 - - uid: 23174 - components: - - type: Transform - pos: 64.5,-3.5 - parent: 12 - - uid: 23175 - components: - - type: Transform - pos: 63.5,-3.5 - parent: 12 - uid: 23713 components: - type: Transform @@ -63872,21 +62917,6 @@ entities: - type: Transform pos: -56.5,61.5 parent: 12 - - uid: 23897 - components: - - type: Transform - pos: -53.5,50.5 - parent: 12 - - uid: 23951 - components: - - type: Transform - pos: -20.5,-29.5 - parent: 12 - - uid: 24455 - components: - - type: Transform - pos: 49.5,-2.5 - parent: 12 - uid: 24661 components: - type: Transform @@ -63897,11 +62927,6 @@ entities: - type: Transform pos: -51.5,46.5 parent: 12 - - uid: 24688 - components: - - type: Transform - pos: 81.5,14.5 - parent: 12 - uid: 24714 components: - type: Transform @@ -64492,31 +63517,16 @@ entities: - type: Transform pos: -29.5,-42.5 parent: 12 - - uid: 25388 - components: - - type: Transform - pos: -55.5,49.5 - parent: 12 - uid: 25390 components: - type: Transform pos: -53.5,46.5 parent: 12 - - uid: 25398 - components: - - type: Transform - pos: -56.5,49.5 - parent: 12 - uid: 25405 components: - type: Transform pos: -22.5,57.5 parent: 12 - - uid: 25411 - components: - - type: Transform - pos: -53.5,51.5 - parent: 12 - uid: 25441 components: - type: Transform @@ -64617,11 +63627,6 @@ entities: - type: Transform pos: 58.5,-0.5 parent: 12 - - uid: 25538 - components: - - type: Transform - pos: 59.5,-3.5 - parent: 12 - uid: 25539 components: - type: Transform @@ -64652,11 +63657,6 @@ entities: - type: Transform pos: 33.5,12.5 parent: 12 - - uid: 25598 - components: - - type: Transform - pos: 58.5,-3.5 - parent: 12 - uid: 25633 components: - type: Transform @@ -64802,46 +63802,11 @@ entities: - type: Transform pos: 32.5,14.5 parent: 12 - - uid: 25870 - components: - - type: Transform - pos: -20.5,-28.5 - parent: 12 - - uid: 26073 - components: - - type: Transform - pos: -20.5,-27.5 - parent: 12 - uid: 26111 components: - type: Transform pos: 40.5,-10.5 parent: 12 - - uid: 26132 - components: - - type: Transform - pos: 62.5,-5.5 - parent: 12 - - uid: 26133 - components: - - type: Transform - pos: 60.5,-5.5 - parent: 12 - - uid: 26153 - components: - - type: Transform - pos: 64.5,-5.5 - parent: 12 - - uid: 26155 - components: - - type: Transform - pos: 66.5,-5.5 - parent: 12 - - uid: 26162 - components: - - type: Transform - pos: 79.5,2.5 - parent: 12 - uid: 26208 components: - type: Transform @@ -64862,61 +63827,16 @@ entities: - type: Transform pos: -27.5,-27.5 parent: 12 - - uid: 26311 - components: - - type: Transform - pos: 79.5,7.5 - parent: 12 - - uid: 26382 - components: - - type: Transform - pos: 79.5,1.5 - parent: 12 - - uid: 26389 - components: - - type: Transform - pos: 79.5,3.5 - parent: 12 - - uid: 26422 - components: - - type: Transform - pos: 82.5,4.5 - parent: 12 - - uid: 26432 - components: - - type: Transform - pos: 62.5,8.5 - parent: 12 - - uid: 26445 - components: - - type: Transform - pos: 82.5,13.5 - parent: 12 - uid: 26451 components: - type: Transform pos: 57.5,4.5 parent: 12 - - uid: 26455 - components: - - type: Transform - pos: 82.5,3.5 - parent: 12 - - uid: 26462 - components: - - type: Transform - pos: 82.5,7.5 - parent: 12 - uid: 26478 components: - type: Transform pos: 17.5,7.5 parent: 12 - - uid: 26488 - components: - - type: Transform - pos: 82.5,14.5 - parent: 12 - uid: 26512 components: - type: Transform @@ -64942,61 +63862,11 @@ entities: - type: Transform pos: 58.5,4.5 parent: 12 - - uid: 26529 - components: - - type: Transform - pos: 79.5,6.5 - parent: 12 - - uid: 26530 - components: - - type: Transform - pos: 79.5,4.5 - parent: 12 - - uid: 26531 - components: - - type: Transform - pos: 79.5,5.5 - parent: 12 - - uid: 26532 - components: - - type: Transform - pos: 63.5,-5.5 - parent: 12 - - uid: 26533 - components: - - type: Transform - pos: 61.5,-5.5 - parent: 12 - - uid: 26534 - components: - - type: Transform - pos: 65.5,-5.5 - parent: 12 - - uid: 26535 - components: - - type: Transform - pos: 67.5,-5.5 - parent: 12 - uid: 26545 components: - type: Transform pos: 21.5,5.5 parent: 12 - - uid: 26559 - components: - - type: Transform - pos: 79.5,-2.5 - parent: 12 - - uid: 26585 - components: - - type: Transform - pos: 56.5,14.5 - parent: 12 - - uid: 26587 - components: - - type: Transform - pos: 57.5,14.5 - parent: 12 - uid: 26597 components: - type: Transform @@ -65007,41 +63877,6 @@ entities: - type: Transform pos: 17.5,6.5 parent: 12 - - uid: 26645 - components: - - type: Transform - pos: 78.5,14.5 - parent: 12 - - uid: 26654 - components: - - type: Transform - pos: 73.5,11.5 - parent: 12 - - uid: 26669 - components: - - type: Transform - pos: 71.5,11.5 - parent: 12 - - uid: 26675 - components: - - type: Transform - pos: 72.5,11.5 - parent: 12 - - uid: 26677 - components: - - type: Transform - pos: 70.5,11.5 - parent: 12 - - uid: 26678 - components: - - type: Transform - pos: 79.5,11.5 - parent: 12 - - uid: 26681 - components: - - type: Transform - pos: 64.5,8.5 - parent: 12 - uid: 26688 components: - type: Transform @@ -65052,16 +63887,6 @@ entities: - type: Transform pos: 65.5,1.5 parent: 12 - - uid: 26706 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - - uid: 26707 - components: - - type: Transform - pos: 64.5,9.5 - parent: 12 - uid: 26708 components: - type: Transform @@ -65082,16 +63907,6 @@ entities: - type: Transform pos: 65.5,9.5 parent: 12 - - uid: 26715 - components: - - type: Transform - pos: 76.5,12.5 - parent: 12 - - uid: 26718 - components: - - type: Transform - pos: 64.5,-0.5 - parent: 12 - uid: 26720 components: - type: Transform @@ -65132,41 +63947,6 @@ entities: - type: Transform pos: 59.5,4.5 parent: 12 - - uid: 26748 - components: - - type: Transform - pos: 77.5,12.5 - parent: 12 - - uid: 26749 - components: - - type: Transform - pos: 75.5,12.5 - parent: 12 - - uid: 26750 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 26751 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - - uid: 26752 - components: - - type: Transform - pos: 79.5,9.5 - parent: 12 - - uid: 26753 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 26755 - components: - - type: Transform - pos: 79.5,10.5 - parent: 12 - uid: 26761 components: - type: Transform @@ -65182,16 +63962,6 @@ entities: - type: Transform pos: 22.5,5.5 parent: 12 - - uid: 26783 - components: - - type: Transform - pos: 64.5,1.5 - parent: 12 - - uid: 26785 - components: - - type: Transform - pos: 64.5,0.5 - parent: 12 - uid: 26806 components: - type: Transform @@ -65207,11 +63977,6 @@ entities: - type: Transform pos: 63.5,2.5 parent: 12 - - uid: 26829 - components: - - type: Transform - pos: 51.5,1.5 - parent: 12 - uid: 26831 components: - type: Transform @@ -65242,21 +64007,6 @@ entities: - type: Transform pos: 53.5,2.5 parent: 12 - - uid: 26879 - components: - - type: Transform - pos: 53.5,-7.5 - parent: 12 - - uid: 26885 - components: - - type: Transform - pos: 57.5,-7.5 - parent: 12 - - uid: 26899 - components: - - type: Transform - pos: 54.5,-7.5 - parent: 12 - uid: 26900 components: - type: Transform @@ -65267,31 +64017,6 @@ entities: - type: Transform pos: 54.5,-0.5 parent: 12 - - uid: 27056 - components: - - type: Transform - pos: 55.5,-7.5 - parent: 12 - - uid: 27073 - components: - - type: Transform - pos: 62.5,14.5 - parent: 12 - - uid: 27075 - components: - - type: Transform - pos: 55.5,14.5 - parent: 12 - - uid: 27077 - components: - - type: Transform - pos: 67.5,14.5 - parent: 12 - - uid: 27078 - components: - - type: Transform - pos: 68.5,14.5 - parent: 12 - uid: 27113 components: - type: Transform @@ -65307,71 +64032,6 @@ entities: - type: Transform pos: 53.5,-0.5 parent: 12 - - uid: 27118 - components: - - type: Transform - pos: 50.5,-0.5 - parent: 12 - - uid: 27119 - components: - - type: Transform - pos: 50.5,-1.5 - parent: 12 - - uid: 27120 - components: - - type: Transform - pos: 50.5,-3.5 - parent: 12 - - uid: 27121 - components: - - type: Transform - pos: 50.5,-2.5 - parent: 12 - - uid: 27122 - components: - - type: Transform - pos: 51.5,-3.5 - parent: 12 - - uid: 27123 - components: - - type: Transform - pos: 52.5,-3.5 - parent: 12 - - uid: 27124 - components: - - type: Transform - pos: 52.5,-4.5 - parent: 12 - - uid: 27125 - components: - - type: Transform - pos: 52.5,-5.5 - parent: 12 - - uid: 27126 - components: - - type: Transform - pos: 52.5,-6.5 - parent: 12 - - uid: 27127 - components: - - type: Transform - pos: 52.5,-7.5 - parent: 12 - - uid: 27128 - components: - - type: Transform - pos: 56.5,-7.5 - parent: 12 - - uid: 27216 - components: - - type: Transform - pos: 60.5,11.5 - parent: 12 - - uid: 27237 - components: - - type: Transform - pos: 57.5,-6.5 - parent: 12 - uid: 27253 components: - type: Transform @@ -65797,41 +64457,6 @@ entities: - type: Transform pos: 54.5,7.5 parent: 12 - - uid: 28223 - components: - - type: Transform - pos: 55.5,11.5 - parent: 12 - - uid: 28224 - components: - - type: Transform - pos: 56.5,11.5 - parent: 12 - - uid: 28225 - components: - - type: Transform - pos: 57.5,11.5 - parent: 12 - - uid: 28226 - components: - - type: Transform - pos: 58.5,11.5 - parent: 12 - - uid: 28227 - components: - - type: Transform - pos: 58.5,10.5 - parent: 12 - - uid: 28228 - components: - - type: Transform - pos: 58.5,9.5 - parent: 12 - - uid: 28229 - components: - - type: Transform - pos: 58.5,8.5 - parent: 12 - uid: 28424 components: - type: Transform @@ -65897,11 +64522,6 @@ entities: - type: Transform pos: 5.5,-47.5 parent: 12 - - uid: 28886 - components: - - type: Transform - pos: 50.5,0.5 - parent: 12 - uid: 28888 components: - type: Transform @@ -66702,11 +65322,6 @@ entities: - type: Transform pos: -50.5,64.5 parent: 12 - - uid: 29634 - components: - - type: Transform - pos: 58.5,-8.5 - parent: 12 - uid: 29648 components: - type: Transform @@ -66912,21 +65527,6 @@ entities: - type: Transform pos: -11.5,-36.5 parent: 12 - - uid: 29989 - components: - - type: Transform - pos: 49.5,0.5 - parent: 12 - - uid: 29990 - components: - - type: Transform - pos: 48.5,0.5 - parent: 12 - - uid: 29991 - components: - - type: Transform - pos: 47.5,0.5 - parent: 12 - uid: 30246 components: - type: Transform @@ -67222,16 +65822,6 @@ entities: - type: Transform pos: -23.5,-5.5 parent: 12 - - uid: 31904 - components: - - type: Transform - pos: 59.5,11.5 - parent: 12 - - uid: 31905 - components: - - type: Transform - pos: 57.5,-5.5 - parent: 12 - uid: 32041 components: - type: Transform @@ -67342,8 +65932,8 @@ entities: - uid: 28716 components: - type: Transform - rot: -6.283185307179586 rad - pos: 54.49973,-6.4827724 + rot: -37.69911184307754 rad + pos: 54.425102,-5.334914 parent: 12 - proto: CableMVStack1 entities: @@ -67377,6 +65967,12 @@ entities: - type: Transform pos: 12.5,-16.5 parent: 12 + - uid: 7766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,0.5 + parent: 12 - uid: 7946 components: - type: Transform @@ -67404,12 +66000,6 @@ entities: - type: Transform pos: 13.5,-16.5 parent: 12 - - uid: 29322 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,4.5 - parent: 12 - uid: 30247 components: - type: Transform @@ -67422,12 +66012,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-47.5 parent: 12 - - uid: 31897 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,11.5 - parent: 12 - proto: Candle entities: - uid: 13090 @@ -67569,7 +66153,8 @@ entities: - uid: 31575 components: - type: Transform - pos: -12.337029,0.65538275 + rot: -6.283185307179586 rad + pos: -13.663055,0.58543336 parent: 12 - proto: CaptainIDCard entities: @@ -67580,6 +66165,11 @@ entities: parent: 12 - proto: CarbonDioxideCanister entities: + - uid: 22 + components: + - type: Transform + pos: 10.5,12.5 + parent: 12 - uid: 707 components: - type: Transform @@ -68842,6 +67432,12 @@ entities: rot: 3.141592653589793 rad pos: 44.5,38.5 parent: 12 + - uid: 7109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,42.5 + parent: 12 - uid: 13032 components: - type: Transform @@ -69342,11 +67938,6 @@ entities: - type: Transform pos: 49.5,40.5 parent: 12 - - uid: 13176 - components: - - type: Transform - pos: 50.5,42.5 - parent: 12 - uid: 13177 components: - type: Transform @@ -69357,12 +67948,6 @@ entities: - type: Transform pos: 51.5,42.5 parent: 12 - - uid: 13182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,42.5 - parent: 12 - uid: 13187 components: - type: Transform @@ -70249,6 +68834,11 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-57.5 parent: 12 + - uid: 465 + components: + - type: Transform + pos: 10.5,28.5 + parent: 12 - uid: 506 components: - type: Transform @@ -70259,21 +68849,6 @@ entities: - type: Transform pos: 54.5,12.5 parent: 12 - - uid: 564 - components: - - type: Transform - pos: 54.5,10.5 - parent: 12 - - uid: 566 - components: - - type: Transform - pos: 54.5,11.5 - parent: 12 - - uid: 567 - components: - - type: Transform - pos: 54.5,9.5 - parent: 12 - uid: 765 components: - type: Transform @@ -70297,12 +68872,24 @@ entities: rot: 3.141592653589793 rad pos: 18.5,10.5 parent: 12 + - uid: 1437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-7.5 + parent: 12 - uid: 1555 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,2.5 parent: 12 + - uid: 2026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,25.5 + parent: 12 - uid: 2185 components: - type: Transform @@ -70320,6 +68907,12 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-36.5 parent: 12 + - uid: 2463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,24.5 + parent: 12 - uid: 2487 components: - type: Transform @@ -70330,11 +68923,6 @@ entities: - type: Transform pos: 87.5,-34.5 parent: 12 - - uid: 2501 - components: - - type: Transform - pos: 2.5,22.5 - parent: 12 - uid: 2675 components: - type: Transform @@ -70369,6 +68957,11 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-34.5 parent: 12 + - uid: 2949 + components: + - type: Transform + pos: 54.5,11.5 + parent: 12 - uid: 2950 components: - type: Transform @@ -70387,6 +68980,12 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,9.5 parent: 12 + - uid: 2970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,24.5 + parent: 12 - uid: 2988 components: - type: Transform @@ -70405,6 +69004,29 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-22.5 parent: 12 + - uid: 3133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,23.5 + parent: 12 + - uid: 3486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,24.5 + parent: 12 + - uid: 3623 + components: + - type: Transform + pos: -56.5,48.5 + parent: 12 + - uid: 3913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,26.5 + parent: 12 - uid: 3914 components: - type: Transform @@ -70417,11 +69039,22 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,10.5 parent: 12 + - uid: 3960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 12 - uid: 4038 components: - type: Transform pos: -38.5,-52.5 parent: 12 + - uid: 4045 + components: + - type: Transform + pos: 21.5,19.5 + parent: 12 - uid: 4056 components: - type: Transform @@ -70604,6 +69237,11 @@ entities: - type: Transform pos: -7.5,-39.5 parent: 12 + - uid: 4385 + components: + - type: Transform + pos: 54.5,10.5 + parent: 12 - uid: 4593 components: - type: Transform @@ -70649,6 +69287,12 @@ entities: - type: Transform pos: -36.5,-53.5 parent: 12 + - uid: 4766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-7.5 + parent: 12 - uid: 4767 components: - type: Transform @@ -70679,6 +69323,11 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-2.5 parent: 12 + - uid: 4928 + components: + - type: Transform + pos: -56.5,47.5 + parent: 12 - uid: 4950 components: - type: Transform @@ -70691,6 +69340,12 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,10.5 parent: 12 + - uid: 4989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,22.5 + parent: 12 - uid: 5023 components: - type: Transform @@ -70739,12 +69394,75 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-12.5 parent: 12 + - uid: 5319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,22.5 + parent: 12 + - uid: 5384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-6.5 + parent: 12 - uid: 5419 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,10.5 parent: 12 + - uid: 5506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-8.5 + parent: 12 + - uid: 5507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-8.5 + parent: 12 + - uid: 5526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-8.5 + parent: 12 + - uid: 5527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-8.5 + parent: 12 + - uid: 5538 + components: + - type: Transform + pos: 21.5,20.5 + parent: 12 + - uid: 5543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-8.5 + parent: 12 + - uid: 5550 + components: + - type: Transform + pos: 20.5,20.5 + parent: 12 + - uid: 5552 + components: + - type: Transform + pos: 21.5,21.5 + parent: 12 + - uid: 5553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,23.5 + parent: 12 - uid: 5556 components: - type: Transform @@ -71320,12 +70038,52 @@ entities: rot: -1.5707963267948966 rad pos: 72.5,-58.5 parent: 12 + - uid: 7112 + components: + - type: Transform + pos: -56.5,49.5 + parent: 12 - uid: 7120 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-37.5 parent: 12 + - uid: 7154 + components: + - type: Transform + pos: 54.5,9.5 + parent: 12 + - uid: 7162 + components: + - type: Transform + pos: 16.5,26.5 + parent: 12 + - uid: 7163 + components: + - type: Transform + pos: 16.5,25.5 + parent: 12 + - uid: 7164 + components: + - type: Transform + pos: 16.5,28.5 + parent: 12 + - uid: 7165 + components: + - type: Transform + pos: 15.5,28.5 + parent: 12 + - uid: 7166 + components: + - type: Transform + pos: 16.5,27.5 + parent: 12 + - uid: 7167 + components: + - type: Transform + pos: 14.5,28.5 + parent: 12 - uid: 7215 components: - type: Transform @@ -71620,6 +70378,11 @@ entities: rot: -1.5707963267948966 rad pos: 82.5,-34.5 parent: 12 + - uid: 7768 + components: + - type: Transform + pos: 65.5,-2.5 + parent: 12 - uid: 7792 components: - type: Transform @@ -71643,6 +70406,16 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,16.5 parent: 12 + - uid: 8440 + components: + - type: Transform + pos: 65.5,-1.5 + parent: 12 + - uid: 8443 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 12 - uid: 8452 components: - type: Transform @@ -71655,6 +70428,11 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-12.5 parent: 12 + - uid: 8456 + components: + - type: Transform + pos: 65.5,1.5 + parent: 12 - uid: 8490 components: - type: Transform @@ -71667,6 +70445,16 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-39.5 parent: 12 + - uid: 8709 + components: + - type: Transform + pos: 65.5,3.5 + parent: 12 + - uid: 8732 + components: + - type: Transform + pos: 65.5,2.5 + parent: 12 - uid: 8746 components: - type: Transform @@ -71763,6 +70551,11 @@ entities: rot: 1.5707963267948966 rad pos: 87.5,-35.5 parent: 12 + - uid: 8846 + components: + - type: Transform + pos: 65.5,4.5 + parent: 12 - uid: 8854 components: - type: Transform @@ -71775,12 +70568,52 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-43.5 parent: 12 + - uid: 8856 + components: + - type: Transform + pos: 65.5,5.5 + parent: 12 + - uid: 8857 + components: + - type: Transform + pos: 65.5,7.5 + parent: 12 + - uid: 8859 + components: + - type: Transform + pos: 65.5,8.5 + parent: 12 + - uid: 8860 + components: + - type: Transform + pos: 65.5,9.5 + parent: 12 + - uid: 8877 + components: + - type: Transform + pos: 65.5,6.5 + parent: 12 + - uid: 8910 + components: + - type: Transform + pos: 65.5,10.5 + parent: 12 + - uid: 8937 + components: + - type: Transform + pos: 65.5,11.5 + parent: 12 - uid: 9066 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-9.5 parent: 12 + - uid: 9222 + components: + - type: Transform + pos: 8.5,28.5 + parent: 12 - uid: 9259 components: - type: Transform @@ -71817,17 +70650,17 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,9.5 parent: 12 - - uid: 9595 + - uid: 9596 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,11.5 + pos: 7.5,9.5 parent: 12 - - uid: 9596 + - uid: 9609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,9.5 + rot: -1.5707963267948966 rad + pos: 4.5,30.5 parent: 12 - uid: 9625 components: @@ -71841,15 +70674,22 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-47.5 parent: 12 - - uid: 9742 + - uid: 9658 components: - type: Transform - pos: 1.5,21.5 + pos: 9.5,28.5 parent: 12 - - uid: 9851 + - uid: 9707 components: - type: Transform - pos: 3.5,22.5 + rot: -1.5707963267948966 rad + pos: 4.5,32.5 + parent: 12 + - uid: 9723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,28.5 parent: 12 - uid: 9968 components: @@ -71863,6 +70703,18 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-8.5 parent: 12 + - uid: 10326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-5.5 + parent: 12 + - uid: 10594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-5.5 + parent: 12 - uid: 10595 components: - type: Transform @@ -71877,8 +70729,8 @@ entities: - uid: 10818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,3.5 + rot: -1.5707963267948966 rad + pos: 4.5,31.5 parent: 12 - uid: 10835 components: @@ -71898,6 +70750,12 @@ entities: rot: 3.141592653589793 rad pos: 5.5,8.5 parent: 12 + - uid: 10917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,22.5 + parent: 12 - uid: 10921 components: - type: Transform @@ -71936,10 +70794,16 @@ entities: - type: Transform pos: 20.5,11.5 parent: 12 - - uid: 10977 + - uid: 10967 components: - type: Transform - pos: 1.5,22.5 + pos: 18.5,24.5 + parent: 12 + - uid: 10978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,16.5 parent: 12 - uid: 11049 components: @@ -71980,11 +70844,15 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,18.5 parent: 12 - - uid: 11214 + - uid: 11202 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-2.5 + pos: 13.5,28.5 + parent: 12 + - uid: 11224 + components: + - type: Transform + pos: 65.5,0.5 parent: 12 - uid: 11227 components: @@ -72004,77 +70872,11 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,68.5 parent: 12 - - uid: 11285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,19.5 - parent: 12 - - uid: 11286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,20.5 - parent: 12 - - uid: 11287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,21.5 - parent: 12 - - uid: 11288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,21.5 - parent: 12 - - uid: 11289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,21.5 - parent: 12 - - uid: 11290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 12 - - uid: 11291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,19.5 - parent: 12 - uid: 11303 components: - type: Transform pos: -2.5,9.5 parent: 12 - - uid: 11305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,22.5 - parent: 12 - - uid: 11310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,24.5 - parent: 12 - - uid: 11311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,25.5 - parent: 12 - - uid: 11312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 12 - uid: 11345 components: - type: Transform @@ -72200,11 +71002,11 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,12.5 parent: 12 - - uid: 12701 + - uid: 12274 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,19.5 + pos: 4.5,22.5 parent: 12 - uid: 12883 components: @@ -72212,6 +71014,12 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,62.5 parent: 12 + - uid: 13788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,29.5 + parent: 12 - uid: 14294 components: - type: Transform @@ -72488,35 +71296,10 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-16.5 parent: 12 - - uid: 15676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,20.5 - parent: 12 - - uid: 15677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,20.5 - parent: 12 - uid: 15678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,21.5 - parent: 12 - - uid: 15680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,20.5 - parent: 12 - - uid: 15681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,20.5 + pos: 11.5,28.5 parent: 12 - uid: 15682 components: @@ -72553,6 +71336,17 @@ entities: - type: Transform pos: -5.5,33.5 parent: 12 + - uid: 16370 + components: + - type: Transform + pos: 12.5,28.5 + parent: 12 + - uid: 16375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,16.5 + parent: 12 - uid: 16424 components: - type: Transform @@ -72626,16 +71420,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,7.5 parent: 12 - - uid: 17973 - components: - - type: Transform - pos: -56.5,48.5 - parent: 12 - - uid: 17974 - components: - - type: Transform - pos: -56.5,49.5 - parent: 12 - uid: 17975 components: - type: Transform @@ -72646,11 +71430,6 @@ entities: - type: Transform pos: -56.5,46.5 parent: 12 - - uid: 17977 - components: - - type: Transform - pos: -56.5,47.5 - parent: 12 - uid: 18069 components: - type: Transform @@ -72841,6 +71620,18 @@ entities: - type: Transform pos: -67.5,53.5 parent: 12 + - uid: 19559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-5.5 + parent: 12 + - uid: 19820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-5.5 + parent: 12 - uid: 19864 components: - type: Transform @@ -73256,6 +72047,12 @@ entities: - type: Transform pos: 41.5,10.5 parent: 12 + - uid: 22339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-5.5 + parent: 12 - uid: 22470 components: - type: Transform @@ -73271,6 +72068,18 @@ entities: - type: Transform pos: -2.5,34.5 parent: 12 + - uid: 23158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-5.5 + parent: 12 + - uid: 23161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-5.5 + parent: 12 - uid: 23534 components: - type: Transform @@ -74056,61 +72865,6 @@ entities: - type: Transform pos: -26.5,23.5 parent: 12 - - uid: 25822 - components: - - type: Transform - pos: 1.5,10.5 - parent: 12 - - uid: 25823 - components: - - type: Transform - pos: 1.5,11.5 - parent: 12 - - uid: 25824 - components: - - type: Transform - pos: 1.5,12.5 - parent: 12 - - uid: 25825 - components: - - type: Transform - pos: 1.5,13.5 - parent: 12 - - uid: 25826 - components: - - type: Transform - pos: 1.5,14.5 - parent: 12 - - uid: 25827 - components: - - type: Transform - pos: 1.5,15.5 - parent: 12 - - uid: 25828 - components: - - type: Transform - pos: 1.5,17.5 - parent: 12 - - uid: 25829 - components: - - type: Transform - pos: 1.5,16.5 - parent: 12 - - uid: 25830 - components: - - type: Transform - pos: 1.5,19.5 - parent: 12 - - uid: 25831 - components: - - type: Transform - pos: 1.5,20.5 - parent: 12 - - uid: 25832 - components: - - type: Transform - pos: 1.5,18.5 - parent: 12 - uid: 26236 components: - type: Transform @@ -74135,12 +72889,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-11.5 parent: 12 - - uid: 27240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,1.5 - parent: 12 - uid: 27241 components: - type: Transform @@ -74771,12 +73519,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-15.5 parent: 12 - - uid: 28493 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,11.5 - parent: 12 - uid: 28601 components: - type: Transform @@ -74967,18 +73709,6 @@ entities: - type: Transform pos: 47.5,10.5 parent: 12 - - uid: 28926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-1.5 - parent: 12 - - uid: 28927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-0.5 - parent: 12 - uid: 28939 components: - type: Transform @@ -74997,12 +73727,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 12 - - uid: 28944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,11.5 - parent: 12 - uid: 29000 components: - type: Transform @@ -75039,100 +73763,12 @@ entities: rot: 3.141592653589793 rad pos: 18.5,22.5 parent: 12 - - uid: 29058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,23.5 - parent: 12 - - uid: 29059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,23.5 - parent: 12 - - uid: 29060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,23.5 - parent: 12 - - uid: 29061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,23.5 - parent: 12 - - uid: 29062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,23.5 - parent: 12 - - uid: 29063 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,23.5 - parent: 12 - - uid: 29064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,23.5 - parent: 12 - - uid: 29065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,23.5 - parent: 12 - - uid: 29066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,23.5 - parent: 12 - - uid: 29068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,23.5 - parent: 12 - - uid: 29070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,23.5 - parent: 12 - - uid: 29071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,23.5 - parent: 12 - - uid: 29072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,23.5 - parent: 12 - uid: 29086 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,0.5 parent: 12 - - uid: 29090 - components: - - type: Transform - pos: 7.5,23.5 - parent: 12 - - uid: 29091 - components: - - type: Transform - pos: 9.5,23.5 - parent: 12 - uid: 29094 components: - type: Transform @@ -75145,24 +73781,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,2.5 parent: 12 - - uid: 29103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,4.5 - parent: 12 - - uid: 29107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,0.5 - parent: 12 - - uid: 29108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 12 - uid: 29148 components: - type: Transform @@ -75837,318 +74455,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-64.5 parent: 12 - - uid: 31518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,0.5 - parent: 12 - - uid: 31519 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,1.5 - parent: 12 - - uid: 31742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,2.5 - parent: 12 - - uid: 31743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,3.5 - parent: 12 - - uid: 31744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,4.5 - parent: 12 - - uid: 31745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,5.5 - parent: 12 - - uid: 31747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,6.5 - parent: 12 - - uid: 31756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,7.5 - parent: 12 - - uid: 31757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,8.5 - parent: 12 - - uid: 31764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,9.5 - parent: 12 - - uid: 31838 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,10.5 - parent: 12 - - uid: 31839 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,11.5 - parent: 12 - - uid: 31840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,11.5 - parent: 12 - - uid: 31841 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,11.5 - parent: 12 - - uid: 31842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,11.5 - parent: 12 - - uid: 31843 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,11.5 - parent: 12 - - uid: 31844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,11.5 - parent: 12 - - uid: 31845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,11.5 - parent: 12 - - uid: 31846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,11.5 - parent: 12 - - uid: 31847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,11.5 - parent: 12 - - uid: 31848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,11.5 - parent: 12 - - uid: 31849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,11.5 - parent: 12 - - uid: 31850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,11.5 - parent: 12 - - uid: 31851 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,11.5 - parent: 12 - - uid: 31852 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,11.5 - parent: 12 - - uid: 31853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,10.5 - parent: 12 - - uid: 31854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,8.5 - parent: 12 - - uid: 31855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,7.5 - parent: 12 - - uid: 31856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,6.5 - parent: 12 - - uid: 31857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,5.5 - parent: 12 - - uid: 31858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,9.5 - parent: 12 - - uid: 31859 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,4.5 - parent: 12 - - uid: 31860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,3.5 - parent: 12 - - uid: 31861 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,2.5 - parent: 12 - - uid: 31862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,0.5 - parent: 12 - - uid: 31863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-0.5 - parent: 12 - - uid: 31864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-1.5 - parent: 12 - - uid: 31865 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-2.5 - parent: 12 - - uid: 31866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,1.5 - parent: 12 - - uid: 31867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-2.5 - parent: 12 - - uid: 31868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-2.5 - parent: 12 - - uid: 31869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-2.5 - parent: 12 - - uid: 31870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-2.5 - parent: 12 - - uid: 31871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-2.5 - parent: 12 - - uid: 31872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-2.5 - parent: 12 - - uid: 31873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-2.5 - parent: 12 - - uid: 31874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-2.5 - parent: 12 - - uid: 31875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-2.5 - parent: 12 - - uid: 31876 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-2.5 - parent: 12 - - uid: 31877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-2.5 - parent: 12 - - uid: 31878 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-2.5 - parent: 12 - - uid: 31879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-2.5 - parent: 12 - uid: 32022 components: - type: Transform @@ -76310,6 +74616,12 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-56.5 parent: 12 + - uid: 3894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 12 - uid: 4264 components: - type: Transform @@ -76327,6 +74639,12 @@ entities: - type: Transform pos: -39.5,60.5 parent: 12 + - uid: 5121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-29.5 + parent: 12 - uid: 5394 components: - type: Transform @@ -76338,16 +74656,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-21.5 parent: 12 - - uid: 5506 - components: - - type: Transform - pos: 12.5,-23.5 - parent: 12 - - uid: 5507 - components: - - type: Transform - pos: 13.5,-23.5 - parent: 12 - uid: 5532 components: - type: Transform @@ -76376,6 +74684,12 @@ entities: - type: Transform pos: 31.5,-3.5 parent: 12 + - uid: 6151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-3.5 + parent: 12 - uid: 6266 components: - type: Transform @@ -76486,6 +74800,12 @@ entities: - type: Transform pos: -23.5,-2.5 parent: 12 + - uid: 10897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 12 - uid: 11124 components: - type: Transform @@ -76606,12 +74926,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,28.5 parent: 12 - - uid: 15668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,19.5 - parent: 12 - uid: 16767 components: - type: Transform @@ -77492,18 +75806,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,70.5 parent: 12 - - uid: 26592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-3.5 - parent: 12 - - uid: 27042 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,10.5 - parent: 12 - uid: 28037 components: - type: Transform @@ -77713,12 +76015,6 @@ entities: rot: 3.141592653589793 rad pos: 45.5,63.5 parent: 12 - - uid: 15672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.390552,20.748575 - parent: 12 - uid: 22681 components: - type: Transform @@ -77771,12 +76067,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,61.5 parent: 12 - - uid: 15687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.486891,21.672792 - parent: 12 - uid: 32099 components: - type: Transform @@ -77848,24 +76138,12 @@ entities: - type: Transform pos: -22.352177,-50.419205 parent: 12 - - uid: 4077 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.408745,-38.84657 - parent: 12 - uid: 4078 components: - type: Transform rot: 3.141592653589793 rad pos: -20.367077,-38.37782 parent: 12 - - uid: 4079 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.408745,-38.450733 - parent: 12 - uid: 5243 components: - type: Transform @@ -77910,12 +76188,6 @@ entities: - type: Transform pos: 13.537189,37.57953 parent: 12 - - uid: 15667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.6078722,19.88052 - parent: 12 - uid: 15801 components: - type: Transform @@ -77933,16 +76205,17 @@ entities: rot: 3.141592653589793 rad pos: -33.5,23.5 parent: 12 - - uid: 19634 + - uid: 19349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,78.5 + rot: 1.5707963267948966 rad + pos: -19.47049,-39.353542 parent: 12 - - uid: 21313 + - uid: 19634 components: - type: Transform - pos: 53.5,-5.5 + rot: -1.5707963267948966 rad + pos: -5.5,78.5 parent: 12 - uid: 22348 components: @@ -77950,6 +76223,11 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,0.5 parent: 12 + - uid: 23130 + components: + - type: Transform + pos: 56.427277,-4.6059856 + parent: 12 - uid: 23441 components: - type: Transform @@ -77974,11 +76252,6 @@ entities: rot: -1.5707963267948966 rad pos: 58.720875,57.492115 parent: 12 - - uid: 26552 - components: - - type: Transform - pos: 55.5,-5.5 - parent: 12 - uid: 27066 components: - type: Transform @@ -78057,6 +76330,12 @@ entities: rot: 1.5707963267948966 rad pos: -41.335243,-36.532413 parent: 12 + - uid: 2665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,21.5 + parent: 12 - uid: 5970 components: - type: Transform @@ -78068,6 +76347,11 @@ entities: - type: Transform pos: 35.5,-38.5 parent: 12 + - uid: 7521 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 12 - uid: 13864 components: - type: Transform @@ -78544,11 +76828,6 @@ entities: - type: Transform pos: 16.5,12.5 parent: 12 - - uid: 9653 - components: - - type: Transform - pos: 5.5,11.5 - parent: 12 - uid: 9819 components: - type: Transform @@ -78704,11 +76983,6 @@ entities: - type: Transform pos: 14.5,7.5 parent: 12 - - uid: 26693 - components: - - type: Transform - pos: 61.5,8.5 - parent: 12 - uid: 27016 components: - type: Transform @@ -78724,11 +76998,6 @@ entities: - type: Transform pos: 27.5,16.5 parent: 12 - - uid: 28751 - components: - - type: Transform - pos: 62.5,-2.5 - parent: 12 - uid: 28840 components: - type: Transform @@ -78774,11 +77043,6 @@ entities: parent: 12 - proto: ClosetEmergencyN2FilledRandom entities: - - uid: 5121 - components: - - type: Transform - pos: 61.5,9.5 - parent: 12 - uid: 6198 components: - type: Transform @@ -79169,11 +77433,6 @@ entities: - type: Transform pos: -42.5,-53.5 parent: 12 - - uid: 2575 - components: - - type: Transform - pos: 45.5,-5.5 - parent: 12 - uid: 2973 components: - type: Transform @@ -79184,6 +77443,11 @@ entities: - type: Transform pos: -12.5,-3.5 parent: 12 + - uid: 5817 + components: + - type: Transform + pos: -48.5,52.5 + parent: 12 - uid: 6291 components: - type: Transform @@ -79238,6 +77502,16 @@ entities: - type: Transform pos: -25.5,-14.5 parent: 12 + - uid: 11279 + components: + - type: Transform + pos: 5.5,30.5 + parent: 12 + - uid: 11310 + components: + - type: Transform + pos: -4.5,-61.5 + parent: 12 - uid: 11472 components: - type: Transform @@ -79303,6 +77577,11 @@ entities: - type: Transform pos: -0.5,15.5 parent: 12 + - uid: 22146 + components: + - type: Transform + pos: 52.5,-7.5 + parent: 12 - uid: 24277 components: - type: Transform @@ -79456,21 +77735,11 @@ entities: - type: Transform pos: -33.5,-39.5 parent: 12 - - uid: 6259 - components: - - type: Transform - pos: 57.5,2.5 - parent: 12 - uid: 6771 components: - type: Transform pos: 29.5,-6.5 parent: 12 - - uid: 6774 - components: - - type: Transform - pos: 14.5,-14.5 - parent: 12 - uid: 17199 components: - type: Transform @@ -79486,26 +77755,6 @@ entities: - type: Transform pos: -47.5,-38.5 parent: 12 - - uid: 27218 - components: - - type: Transform - pos: 59.5,8.5 - parent: 12 - - uid: 28692 - components: - - type: Transform - pos: 52.5,0.5 - parent: 12 - - uid: 28693 - components: - - type: Transform - pos: 52.5,1.5 - parent: 12 - - uid: 28694 - components: - - type: Transform - pos: 52.5,2.5 - parent: 12 - proto: ClosetSteelBase entities: - uid: 16506 @@ -79574,6 +77823,12 @@ entities: parent: 12 - proto: ClosetWallEmergencyFilledRandom entities: + - uid: 7523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-4.5 + parent: 12 - uid: 8883 components: - type: Transform @@ -79595,12 +77850,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,40.5 parent: 12 - - uid: 28494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-2.5 - parent: 12 - proto: ClosetWallFireFilledRandom entities: - uid: 21378 @@ -79629,6 +77878,13 @@ entities: - type: Transform pos: 20.5,8.5 parent: 12 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 22580 + components: + - type: Transform + pos: 47.5,-4.5 + parent: 12 - proto: ClothingBackpackSatchelGenetics entities: - uid: 2696 @@ -79693,8 +77949,7 @@ entities: - uid: 28711 components: - type: Transform - rot: -69.11503837897548 rad - pos: 57.532898,-6.47126 + pos: 52.389435,1.5120246 parent: 12 - proto: ClothingEyesBlindfold entities: @@ -80137,10 +78392,11 @@ entities: parent: 12 - proto: ClothingHeadsetMedicalScience entities: - - uid: 4042 + - uid: 5033 components: - type: Transform - pos: -21.531214,-29.412283 + rot: -119.380520836412 rad + pos: -19.723452,-30.617403 parent: 12 - proto: ClothingMaskBandBlue entities: @@ -80191,6 +78447,12 @@ entities: rot: -6.283185307179586 rad pos: 2.32486,-32.289738 parent: 12 + - uid: 10900 + components: + - type: Transform + rot: -119.380520836412 rad + pos: -19.545881,-30.396193 + parent: 12 - proto: ClothingMaskBreathMedicalSecurity entities: - uid: 31358 @@ -80215,11 +78477,6 @@ entities: parent: 12 - proto: ClothingMaskGasAtmos entities: - - uid: 7168 - components: - - type: Transform - pos: 37.736004,-32.38182 - parent: 12 - uid: 27188 components: - type: Transform @@ -80262,7 +78519,7 @@ entities: - uid: 18303 components: - type: Transform - pos: 54.553955,14.563015 + pos: -4.464142,51.52777 parent: 12 - proto: ClothingNeckCloakMiner entities: @@ -80462,6 +78719,11 @@ entities: rot: -6.283185307179586 rad pos: 42.74899,63.393394 parent: 12 + - uid: 11943 + components: + - type: Transform + pos: -4.4779925,21.516867 + parent: 12 - proto: ClothingOuterFlannelBlue entities: - uid: 30219 @@ -80552,11 +78814,6 @@ entities: - type: Transform pos: -20.351429,-7.5670047 parent: 12 - - uid: 22522 - components: - - type: Transform - pos: 5.585704,30.539377 - parent: 12 - proto: ClothingOuterSuitMonkey entities: - uid: 2751 @@ -80564,18 +78821,6 @@ entities: - type: Transform pos: -7.747349,-54.783165 parent: 12 -- proto: ClothingOuterVestHazard - entities: - - uid: 28761 - components: - - type: Transform - pos: 53.333237,-3.3827062 - parent: 12 - - uid: 28762 - components: - - type: Transform - pos: 53.708237,-3.6222892 - parent: 12 - proto: ClothingOuterWinterChef entities: - uid: 24081 @@ -80703,7 +78948,8 @@ entities: - uid: 29984 components: - type: Transform - pos: 47.687027,-3.4254918 + rot: -12.566370614359172 rad + pos: -0.27628815,17.396 parent: 12 - proto: ClothingUniformJumpskirtBlueElegantDress entities: @@ -80833,12 +79079,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-41.5 parent: 12 - - uid: 4898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-30.5 - parent: 12 - uid: 4899 components: - type: Transform @@ -80891,6 +79131,12 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,16.5 parent: 12 + - uid: 16376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,17.5 + parent: 12 - uid: 24997 components: - type: Transform @@ -80941,12 +79187,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,31.5 parent: 12 - - uid: 25027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,17.5 - parent: 12 - uid: 25028 components: - type: Transform @@ -81089,6 +79329,11 @@ entities: parent: 12 - proto: ComfyChair entities: + - uid: 887 + components: + - type: Transform + pos: -22.5,-33.5 + parent: 12 - uid: 2526 components: - type: Transform @@ -81146,12 +79391,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,30.5 parent: 12 - - uid: 15669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,19.5 - parent: 12 - uid: 17595 components: - type: Transform @@ -81336,13 +79575,24 @@ entities: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - proto: computerBodyScanner entities: - - uid: 1813 + - uid: 10977 components: - type: Transform - pos: -22.5,-27.5 + pos: -20.5,-27.5 parent: 12 - proto: ComputerBroken entities: + - uid: 2305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,20.5 + parent: 12 + - uid: 3691 + components: + - type: Transform + pos: -4.5,22.5 + parent: 12 - uid: 12230 components: - type: Transform @@ -81576,17 +79826,17 @@ entities: parent: 12 - proto: ComputerPowerMonitoring entities: - - uid: 3912 + - uid: 526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,27.5 + rot: 3.141592653589793 rad + pos: 56.5,-5.5 parent: 12 - - uid: 4387 + - uid: 3912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-6.5 + rot: 1.5707963267948966 rad + pos: -49.5,27.5 parent: 12 - uid: 4732 components: @@ -81605,6 +79855,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-4.5 parent: 12 + - uid: 6325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,20.5 + parent: 12 - uid: 6685 components: - type: Transform @@ -81696,11 +79952,11 @@ entities: parent: 12 - proto: ComputerRoboticsControl entities: - - uid: 12138 + - uid: 12683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-30.5 + rot: -1.5707963267948966 rad + pos: -23.5,-28.5 parent: 12 - proto: ComputerSalvageExpedition entities: @@ -81719,6 +79975,12 @@ entities: parent: 12 - proto: ComputerSolarControl entities: + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-5.5 + parent: 12 - uid: 9217 components: - type: Transform @@ -81735,12 +79997,6 @@ entities: - type: Transform pos: 34.5,67.5 parent: 12 - - uid: 15446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-6.5 - parent: 12 - uid: 18157 components: - type: Transform @@ -81865,11 +80121,6 @@ entities: - type: Transform pos: 29.5,27.5 parent: 12 - - uid: 15666 - components: - - type: Transform - pos: -3.5,21.5 - parent: 12 - uid: 15805 components: - type: Transform @@ -81909,46 +80160,29 @@ entities: - type: Transform pos: -19.5,-0.5 parent: 12 -- proto: ContainmentFieldGenerator +- proto: ContainmentFieldGeneratorFlatpack entities: - - uid: 4631 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,8.5 - parent: 12 - - uid: 4633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,8.5 - parent: 12 - - uid: 4716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,0.5 - parent: 12 - - uid: 11469 + - uid: 2920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,0.5 - parent: 12 -- proto: ContainmentFieldGeneratorFlatpack - entities: - - uid: 9978 + parent: 2918 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2923 components: - type: Transform - rot: -6.283185307179586 rad - pos: 62.353416,-0.30162263 - parent: 12 - - uid: 10284 + parent: 2918 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2929 components: - type: Transform - rot: -6.283185307179586 rad - pos: 62.62883,-0.55167043 - parent: 12 + parent: 2918 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ConveyorBelt entities: - uid: 2489 @@ -82603,10 +80837,10 @@ entities: parent: 12 - proto: CrateContrabandStorageSecure entities: - - uid: 27117 + - uid: 19457 components: - type: Transform - pos: -37.5,68.5 + pos: -35.5,68.5 parent: 12 - proto: CrateEmergencyExplosive entities: @@ -82736,6 +80970,82 @@ entities: showEnts: False occludes: True ent: null +- proto: CrateEngineeringSingularityContainment + entities: + - uid: 2918 + components: + - type: Transform + pos: 58.5,12.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 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2920 + - 2923 + - 2929 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringSingularityEmitter + entities: + - uid: 5883 + components: + - type: Transform + pos: 57.5,12.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 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5888 + - 5886 + - 5885 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateEngineeringToolbox entities: - uid: 9254 @@ -82827,6 +81137,11 @@ entities: - 0 - 0 - 0 + - uid: 11064 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 12 - uid: 15403 components: - type: Transform @@ -82994,13 +81309,6 @@ entities: - type: Transform pos: -56.5,24.5 parent: 12 -- proto: CrateRadiation - entities: - - uid: 11553 - components: - - type: Transform - pos: 57.5,12.5 - parent: 12 - proto: CrateSecure entities: - uid: 13231 @@ -83168,7 +81476,8 @@ entities: - uid: 29985 components: - type: Transform - pos: 47.436977,-3.6918468 + rot: -12.566370614359172 rad + pos: -0.6350524,17.341604 parent: 12 - proto: Crematorium entities: @@ -83915,13 +82224,6 @@ entities: - type: Transform pos: 40.5,-38.5 parent: 12 -- proto: DefaultStationBeaconTEG - entities: - - uid: 19542 - components: - - type: Transform - pos: 10.5,17.5 - parent: 12 - proto: DefaultStationBeaconTelecoms entities: - uid: 21869 @@ -84027,6 +82329,18 @@ entities: - type: Transform pos: -30.5,41.5 parent: 12 +- proto: DeskBell + entities: + - uid: 16520 + components: + - type: Transform + pos: 27.517546,53.33378 + parent: 12 + - uid: 19350 + components: + - type: Transform + pos: -18.443525,-21.50596 + parent: 12 - proto: DiseaseDiagnoser entities: - uid: 2774 @@ -84084,6 +82398,11 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-24.5 parent: 12 + - uid: 2900 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 12 - uid: 3620 components: - type: Transform @@ -84166,6 +82485,11 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-27.5 parent: 12 + - uid: 4039 + components: + - type: Transform + pos: 21.5,20.5 + parent: 12 - uid: 4136 components: - type: Transform @@ -84314,6 +82638,12 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,-40.5 parent: 12 + - uid: 8474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-8.5 + parent: 12 - uid: 8903 components: - type: Transform @@ -84338,6 +82668,28 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-0.5 parent: 12 + - uid: 9457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,28.5 + parent: 12 + - uid: 9527 + components: + - type: Transform + pos: 16.5,28.5 + parent: 12 + - uid: 9623 + components: + - type: Transform + pos: 18.5,24.5 + parent: 12 + - uid: 9670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,24.5 + parent: 12 - uid: 9674 components: - type: Transform @@ -84520,11 +82872,6 @@ entities: - type: Transform pos: 44.5,21.5 parent: 12 - - uid: 12577 - components: - - type: Transform - pos: 21.5,19.5 - parent: 12 - uid: 12664 components: - type: Transform @@ -84535,17 +82882,6 @@ entities: - type: Transform pos: 38.5,28.5 parent: 12 - - uid: 12672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,19.5 - parent: 12 - - uid: 12673 - components: - - type: Transform - pos: 20.5,20.5 - parent: 12 - uid: 12677 components: - type: Transform @@ -84734,6 +83070,12 @@ entities: rot: 3.141592653589793 rad pos: -47.5,28.5 parent: 12 + - uid: 17773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-30.5 + parent: 12 - uid: 18671 components: - type: Transform @@ -84758,6 +83100,12 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,9.5 parent: 12 + - uid: 19819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-5.5 + parent: 12 - uid: 20076 components: - type: Transform @@ -85132,12 +83480,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,0.5 parent: 12 - - uid: 27308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-4.5 - parent: 12 - uid: 27387 components: - type: Transform @@ -85232,17 +83574,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-1.5 parent: 12 - - uid: 29031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,23.5 - parent: 12 - - uid: 29032 - components: - - type: Transform - pos: 18.5,23.5 - parent: 12 - uid: 29033 components: - type: Transform @@ -85426,12 +83757,6 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-27.5 parent: 12 - - uid: 1927 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-24.5 - parent: 12 - uid: 3840 components: - type: Transform @@ -85832,12 +84157,24 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-34.5 parent: 12 + - uid: 908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 12 - uid: 910 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,7.5 parent: 12 + - uid: 1055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,28.5 + parent: 12 - uid: 1084 components: - type: Transform @@ -86068,26 +84405,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,-28.5 parent: 12 - - uid: 1915 - components: - - type: Transform - pos: -26.5,-28.5 - parent: 12 - - uid: 1916 - components: - - type: Transform - pos: -26.5,-27.5 - parent: 12 - - uid: 1917 - components: - - type: Transform - pos: -26.5,-26.5 - parent: 12 - - uid: 1918 - components: - - type: Transform - pos: -26.5,-25.5 - parent: 12 - uid: 1920 components: - type: Transform @@ -86130,6 +84447,12 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-23.5 parent: 12 + - uid: 1927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,28.5 + parent: 12 - uid: 1928 components: - type: Transform @@ -86207,6 +84530,12 @@ entities: rot: 3.141592653589793 rad pos: 30.5,3.5 parent: 12 + - uid: 3033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-4.5 + parent: 12 - uid: 3115 components: - type: Transform @@ -86631,6 +84960,12 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,49.5 parent: 12 + - uid: 4077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 12 - uid: 4133 components: - type: Transform @@ -86751,6 +85086,11 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-26.5 parent: 12 + - uid: 4754 + components: + - type: Transform + pos: 16.5,25.5 + parent: 12 - uid: 4760 components: - type: Transform @@ -86822,6 +85162,12 @@ entities: - type: Transform pos: 20.5,-13.5 parent: 12 + - uid: 5127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 12 - uid: 5323 components: - type: Transform @@ -87100,6 +85446,12 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-28.5 parent: 12 + - uid: 7170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 12 - uid: 7219 components: - type: Transform @@ -87154,6 +85506,12 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-26.5 parent: 12 + - uid: 7555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,28.5 + parent: 12 - uid: 8286 components: - type: Transform @@ -87655,12 +86013,6 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-15.5 parent: 12 - - uid: 9041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-4.5 - parent: 12 - uid: 9258 components: - type: Transform @@ -87829,6 +86181,82 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-27.5 parent: 12 + - uid: 9411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,19.5 + parent: 12 + - uid: 9432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-24.5 + parent: 12 + - uid: 9450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 12 + - uid: 9451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 12 + - uid: 9453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 12 + - uid: 9454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 12 + - uid: 9468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,28.5 + parent: 12 + - uid: 9481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,24.5 + parent: 12 + - uid: 9491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,28.5 + parent: 12 + - uid: 9501 + components: + - type: Transform + pos: 18.5,23.5 + parent: 12 + - uid: 9502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,28.5 + parent: 12 + - uid: 9520 + components: + - type: Transform + pos: 16.5,27.5 + parent: 12 + - uid: 9529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,28.5 + parent: 12 - uid: 9611 components: - type: Transform @@ -87846,6 +86274,12 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,54.5 parent: 12 + - uid: 9731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 12 - uid: 9774 components: - type: Transform @@ -87959,6 +86393,11 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-26.5 parent: 12 + - uid: 9995 + components: + - type: Transform + pos: 16.5,26.5 + parent: 12 - uid: 10255 components: - type: Transform @@ -88138,6 +86577,36 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-3.5 parent: 12 + - uid: 10618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-5.5 + parent: 12 + - uid: 10628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-5.5 + parent: 12 + - uid: 10634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-5.5 + parent: 12 + - uid: 10637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-5.5 + parent: 12 + - uid: 10701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,28.5 + parent: 12 - uid: 10825 components: - type: Transform @@ -88233,36 +86702,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,9.5 parent: 12 - - uid: 10966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,9.5 - parent: 12 - - uid: 10967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,9.5 - parent: 12 - - uid: 10968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,9.5 - parent: 12 - - uid: 10969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,9.5 - parent: 12 - - uid: 10970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 - parent: 12 - uid: 10971 components: - type: Transform @@ -88378,6 +86817,12 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-17.5 parent: 12 + - uid: 11281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-7.5 + parent: 12 - uid: 11398 components: - type: Transform @@ -88401,6 +86846,12 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,11.5 parent: 12 + - uid: 11477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-5.5 + parent: 12 - uid: 11492 components: - type: Transform @@ -88700,31 +87151,6 @@ entities: - type: Transform pos: 4.5,29.5 parent: 12 - - uid: 12681 - components: - - type: Transform - pos: 4.5,28.5 - parent: 12 - - uid: 12682 - components: - - type: Transform - pos: 4.5,27.5 - parent: 12 - - uid: 12683 - components: - - type: Transform - pos: 4.5,26.5 - parent: 12 - - uid: 12684 - components: - - type: Transform - pos: 4.5,25.5 - parent: 12 - - uid: 12685 - components: - - type: Transform - pos: 4.5,24.5 - parent: 12 - uid: 12700 components: - type: Transform @@ -90171,6 +88597,12 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-23.5 parent: 12 + - uid: 19428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 12 - uid: 19539 components: - type: Transform @@ -90183,6 +88615,12 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-2.5 parent: 12 + - uid: 19815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-6.5 + parent: 12 - uid: 19843 components: - type: Transform @@ -90397,6 +88835,12 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,44.5 parent: 12 + - uid: 20187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-8.5 + parent: 12 - uid: 20188 components: - type: Transform @@ -90980,6 +89424,12 @@ entities: rot: 3.141592653589793 rad pos: -35.5,41.5 parent: 12 + - uid: 20562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-8.5 + parent: 12 - uid: 20885 components: - type: Transform @@ -91204,6 +89654,12 @@ entities: - type: Transform pos: -9.5,45.5 parent: 12 + - uid: 22537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-5.5 + parent: 12 - uid: 22546 components: - type: Transform @@ -91756,6 +90212,18 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-26.5 parent: 12 + - uid: 23141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-8.5 + parent: 12 + - uid: 23142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-8.5 + parent: 12 - uid: 23425 components: - type: Transform @@ -93116,84 +91584,6 @@ entities: - type: Transform pos: 18.5,22.5 parent: 12 - - uid: 29018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,23.5 - parent: 12 - - uid: 29019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,23.5 - parent: 12 - - uid: 29020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,23.5 - parent: 12 - - uid: 29021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,23.5 - parent: 12 - - uid: 29022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,23.5 - parent: 12 - - uid: 29023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,23.5 - parent: 12 - - uid: 29024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,23.5 - parent: 12 - - uid: 29025 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,23.5 - parent: 12 - - uid: 29026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,23.5 - parent: 12 - - uid: 29027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,23.5 - parent: 12 - - uid: 29028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,23.5 - parent: 12 - - uid: 29029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,23.5 - parent: 12 - - uid: 29030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,23.5 - parent: 12 - uid: 29099 components: - type: Transform @@ -93383,36 +91773,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-16.5 parent: 12 - - uid: 29371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-14.5 - parent: 12 - - uid: 29373 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-13.5 - parent: 12 - - uid: 29374 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-12.5 - parent: 12 - - uid: 29375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-11.5 - parent: 12 - - uid: 29376 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-10.5 - parent: 12 - uid: 29377 components: - type: Transform @@ -94058,6 +92418,12 @@ entities: parent: 12 - proto: DisposalPipeBroken entities: + - uid: 2704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-31.5 + parent: 12 - uid: 4901 components: - type: Transform @@ -94177,12 +92543,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,-39.5 parent: 12 - - uid: 1856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-29.5 - parent: 12 - uid: 1857 components: - type: Transform @@ -94199,6 +92559,12 @@ entities: - type: Transform pos: -27.5,-18.5 parent: 12 + - uid: 2031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-30.5 + parent: 12 - uid: 3387 components: - type: Transform @@ -94344,12 +92710,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-21.5 parent: 12 - - uid: 9077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-4.5 - parent: 12 - uid: 9111 components: - type: Transform @@ -94385,6 +92745,12 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-2.5 parent: 12 + - uid: 10915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-8.5 + parent: 12 - uid: 12285 components: - type: Transform @@ -94708,11 +93074,6 @@ entities: - type: Transform pos: -27.5,-18.5 parent: 12 - - uid: 1850 - components: - - type: Transform - pos: -26.5,-29.5 - parent: 12 - uid: 1851 components: - type: Transform @@ -94783,6 +93144,11 @@ entities: - type: Transform pos: -23.5,52.5 parent: 12 + - uid: 5110 + components: + - type: Transform + pos: 56.5,-8.5 + parent: 12 - uid: 6203 components: - type: Transform @@ -94803,11 +93169,6 @@ entities: - type: Transform pos: 55.5,6.5 parent: 12 - - uid: 7794 - components: - - type: Transform - pos: 45.5,-4.5 - parent: 12 - uid: 8346 components: - type: Transform @@ -95573,6 +93934,25 @@ entities: rot: -12.566370614359172 rad pos: 57.68418,56.94676 parent: 12 +- proto: DrinkMopwataBottleRandom + entities: + - uid: 2120 + components: + - type: Transform + pos: 34.4878,-30.348785 + parent: 12 + - uid: 25532 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 38.32821,-31.26264 + parent: 12 + - uid: 25534 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 38.66251,-31.572699 + parent: 12 - proto: DrinkMugBlue entities: - uid: 30236 @@ -95778,7 +94158,8 @@ entities: - uid: 27129 components: - type: Transform - pos: 51.402184,-9.558559 + rot: -6.283185307179586 rad + pos: 27.46012,19.431234 parent: 12 - type: GasTank toggleActionEntity: 27130 @@ -95790,6 +94171,17 @@ entities: - 27130 - proto: EmergencyLight entities: + - uid: 11 + components: + - type: Transform + pos: 60.5,12.5 + parent: 12 + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-4.5 + parent: 12 - uid: 345 components: - type: Transform @@ -96412,6 +94804,11 @@ entities: - type: Transform pos: -32.5,30.5 parent: 12 + - uid: 22336 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 12 - uid: 25296 components: - type: Transform @@ -96590,18 +94987,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,4.5 parent: 12 - - uid: 30454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-1.5 - parent: 12 - - uid: 30457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-6.5 - parent: 12 - uid: 30468 components: - type: Transform @@ -96613,17 +94998,6 @@ entities: rot: 3.141592653589793 rad pos: 52.5,4.5 parent: 12 - - uid: 30489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,10.5 - parent: 12 - - uid: 30491 - components: - - type: Transform - pos: 72.5,12.5 - parent: 12 - uid: 30988 components: - type: Transform @@ -96648,23 +95022,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,14.5 parent: 12 - - uid: 31511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,4.5 - parent: 12 - - uid: 31512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-3.5 - parent: 12 - - uid: 31513 - components: - - type: Transform - pos: 61.5,6.5 - parent: 12 - uid: 31514 components: - type: Transform @@ -96708,68 +95065,29 @@ entities: - type: Transform pos: -23.471848,-42.228195 parent: 12 -- proto: Emitter +- proto: EmitterFlatpack entities: - - uid: 3019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,8.5 - parent: 12 - - uid: 8420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,0.5 - parent: 12 - - uid: 8435 - components: - - type: Transform - pos: 68.5,12.5 - parent: 12 - - uid: 8972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-3.5 - parent: 12 - - uid: 9169 - components: - - type: Transform - pos: 76.5,12.5 - parent: 12 - - uid: 9174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-3.5 - parent: 12 - - uid: 9222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,0.5 - parent: 12 - - uid: 9409 + - uid: 5885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,8.5 - parent: 12 -- proto: EmitterFlatpack - entities: - - uid: 9994 + parent: 5883 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5886 components: - type: Transform - rot: -6.283185307179586 rad - pos: 61.784466,-0.28712702 - parent: 12 - - uid: 9995 + parent: 5883 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5888 components: - type: Transform - rot: -6.283185307179586 rad - pos: 61.991028,-0.5770376 - parent: 12 + parent: 5883 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: EncryptionKeyCommon entities: - uid: 22253 @@ -96800,10 +95118,10 @@ entities: parent: 12 - proto: ExosuitFabricator entities: - - uid: 1783 + - uid: 12356 components: - type: Transform - pos: -23.5,-29.5 + pos: -25.5,-31.5 parent: 12 - proto: ExtendedEmergencyNitrogenTankFilled entities: @@ -97133,6 +95451,14 @@ entities: - type: FaxMachine name: Cargo destinationAddress: Cargo + - uid: 11206 + components: + - type: Transform + pos: -23.5,-39.5 + parent: 12 + - type: FaxMachine + name: Medical + destinationAddress: Medical - uid: 13313 components: - type: Transform @@ -97181,14 +95507,6 @@ entities: - type: FaxMachine name: Court destinationAddress: Court - - uid: 26276 - components: - - type: Transform - pos: -18.5,-38.5 - parent: 12 - - type: FaxMachine - name: Medical - destinationAddress: Medical - uid: 26277 components: - type: Transform @@ -97670,11 +95988,6 @@ entities: - type: Transform pos: -28.658644,23.554457 parent: 12 - - uid: 23664 - components: - - type: Transform - pos: 49.010647,46.51752 - parent: 12 - proto: FireExtinguisherMini entities: - uid: 29005 @@ -98027,16 +96340,7 @@ entities: - type: DeviceNetwork deviceLists: - 27311 - - 27314 - - uid: 2021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-3.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27311 + - 9142 - uid: 2034 components: - type: Transform @@ -98137,6 +96441,7 @@ entities: deviceLists: - 23931 - 9972 + - 5098 - uid: 2084 components: - type: Transform @@ -98179,16 +96484,14 @@ entities: - type: DeviceNetwork deviceLists: - 7342 - - uid: 2359 + - uid: 2516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,7.5 + pos: 4.5,21.5 parent: 12 - type: DeviceNetwork deviceLists: - - 27314 - - 27313 + - 12273 - uid: 2613 components: - type: Transform @@ -98240,14 +96543,6 @@ entities: - type: Transform pos: 9.5,-42.5 parent: 12 - - uid: 3954 - components: - - type: Transform - pos: 6.5,12.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 31894 - uid: 3986 components: - type: Transform @@ -98475,6 +96770,15 @@ entities: deviceLists: - 7342 - 32066 + - uid: 5030 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 5098 + - 5109 - uid: 5232 components: - type: Transform @@ -98569,6 +96873,14 @@ entities: deviceLists: - 23937 - 2852 + - uid: 6735 + components: + - type: Transform + pos: 0.5,16.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 12273 - uid: 6783 components: - type: Transform @@ -99074,6 +97386,15 @@ entities: deviceLists: - 2614 - 28360 + - uid: 9482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-9.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 28373 - uid: 9513 components: - type: Transform @@ -99150,6 +97471,14 @@ entities: deviceLists: - 448 - 4906 + - uid: 11314 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 5109 - uid: 11460 components: - type: Transform @@ -99165,12 +97494,6 @@ entities: - type: Transform pos: -49.5,65.5 parent: 12 - - uid: 11633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,29.5 - parent: 12 - uid: 11858 components: - type: Transform @@ -100650,6 +98973,14 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-18.5 parent: 12 + - uid: 22142 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 - uid: 22246 components: - type: Transform @@ -101149,24 +99480,6 @@ entities: - type: DeviceNetwork deviceLists: - 27296 - - uid: 27309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,11.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27313 - - uid: 27310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27314 - uid: 27449 components: - type: Transform @@ -101306,22 +99619,11 @@ entities: - type: DeviceNetwork deviceLists: - 9972 - - uid: 29870 - components: - - type: Transform - pos: 7.5,20.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 31894 - uid: 29872 components: - type: Transform pos: 15.5,13.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 31894 - uid: 29981 components: - type: Transform @@ -101698,6 +100000,13 @@ entities: parent: 12 - type: Fixtures fixtures: {} + - uid: 11212 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 12 + - type: Fixtures + fixtures: {} - uid: 11948 components: - type: Transform @@ -101743,14 +100052,6 @@ entities: parent: 12 - type: Fixtures fixtures: {} - - uid: 25136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-28.5 - parent: 12 - - type: Fixtures - fixtures: {} - uid: 25986 components: - type: Transform @@ -102154,8 +100455,8 @@ entities: - uid: 24446 components: - type: Transform - rot: -12.566370614359172 rad - pos: 55.57415,5.497829 + rot: -6.283185307179586 rad + pos: 55.676666,5.3604836 parent: 12 - proto: FoodBoxDonkpocketStonk entities: @@ -102179,6 +100480,11 @@ entities: parent: 12 - proto: FoodBreadMoldySlice entities: + - uid: 3240 + components: + - type: Transform + pos: -3.51239,22.532377 + parent: 12 - uid: 31123 components: - type: Transform @@ -102552,6 +100858,11 @@ entities: parent: 12 - proto: FoodPlateSmallTrash entities: + - uid: 2664 + components: + - type: Transform + pos: -3.5,22.5 + parent: 12 - uid: 31120 components: - type: Transform @@ -102645,6 +100956,11 @@ entities: parent: 12 - proto: FoodTinPeachesMaint entities: + - uid: 19822 + components: + - type: Transform + pos: 50.425446,1.6118504 + parent: 12 - uid: 21597 components: - type: Transform @@ -102736,11 +101052,6 @@ entities: - type: Transform pos: 33.83867,-19.804056 parent: 12 - - uid: 7163 - components: - - type: Transform - pos: 37.752647,-30.522448 - parent: 12 - proto: GasFilter entities: - uid: 2802 @@ -102754,18 +101065,6 @@ entities: - type: Transform pos: -47.5,44.5 parent: 12 -- proto: GasFilterFlipped - entities: - - uid: 7154 - components: - - type: MetaData - name: waste gas filter - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-32.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - proto: GasMinerCarbonDioxide entities: - uid: 5478 @@ -102808,16 +101107,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-19.5 parent: 12 - - uid: 19563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,15.5 - parent: 12 - - type: GasMixer - targetPressure: 4500 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 21523 components: - type: Transform @@ -102826,18 +101115,6 @@ entities: parent: 12 - proto: GasMixerFlipped entities: - - uid: 7150 - components: - - type: MetaData - name: air gas mixer - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-31.5 - parent: 12 - - type: GasMixer - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - targetPressure: 4500 - uid: 18248 components: - type: Transform @@ -102922,14 +101199,16 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,3.5 parent: 12 - - uid: 12686 + - uid: 11205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,15.5 + pos: 9.5,21.5 + parent: 12 + - uid: 11285 + components: + - type: Transform + pos: 16.5,21.5 parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 19263 components: - type: Transform @@ -102937,6 +101216,16 @@ entities: parent: 12 - proto: GasPassiveVent entities: + - uid: 1705 + components: + - type: Transform + pos: 6.5,21.5 + parent: 12 + - uid: 1717 + components: + - type: Transform + pos: 13.5,21.5 + parent: 12 - uid: 2257 components: - type: Transform @@ -102987,14 +101276,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 6732 + - uid: 7131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-61.5 + rot: -1.5707963267948966 rad + pos: -0.5,19.5 parent: 12 - - type: AtmosPipeColor - color: '#5D782EFF' - uid: 7255 components: - type: Transform @@ -103240,6 +101527,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1779 + components: + - type: Transform + pos: 16.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2086 components: - type: Transform @@ -103259,14 +101553,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 2631 components: - type: Transform @@ -103282,6 +101568,29 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 2733 + components: + - type: Transform + pos: 12.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 2734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 2758 components: - type: Transform @@ -103382,7 +101691,7 @@ entities: pos: -12.5,-59.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 3544 components: - type: Transform @@ -103509,22 +101818,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 3691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 3702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 3720 components: - type: Transform @@ -103636,14 +101929,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4589 components: - type: Transform @@ -103714,6 +101999,21 @@ entities: - type: Transform pos: -45.5,-18.5 parent: 12 + - uid: 5158 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-30.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5219 components: - type: Transform @@ -103785,13 +102085,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5420 + - uid: 5417 components: - type: Transform - pos: 8.5,11.5 + rot: 3.141592653589793 rad + pos: 3.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#947507FF' - uid: 5427 components: - type: Transform @@ -103848,6 +102149,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5815 + components: + - type: Transform + pos: 6.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 6220 components: - type: Transform @@ -103900,31 +102208,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7151 + - uid: 7168 components: - type: Transform - pos: 38.5,-30.5 + rot: 3.141592653589793 rad + pos: 16.5,24.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-32.5 - parent: 12 - - uid: 7155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-32.5 - parent: 12 - - uid: 7160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-32.5 - parent: 12 - uid: 7189 components: - type: Transform @@ -104126,14 +102417,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 8713 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8793 components: - type: Transform @@ -104155,6 +102438,14 @@ entities: - type: Transform pos: 25.5,2.5 parent: 12 + - uid: 9090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-13.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9128 components: - type: Transform @@ -104171,35 +102462,33 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9509 + - uid: 9414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-47.5 + pos: 18.5,24.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9511 + - uid: 9456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-24.5 + pos: 1.5,9.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9529 + color: '#990000FF' + - uid: 9509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,9.5 + rot: -1.5707963267948966 rad + pos: 10.5,-47.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9536 + - uid: 9511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,11.5 + rot: -1.5707963267948966 rad + pos: 43.5,-24.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -104211,14 +102500,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9603 + - uid: 9621 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,14.5 + pos: 1.5,9.5 parent: 12 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0055CCFF' - uid: 9626 components: - type: Transform @@ -104226,14 +102515,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9636 + - uid: 9627 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,17.5 + pos: 21.5,20.5 parent: 12 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#0055CCFF' - uid: 9755 components: - type: Transform @@ -104242,6 +102530,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9855 + components: + - type: Transform + pos: 61.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9860 components: - type: Transform @@ -104294,26 +102589,26 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 10873 + - uid: 10346 components: - type: Transform - pos: 22.5,-14.5 + rot: -1.5707963267948966 rad + pos: -5.5,-59.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10890 + color: '#947507FF' + - uid: 10376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,17.5 + rot: 1.5707963267948966 rad + pos: 57.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 10900 + color: '#990000FF' + - uid: 10873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,0.5 + pos: 22.5,-14.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -104356,29 +102651,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11279 - components: - - type: Transform - pos: 18.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 11473 components: - type: Transform @@ -104402,14 +102674,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 12671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12728 components: - type: Transform @@ -104538,6 +102802,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,20.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,20.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13104 components: - type: Transform @@ -104661,6 +102941,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15413 components: - type: Transform @@ -104966,22 +103254,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19461 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 19964 components: - type: Transform @@ -105186,13 +103458,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 22289 - components: - - type: Transform - pos: 1.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 22316 components: - type: Transform @@ -105440,21 +103705,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23125 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23133 - components: - - type: Transform - pos: 61.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23135 components: - type: Transform @@ -105463,28 +103713,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23170 - components: - - type: Transform - pos: 21.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23172 - components: - - type: Transform - pos: 20.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23194 components: - type: Transform @@ -105763,14 +103991,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 26253 components: - type: Transform @@ -105809,14 +104029,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 26442 components: - type: Transform @@ -105825,30 +104037,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26985 components: - type: Transform @@ -105864,36 +104052,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27014 - components: - - type: Transform - pos: 52.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27219 - components: - - type: Transform - pos: 11.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 27224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 27273 components: - type: Transform @@ -105957,20 +104115,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 28828 - components: - - type: Transform - pos: 57.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 29052 - components: - - type: Transform - pos: 18.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29053 components: - type: Transform @@ -105979,37 +104123,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 29144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29145 - components: - - type: Transform - pos: 51.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29260 components: - type: Transform @@ -106591,6 +104704,14 @@ entities: - type: Transform pos: -42.5,-45.5 parent: 12 + - uid: 1056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1093 components: - type: Transform @@ -107751,6 +105872,38 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1860 components: - type: Transform @@ -107759,6 +105912,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 1983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2072 components: - type: Transform @@ -107840,6 +106009,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 2359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 2448 components: - type: Transform @@ -107855,20 +106032,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2516 - components: - - type: Transform - pos: 7.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 2610 - components: - - type: Transform - pos: 7.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 2615 components: - type: Transform @@ -107885,6 +106048,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 2677 components: - type: Transform @@ -107893,6 +106064,20 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 2691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 2692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 12 - uid: 2697 components: - type: Transform @@ -107901,6 +106086,36 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,20.5 + parent: 12 + - uid: 2767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2806 components: - type: Transform @@ -107938,6 +106153,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 2859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,19.5 + parent: 12 - uid: 2864 components: - type: Transform @@ -107946,6 +106167,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 2872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,20.5 + parent: 12 - uid: 2885 components: - type: Transform @@ -107960,6 +106187,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2906 components: - type: Transform @@ -107968,6 +106203,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2955 components: - type: Transform @@ -107989,18 +106232,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 2977 + - uid: 3009 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 3003 - components: - - type: Transform - pos: 6.5,12.5 + pos: 2.5,20.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -108019,6 +106255,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,19.5 + parent: 12 - uid: 3079 components: - type: Transform @@ -108042,6 +106284,20 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,20.5 + parent: 12 + - uid: 3239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 3464 components: - type: Transform @@ -108050,6 +106306,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 3468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,20.5 + parent: 12 - uid: 3474 components: - type: Transform @@ -108137,7 +106399,7 @@ entities: pos: -11.5,-59.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 3504 components: - type: Transform @@ -108145,15 +106407,7 @@ entities: pos: -9.5,-59.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' - - uid: 3506 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-59.5 - parent: 12 - - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 3507 components: - type: Transform @@ -108161,7 +106415,7 @@ entities: pos: -7.5,-59.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 3508 components: - type: Transform @@ -108169,14 +106423,14 @@ entities: pos: -6.5,-59.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 3509 components: - type: Transform pos: -5.5,-58.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 3515 components: - type: Transform @@ -108686,13 +106940,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3623 - components: - - type: Transform - pos: 49.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3637 components: - type: Transform @@ -109158,14 +107405,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 3710 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 3714 components: - type: Transform @@ -109532,14 +107771,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3940 components: - type: Transform @@ -109547,14 +107778,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 3948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 3955 components: - type: Transform @@ -109571,6 +107794,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 4042 + components: + - type: Transform + pos: 21.5,19.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,20.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4074 components: - type: Transform @@ -109643,14 +107881,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4386 + - uid: 4383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,7.5 + pos: 12.5,2.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 4390 components: - type: Transform @@ -109721,14 +107958,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-10.5 parent: 12 - - uid: 4561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 4563 components: - type: Transform @@ -109906,6 +108135,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,23.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,26.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4746 components: - type: Transform @@ -109914,6 +108159,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,24.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4762 components: - type: Transform @@ -110352,6 +108605,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 4929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,19.5 + parent: 12 - uid: 4937 components: - type: Transform @@ -110529,6 +108788,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-29.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5136 components: - type: Transform @@ -110537,6 +108804,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5168 components: - type: Transform @@ -111029,14 +109304,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-60.5 - parent: 12 - - type: AtmosPipeColor - color: '#5D782EFF' - uid: 5383 components: - type: Transform @@ -111045,6 +109312,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5386 + components: + - type: Transform + pos: 12.5,4.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 5387 components: - type: Transform @@ -111061,6 +109335,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 5399 components: - type: Transform @@ -111085,6 +109367,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 5408 components: - type: Transform @@ -111101,6 +109391,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 5418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 5422 components: - type: Transform @@ -111218,6 +109524,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5595 + components: + - type: Transform + pos: 12.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 5634 components: - type: Transform @@ -111274,46 +109587,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-7.5 parent: 12 - - uid: 5883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5937 components: - type: Transform @@ -111613,6 +109886,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 6846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 6854 components: - type: Transform @@ -112419,54 +110700,38 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-14.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7130 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7131 + - uid: 7115 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-28.5 + pos: 3.5,8.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7132 + color: '#947507FF' + - uid: 7117 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-29.5 + pos: 3.5,10.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7133 + color: '#947507FF' + - uid: 7119 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-30.5 + pos: 42.5,-14.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 7134 + - uid: 7136 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-29.5 + pos: 3.5,11.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#947507FF' - uid: 7137 components: - type: Transform @@ -112519,7 +110784,33 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-27.5 + pos: 3.5,12.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 7147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,19.5 + parent: 12 + - uid: 7148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,19.5 + parent: 12 + - uid: 7149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,19.5 + parent: 12 + - uid: 7169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,28.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -112854,6 +111145,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7548 + components: + - type: Transform + pos: 4.5,24.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7566 components: - type: Transform @@ -112921,6 +111227,22 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,68.5 parent: 12 + - uid: 8198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8241 components: - type: Transform @@ -114092,6 +112414,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 8972 + components: + - type: Transform + pos: 12.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 8981 components: - type: Transform @@ -114127,6 +112456,30 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-3.5 parent: 12 + - uid: 9406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-29.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9417 components: - type: Transform @@ -114172,14 +112525,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 9454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 9463 components: - type: Transform @@ -114265,29 +112610,29 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9501 + - uid: 9517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,19.5 + pos: -12.5,-54.5 parent: 12 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 9515 + color: '#990000FF' + - uid: 9530 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-1.5 + rot: -1.5707963267948966 rad + pos: -25.5,-29.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 9517 + color: '#0055CCFF' + - uid: 9532 components: - type: Transform - pos: -12.5,-54.5 + rot: -1.5707963267948966 rad + pos: -24.5,-29.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 9535 components: - type: Transform @@ -114304,6 +112649,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-28.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9566 components: - type: Transform @@ -114311,6 +112672,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9582 components: - type: Transform @@ -114318,13 +112687,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 9601 + - uid: 9592 components: - type: Transform - pos: 11.5,15.5 + pos: 8.5,11.5 parent: 12 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0055CCFF' - uid: 9607 components: - type: Transform @@ -114333,11 +112702,19 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9623 + - uid: 9616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,23.5 + rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,27.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -114349,13 +112726,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9655 + - uid: 9634 components: - type: Transform - pos: 9.5,20.5 + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#990000FF' - uid: 9685 components: - type: Transform @@ -114469,6 +112855,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,19.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9705 components: - type: Transform @@ -114477,6 +112871,61 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,17.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,15.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,18.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9726 + components: + - type: Transform + pos: 4.5,22.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9753 components: - type: Transform @@ -114522,22 +112971,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9857 + - uid: 9851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-38.5 + pos: 4.5,21.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9864 + - uid: 9857 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,16.5 + pos: 11.5,-38.5 parent: 12 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0055CCFF' - uid: 9959 components: - type: Transform @@ -115018,6 +113466,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10392 components: - type: Transform @@ -115034,6 +113490,30 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-27.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-26.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,20.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10551 components: - type: Transform @@ -115042,6 +113522,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 10622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10693 components: - type: Transform @@ -115066,28 +113554,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10885 + - uid: 10794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,11.5 + rot: 3.141592653589793 rad + pos: 4.5,23.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10891 - components: - - type: Transform - pos: 9.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 10897 + - uid: 10885 components: - type: Transform - pos: 7.5,24.5 + rot: 1.5707963267948966 rad + pos: 33.5,11.5 parent: 12 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#0055CCFF' - uid: 10898 components: - type: Transform @@ -115119,14 +113601,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 10984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11008 components: - type: Transform @@ -115157,13 +113631,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11040 + - uid: 11043 components: - type: Transform - pos: 7.5,25.5 + rot: 3.141592653589793 rad + pos: 1.5,13.5 parent: 12 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#0055CCFF' - uid: 11071 components: - type: Transform @@ -115537,108 +114012,30 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11212 + - uid: 11322 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 11224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 11225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 11232 - components: - - type: Transform - pos: 49.5,-3.5 + pos: 13.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11275 + color: '#947507FF' + - uid: 11323 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,18.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 11281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 11304 - components: - - type: Transform - pos: 11.5,26.5 + pos: 14.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 11309 + color: '#947507FF' + - uid: 11344 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11325 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,23.5 + pos: 1.5,12.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 11370 components: - type: Transform @@ -115647,14 +114044,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 11371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11372 components: - type: Transform @@ -115662,14 +114051,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 11380 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11382 components: - type: Transform @@ -115726,6 +114107,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 11510 + components: + - type: Transform + pos: 12.5,3.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11592 components: - type: Transform @@ -115917,14 +114305,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12276 + - uid: 12357 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,16.5 + pos: -21.5,-29.5 parent: 12 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0055CCFF' - uid: 12370 components: - type: Transform @@ -115940,84 +114328,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12690 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 12691 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 12692 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 12693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,22.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 12694 - components: - - type: Transform - pos: 9.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 12695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 12696 - components: - - type: Transform - pos: 9.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 12741 components: - type: Transform @@ -116853,6 +115163,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 13009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-13.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 13015 components: - type: Transform @@ -116892,6 +115210,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-11.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13225 components: - type: Transform @@ -117683,14 +116017,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 15007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 15407 components: - type: Transform @@ -118284,6 +116610,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 16180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-28.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 16315 components: - type: Transform @@ -118291,6 +116625,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 16350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,25.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-28.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 16548 components: - type: Transform @@ -118631,22 +116981,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 16658 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 16675 components: - type: Transform @@ -120455,19 +118789,19 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19175 + - uid: 19162 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,8.5 + rot: -1.5707963267948966 rad + pos: -22.5,-28.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19185 + - uid: 19163 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,7.5 + pos: -24.5,-29.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -120486,14 +118820,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 19380 components: - type: Transform @@ -120682,14 +119008,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 19433 components: - type: Transform @@ -120714,22 +119032,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19459 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 19541 components: - type: Transform @@ -120746,14 +119048,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 19816 components: - type: Transform @@ -120762,13 +119056,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19823 - components: - - type: Transform - pos: 14.5,20.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 19831 components: - type: Transform @@ -123027,14 +121314,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 21332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 21773 components: - type: Transform @@ -123510,13 +121789,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 22066 - components: - - type: Transform - pos: 56.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 22093 components: - type: Transform @@ -123665,14 +121937,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 22339 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 22555 components: - type: Transform @@ -125356,30 +123620,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23146 components: - type: Transform @@ -125394,13 +123634,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23148 - components: - - type: Transform - pos: 4.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23149 components: - type: Transform @@ -125422,13 +123655,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23152 - components: - - type: Transform - pos: 4.5,24.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23156 components: - type: Transform @@ -125437,10 +123663,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23162 + - uid: 23160 components: - type: Transform - pos: 57.5,-7.5 + rot: 1.5707963267948966 rad + pos: 52.5,-1.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -125460,14 +123687,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 23178 components: - type: Transform @@ -126451,7 +124670,7 @@ entities: pos: -10.5,-60.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 24496 components: - type: Transform @@ -126537,6 +124756,38 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 25413 components: - type: Transform @@ -126556,27 +124807,51 @@ entities: - uid: 25442 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,18.5 + rot: 1.5707963267948966 rad + pos: 44.5,-1.5 parent: 12 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25532 + color: '#990000FF' + - uid: 25527 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-0.5 + pos: 51.5,-1.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 25534 + color: '#990000FF' + - uid: 25528 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,4.5 + rot: 1.5707963267948966 rad + pos: 53.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-1.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#990000FF' - uid: 25569 components: - type: Transform @@ -126710,22 +124985,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,17.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 26315 components: - type: Transform @@ -126980,14 +125239,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26519 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26539 components: - type: Transform @@ -127023,22 +125274,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26642 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26647 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 26650 components: - type: Transform @@ -127095,20 +125330,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26712 - components: - - type: Transform - pos: 62.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26713 - components: - - type: Transform - pos: 62.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26726 components: - type: Transform @@ -127117,41 +125338,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26739 - components: - - type: Transform - pos: 62.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26763 - components: - - type: Transform - pos: 62.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26781 - components: - - type: Transform - pos: 62.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26794 - components: - - type: Transform - pos: 62.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26795 - components: - - type: Transform - pos: 62.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26849 components: - type: Transform @@ -127184,21 +125370,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26947 - components: - - type: Transform - pos: 50.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26955 components: - type: Transform @@ -127290,84 +125461,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26997 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27008 - components: - - type: Transform - pos: 52.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27009 - components: - - type: Transform - pos: 52.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27011 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27013 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 27034 components: - type: Transform @@ -127416,27 +125509,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27221 - components: - - type: Transform - pos: 9.5,26.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 27223 - components: - - type: Transform - pos: 10.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27225 - components: - - type: Transform - pos: 9.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 27256 components: - type: Transform @@ -127571,30 +125643,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 28234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 28353 components: - type: Transform @@ -127726,38 +125774,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 28829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 28830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 28831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 28832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 28929 components: - type: Transform @@ -127765,86 +125781,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 29006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29012 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29013 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29015 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,23.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29050 components: - type: Transform @@ -127861,13 +125797,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 29085 - components: - - type: Transform - pos: 49.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29119 components: - type: Transform @@ -127884,91 +125813,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 29137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29139 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29141 - components: - - type: Transform - pos: 53.5,-9.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29142 - components: - - type: Transform - pos: 53.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29147 - components: - - type: Transform - pos: 49.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29159 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29162 components: - type: Transform @@ -129605,28 +127449,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 3015 - components: - - type: Transform - pos: 9.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 3241 components: - type: Transform pos: -10.5,-59.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 3297 components: - type: Transform @@ -129973,14 +127802,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-13.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5003 components: - type: Transform @@ -130119,14 +127940,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-59.5 - parent: 12 - - type: AtmosPipeColor - color: '#5D782EFF' - uid: 5392 components: - type: Transform @@ -130181,21 +127994,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6261 - components: - - type: Transform - pos: 56.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6751 components: - type: Transform @@ -130301,20 +128099,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 7135 - components: - - type: Transform - pos: 35.5,-27.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7136 - components: - - type: Transform - pos: 37.5,-26.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7138 components: - type: Transform @@ -130331,14 +128115,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 7146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-30.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7184 components: - type: Transform @@ -130473,6 +128249,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8505 components: - type: Transform @@ -130681,6 +128465,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9399 components: - type: Transform @@ -130720,13 +128512,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9578 - components: - - type: Transform - pos: 13.5,15.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 9587 components: - type: Transform @@ -130743,6 +128528,28 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9601 + components: + - type: Transform + pos: 5.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9643 + components: + - type: Transform + pos: -8.5,-59.5 + parent: 12 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,28.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9735 components: - type: Transform @@ -130751,6 +128558,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9955 components: - type: Transform @@ -130839,6 +128654,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-29.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-28.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10813 components: - type: Transform @@ -130910,14 +128741,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 11043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,25.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 11065 components: - type: Transform @@ -130990,14 +128813,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 11971 components: - type: Transform @@ -131030,13 +128845,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 12265 - components: - - type: Transform - pos: 10.5,28.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 12411 components: - type: Transform @@ -131044,37 +128852,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,18.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 12689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 12697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12699 - components: - - type: Transform - pos: 49.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12740 components: - type: Transform @@ -131167,6 +128944,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 13182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13270 components: - type: Transform @@ -131334,14 +129119,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15131 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 15252 components: - type: Transform @@ -131875,14 +129652,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 19852 components: - type: Transform @@ -132480,22 +130249,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 27292 components: - type: Transform @@ -132565,13 +130318,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 29143 - components: - - type: Transform - pos: 53.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29268 components: - type: Transform @@ -132753,12 +130499,23 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-21.5 parent: 12 + - uid: 2654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,19.5 + parent: 12 - uid: 2785 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-62.5 parent: 12 + - uid: 2956 + components: + - type: Transform + pos: 5.5,12.5 + parent: 12 - uid: 4630 components: - type: Transform @@ -132771,60 +130528,11 @@ entities: rot: 3.141592653589793 rad pos: -22.5,52.5 parent: 12 - - uid: 7149 - components: - - type: MetaData - name: waste connector port - - type: Transform - pos: 34.5,-30.5 - parent: 12 - - uid: 7152 - components: - - type: MetaData - name: air connector port - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-32.5 - parent: 12 - - uid: 7157 - components: - - type: MetaData - name: oxygen connector port - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-31.5 - parent: 12 - - uid: 7159 - components: - - type: MetaData - name: nitrogen connector port - - type: Transform - pos: 36.5,-30.5 - parent: 12 - - uid: 7164 - components: - - type: MetaData - name: filtered gas connector port - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-32.5 - parent: 12 - - uid: 9038 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,18.5 - parent: 12 - uid: 9059 components: - type: Transform pos: 26.5,-14.5 parent: 12 - - uid: 9617 - components: - - type: Transform - pos: 13.5,21.5 - parent: 12 - uid: 9813 components: - type: Transform @@ -132843,27 +130551,24 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-20.5 parent: 12 - - uid: 10980 + - uid: 10876 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,13.5 + pos: -8.5,-60.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#947507FF' - uid: 11018 components: - type: Transform pos: 25.5,-14.5 parent: 12 - - uid: 11280 + - uid: 11246 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,13.5 + pos: 6.5,12.5 parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 13515 components: - type: Transform @@ -133109,36 +130814,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-1.5 parent: 12 - - uid: 7147 - components: - - type: MetaData - name: air gas pump out - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7148 - components: - - type: MetaData - name: waste filter gas pump - - type: Transform - pos: 34.5,-31.5 - parent: 12 - - type: GasPressurePump - targetPressure: 4500 - - uid: 7156 - components: - - type: MetaData - name: ' air gas pump in' - - type: Transform - pos: 38.5,-31.5 - parent: 12 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7212 components: - type: Transform @@ -133165,25 +130840,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 10978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,18.5 - parent: 12 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 11328 - components: - - type: Transform - pos: 13.5,20.5 - parent: 12 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 12050 components: - type: Transform @@ -133211,16 +130867,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 23130 - components: - - type: MetaData - name: TEG pump - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 26418 components: - type: Transform @@ -133245,19 +130891,11 @@ entities: targetTemperature: 100 - type: ApcPowerReceiver powerDisabled: False - - uid: 7383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,19.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 11327 + - uid: 2960 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,13.5 + pos: 5.5,11.5 parent: 12 - uid: 18270 components: @@ -133286,6 +130924,12 @@ entities: targetTemperature: 243.15 - proto: GasThermoMachineHeater entities: + - uid: 2022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 12 - uid: 3979 components: - type: Transform @@ -133296,12 +130940,6 @@ entities: - type: Transform pos: 12.5,-2.5 parent: 12 - - uid: 9732 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,13.5 - parent: 12 - uid: 15784 components: - type: Transform @@ -133310,13 +130948,6 @@ entities: parent: 12 - type: GasThermoMachine targetTemperature: 330 - - uid: 26204 - components: - - type: Transform - pos: 14.5,21.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - proto: GasValve entities: - uid: 4780 @@ -133326,13 +130957,6 @@ entities: parent: 12 - type: GasValve open: False - - uid: 7158 - components: - - type: Transform - pos: 35.5,-31.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 13519 components: - type: Transform @@ -133397,13 +131021,6 @@ entities: - 28343 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1058 - components: - - type: Transform - pos: 62.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1134 components: - type: Transform @@ -133482,18 +131099,6 @@ entities: - 9972 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9972 - - 2089 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1305 components: - type: Transform @@ -133889,25 +131494,48 @@ entities: - 7342 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9479 + - uid: 9052 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-10.5 + pos: 61.5,-0.5 parent: 12 - type: DeviceNetwork deviceLists: - - 1288 + - 8420 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9560 + - uid: 9434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-30.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 5098 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9436 components: - type: Transform - pos: 6.5,13.5 + rot: -1.5707963267948966 rad + pos: -19.5,-30.5 parent: 12 - type: DeviceNetwork deviceLists: - - 31894 + - 5109 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-10.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 1288 - type: AtmosPipeColor color: '#0055CCFF' - uid: 9717 @@ -133917,7 +131545,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 27314 + - 9142 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10005 @@ -134002,12 +131630,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11373 + - uid: 11341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-3.5 + pos: 8.5,12.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 12273 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11462 @@ -134444,16 +132074,6 @@ entities: - 23804 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19188 - components: - - type: Transform - pos: 58.5,10.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27313 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 19393 components: - type: Transform @@ -135496,18 +133116,6 @@ entities: - 2629 - type: AtmosPipeColor color: '#990000FF' - - uid: 1268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-28.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 9972 - - 2089 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1275 components: - type: Transform @@ -135569,7 +133177,7 @@ entities: deviceLists: - 9974 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 2760 components: - type: Transform @@ -135712,7 +133320,7 @@ entities: pos: -5.5,-57.5 parent: 12 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 5344 components: - type: Transform @@ -135731,7 +133339,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 27314 + - 9142 - type: AtmosPipeColor color: '#990000FF' - uid: 6083 @@ -135899,6 +133507,17 @@ entities: - 7342 - type: AtmosPipeColor color: '#990000FF' + - uid: 9449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-30.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 5098 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9485 components: - type: Transform @@ -135917,7 +133536,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 31894 + - 12273 - type: AtmosPipeColor color: '#990000FF' - uid: 10006 @@ -135962,7 +133581,7 @@ entities: deviceLists: - 9974 - type: AtmosPipeColor - color: '#5D782EFF' + color: '#947507FF' - uid: 10512 components: - type: Transform @@ -135982,6 +133601,28 @@ entities: - 8971 - type: AtmosPipeColor color: '#990000FF' + - uid: 11209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-28.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 5109 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-1.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 8420 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11273 components: - type: Transform @@ -136322,16 +133963,6 @@ entities: - 4418 - type: AtmosPipeColor color: '#990000FF' - - uid: 19292 - components: - - type: Transform - pos: 57.5,10.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 27313 - - type: AtmosPipeColor - color: '#990000FF' - uid: 19392 components: - type: Transform @@ -137077,29 +134708,36 @@ entities: - 7822 - proto: GasVolumePump entities: - - uid: 11329 + - uid: 2869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,17.5 + pos: 6.5,18.5 parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19294 + - uid: 3019 + components: + - type: Transform + pos: 13.5,18.5 + parent: 12 + - uid: 3237 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,13.5 + pos: 16.5,18.5 parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26203 + - uid: 4382 components: - type: Transform - pos: 11.5,16.5 + rot: 3.141592653589793 rad + pos: 9.5,18.5 + parent: 12 + - uid: 7146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,13.5 parent: 12 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#947507FF' - proto: Gauze entities: - uid: 13825 @@ -137115,10 +134753,27 @@ entities: parent: 12 - proto: Girder entities: - - uid: 5957 + - uid: 1059 components: - type: Transform - pos: 44.5,-5.5 + rot: 3.141592653589793 rad + pos: 49.5,-4.5 + parent: 12 + - uid: 7155 + components: + - type: Transform + pos: 46.5,0.5 + parent: 12 + - uid: 10918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-62.5 + parent: 12 + - uid: 10969 + components: + - type: Transform + pos: -48.5,51.5 parent: 12 - uid: 11535 components: @@ -137148,6 +134803,17 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,22.5 parent: 12 + - uid: 15859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-61.5 + parent: 12 + - uid: 22143 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 12 - uid: 22309 components: - type: Transform @@ -137423,18 +135089,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-15.5 parent: 12 - - uid: 190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-15.5 - parent: 12 - - uid: 191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 12 - uid: 209 components: - type: Transform @@ -137548,21 +135202,6 @@ entities: - type: Transform pos: -57.5,38.5 parent: 12 - - uid: 271 - components: - - type: Transform - pos: -52.5,42.5 - parent: 12 - - uid: 273 - components: - - type: Transform - pos: -52.5,43.5 - parent: 12 - - uid: 274 - components: - - type: Transform - pos: -52.5,40.5 - parent: 12 - uid: 283 components: - type: Transform @@ -137768,11 +135407,6 @@ entities: - type: Transform pos: -32.5,-17.5 parent: 12 - - uid: 526 - components: - - type: Transform - pos: -52.5,41.5 - parent: 12 - uid: 534 components: - type: Transform @@ -137856,8 +135490,7 @@ entities: - uid: 638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-2.5 + pos: 6.5,19.5 parent: 12 - uid: 652 components: @@ -137919,6 +135552,11 @@ entities: - type: Transform pos: -32.5,-33.5 parent: 12 + - uid: 697 + components: + - type: Transform + pos: 9.5,19.5 + parent: 12 - uid: 699 components: - type: Transform @@ -138215,16 +135853,15 @@ entities: rot: 3.141592653589793 rad pos: -40.5,75.5 parent: 12 - - uid: 1550 + - uid: 1538 components: - type: Transform - pos: 11.5,3.5 + pos: 14.5,19.5 parent: 12 - - uid: 1611 + - uid: 1550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,51.5 + pos: 11.5,3.5 parent: 12 - uid: 1613 components: @@ -138257,8 +135894,7 @@ entities: - uid: 2172 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,14.5 + pos: 7.5,19.5 parent: 12 - uid: 2174 components: @@ -138569,31 +136205,16 @@ entities: - type: Transform pos: -15.5,-52.5 parent: 12 - - uid: 2665 + - uid: 2656 components: - type: Transform - pos: -8.5,-60.5 + pos: -1.5,20.5 parent: 12 - uid: 2666 components: - type: Transform pos: -8.5,-58.5 parent: 12 - - uid: 2690 - components: - - type: Transform - pos: -6.5,-60.5 - parent: 12 - - uid: 2691 - components: - - type: Transform - pos: -5.5,-60.5 - parent: 12 - - uid: 2692 - components: - - type: Transform - pos: -4.5,-60.5 - parent: 12 - uid: 2694 components: - type: Transform @@ -138614,16 +136235,6 @@ entities: - type: Transform pos: -3.5,-54.5 parent: 12 - - uid: 2704 - components: - - type: Transform - pos: -4.5,-54.5 - parent: 12 - - uid: 2705 - components: - - type: Transform - pos: -4.5,-53.5 - parent: 12 - uid: 2706 components: - type: Transform @@ -138659,21 +136270,6 @@ entities: - type: Transform pos: -11.5,-53.5 parent: 12 - - uid: 2736 - components: - - type: Transform - pos: 0.5,-54.5 - parent: 12 - - uid: 2844 - components: - - type: Transform - pos: -3.5,-48.5 - parent: 12 - - uid: 2845 - components: - - type: Transform - pos: -4.5,-52.5 - parent: 12 - uid: 2846 components: - type: Transform @@ -138704,11 +136300,6 @@ entities: - type: Transform pos: -5.5,-44.5 parent: 12 - - uid: 2890 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 12 - uid: 2892 components: - type: Transform @@ -138724,27 +136315,11 @@ entities: - type: Transform pos: -0.5,-48.5 parent: 12 - - uid: 2900 - components: - - type: Transform - pos: 1.5,-48.5 - parent: 12 - uid: 2903 components: - type: Transform pos: -1.5,-48.5 parent: 12 - - uid: 2920 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 12 - - uid: 2944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-28.5 - parent: 12 - uid: 2947 components: - type: Transform @@ -138773,12 +136348,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-35.5 parent: 12 - - uid: 2979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-27.5 - parent: 12 - uid: 2985 components: - type: Transform @@ -138849,47 +136418,16 @@ entities: - type: Transform pos: -50.5,47.5 parent: 12 - - uid: 3133 - components: - - type: Transform - pos: 49.5,0.5 - parent: 12 - - uid: 3134 - components: - - type: Transform - pos: -18.5,-30.5 - parent: 12 - uid: 3198 components: - type: Transform pos: 35.5,-0.5 parent: 12 - - uid: 3468 - components: - - type: Transform - pos: 8.5,12.5 - parent: 12 - - uid: 3469 - components: - - type: Transform - pos: 48.5,0.5 - parent: 12 - - uid: 3472 - components: - - type: Transform - pos: 50.5,0.5 - parent: 12 - uid: 3480 components: - type: Transform pos: 20.5,-33.5 parent: 12 - - uid: 3516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-53.5 - parent: 12 - uid: 3596 components: - type: Transform @@ -139060,10 +136598,11 @@ entities: - type: Transform pos: 13.5,-0.5 parent: 12 - - uid: 4600 + - uid: 4646 components: - type: Transform - pos: 57.5,7.5 + rot: -1.5707963267948966 rad + pos: 63.5,-0.5 parent: 12 - uid: 4666 components: @@ -139098,11 +136637,6 @@ entities: - type: Transform pos: 21.5,-11.5 parent: 12 - - uid: 4794 - components: - - type: Transform - pos: 47.5,0.5 - parent: 12 - uid: 4796 components: - type: Transform @@ -139133,23 +136667,16 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-7.5 parent: 12 - - uid: 4972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 12 - - uid: 4987 + - uid: 4953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,3.5 + pos: -22.5,-28.5 parent: 12 - - uid: 4989 + - uid: 4972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,4.5 + rot: -1.5707963267948966 rad + pos: 23.5,-4.5 parent: 12 - uid: 5028 components: @@ -139171,11 +136698,11 @@ entities: - type: Transform pos: 31.5,-5.5 parent: 12 - - uid: 5197 + - uid: 5208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,9.5 + rot: -1.5707963267948966 rad + pos: 59.5,-9.5 parent: 12 - uid: 5269 components: @@ -139201,17 +136728,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-52.5 parent: 12 - - uid: 5384 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-59.5 - parent: 12 - - uid: 5416 - components: - - type: Transform - pos: 13.5,12.5 - parent: 12 - uid: 5430 components: - type: Transform @@ -139254,60 +136770,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-19.5 parent: 12 - - uid: 5482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,2.5 - parent: 12 - - uid: 5485 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,2.5 - parent: 12 - - uid: 5512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,2.5 - parent: 12 - - uid: 5538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-1.5 - parent: 12 - - uid: 5550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,0.5 - parent: 12 - - uid: 5552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-0.5 - parent: 12 - - uid: 5595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,2.5 - parent: 12 - - uid: 5618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,5.5 - parent: 12 - - uid: 5620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,7.5 - parent: 12 - uid: 5715 components: - type: Transform @@ -139348,12 +136810,6 @@ entities: - type: Transform pos: 13.5,2.5 parent: 12 - - uid: 5817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,12.5 - parent: 12 - uid: 5818 components: - type: Transform @@ -139378,12 +136834,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,65.5 parent: 12 - - uid: 5845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,8.5 - parent: 12 - uid: 5878 components: - type: Transform @@ -139418,12 +136868,6 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-3.5 parent: 12 - - uid: 6008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,52.5 - parent: 12 - uid: 6009 components: - type: Transform @@ -139441,12 +136885,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-8.5 parent: 12 - - uid: 6022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,14.5 - parent: 12 - uid: 6055 components: - type: Transform @@ -139820,15 +137258,10 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-40.5 parent: 12 - - uid: 6318 - components: - - type: Transform - pos: -3.5,22.5 - parent: 12 - - uid: 6325 + - uid: 6309 components: - type: Transform - pos: -2.5,22.5 + pos: 57.5,-8.5 parent: 12 - uid: 6336 components: @@ -139914,11 +137347,6 @@ entities: - type: Transform pos: 28.5,-28.5 parent: 12 - - uid: 6846 - components: - - type: Transform - pos: -4.5,22.5 - parent: 12 - uid: 6890 components: - type: Transform @@ -139934,6 +137362,11 @@ entities: - type: Transform pos: -60.5,30.5 parent: 12 + - uid: 7129 + components: + - type: Transform + pos: -1.5,19.5 + parent: 12 - uid: 7199 components: - type: Transform @@ -139977,11 +137410,11 @@ entities: - type: Transform pos: 29.5,-54.5 parent: 12 - - uid: 7322 + - uid: 7356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,14.5 + rot: 3.141592653589793 rad + pos: 1.5,10.5 parent: 12 - uid: 7379 components: @@ -140133,30 +137566,6 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,-19.5 parent: 12 - - uid: 7521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-6.5 - parent: 12 - - uid: 7522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-6.5 - parent: 12 - - uid: 7523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-6.5 - parent: 12 - - uid: 7548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,14.5 - parent: 12 - uid: 7551 components: - type: Transform @@ -140187,12 +137596,6 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,-16.5 parent: 12 - - uid: 7571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-11.5 - parent: 12 - uid: 7572 components: - type: Transform @@ -140452,17 +137855,10 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-50.5 parent: 12 - - uid: 9053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,10.5 - parent: 12 - - uid: 9054 + - uid: 9057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,14.5 + pos: 17.5,17.5 parent: 12 - uid: 9068 components: @@ -140494,35 +137890,17 @@ entities: - type: Transform pos: 59.5,-24.5 parent: 12 - - uid: 9482 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,1.5 - parent: 12 - - uid: 9483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,16.5 - parent: 12 - - uid: 9491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,11.5 - parent: 12 - uid: 9504 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,61.5 parent: 12 - - uid: 9562 + - uid: 9526 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-60.5 + pos: 2.5,10.5 parent: 12 - uid: 9570 components: @@ -140535,57 +137913,26 @@ entities: - type: Transform pos: 41.5,-17.5 parent: 12 - - uid: 9609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,1.5 - parent: 12 - - uid: 9612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-5.5 - parent: 12 - - uid: 9618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,16.5 - parent: 12 - uid: 9619 components: - type: Transform pos: -0.5,-40.5 parent: 12 - - uid: 9621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,16.5 - parent: 12 - - uid: 9628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,16.5 - parent: 12 - - uid: 9669 + - uid: 9709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-5.5 + pos: 63.5,6.5 parent: 12 - - uid: 9709 + - uid: 9871 components: - type: Transform - pos: 63.5,6.5 + pos: 5.5,26.5 parent: 12 - - uid: 9719 + - uid: 9956 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,16.5 + pos: 3.5,10.5 parent: 12 - uid: 9970 components: @@ -141061,36 +138408,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,12.5 parent: 12 - - uid: 10622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,18.5 - parent: 12 - - uid: 10623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 12 - - uid: 10624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,20.5 - parent: 12 - - uid: 10631 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,21.5 - parent: 12 - - uid: 10632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,22.5 - parent: 12 - uid: 10657 components: - type: Transform @@ -141168,83 +138485,46 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 12 - - uid: 10794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,16.5 - parent: 12 - - uid: 10869 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-4.5 - parent: 12 - - uid: 10876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-5.5 - parent: 12 - uid: 10877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-5.5 - parent: 12 - - uid: 10887 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-5.5 + rot: -1.5707963267948966 rad + pos: -5.5,-62.5 parent: 12 - uid: 10914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-5.5 - parent: 12 - - uid: 10915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-5.5 + pos: 12.5,11.5 parent: 12 - uid: 10916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-5.5 + pos: 13.5,11.5 parent: 12 - - uid: 10923 + - uid: 10934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-5.5 + pos: 17.5,15.5 parent: 12 - - uid: 10927 + - uid: 10966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-5.5 + pos: 17.5,18.5 parent: 12 - - uid: 10934 + - uid: 10970 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,14.5 + pos: -49.5,51.5 parent: 12 - - uid: 11044 + - uid: 10979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,15.5 + pos: 10.5,11.5 parent: 12 - - uid: 11045 + - uid: 11035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,16.5 + pos: 8.5,11.5 parent: 12 - uid: 11133 components: @@ -141318,11 +138598,11 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,30.5 parent: 12 - - uid: 11226 + - uid: 11207 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,22.5 + rot: 1.5707963267948966 rad + pos: 13.5,19.5 parent: 12 - uid: 11242 components: @@ -141336,24 +138616,12 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,26.5 parent: 12 - - uid: 11244 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,24.5 - parent: 12 - uid: 11245 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,25.5 parent: 12 - - uid: 11246 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,24.5 - parent: 12 - uid: 11247 components: - type: Transform @@ -141384,15 +138652,32 @@ entities: rot: 3.141592653589793 rad pos: -36.5,75.5 parent: 12 - - uid: 11420 + - uid: 11311 components: - type: Transform - pos: 53.5,19.5 + rot: -1.5707963267948966 rad + pos: -7.5,-62.5 parent: 12 - - uid: 11435 + - uid: 11338 components: - type: Transform - pos: -5.5,-62.5 + pos: 9.5,11.5 + parent: 12 + - uid: 11343 + components: + - type: Transform + pos: 15.5,19.5 + parent: 12 + - uid: 11360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,24.5 + parent: 12 + - uid: 11420 + components: + - type: Transform + pos: 53.5,19.5 parent: 12 - uid: 11448 components: @@ -141400,6 +138685,11 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,11.5 parent: 12 + - uid: 11458 + components: + - type: Transform + pos: 16.5,19.5 + parent: 12 - uid: 11459 components: - type: Transform @@ -141410,11 +138700,6 @@ entities: - type: Transform pos: 48.5,10.5 parent: 12 - - uid: 11481 - components: - - type: Transform - pos: -4.5,-62.5 - parent: 12 - uid: 11486 components: - type: Transform @@ -141828,6 +139113,11 @@ entities: - type: Transform pos: 29.5,14.5 parent: 12 + - uid: 12358 + components: + - type: Transform + pos: 8.5,19.5 + parent: 12 - uid: 12429 components: - type: Transform @@ -142195,6 +139485,28 @@ entities: - type: Transform pos: 49.5,42.5 parent: 12 + - uid: 12676 + components: + - type: Transform + pos: 17.5,16.5 + parent: 12 + - uid: 12681 + components: + - type: Transform + pos: 17.5,14.5 + parent: 12 + - uid: 12697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-3.5 + parent: 12 + - uid: 12699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-2.5 + parent: 12 - uid: 13028 components: - type: Transform @@ -143275,6 +140587,11 @@ entities: - type: Transform pos: -49.5,13.5 parent: 12 + - uid: 16353 + components: + - type: Transform + pos: 5.5,25.5 + parent: 12 - uid: 16373 components: - type: Transform @@ -143346,12 +140663,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,46.5 parent: 12 - - uid: 16832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,22.5 - parent: 12 - uid: 16924 components: - type: Transform @@ -143375,12 +140686,6 @@ entities: - type: Transform pos: 4.5,46.5 parent: 12 - - uid: 17204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,14.5 - parent: 12 - uid: 17275 components: - type: Transform @@ -143569,12 +140874,6 @@ entities: - type: Transform pos: -59.5,35.5 parent: 12 - - uid: 17599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-2.5 - parent: 12 - uid: 17832 components: - type: Transform @@ -143750,18 +141049,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,50.5 parent: 12 - - uid: 19162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,51.5 - parent: 12 - - uid: 19163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,52.5 - parent: 12 - uid: 19167 components: - type: Transform @@ -143839,11 +141126,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,60.5 parent: 12 - - uid: 19279 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 12 - uid: 19324 components: - type: Transform @@ -143916,16 +141198,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,79.5 parent: 12 - - uid: 19546 - components: - - type: Transform - pos: 3.5,17.5 - parent: 12 - - uid: 19561 - components: - - type: Transform - pos: 4.5,20.5 - parent: 12 - uid: 19582 components: - type: Transform @@ -144051,29 +141323,11 @@ entities: rot: 3.141592653589793 rad pos: -35.5,75.5 parent: 12 - - uid: 20565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,52.5 - parent: 12 - - uid: 20789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,14.5 - parent: 12 - uid: 20958 components: - type: Transform pos: -54.5,38.5 parent: 12 - - uid: 21065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,14.5 - parent: 12 - uid: 21074 components: - type: Transform @@ -144083,13 +141337,7 @@ entities: - uid: 21315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,13.5 - parent: 12 - - uid: 21530 - components: - - type: Transform - pos: -1.5,15.5 + pos: 37.5,-48.5 parent: 12 - uid: 21695 components: @@ -144101,12 +141349,6 @@ entities: - type: Transform pos: 42.5,-40.5 parent: 12 - - uid: 21703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-5.5 - parent: 12 - uid: 21706 components: - type: Transform @@ -144225,22 +141467,6 @@ entities: - type: Transform pos: -33.5,13.5 parent: 12 - - uid: 22098 - components: - - type: Transform - pos: 67.5,14.5 - parent: 12 - - uid: 22133 - components: - - type: Transform - pos: 62.5,14.5 - parent: 12 - - uid: 22158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,14.5 - parent: 12 - uid: 22193 components: - type: Transform @@ -144360,6 +141586,11 @@ entities: - type: Transform pos: 9.5,0.5 parent: 12 + - uid: 23604 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 12 - uid: 23759 components: - type: Transform @@ -144372,6 +141603,12 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-34.5 parent: 12 + - uid: 24388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-9.5 + parent: 12 - uid: 24649 components: - type: Transform @@ -144383,12 +141620,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,73.5 parent: 12 - - uid: 25061 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-5.5 - parent: 12 - uid: 25089 components: - type: Transform @@ -144405,41 +141636,17 @@ entities: - type: Transform pos: 60.5,-22.5 parent: 12 - - uid: 25192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-5.5 - parent: 12 - - uid: 25193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-3.5 - parent: 12 - uid: 25196 components: - type: Transform pos: 33.5,-3.5 parent: 12 - - uid: 25389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,53.5 - parent: 12 - uid: 25399 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,66.5 parent: 12 - - uid: 25400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,51.5 - parent: 12 - uid: 25447 components: - type: Transform @@ -144476,27 +141683,11 @@ entities: rot: 3.141592653589793 rad pos: -22.5,66.5 parent: 12 - - uid: 25528 - components: - - type: Transform - pos: 3.5,15.5 - parent: 12 - - uid: 25529 - components: - - type: Transform - pos: 3.5,16.5 - parent: 12 - - uid: 25546 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 12 - - uid: 25550 + - uid: 25538 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-29.5 + pos: 61.5,-11.5 parent: 12 - uid: 25558 components: @@ -144508,11 +141699,6 @@ entities: - type: Transform pos: 61.5,65.5 parent: 12 - - uid: 25560 - components: - - type: Transform - pos: 61.5,64.5 - parent: 12 - uid: 25561 components: - type: Transform @@ -144652,18 +141838,6 @@ entities: - type: Transform pos: -56.5,-15.5 parent: 12 - - uid: 26027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-5.5 - parent: 12 - - uid: 26064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-5.5 - parent: 12 - uid: 26068 components: - type: Transform @@ -144703,12 +141877,6 @@ entities: - type: Transform pos: -40.5,57.5 parent: 12 - - uid: 26154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-5.5 - parent: 12 - uid: 26171 components: - type: Transform @@ -144930,12 +142098,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,68.5 parent: 12 - - uid: 26383 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,14.5 - parent: 12 - uid: 26409 components: - type: Transform @@ -144962,23 +142124,11 @@ entities: - type: Transform pos: 63.5,4.5 parent: 12 - - uid: 26421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,6.5 - parent: 12 - uid: 26450 components: - type: Transform pos: 25.5,89.5 parent: 12 - - uid: 26536 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-5.5 - parent: 12 - uid: 26542 components: - type: Transform @@ -145010,16 +142160,6 @@ entities: - type: Transform pos: 35.5,-3.5 parent: 12 - - uid: 26581 - components: - - type: Transform - pos: 69.5,14.5 - parent: 12 - - uid: 26582 - components: - - type: Transform - pos: 68.5,14.5 - parent: 12 - uid: 26586 components: - type: Transform @@ -145031,16 +142171,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-21.5 parent: 12 - - uid: 26602 - components: - - type: Transform - pos: 63.5,14.5 - parent: 12 - - uid: 26604 - components: - - type: Transform - pos: 66.5,14.5 - parent: 12 - uid: 26610 components: - type: Transform @@ -145075,12 +142205,6 @@ entities: - type: Transform pos: 3.5,-21.5 parent: 12 - - uid: 26653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-2.5 - parent: 12 - uid: 26676 components: - type: Transform @@ -145099,12 +142223,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,6.5 parent: 12 - - uid: 26716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-5.5 - parent: 12 - uid: 26747 components: - type: Transform @@ -145116,141 +142234,12 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,70.5 parent: 12 - - uid: 26759 - components: - - type: Transform - pos: 9.5,12.5 - parent: 12 - - uid: 26787 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-7.5 - parent: 12 - - uid: 26788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-7.5 - parent: 12 - - uid: 26793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-9.5 - parent: 12 - - uid: 26799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-5.5 - parent: 12 - uid: 26866 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,64.5 parent: 12 - - uid: 26881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-7.5 - parent: 12 - - uid: 26973 - components: - - type: Transform - pos: 10.5,12.5 - parent: 12 - - uid: 27017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-7.5 - parent: 12 - - uid: 27018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-3.5 - parent: 12 - - uid: 27040 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,22.5 - parent: 12 - - uid: 27041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,22.5 - parent: 12 - - uid: 27045 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,22.5 - parent: 12 - - uid: 27047 - components: - - type: Transform - pos: 5.5,20.5 - parent: 12 - - uid: 27058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-6.5 - parent: 12 - - uid: 27059 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-5.5 - parent: 12 - - uid: 27060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-4.5 - parent: 12 - - uid: 27061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-3.5 - parent: 12 - - uid: 27068 - components: - - type: Transform - pos: 61.5,14.5 - parent: 12 - - uid: 27069 - components: - - type: Transform - pos: 57.5,14.5 - parent: 12 - - uid: 27070 - components: - - type: Transform - pos: 58.5,14.5 - parent: 12 - - uid: 27071 - components: - - type: Transform - pos: 64.5,14.5 - parent: 12 - - uid: 27072 - components: - - type: Transform - pos: 59.5,14.5 - parent: 12 - - uid: 27074 - components: - - type: Transform - pos: 55.5,14.5 - parent: 12 - uid: 27083 components: - type: Transform @@ -145277,12 +142266,6 @@ entities: - type: Transform pos: 29.5,86.5 parent: 12 - - uid: 27100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,54.5 - parent: 12 - uid: 27101 components: - type: Transform @@ -145311,22 +142294,6 @@ entities: - type: Transform pos: 29.5,84.5 parent: 12 - - uid: 27203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-9.5 - parent: 12 - - uid: 27227 - components: - - type: Transform - pos: 12.5,12.5 - parent: 12 - - uid: 27234 - components: - - type: Transform - pos: 11.5,12.5 - parent: 12 - uid: 27244 components: - type: Transform @@ -145478,12 +142445,6 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-44.5 parent: 12 - - uid: 27860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-9.5 - parent: 12 - uid: 27910 components: - type: Transform @@ -145641,12 +142602,6 @@ entities: rot: 3.141592653589793 rad pos: 66.5,60.5 parent: 12 - - uid: 27949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,61.5 - parent: 12 - uid: 27950 components: - type: Transform @@ -145712,12 +142667,6 @@ entities: rot: 3.141592653589793 rad pos: 77.5,59.5 parent: 12 - - uid: 28317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,59.5 - parent: 12 - uid: 28318 components: - type: Transform @@ -145760,12 +142709,6 @@ entities: rot: 3.141592653589793 rad pos: 69.5,59.5 parent: 12 - - uid: 28325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,59.5 - parent: 12 - uid: 28326 components: - type: Transform @@ -145823,17 +142766,6 @@ entities: - type: Transform pos: 2.5,-21.5 parent: 12 - - uid: 28558 - components: - - type: Transform - pos: -3.5,-62.5 - parent: 12 - - uid: 28789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-7.5 - parent: 12 - uid: 29089 components: - type: Transform @@ -145872,11 +142804,6 @@ entities: - type: Transform pos: -54.5,-48.5 parent: 12 - - uid: 29308 - components: - - type: Transform - pos: 12.5,12.5 - parent: 12 - uid: 29421 components: - type: Transform @@ -146057,12 +142984,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,74.5 parent: 12 - - uid: 29636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-8.5 - parent: 12 - uid: 29861 components: - type: Transform @@ -146099,36 +143020,6 @@ entities: - type: Transform pos: 60.5,74.5 parent: 12 - - uid: 30029 - components: - - type: Transform - pos: 37.5,-48.5 - parent: 12 - - uid: 30032 - components: - - type: Transform - pos: 37.5,-47.5 - parent: 12 - - uid: 30033 - components: - - type: Transform - pos: 37.5,-49.5 - parent: 12 - - uid: 30034 - components: - - type: Transform - pos: 37.5,-50.5 - parent: 12 - - uid: 30035 - components: - - type: Transform - pos: 37.5,-52.5 - parent: 12 - - uid: 30036 - components: - - type: Transform - pos: 37.5,-51.5 - parent: 12 - uid: 30037 components: - type: Transform @@ -146179,11 +143070,6 @@ entities: - type: Transform pos: 38.5,-61.5 parent: 12 - - uid: 30047 - components: - - type: Transform - pos: 39.5,-61.5 - parent: 12 - uid: 30048 components: - type: Transform @@ -146204,11 +143090,6 @@ entities: - type: Transform pos: 43.5,-61.5 parent: 12 - - uid: 30052 - components: - - type: Transform - pos: 44.5,-61.5 - parent: 12 - uid: 30053 components: - type: Transform @@ -146224,26 +143105,11 @@ entities: - type: Transform pos: 48.5,-61.5 parent: 12 - - uid: 30056 - components: - - type: Transform - pos: 49.5,-61.5 - parent: 12 - - uid: 30057 - components: - - type: Transform - pos: 46.5,-61.5 - parent: 12 - uid: 30058 components: - type: Transform pos: 50.5,-61.5 parent: 12 - - uid: 30059 - components: - - type: Transform - pos: 51.5,-61.5 - parent: 12 - uid: 30060 components: - type: Transform @@ -146254,21 +143120,6 @@ entities: - type: Transform pos: 54.5,-61.5 parent: 12 - - uid: 30062 - components: - - type: Transform - pos: 55.5,-61.5 - parent: 12 - - uid: 30063 - components: - - type: Transform - pos: 52.5,-61.5 - parent: 12 - - uid: 30064 - components: - - type: Transform - pos: 57.5,-61.5 - parent: 12 - uid: 30065 components: - type: Transform @@ -146284,11 +143135,6 @@ entities: - type: Transform pos: 60.5,-61.5 parent: 12 - - uid: 30068 - components: - - type: Transform - pos: 59.5,-61.5 - parent: 12 - uid: 30069 components: - type: Transform @@ -146304,11 +143150,6 @@ entities: - type: Transform pos: 63.5,-61.5 parent: 12 - - uid: 30072 - components: - - type: Transform - pos: 64.5,-61.5 - parent: 12 - uid: 30073 components: - type: Transform @@ -146334,11 +143175,6 @@ entities: - type: Transform pos: 69.5,-61.5 parent: 12 - - uid: 30078 - components: - - type: Transform - pos: 70.5,-61.5 - parent: 12 - uid: 30079 components: - type: Transform @@ -146369,11 +143205,6 @@ entities: - type: Transform pos: 74.5,-59.5 parent: 12 - - uid: 30085 - components: - - type: Transform - pos: 74.5,-58.5 - parent: 12 - uid: 30086 components: - type: Transform @@ -146384,11 +143215,6 @@ entities: - type: Transform pos: -69.5,50.5 parent: 12 - - uid: 30088 - components: - - type: Transform - pos: -71.5,50.5 - parent: 12 - uid: 30089 components: - type: Transform @@ -146414,21 +143240,11 @@ entities: - type: Transform pos: -73.5,48.5 parent: 12 - - uid: 30094 - components: - - type: Transform - pos: -73.5,47.5 - parent: 12 - uid: 30095 components: - type: Transform pos: -73.5,46.5 parent: 12 - - uid: 30096 - components: - - type: Transform - pos: -72.5,46.5 - parent: 12 - uid: 30097 components: - type: Transform @@ -146449,11 +143265,6 @@ entities: - type: Transform pos: -69.5,45.5 parent: 12 - - uid: 30101 - components: - - type: Transform - pos: -69.5,44.5 - parent: 12 - uid: 30102 components: - type: Transform @@ -146504,16 +143315,6 @@ entities: - type: Transform pos: -63.5,40.5 parent: 12 - - uid: 30112 - components: - - type: Transform - pos: -62.5,40.5 - parent: 12 - - uid: 30113 - components: - - type: Transform - pos: -61.5,40.5 - parent: 12 - uid: 30114 components: - type: Transform @@ -146529,11 +143330,6 @@ entities: - type: Transform pos: -69.5,51.5 parent: 12 - - uid: 30117 - components: - - type: Transform - pos: -69.5,52.5 - parent: 12 - uid: 30118 components: - type: Transform @@ -146544,11 +143340,6 @@ entities: - type: Transform pos: -69.5,54.5 parent: 12 - - uid: 30120 - components: - - type: Transform - pos: -69.5,55.5 - parent: 12 - uid: 30121 components: - type: Transform @@ -146579,11 +143370,6 @@ entities: - type: Transform pos: -59.5,56.5 parent: 12 - - uid: 30127 - components: - - type: Transform - pos: -60.5,56.5 - parent: 12 - uid: 30128 components: - type: Transform @@ -146599,21 +143385,11 @@ entities: - type: Transform pos: -63.5,56.5 parent: 12 - - uid: 30131 - components: - - type: Transform - pos: -64.5,56.5 - parent: 12 - uid: 30132 components: - type: Transform pos: -65.5,56.5 parent: 12 - - uid: 30133 - components: - - type: Transform - pos: 61.5,70.5 - parent: 12 - uid: 30134 components: - type: Transform @@ -146629,11 +143405,6 @@ entities: - type: Transform pos: 64.5,70.5 parent: 12 - - uid: 30137 - components: - - type: Transform - pos: 65.5,70.5 - parent: 12 - uid: 30138 components: - type: Transform @@ -146664,11 +143435,6 @@ entities: - type: Transform pos: 63.5,74.5 parent: 12 - - uid: 30144 - components: - - type: Transform - pos: 62.5,74.5 - parent: 12 - uid: 30145 components: - type: Transform @@ -146689,11 +143455,6 @@ entities: - type: Transform pos: 60.5,77.5 parent: 12 - - uid: 30149 - components: - - type: Transform - pos: 60.5,78.5 - parent: 12 - uid: 30150 components: - type: Transform @@ -146734,11 +143495,6 @@ entities: - type: Transform pos: 54.5,80.5 parent: 12 - - uid: 30159 - components: - - type: Transform - pos: 53.5,80.5 - parent: 12 - uid: 30160 components: - type: Transform @@ -146754,21 +143510,11 @@ entities: - type: Transform pos: 49.5,80.5 parent: 12 - - uid: 30163 - components: - - type: Transform - pos: 48.5,80.5 - parent: 12 - uid: 30164 components: - type: Transform pos: 47.5,80.5 parent: 12 - - uid: 30165 - components: - - type: Transform - pos: 46.5,80.5 - parent: 12 - uid: 30166 components: - type: Transform @@ -146814,16 +143560,6 @@ entities: - type: Transform pos: 40.5,78.5 parent: 12 - - uid: 30175 - components: - - type: Transform - pos: 39.5,78.5 - parent: 12 - - uid: 30176 - components: - - type: Transform - pos: 38.5,78.5 - parent: 12 - uid: 30177 components: - type: Transform @@ -146834,21 +143570,6 @@ entities: - type: Transform pos: 35.5,78.5 parent: 12 - - uid: 30179 - components: - - type: Transform - pos: 34.5,78.5 - parent: 12 - - uid: 30180 - components: - - type: Transform - pos: 33.5,78.5 - parent: 12 - - uid: 30181 - components: - - type: Transform - pos: 32.5,78.5 - parent: 12 - uid: 30182 components: - type: Transform @@ -146859,16 +143580,6 @@ entities: - type: Transform pos: 37.5,78.5 parent: 12 - - uid: 30184 - components: - - type: Transform - pos: 61.5,68.5 - parent: 12 - - uid: 30185 - components: - - type: Transform - pos: 61.5,69.5 - parent: 12 - uid: 30195 components: - type: Transform @@ -147341,41 +144052,51 @@ entities: parent: 12 - proto: GrilleBroken entities: - - uid: 9090 + - uid: 3719 + components: + - type: Transform + pos: -0.5,20.5 + parent: 12 + - uid: 7530 + components: + - type: Transform + pos: 44.5,-3.5 + parent: 12 + - uid: 7531 components: - type: Transform - pos: 41.5,6.5 + pos: 40.5,6.5 + parent: 12 + - uid: 11282 + components: + - type: Transform + pos: -1.5,15.5 parent: 12 - uid: 12027 components: - type: Transform pos: 46.5,13.5 parent: 12 - - uid: 21531 + - uid: 12352 components: - type: Transform - pos: -1.5,16.5 + pos: 48.5,-2.5 parent: 12 - - uid: 27103 + - uid: 19561 components: - type: Transform - pos: 56.5,14.5 + pos: 48.5,0.5 parent: 12 - - uid: 28674 + - uid: 25388 components: - type: Transform - pos: 44.5,-2.5 + pos: 34.5,-32.5 parent: 12 - uid: 28921 components: - type: Transform pos: 32.5,10.5 parent: 12 - - uid: 30490 - components: - - type: Transform - pos: 44.5,-4.5 - parent: 12 - uid: 30492 components: - type: Transform @@ -147471,6 +144192,233 @@ entities: - type: Transform pos: -12.5,79.5 parent: 12 +- proto: GrilleSpawner + entities: + - uid: 19569 + components: + - type: Transform + pos: 76.5,59.5 + parent: 12 + - uid: 20564 + components: + - type: Transform + pos: 65.5,70.5 + parent: 12 + - uid: 20565 + components: + - type: Transform + pos: 68.5,59.5 + parent: 12 + - uid: 20566 + components: + - type: Transform + pos: 61.5,64.5 + parent: 12 + - uid: 20855 + components: + - type: Transform + pos: 37.5,-47.5 + parent: 12 + - uid: 21065 + components: + - type: Transform + pos: 37.5,-52.5 + parent: 12 + - uid: 21083 + components: + - type: Transform + pos: 37.5,-51.5 + parent: 12 + - uid: 21313 + components: + - type: Transform + pos: 37.5,-50.5 + parent: 12 + - uid: 21332 + components: + - type: Transform + pos: 37.5,-49.5 + parent: 12 + - uid: 21369 + components: + - type: Transform + pos: 39.5,-61.5 + parent: 12 + - uid: 21516 + components: + - type: Transform + pos: 44.5,-61.5 + parent: 12 + - uid: 21530 + components: + - type: Transform + pos: 46.5,-61.5 + parent: 12 + - uid: 21531 + components: + - type: Transform + pos: 49.5,-61.5 + parent: 12 + - uid: 21601 + components: + - type: Transform + pos: 52.5,-61.5 + parent: 12 + - uid: 21607 + components: + - type: Transform + pos: 51.5,-61.5 + parent: 12 + - uid: 21621 + components: + - type: Transform + pos: 55.5,-61.5 + parent: 12 + - uid: 21703 + components: + - type: Transform + pos: 57.5,-61.5 + parent: 12 + - uid: 21871 + components: + - type: Transform + pos: 64.5,-61.5 + parent: 12 + - uid: 21926 + components: + - type: Transform + pos: 70.5,-61.5 + parent: 12 + - uid: 21970 + components: + - type: Transform + pos: 74.5,-58.5 + parent: 12 + - uid: 21971 + components: + - type: Transform + pos: -69.5,44.5 + parent: 12 + - uid: 22027 + components: + - type: Transform + pos: -62.5,40.5 + parent: 12 + - uid: 22028 + components: + - type: Transform + pos: -61.5,40.5 + parent: 12 + - uid: 22066 + components: + - type: Transform + pos: -64.5,56.5 + parent: 12 + - uid: 22075 + components: + - type: Transform + pos: -60.5,56.5 + parent: 12 + - uid: 22079 + components: + - type: Transform + pos: -69.5,52.5 + parent: 12 + - uid: 22080 + components: + - type: Transform + pos: -71.5,50.5 + parent: 12 + - uid: 22089 + components: + - type: Transform + pos: -69.5,55.5 + parent: 12 + - uid: 22092 + components: + - type: Transform + pos: -73.5,47.5 + parent: 12 + - uid: 22094 + components: + - type: Transform + pos: -72.5,46.5 + parent: 12 + - uid: 22095 + components: + - type: Transform + pos: 61.5,69.5 + parent: 12 + - uid: 22098 + components: + - type: Transform + pos: 60.5,78.5 + parent: 12 + - uid: 22100 + components: + - type: Transform + pos: 62.5,74.5 + parent: 12 + - uid: 22124 + components: + - type: Transform + pos: 48.5,80.5 + parent: 12 + - uid: 22126 + components: + - type: Transform + pos: 64.5,61.5 + parent: 12 + - uid: 22128 + components: + - type: Transform + pos: 46.5,80.5 + parent: 12 + - uid: 22131 + components: + - type: Transform + pos: 34.5,78.5 + parent: 12 + - uid: 22133 + components: + - type: Transform + pos: 38.5,78.5 + parent: 12 + - uid: 22134 + components: + - type: Transform + pos: 39.5,78.5 + parent: 12 + - uid: 22135 + components: + - type: Transform + pos: 53.5,80.5 + parent: 12 + - uid: 22137 + components: + - type: Transform + pos: 33.5,78.5 + parent: 12 + - uid: 22138 + components: + - type: Transform + pos: 32.5,78.5 + parent: 12 + - uid: 22139 + components: + - type: Transform + pos: 61.5,70.5 + parent: 12 + - uid: 22140 + components: + - type: Transform + pos: 59.5,-61.5 + parent: 12 + - uid: 25385 + components: + - type: Transform + pos: 61.5,68.5 + parent: 12 - proto: GroundCannabis entities: - uid: 12239 @@ -147497,6 +144445,13 @@ entities: - type: Transform pos: -32.5,66.5 parent: 12 +- proto: GunSafePistolMk58 + entities: + - uid: 9408 + components: + - type: Transform + pos: -37.5,68.5 + parent: 12 - proto: GunSafeRifleLecter entities: - uid: 20859 @@ -147610,7 +144565,8 @@ entities: - uid: 4080 components: - type: Transform - pos: -18.627468,-39.237103 + rot: -12.566370614359172 rad + pos: -18.443611,-38.54743 parent: 12 - uid: 6887 components: @@ -147636,13 +144592,12 @@ entities: - uid: 13843 components: - type: Transform - rot: -62.83185307179591 rad - pos: 30.038435,40.32396 + pos: 30.4622,39.447388 parent: 12 - uid: 25864 components: - type: Transform - pos: 53.47496,46.599808 + pos: 58.564953,50.55527 parent: 12 - proto: HappyHonk entities: @@ -147683,43 +144638,6 @@ entities: - type: Transform pos: -45.5,-19.5 parent: 12 - - uid: 9852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,14.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10979 - components: - - type: Transform - pos: 9.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 11308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 27220 - components: - - type: Transform - pos: 11.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 27222 - components: - - type: Transform - pos: 10.5,27.5 - parent: 12 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 28293 components: - type: Transform @@ -148077,6 +144995,13 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-15.5 parent: 12 +- proto: InflatableWall + entities: + - uid: 10617 + components: + - type: Transform + pos: 49.5,0.5 + parent: 12 - proto: IngotGold entities: - uid: 17438 @@ -148214,6 +145139,11 @@ entities: - type: Transform pos: 21.5,-19.5 parent: 12 + - uid: 7156 + components: + - type: Transform + pos: 46.5,1.5 + parent: 12 - uid: 9247 components: - type: Transform @@ -148242,11 +145172,6 @@ entities: - type: Transform pos: 43.5,46.5 parent: 12 - - uid: 27326 - components: - - type: Transform - pos: 46.5,0.5 - parent: 12 - uid: 27352 components: - type: Transform @@ -148469,8 +145394,8 @@ entities: - uid: 28698 components: - type: Transform - rot: -69.11503837897548 rad - pos: 57.52248,-5.5233436 + rot: -6.283185307179586 rad + pos: 57.513466,-4.4312396 parent: 12 - type: GasTank toggleActionEntity: 28700 @@ -148885,7 +145810,8 @@ entities: - uid: 11014 components: - type: Transform - pos: 47.426105,-3.4417992 + rot: -12.566370614359172 rad + pos: -0.6024373,17.635342 parent: 12 - proto: LightBulbOld entities: @@ -149118,6 +146044,11 @@ entities: - type: Transform pos: 51.5,-42.5 parent: 12 + - uid: 9181 + components: + - type: Transform + pos: 52.5,0.5 + parent: 12 - uid: 14230 components: - type: Transform @@ -149152,20 +146083,20 @@ entities: parent: 12 - proto: LockerEngineerFilledHardsuit entities: - - uid: 8859 + - uid: 2501 components: - type: Transform - pos: 11.5,-13.5 + pos: 13.5,-14.5 parent: 12 - - uid: 9870 + - uid: 2515 components: - type: Transform - pos: 8.5,-13.5 + pos: 12.5,-14.5 parent: 12 - - uid: 9871 + - uid: 3238 components: - type: Transform - pos: 9.5,-13.5 + pos: 14.5,-14.5 parent: 12 - proto: LockerEvidence entities: @@ -149672,6 +146603,62 @@ entities: - type: Transform pos: 3.5,-23.5 parent: 12 +- proto: LogicGateOr + entities: + - uid: 25547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-2.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 1268: + - Output: DoorBolt + 2246: + - Output: DoorBolt + 11469: + - Output: DoorBolt + 12692: + - Output: DoorBolt + - uid: 25549 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 25560: + - Output: InputB + - uid: 25550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-1.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 25560: + - Output: InputA + - uid: 25560 + components: + - type: Transform + pos: 61.5,-2.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 4952: + - Output: DoorBolt + 9169: + - Output: DoorBolt - proto: LootSpawnerCableCoil entities: - uid: 9665 @@ -149686,11 +146673,6 @@ entities: - type: Transform pos: -20.5,16.5 parent: 12 - - uid: 23418 - components: - - type: Transform - pos: 48.5,46.5 - parent: 12 - uid: 23419 components: - type: Transform @@ -149706,18 +146688,8 @@ entities: - type: Transform pos: -5.5,-25.5 parent: 12 - - uid: 25738 - components: - - type: Transform - pos: -2.5,21.5 - parent: 12 - proto: LootSpawnerIndustrialFluff entities: - - uid: 2310 - components: - - type: Transform - pos: 34.5,6.5 - parent: 12 - uid: 2514 components: - type: Transform @@ -149728,6 +146700,11 @@ entities: - type: Transform pos: -11.5,-21.5 parent: 12 + - uid: 9396 + components: + - type: Transform + pos: 36.5,6.5 + parent: 12 - uid: 9608 components: - type: Transform @@ -149929,23 +146906,12 @@ entities: showEnts: False occludes: True ents: [] - - uid: 1809 + - uid: 3020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-31.5 + rot: -1.5707963267948966 rad + pos: -2.5,19.5 parent: 12 - - type: ContainerContainer - containers: - machine_board: !type:Container - showEnts: False - occludes: True - ents: - - 1810 - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - uid: 5395 components: - type: Transform @@ -149985,6 +146951,11 @@ entities: ents: [] - proto: MachineFrameDestroyed entities: + - uid: 2575 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 12 - uid: 13522 components: - type: Transform @@ -150115,6 +147086,11 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,68.5 parent: 12 + - uid: 5957 + components: + - type: Transform + pos: 50.5,1.5 + parent: 12 - uid: 11490 components: - type: Transform @@ -150207,6 +147183,11 @@ entities: - type: Transform pos: 44.5,63.5 parent: 12 + - uid: 10605 + components: + - type: Transform + pos: 49.5,-3.5 + parent: 12 - uid: 11240 components: - type: Transform @@ -150284,6 +147265,11 @@ entities: - type: Transform pos: 33.5,67.5 parent: 12 + - uid: 9298 + components: + - type: Transform + pos: 48.5,-3.5 + parent: 12 - uid: 13004 components: - type: Transform @@ -150294,6 +147280,16 @@ entities: - type: Transform pos: -5.5,17.5 parent: 12 + - uid: 19165 + components: + - type: Transform + pos: 49.5,48.5 + parent: 12 + - uid: 19821 + components: + - type: Transform + pos: 56.5,-7.5 + parent: 12 - uid: 21509 components: - type: Transform @@ -150314,11 +147310,6 @@ entities: - type: Transform pos: -5.5,36.5 parent: 12 - - uid: 23420 - components: - - type: Transform - pos: 49.5,46.5 - parent: 12 - uid: 24489 components: - type: Transform @@ -150421,6 +147412,13 @@ entities: - type: Transform pos: -28.5,-56.5 parent: 12 +- proto: MakeshiftShield + entities: + - uid: 4565 + components: + - type: Transform + pos: 47.514965,1.5594273 + parent: 12 - proto: Matchbox entities: - uid: 6885 @@ -150462,7 +147460,8 @@ entities: - uid: 31576 components: - type: Transform - pos: -12.718974,0.25232542 + rot: -6.283185307179586 rad + pos: -13.621389,-0.07474756 parent: 12 - proto: MechEquipmentGrabberSmall entities: @@ -150524,6 +147523,11 @@ entities: - type: Transform pos: -5.650505,-52.217426 parent: 12 + - uid: 7097 + components: + - type: Transform + pos: 11.492401,54.473515 + parent: 12 - uid: 9265 components: - type: Transform @@ -150644,13 +147648,6 @@ entities: - type: Transform pos: -19.515518,-47.45431 parent: 12 -- proto: MedkitRadiation - entities: - - uid: 8293 - components: - - type: Transform - pos: 59.512062,9.509785 - parent: 12 - proto: MedkitRadiationFilled entities: - uid: 2915 @@ -150663,11 +147660,6 @@ entities: - type: Transform pos: 28.47894,-15.335911 parent: 12 - - uid: 6778 - components: - - type: Transform - pos: 13.616542,-24.438873 - parent: 12 - proto: MedkitToxinFilled entities: - uid: 8893 @@ -150691,7 +147683,8 @@ entities: - uid: 31569 components: - type: Transform - pos: -12.746752,0.6345352 + rot: -6.283185307179586 rad + pos: -13.329722,0.44644773 parent: 12 - proto: MicrophoneInstrument entities: @@ -150741,6 +147734,13 @@ entities: - type: Transform pos: -12.5,52.5 parent: 12 +- proto: ModularReceiver + entities: + - uid: 19823 + components: + - type: Transform + pos: 51.5,-3.5 + parent: 12 - proto: MonkeyCubeWrapped entities: - uid: 19619 @@ -150760,6 +147760,11 @@ entities: parent: 12 - proto: MopBucket entities: + - uid: 25384 + components: + - type: Transform + pos: 36.5,-32.5 + parent: 12 - uid: 28404 components: - type: Transform @@ -150774,6 +147779,12 @@ entities: parent: 12 - proto: MopItem entities: + - uid: 8427 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 37.37422,-32.282562 + parent: 12 - uid: 12262 components: - type: Transform @@ -150802,11 +147813,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-40.5 parent: 12 - - uid: 1705 - components: - - type: Transform - pos: -21.5,-27.5 - parent: 12 - uid: 4260 components: - type: Transform @@ -150837,6 +147843,11 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-41.5 parent: 12 + - uid: 9395 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 12 - uid: 12394 components: - type: Transform @@ -150920,23 +147931,18 @@ entities: - type: Transform pos: 38.5,-18.5 parent: 12 -- proto: Multitool - entities: - - uid: 1835 + - uid: 20606 components: - type: Transform - pos: -26.786606,-31.113516 + pos: 44.5,10.5 parent: 12 +- proto: Multitool + entities: - uid: 1941 components: - type: Transform pos: -32.59243,-21.422949 parent: 12 - - uid: 5247 - components: - - type: Transform - pos: 37.682983,4.6129007 - parent: 12 - uid: 5914 components: - type: Transform @@ -150962,11 +147968,6 @@ entities: - type: Transform pos: -51.23872,29.37216 parent: 12 - - uid: 22142 - components: - - type: Transform - pos: 60.1837,-0.4900638 - parent: 12 - uid: 23674 components: - type: Transform @@ -151043,11 +148044,6 @@ entities: - type: Transform pos: 33.5,-42.5 parent: 12 - - uid: 7165 - components: - - type: Transform - pos: 36.5,-30.5 - parent: 12 - uid: 8862 components: - type: Transform @@ -151163,34 +148159,6 @@ entities: - type: Transform pos: 29.894995,45.5396 parent: 12 - - uid: 25104 - components: - - type: Transform - parent: 28689 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25191 - components: - - type: Transform - parent: 28690 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 28707 - components: - - type: Transform - rot: -37.69911184307754 rad - pos: 57.708927,9.40214 - parent: 12 - - type: GasTank - toggleActionEntity: 28708 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 28708 - uid: 30711 components: - type: Transform @@ -151255,6 +148223,20 @@ entities: actions: !type:Container ents: - 9827 + - uid: 11126 + components: + - type: Transform + rot: -119.380520836412 rad + pos: -19.35744,-30.595646 + parent: 12 + - type: GasTank + toggleActionEntity: 11199 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 11199 - uid: 30710 components: - type: Transform @@ -151342,11 +148324,6 @@ entities: parent: 12 - proto: OperatingTable entities: - - uid: 1812 - components: - - type: Transform - pos: -21.5,-29.5 - parent: 12 - uid: 1825 components: - type: Transform @@ -151362,6 +148339,11 @@ entities: - type: Transform pos: 5.5,-38.5 parent: 12 + - uid: 9553 + components: + - type: Transform + pos: -19.5,-29.5 + parent: 12 - uid: 9661 components: - type: Transform @@ -151413,11 +148395,6 @@ entities: - type: Transform pos: 55.5,8.5 parent: 12 - - uid: 7166 - components: - - type: Transform - pos: 35.5,-30.5 - parent: 12 - uid: 7236 components: - type: Transform @@ -151433,10 +148410,10 @@ entities: - type: Transform pos: 81.5,-32.5 parent: 12 - - uid: 12274 + - uid: 10631 components: - type: Transform - pos: 9.5,13.5 + pos: 13.5,12.5 parent: 12 - uid: 16456 components: @@ -151503,11 +148480,6 @@ entities: - type: Transform pos: -56.5,-35.5 parent: 12 - - uid: 29073 - components: - - type: Transform - pos: 4.5,13.5 - parent: 12 - uid: 29290 components: - type: Transform @@ -151548,20 +148520,6 @@ entities: actions: !type:Container ents: - 12128 - - uid: 28709 - components: - - type: Transform - rot: -37.69911184307754 rad - pos: 57.55129,9.456535 - parent: 12 - - type: GasTank - toggleActionEntity: 28710 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 28710 - uid: 30713 components: - type: Transform @@ -151859,10 +148817,10 @@ entities: - type: Transform pos: 18.5,27.5 parent: 12 - - uid: 13834 + - uid: 16659 components: - type: Transform - pos: 30.5,40.5 + pos: 29.5,40.5 parent: 12 - uid: 23583 components: @@ -152116,6 +149074,17 @@ entities: - type: Transform pos: 35.5,-17.5 parent: 12 + - uid: 8435 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 53.5426,-3.492909 + parent: 12 + - uid: 8436 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 12 - uid: 16482 components: - type: Transform @@ -152242,7 +149211,7 @@ entities: - uid: 13835 components: - type: Transform - pos: 30.590527,40.213753 + pos: 29.67214,40.62013 parent: 12 - uid: 16706 components: @@ -152392,16 +149361,15 @@ entities: - uid: 13842 components: - type: Transform - rot: -62.83185307179591 rad - pos: 29.664974,40.61453 + pos: 29.977695,40.521294 parent: 12 - proto: PillCanister entities: - uid: 4084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.408745,-39.6174 + rot: -12.566370614359172 rad + pos: -20.999166,-37.583794 parent: 12 - uid: 25904 components: @@ -152413,7 +149381,8 @@ entities: - uid: 4083 components: - type: Transform - pos: -18.679577,-39.52365 + rot: -12.566370614359172 rad + pos: -20.684351,-37.412376 parent: 12 - proto: PillCanisterDylovene entities: @@ -152428,7 +149397,8 @@ entities: - uid: 4082 components: - type: Transform - pos: -18.398327,-39.200733 + rot: -12.566370614359172 rad + pos: -20.309351,-37.44481 parent: 12 - proto: PillCanisterTricordrazine entities: @@ -152440,21 +149410,20 @@ entities: - uid: 4081 components: - type: Transform - pos: -18.73166,-38.97157 + rot: -12.566370614359172 rad + pos: -20.503796,-37.630123 parent: 12 - uid: 13839 components: - type: Transform - rot: -62.83185307179591 rad - pos: 29.202692,40.65044 + pos: 30.486954,40.50585 parent: 12 - proto: PillDexalin entities: - uid: 3538 components: - type: Transform - rot: -62.83185307179591 rad - pos: 29.359419,40.423035 + pos: 30.19683,40.749847 parent: 12 - proto: PillDylovene entities: @@ -152481,16 +149450,14 @@ entities: - uid: 13840 components: - type: Transform - rot: -62.83185307179591 rad - pos: 29.439667,40.691742 + pos: 30.579548,40.74367 parent: 12 - proto: PillPotassiumIodide entities: - uid: 2871 components: - type: Transform - rot: -62.83185307179591 rad - pos: 29.529173,40.534225 + pos: 30.236954,40.57689 parent: 12 - proto: PillSpaceDrugs entities: @@ -152562,6 +149529,11 @@ entities: - type: Transform pos: -48.5,-35.5 parent: 12 + - uid: 2028 + components: + - type: Transform + pos: 12.5,12.5 + parent: 12 - uid: 4973 components: - type: Transform @@ -152572,11 +149544,6 @@ entities: - type: Transform pos: 24.5,-6.5 parent: 12 - - uid: 9741 - components: - - type: Transform - pos: 10.5,13.5 - parent: 12 - uid: 25479 components: - type: Transform @@ -152587,11 +149554,6 @@ entities: - type: Transform pos: 27.5,6.5 parent: 12 - - uid: 29074 - components: - - type: Transform - pos: 4.5,14.5 - parent: 12 - uid: 31158 components: - type: Transform @@ -152691,11 +149653,6 @@ entities: parent: 12 - proto: PlushieAtmosian entities: - - uid: 7169 - components: - - type: Transform - pos: 38.555447,-30.430433 - parent: 12 - uid: 25661 components: - type: Transform @@ -152705,7 +149662,8 @@ entities: - uid: 27187 components: - type: Transform - pos: 51.426647,-9.534098 + rot: -6.283185307179586 rad + pos: 27.557964,19.49243 parent: 12 - uid: 32094 components: @@ -152790,13 +149748,6 @@ entities: rot: -6.283185307179586 rad pos: -2.5359287,58.81089 parent: 12 -- proto: PlushieSpaceLizard - entities: - - uid: 2056 - components: - - type: Transform - pos: -19.408815,-29.402786 - parent: 12 - proto: PlushieVox entities: - uid: 21518 @@ -152844,15 +149795,15 @@ entities: - type: Transform pos: 42.5,-39.5 parent: 12 - - uid: 12025 + - uid: 11324 components: - type: Transform - pos: 40.5,10.5 + pos: -48.5,50.5 parent: 12 - - uid: 15859 + - uid: 12025 components: - type: Transform - pos: -44.5,46.5 + pos: 40.5,10.5 parent: 12 - uid: 17963 components: @@ -152927,10 +149878,10 @@ entities: bodyType: Static - proto: PortableGeneratorSuperPacman entities: - - uid: 10701 + - uid: 2465 components: - type: Transform - pos: 37.5,0.5 + pos: 8.5,-13.5 parent: 12 - proto: PortableScrubber entities: @@ -152954,11 +149905,6 @@ entities: - type: Transform pos: 4.5,-18.5 parent: 12 - - uid: 7161 - components: - - type: Transform - pos: 34.5,-30.5 - parent: 12 - uid: 11929 components: - type: Transform @@ -153120,11 +150066,10 @@ entities: parent: 12 - proto: PosterContrabandHighEffectEngineering entities: - - uid: 6287 + - uid: 16356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,12.5 + pos: 61.5,13.5 parent: 12 - proto: PosterContrabandInterdyne entities: @@ -153284,11 +150229,6 @@ entities: parent: 12 - proto: PosterLegitSafetyEyeProtection entities: - - uid: 2970 - components: - - type: Transform - pos: 63.5,-2.5 - parent: 12 - uid: 11334 components: - type: Transform @@ -153307,10 +150247,10 @@ entities: - type: Transform pos: -20.5,-1.5 parent: 12 - - uid: 28719 + - uid: 22149 components: - type: Transform - pos: 63.5,7.5 + pos: 63.5,-3.5 parent: 12 - proto: PosterLegitSafetyMothHardhat entities: @@ -153324,10 +150264,11 @@ entities: - type: Transform pos: 29.5,-15.5 parent: 12 - - uid: 28718 + - uid: 22542 components: - type: Transform - pos: 58.5,-6.5 + rot: 1.5707963267948966 rad + pos: 58.5,-5.5 parent: 12 - proto: PosterLegitSafetyMothMeth entities: @@ -153826,10 +150767,10 @@ entities: - type: Transform pos: -5.5,-48.5 parent: 12 - - uid: 3957 + - uid: 4668 components: - type: Transform - pos: -23.5,-39.5 + pos: 3.5,11.5 parent: 12 - uid: 5492 components: @@ -153861,12 +150802,6 @@ entities: - type: Transform pos: 43.5,-39.5 parent: 12 - - uid: 9615 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,18.5 - parent: 12 - uid: 9814 components: - type: Transform @@ -154003,7 +150938,8 @@ entities: - uid: 31574 components: - type: Transform - pos: -12.246752,0.24537575 + rot: -6.283185307179586 rad + pos: -13.378334,-0.67933416 parent: 12 - proto: PowerComputerCircuitboard entities: @@ -154039,6 +150975,11 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-10.5 parent: 12 + - uid: 570 + components: + - type: Transform + pos: 12.5,18.5 + parent: 12 - uid: 1961 components: - type: Transform @@ -154123,18 +151064,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-38.5 parent: 12 - - uid: 1983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-31.5 - parent: 12 - - uid: 1984 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-28.5 - parent: 12 - uid: 1985 components: - type: Transform @@ -154167,6 +151096,18 @@ entities: - type: Transform pos: -26.5,-41.5 parent: 12 + - uid: 2459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 12 + - uid: 2460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,21.5 + parent: 12 - uid: 2479 components: - type: Transform @@ -154194,6 +151135,12 @@ entities: - type: Transform pos: -4.5,-32.5 parent: 12 + - uid: 2667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 12 - uid: 2763 components: - type: Transform @@ -154251,6 +151198,12 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-21.5 parent: 12 + - uid: 3050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,12.5 + parent: 12 - uid: 3478 components: - type: Transform @@ -154313,6 +151266,12 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-39.5 parent: 12 + - uid: 3893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,21.5 + parent: 12 - uid: 4021 components: - type: Transform @@ -154325,12 +151284,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-30.5 parent: 12 - - uid: 4226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-30.5 - parent: 12 - uid: 4315 components: - type: Transform @@ -154342,6 +151295,12 @@ entities: - type: Transform pos: 1.5,-25.5 parent: 12 + - uid: 4561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,2.5 + parent: 12 - uid: 4562 components: - type: Transform @@ -154699,6 +151658,11 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,-47.5 parent: 12 + - uid: 9183 + components: + - type: Transform + pos: 5.5,18.5 + parent: 12 - uid: 9299 components: - type: Transform @@ -154973,16 +151937,17 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-33.5 parent: 12 - - uid: 11241 + - uid: 11223 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-50.5 + pos: 64.5,8.5 parent: 12 - - uid: 11360 + - uid: 11241 components: - type: Transform - pos: 59.5,6.5 + rot: 1.5707963267948966 rad + pos: -13.5,-50.5 parent: 12 - uid: 12016 components: @@ -155026,6 +151991,11 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-12.5 parent: 12 + - uid: 12276 + components: + - type: Transform + pos: 62.5,7.5 + parent: 12 - uid: 12312 components: - type: Transform @@ -155413,6 +152383,12 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,26.5 parent: 12 + - uid: 16658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,3.5 + parent: 12 - uid: 16816 components: - type: Transform @@ -155930,17 +152906,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,53.5 parent: 12 - - uid: 19456 - components: - - type: Transform - pos: 9.5,28.5 - parent: 12 - - uid: 19549 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,13.5 - parent: 12 - uid: 19662 components: - type: Transform @@ -155974,12 +152939,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,54.5 parent: 12 - - uid: 21516 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,18.5 - parent: 12 - uid: 21566 components: - type: Transform @@ -156111,75 +153070,12 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,-5.5 parent: 12 - - uid: 26855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,2.5 - parent: 12 - - uid: 26857 - components: - - type: Transform - pos: 58.5,12.5 - parent: 12 - - uid: 26975 - components: - - type: Transform - pos: 68.5,12.5 - parent: 12 - uid: 26976 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,0.5 parent: 12 - - uid: 26978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,8.5 - parent: 12 - - uid: 26980 - components: - - type: Transform - pos: 76.5,12.5 - parent: 12 - - uid: 26981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,8.5 - parent: 12 - - uid: 26982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,0.5 - parent: 12 - - uid: 26983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-3.5 - parent: 12 - - uid: 26999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-3.5 - parent: 12 - - uid: 27209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,21.5 - parent: 12 - - uid: 28240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,19.5 - parent: 12 - uid: 28650 components: - type: Transform @@ -156435,11 +153331,17 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,54.5 parent: 12 - - uid: 2515 + - uid: 2291 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,14.5 + pos: 62.5,11.5 + parent: 12 + - uid: 2739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-31.5 parent: 12 - uid: 2855 components: @@ -156519,11 +153421,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-60.5 parent: 12 - - uid: 5142 - components: - - type: Transform - pos: 18.5,16.5 - parent: 12 - uid: 5143 components: - type: Transform @@ -156542,18 +153439,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-4.5 parent: 12 - - uid: 5417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,13.5 - parent: 12 - - uid: 5543 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-1.5 - parent: 12 - uid: 5833 components: - type: Transform @@ -156566,6 +153451,12 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-15.5 parent: 12 + - uid: 6183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-28.5 + parent: 12 - uid: 6758 components: - type: Transform @@ -156582,11 +153473,6 @@ entities: rot: 3.141592653589793 rad pos: 62.5,-26.5 parent: 12 - - uid: 7170 - components: - - type: Transform - pos: 36.5,-30.5 - parent: 12 - uid: 7240 components: - type: Transform @@ -156764,6 +153650,12 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,66.5 parent: 12 + - uid: 9437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-30.5 + parent: 12 - uid: 9441 components: - type: Transform @@ -156781,16 +153673,16 @@ entities: - type: Transform pos: 2.5,68.5 parent: 12 - - uid: 9548 + - uid: 9540 components: - type: Transform - pos: 16.5,12.5 + rot: 1.5707963267948966 rad + pos: 60.5,-0.5 parent: 12 - - uid: 9557 + - uid: 9548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,11.5 + pos: 16.5,12.5 parent: 12 - uid: 9853 components: @@ -156833,6 +153725,18 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,35.5 parent: 12 + - uid: 11201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-3.5 + parent: 12 + - uid: 11231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,11.5 + parent: 12 - uid: 11520 components: - type: Transform @@ -156937,12 +153841,6 @@ entities: - type: Transform pos: 57.5,-13.5 parent: 12 - - uid: 16365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,9.5 - parent: 12 - uid: 16554 components: - type: Transform @@ -157111,6 +154009,18 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,54.5 parent: 12 + - uid: 22160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-1.5 + parent: 12 + - uid: 22163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-7.5 + parent: 12 - uid: 22296 components: - type: Transform @@ -157146,6 +154056,12 @@ entities: rot: 3.141592653589793 rad pos: 27.5,65.5 parent: 12 + - uid: 23172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-30.5 + parent: 12 - uid: 23560 components: - type: Transform @@ -157202,11 +154118,6 @@ entities: - type: Transform pos: 53.5,6.5 parent: 12 - - uid: 26851 - components: - - type: Transform - pos: 62.5,-2.5 - parent: 12 - uid: 26852 components: - type: Transform @@ -157218,24 +154129,12 @@ entities: - type: Transform pos: 16.5,10.5 parent: 12 - - uid: 27030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-0.5 - parent: 12 - uid: 27067 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-11.5 parent: 12 - - uid: 27156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-7.5 - parent: 12 - uid: 27170 components: - type: Transform @@ -157299,12 +154198,6 @@ entities: - type: Transform pos: -0.5,-22.5 parent: 12 - - uid: 28682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-3.5 - parent: 12 - uid: 28745 components: - type: Transform @@ -157327,12 +154220,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,64.5 parent: 12 - - uid: 29317 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,21.5 - parent: 12 - uid: 29656 components: - type: Transform @@ -157482,6 +154369,12 @@ entities: parent: 12 - proto: Rack entities: + - uid: 1069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-30.5 + parent: 12 - uid: 1769 components: - type: Transform @@ -157554,15 +154447,11 @@ entities: - type: Transform pos: 5.5,61.5 parent: 12 - - uid: 5129 - components: - - type: Transform - pos: 61.5,-0.5 - parent: 12 - - uid: 5270 + - uid: 5027 components: - type: Transform - pos: 37.5,4.5 + rot: 3.141592653589793 rad + pos: 9.5,-13.5 parent: 12 - uid: 5873 components: @@ -157599,12 +154488,22 @@ entities: - type: Transform pos: 39.5,-19.5 parent: 12 + - uid: 7524 + components: + - type: Transform + pos: 54.5,-5.5 + parent: 12 - uid: 8040 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-49.5 parent: 12 + - uid: 8713 + components: + - type: Transform + pos: 50.5,1.5 + parent: 12 - uid: 8868 components: - type: Transform @@ -157616,6 +154515,11 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,65.5 parent: 12 + - uid: 9182 + components: + - type: Transform + pos: 52.5,1.5 + parent: 12 - uid: 9214 components: - type: Transform @@ -157654,6 +154558,16 @@ entities: - type: Transform pos: -11.5,-24.5 parent: 12 + - uid: 9722 + components: + - type: Transform + pos: 1.5,11.5 + parent: 12 + - uid: 9746 + components: + - type: Transform + pos: -0.5,17.5 + parent: 12 - uid: 9761 components: - type: Transform @@ -157687,12 +154601,28 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-11.5 parent: 12 + - uid: 11429 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 12 - uid: 11476 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-6.5 parent: 12 + - uid: 12056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-28.5 + parent: 12 + - uid: 12265 + components: + - type: Transform + pos: 9.5,12.5 + parent: 12 - uid: 12318 components: - type: Transform @@ -157704,6 +154634,11 @@ entities: - type: Transform pos: 35.5,-9.5 parent: 12 + - uid: 16369 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 12 - uid: 16451 components: - type: Transform @@ -157844,11 +154779,10 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-34.5 parent: 12 - - uid: 22531 + - uid: 22624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,30.5 + pos: 56.5,-7.5 parent: 12 - uid: 23652 components: @@ -157871,11 +154805,6 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,46.5 parent: 12 - - uid: 24333 - components: - - type: Transform - pos: 60.5,-0.5 - parent: 12 - uid: 24477 components: - type: Transform @@ -157899,11 +154828,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-32.5 parent: 12 - - uid: 25682 - components: - - type: Transform - pos: 57.5,9.5 - parent: 12 - uid: 25684 components: - type: Transform @@ -158080,11 +155004,6 @@ entities: - type: Transform pos: 28.5,14.5 parent: 12 - - uid: 26549 - components: - - type: Transform - pos: 62.5,-0.5 - parent: 12 - uid: 26571 components: - type: Transform @@ -158097,11 +155016,6 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,64.5 parent: 12 - - uid: 27000 - components: - - type: Transform - pos: 54.5,-6.5 - parent: 12 - uid: 27397 components: - type: Transform @@ -158125,11 +155039,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-16.5 parent: 12 - - uid: 28704 - components: - - type: Transform - pos: 58.5,12.5 - parent: 12 - uid: 28759 components: - type: Transform @@ -158175,12 +155084,6 @@ entities: - type: Transform pos: -8.5,-66.5 parent: 12 - - uid: 31561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,0.5 - parent: 12 - uid: 32108 components: - type: Transform @@ -158192,61 +155095,6 @@ entities: - type: Transform pos: -62.5,-52.5 parent: 12 -- proto: RadiationCollectorFlatpack - entities: - - uid: 4727 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 61.41483,-0.5951568 - parent: 12 -- proto: RadiationCollectorFullTank - entities: - - uid: 26077 - components: - - type: Transform - pos: 72.5,12.5 - parent: 12 - - uid: 26157 - components: - - type: Transform - pos: 70.5,12.5 - parent: 12 - - uid: 26158 - components: - - type: Transform - pos: 80.5,4.5 - parent: 12 - - uid: 26159 - components: - - type: Transform - pos: 74.5,12.5 - parent: 12 - - uid: 26160 - components: - - type: Transform - pos: 80.5,2.5 - parent: 12 - - uid: 26522 - components: - - type: Transform - pos: 74.5,-3.5 - parent: 12 - - uid: 26526 - components: - - type: Transform - pos: 70.5,-3.5 - parent: 12 - - uid: 26796 - components: - - type: Transform - pos: 80.5,6.5 - parent: 12 - - uid: 26797 - components: - - type: Transform - pos: 72.5,-3.5 - parent: 12 - proto: RadioHandheld entities: - uid: 9805 @@ -158592,12 +155440,6 @@ entities: - type: Transform pos: 63.5,56.5 parent: 12 - - uid: 28688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-2.5 - parent: 12 - uid: 28695 components: - type: Transform @@ -158861,6 +155703,14 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,24.5 parent: 12 +- proto: RailingRound + entities: + - uid: 25531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-32.5 + parent: 12 - proto: RandomArcade entities: - uid: 16926 @@ -159082,6 +155932,16 @@ entities: parent: 12 - proto: RandomPosterContraband entities: + - uid: 5245 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 12 + - uid: 6008 + components: + - type: Transform + pos: 50.5,-4.5 + parent: 12 - uid: 8902 components: - type: Transform @@ -159143,6 +156003,11 @@ entities: rot: 3.141592653589793 rad pos: -2.5,18.5 parent: 12 + - uid: 24688 + components: + - type: Transform + pos: 54.5,-7.5 + parent: 12 - uid: 25387 components: - type: Transform @@ -159174,11 +156039,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,15.5 parent: 12 - - uid: 26825 - components: - - type: Transform - pos: 48.5,-2.5 - parent: 12 - uid: 28036 components: - type: Transform @@ -159283,11 +156143,6 @@ entities: - type: Transform pos: 39.5,-24.5 parent: 12 - - uid: 8992 - components: - - type: Transform - pos: 37.5,-29.5 - parent: 12 - uid: 8993 components: - type: Transform @@ -159647,6 +156502,11 @@ entities: - type: Transform pos: 40.5,16.5 parent: 12 + - uid: 9306 + components: + - type: Transform + pos: -1.5,15.5 + parent: 12 - uid: 12045 components: - type: Transform @@ -159883,11 +156743,6 @@ entities: - type: Transform pos: -6.5,15.5 parent: 12 - - uid: 24388 - components: - - type: Transform - pos: -1.5,16.5 - parent: 12 - uid: 24389 components: - type: Transform @@ -159988,11 +156843,6 @@ entities: - type: Transform pos: 39.5,-34.5 parent: 12 - - uid: 24409 - components: - - type: Transform - pos: 35.5,-31.5 - parent: 12 - uid: 24410 components: - type: Transform @@ -160626,6 +157476,16 @@ entities: parent: 12 - proto: ReinforcedPlasmaWindow entities: + - uid: 501 + components: + - type: Transform + pos: 7.5,19.5 + parent: 12 + - uid: 525 + components: + - type: Transform + pos: 15.5,19.5 + parent: 12 - uid: 728 components: - type: Transform @@ -160650,6 +157510,11 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,-21.5 parent: 12 + - uid: 1915 + components: + - type: Transform + pos: 14.5,19.5 + parent: 12 - uid: 2266 components: - type: Transform @@ -160661,11 +157526,10 @@ entities: - type: Transform pos: 11.5,1.5 parent: 12 - - uid: 2872 + - uid: 3976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,16.5 + pos: 6.5,19.5 parent: 12 - uid: 4606 components: @@ -160702,6 +157566,11 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-8.5 parent: 12 + - uid: 7158 + components: + - type: Transform + pos: 16.5,19.5 + parent: 12 - uid: 7203 components: - type: Transform @@ -160719,69 +157588,26 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-0.5 parent: 12 - - uid: 7310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 12 - - uid: 9436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,3.5 - parent: 12 - - uid: 9588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,5.5 - parent: 12 - - uid: 9721 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,14.5 - parent: 12 - - uid: 10346 - components: - - type: Transform - pos: 57.5,7.5 - parent: 12 - - uid: 10656 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,4.5 - parent: 12 - - uid: 23116 - components: - - type: Transform - pos: 57.5,1.5 - parent: 12 - - uid: 26553 + - uid: 7269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,4.5 + pos: 13.5,19.5 parent: 12 - - uid: 26572 + - uid: 7310 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,6.5 + pos: 34.5,-0.5 parent: 12 - - uid: 26573 + - uid: 11365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,2.5 + pos: 8.5,19.5 parent: 12 - - uid: 26613 + - uid: 15671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,5.5 + pos: 9.5,19.5 parent: 12 - uid: 26639 components: @@ -160798,12 +157624,6 @@ entities: - type: Transform pos: 11.5,0.5 parent: 12 - - uid: 26738 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,6.5 - parent: 12 - uid: 29002 components: - type: Transform @@ -161372,6 +158192,12 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-45.5 parent: 12 + - uid: 1085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,6.5 + parent: 12 - uid: 1172 components: - type: Transform @@ -161389,6 +158215,18 @@ entities: - type: Transform pos: -22.5,63.5 parent: 12 + - uid: 2029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,11.5 + parent: 12 + - uid: 2056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,11.5 + parent: 12 - uid: 2242 components: - type: Transform @@ -161477,11 +158315,6 @@ entities: - type: Transform pos: 30.5,-24.5 parent: 12 - - uid: 2667 - components: - - type: Transform - pos: -8.5,-60.5 - parent: 12 - uid: 2668 components: - type: Transform @@ -161507,16 +158340,6 @@ entities: - type: Transform pos: -6.5,-53.5 parent: 12 - - uid: 2720 - components: - - type: Transform - pos: -4.5,-53.5 - parent: 12 - - uid: 2721 - components: - - type: Transform - pos: -4.5,-54.5 - parent: 12 - uid: 2722 components: - type: Transform @@ -161537,51 +158360,26 @@ entities: - type: Transform pos: -4.5,-58.5 parent: 12 - - uid: 2733 - components: - - type: Transform - pos: -4.5,-60.5 - parent: 12 - - uid: 2734 - components: - - type: Transform - pos: -5.5,-60.5 - parent: 12 - - uid: 2735 - components: - - type: Transform - pos: -6.5,-60.5 - parent: 12 - uid: 2738 components: - type: Transform pos: -0.5,-54.5 parent: 12 - - uid: 2739 - components: - - type: Transform - pos: 0.5,-54.5 - parent: 12 - uid: 2896 components: - type: Transform pos: 34.5,-24.5 parent: 12 - - uid: 2907 - components: - - type: Transform - pos: -18.5,-30.5 - parent: 12 - - uid: 2918 + - uid: 2977 components: - type: Transform - pos: -18.5,-29.5 + pos: 17.5,14.5 parent: 12 - - uid: 2949 + - uid: 2979 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-27.5 + pos: 13.5,11.5 parent: 12 - uid: 2981 components: @@ -161589,6 +158387,12 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-6.5 parent: 12 + - uid: 2992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,11.5 + parent: 12 - uid: 3068 components: - type: Transform @@ -161599,16 +158403,16 @@ entities: - type: Transform pos: -0.5,-25.5 parent: 12 - - uid: 3520 + - uid: 3601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-28.5 + pos: 20.5,-33.5 parent: 12 - - uid: 3601 + - uid: 3948 components: - type: Transform - pos: 20.5,-33.5 + rot: -1.5707963267948966 rad + pos: 5.5,24.5 parent: 12 - uid: 4110 components: @@ -161753,6 +158557,18 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-5.5 parent: 12 + - uid: 4693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,11.5 + parent: 12 + - uid: 4965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-11.5 + parent: 12 - uid: 4971 components: - type: Transform @@ -162632,12 +159448,6 @@ entities: rot: -1.5707963267948966 rad pos: 82.5,-32.5 parent: 12 - - uid: 7717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-11.5 - parent: 12 - uid: 7721 components: - type: Transform @@ -162758,24 +159568,6 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,63.5 parent: 12 - - uid: 8427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-6.5 - parent: 12 - - uid: 8428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-6.5 - parent: 12 - - uid: 8429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-6.5 - parent: 12 - uid: 8430 components: - type: Transform @@ -162788,11 +159580,6 @@ entities: rot: 3.141592653589793 rad pos: 49.5,-9.5 parent: 12 - - uid: 8456 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 12 - uid: 8457 components: - type: Transform @@ -162885,32 +159672,16 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-44.5 parent: 12 - - uid: 9396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-59.5 - parent: 12 - uid: 9415 components: - type: Transform pos: 21.5,8.5 parent: 12 - - uid: 9532 - components: - - type: Transform - pos: 8.5,12.5 - parent: 12 - - uid: 9533 + - uid: 9522 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-60.5 - parent: 12 - - uid: 9564 - components: - - type: Transform - pos: 13.5,12.5 + pos: 1.5,10.5 parent: 12 - uid: 9571 components: @@ -162924,53 +159695,49 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-34.5 parent: 12 - - uid: 9678 + - uid: 9667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-44.5 + pos: 17.5,17.5 parent: 12 - - uid: 9746 + - uid: 9678 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,1.5 + pos: -10.5,-44.5 parent: 12 - - uid: 9748 + - uid: 9681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-7.5 + pos: 17.5,15.5 parent: 12 - - uid: 9749 + - uid: 9756 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,-7.5 + pos: -30.5,-13.5 parent: 12 - - uid: 9750 + - uid: 9868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-7.5 + pos: 5.5,26.5 parent: 12 - - uid: 9751 + - uid: 9870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-7.5 + pos: 5.5,25.5 parent: 12 - - uid: 9756 + - uid: 9908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-13.5 + rot: 3.141592653589793 rad + pos: 2.5,10.5 parent: 12 - - uid: 9957 + - uid: 9978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-5.5 + rot: 3.141592653589793 rad + pos: 3.5,10.5 parent: 12 - uid: 10014 components: @@ -162993,14 +159760,8 @@ entities: - uid: 10141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-6.5 - parent: 12 - - uid: 10144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-4.5 + rot: -1.5707963267948966 rad + pos: 59.5,-9.5 parent: 12 - uid: 10157 components: @@ -163398,12 +160159,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-22.5 parent: 12 - - uid: 10326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-3.5 - parent: 12 - uid: 10340 components: - type: Transform @@ -163432,12 +160187,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,10.5 parent: 12 - - uid: 10594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-7.5 - parent: 12 - uid: 10682 components: - type: Transform @@ -163510,6 +160259,16 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 12 + - uid: 10792 + components: + - type: Transform + pos: 17.5,16.5 + parent: 12 + - uid: 10793 + components: + - type: Transform + pos: 17.5,18.5 + parent: 12 - uid: 10810 components: - type: Transform @@ -163532,18 +160291,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-44.5 parent: 12 - - uid: 11046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,15.5 - parent: 12 - - uid: 11047 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,16.5 - parent: 12 - uid: 11117 components: - type: Transform @@ -163645,18 +160392,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,25.5 parent: 12 - - uid: 11254 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,24.5 - parent: 12 - - uid: 11255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,24.5 - parent: 12 - uid: 11256 components: - type: Transform @@ -163681,23 +160416,76 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,27.5 parent: 12 + - uid: 11290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,3.5 + parent: 12 + - uid: 11291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,2.5 + parent: 12 - uid: 11298 components: - type: Transform pos: -25.5,69.5 parent: 12 + - uid: 11306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,6.5 + parent: 12 + - uid: 11307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,1.5 + parent: 12 - uid: 11339 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-8.5 parent: 12 + - uid: 11355 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 12 + - uid: 11376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,4.5 + parent: 12 + - uid: 11379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,5.5 + parent: 12 + - uid: 11390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,4.5 + parent: 12 - uid: 11444 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-44.5 parent: 12 + - uid: 11474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-0.5 + parent: 12 - uid: 11516 components: - type: Transform @@ -163763,6 +160551,12 @@ entities: - type: Transform pos: 57.5,33.5 parent: 12 + - uid: 11633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,5.5 + parent: 12 - uid: 11716 components: - type: Transform @@ -163963,11 +160757,6 @@ entities: - type: Transform pos: 59.5,38.5 parent: 12 - - uid: 11936 - components: - - type: Transform - pos: -5.5,-62.5 - parent: 12 - uid: 11946 components: - type: Transform @@ -164331,12 +161120,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,61.5 parent: 12 - - uid: 13168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-53.5 - parent: 12 - uid: 14025 components: - type: Transform @@ -164999,12 +161782,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,79.5 parent: 12 - - uid: 16547 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,2.5 - parent: 12 - uid: 17273 components: - type: Transform @@ -165172,12 +161949,6 @@ entities: - type: Transform pos: -57.5,23.5 parent: 12 - - uid: 17773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-2.5 - parent: 12 - uid: 17839 components: - type: Transform @@ -165291,18 +162062,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,50.5 parent: 12 - - uid: 19165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,51.5 - parent: 12 - - uid: 19166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,52.5 - parent: 12 - uid: 19194 components: - type: Transform @@ -165369,11 +162128,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-16.5 parent: 12 - - uid: 19271 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 12 - uid: 19278 components: - type: Transform @@ -165421,16 +162175,6 @@ entities: - type: Transform pos: -27.5,57.5 parent: 12 - - uid: 19457 - components: - - type: Transform - pos: 3.5,17.5 - parent: 12 - - uid: 19559 - components: - - type: Transform - pos: 5.5,20.5 - parent: 12 - uid: 19629 components: - type: Transform @@ -165544,12 +162288,6 @@ entities: - type: Transform pos: -54.5,38.5 parent: 12 - - uid: 21369 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-52.5 - parent: 12 - uid: 21868 components: - type: Transform @@ -165663,11 +162401,10 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-46.5 parent: 12 - - uid: 23158 + - uid: 23134 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,22.5 + pos: -0.5,-48.5 parent: 12 - uid: 23164 components: @@ -165675,6 +162412,22 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,8.5 parent: 12 + - uid: 23170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-9.5 + parent: 12 + - uid: 23601 + components: + - type: Transform + pos: 57.5,-8.5 + parent: 12 + - uid: 23664 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 12 - uid: 23710 components: - type: Transform @@ -165705,36 +162458,18 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-44.5 parent: 12 - - uid: 24202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-48.5 - parent: 12 - uid: 24203 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-48.5 parent: 12 - - uid: 24204 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-48.5 - parent: 12 - uid: 24205 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-48.5 parent: 12 - - uid: 24208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-48.5 - parent: 12 - uid: 24211 components: - type: Transform @@ -165770,40 +162505,6 @@ entities: - type: Transform pos: 22.5,8.5 parent: 12 - - uid: 25384 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,52.5 - parent: 12 - - uid: 25386 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,51.5 - parent: 12 - - uid: 25530 - components: - - type: Transform - pos: 3.5,15.5 - parent: 12 - - uid: 25531 - components: - - type: Transform - pos: 3.5,16.5 - parent: 12 - - uid: 25547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-29.5 - parent: 12 - - uid: 25549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 12 - uid: 25585 components: - type: Transform @@ -165833,18 +162534,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,-46.5 parent: 12 - - uid: 26261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,22.5 - parent: 12 - - uid: 26262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,22.5 - parent: 12 - uid: 26299 components: - type: Transform @@ -165917,12 +162606,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,12.5 parent: 12 - - uid: 26466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-2.5 - parent: 12 - uid: 26484 components: - type: Transform @@ -165934,18 +162617,6 @@ entities: - type: Transform pos: 33.5,-3.5 parent: 12 - - uid: 26556 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,22.5 - parent: 12 - - uid: 26617 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,22.5 - parent: 12 - uid: 26619 components: - type: Transform @@ -165957,41 +162628,18 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,53.5 parent: 12 - - uid: 26782 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-9.5 - parent: 12 - - uid: 26798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-9.5 - parent: 12 - uid: 26809 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,11.5 parent: 12 - - uid: 27007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-9.5 - parent: 12 - uid: 27039 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,67.5 parent: 12 - - uid: 27048 - components: - - type: Transform - pos: 4.5,20.5 - parent: 12 - uid: 27243 components: - type: Transform @@ -166187,47 +162835,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-56.5 parent: 12 - - uid: 28613 - components: - - type: Transform - pos: -4.5,-62.5 - parent: 12 - - uid: 29069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,0.5 - parent: 12 - - uid: 29080 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,0.5 - parent: 12 - - uid: 29081 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,0.5 - parent: 12 - - uid: 29082 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,0.5 - parent: 12 - - uid: 29176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,2.5 - parent: 12 - - uid: 29177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,2.5 - parent: 12 - uid: 29219 components: - type: Transform @@ -166268,26 +162875,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,73.5 parent: 12 - - uid: 29309 - components: - - type: Transform - pos: 9.5,12.5 - parent: 12 - - uid: 29310 - components: - - type: Transform - pos: 10.5,12.5 - parent: 12 - - uid: 29311 - components: - - type: Transform - pos: 11.5,12.5 - parent: 12 - - uid: 29312 - components: - - type: Transform - pos: 12.5,12.5 - parent: 12 - uid: 29319 components: - type: Transform @@ -166486,11 +163073,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-57.5 parent: 12 - - uid: 30437 - components: - - type: Transform - pos: -3.5,-62.5 - parent: 12 - uid: 30501 components: - type: Transform @@ -166846,17 +163428,6 @@ entities: parent: 12 - proto: RemoteSignaller entities: - - uid: 3009 - components: - - type: MetaData - name: TEG shutter door remote - - type: Transform - pos: 15.512024,16.164919 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 11: - - Pressed: Toggle - uid: 4914 components: - type: Transform @@ -166896,6 +163467,13 @@ entities: - type: Transform pos: 31.551949,51.708954 parent: 12 +- proto: RifleStock + entities: + - uid: 22820 + components: + - type: Transform + pos: 33.5,6.5 + parent: 12 - proto: RiotBulletShield entities: - uid: 20873 @@ -167028,10 +163606,11 @@ entities: parent: 12 - proto: SawElectric entities: - - uid: 2027 + - uid: 11312 components: - type: Transform - pos: -22.514305,-29.297949 + rot: -62.83185307179591 rad + pos: -19.456577,-27.187649 parent: 12 - uid: 13828 components: @@ -167055,11 +163634,6 @@ entities: parent: 12 - proto: Scalpel entities: - - uid: 2026 - components: - - type: Transform - pos: -22.350243,-29.696386 - parent: 12 - uid: 2700 components: - type: Transform @@ -167076,6 +163650,12 @@ entities: - type: Transform pos: 6.4121404,-38.844658 parent: 12 + - uid: 5125 + components: + - type: Transform + rot: -62.83185307179591 rad + pos: -19.623243,-27.84088 + parent: 12 - uid: 13829 components: - type: Transform @@ -167367,6 +163947,11 @@ entities: parent: 12 - proto: ShardGlass entities: + - uid: 3520 + components: + - type: Transform + pos: -0.5,20.5 + parent: 12 - uid: 7009 components: - type: Transform @@ -167425,7 +164010,7 @@ entities: - uid: 24176 components: - type: Transform - pos: 49.417187,48.49522 + pos: 49.57303,47.439972 parent: 12 - proto: SheetPlasma1 entities: @@ -167463,6 +164048,12 @@ entities: - type: Transform pos: -9.260001,24.655502 parent: 12 + - uid: 23173 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 57.489006,-5.2227006 + parent: 12 - proto: SheetPlastic entities: - uid: 1947 @@ -167485,6 +164076,12 @@ entities: parent: 12 - proto: SheetSteel entities: + - uid: 366 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: 9.414267,12.413563 + parent: 12 - uid: 1802 components: - type: Transform @@ -167511,26 +164108,27 @@ entities: - type: Transform pos: 35.454636,-19.489756 parent: 12 - - uid: 8898 + - uid: 6318 components: - type: Transform - rot: -37.69911184307754 rad - pos: 50.40397,-21.229546 + rot: -25.132741228718352 rad + pos: 9.685101,12.736704 parent: 12 - - uid: 9627 + - uid: 8439 components: - type: Transform - pos: 16.545898,19.482996 + pos: 61.5,-3.5 parent: 12 - - uid: 10380 + - uid: 8898 components: - type: Transform - pos: -26.496197,-8.588259 + rot: -37.69911184307754 rad + pos: 50.40397,-21.229546 parent: 12 - - uid: 11323 + - uid: 10380 components: - type: Transform - pos: 16.409882,19.390099 + pos: -26.496197,-8.588259 parent: 12 - uid: 16480 components: @@ -167567,13 +164165,14 @@ entities: parent: 12 - proto: SheetUranium1 entities: - - uid: 9481 + - uid: 11371 components: - type: Transform - pos: 37.50514,4.4669657 + rot: -18.84955592153876 rad + pos: 9.582282,-13.607407 parent: 12 - type: Stack - count: 5 + count: 10 - proto: ShelfBar entities: - uid: 22816 @@ -167598,11 +164197,16 @@ entities: parent: 12 - proto: Shiv entities: + - uid: 25201 + components: + - type: Transform + pos: 36.293972,-30.4844 + parent: 12 - uid: 30493 components: - type: Transform - rot: -18.84955592153876 rad - pos: 33.51523,8.510627 + rot: -75.39822368615505 rad + pos: 34.429405,8.474968 parent: 12 - uid: 31210 components: @@ -167731,28 +164335,10 @@ entities: parent: 12 - proto: ShuttersNormalOpen entities: - - uid: 2923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-29.5 - parent: 12 - - uid: 3132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 12 - - uid: 3942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-28.5 - parent: 12 - - uid: 6739 + - uid: 7529 components: - type: Transform - pos: 47.5,2.5 + pos: 51.5,-4.5 parent: 12 - uid: 8470 components: @@ -167764,24 +164350,6 @@ entities: - type: Transform pos: 49.5,-9.5 parent: 12 - - uid: 8472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-6.5 - parent: 12 - - uid: 8473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-6.5 - parent: 12 - - uid: 8474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-6.5 - parent: 12 - uid: 10382 components: - type: Transform @@ -167995,90 +164563,8 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-22.5 parent: 12 - - uid: 27245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-27.5 - parent: 12 - - uid: 29178 - components: - - type: Transform - pos: 48.5,2.5 - parent: 12 - - uid: 29179 - components: - - type: Transform - pos: 49.5,2.5 - parent: 12 -- proto: ShuttersRadiationOpen - entities: - - uid: 249 - components: - - type: Transform - pos: 57.5,1.5 - parent: 12 - - uid: 5027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,6.5 - parent: 12 - - uid: 11019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,4.5 - parent: 12 - - uid: 22100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,5.5 - parent: 12 - - uid: 23161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,4.5 - parent: 12 - - uid: 26414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,5.5 - parent: 12 - - uid: 26461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,6.5 - parent: 12 - - uid: 26490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,3.5 - parent: 12 - - uid: 26578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,2.5 - parent: 12 - - uid: 26596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,7.5 - parent: 12 - proto: ShuttersWindow entities: - - uid: 11 - components: - - type: Transform - pos: 16.5,15.5 - parent: 12 - uid: 7800 components: - type: Transform @@ -168307,12 +164793,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,53.5 parent: 12 - - type: DeviceLinkSource - linkedPorts: - 10323: - - Pressed: Toggle - 20562: - - Pressed: Toggle - uid: 7799 components: - type: Transform @@ -168337,12 +164817,6 @@ entities: - Pressed: Toggle 8470: - Pressed: Toggle - 8474: - - Pressed: Toggle - 8473: - - Pressed: Toggle - 8472: - - Pressed: Toggle - uid: 8826 components: - type: Transform @@ -168369,19 +164843,37 @@ entities: linkedPorts: 9123: - Pressed: Toggle - - uid: 9634 + - uid: 11216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,16.5 + rot: 1.5707963267948966 rad + pos: 56.5,9.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 8974: + - Pressed: Toggle + 9003: + - Pressed: Toggle + 8976: + - Pressed: Toggle + 8992: + - Pressed: Toggle + - uid: 11450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,7.5 parent: 12 - type: DeviceLinkSource linkedPorts: - 9722: + 8974: + - Pressed: Toggle + 9003: - Pressed: Toggle - 9715: + 8976: - Pressed: Toggle - 9718: + 8992: - Pressed: Toggle - uid: 13643 components: @@ -168575,16 +165067,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-28.5 parent: 12 - - type: DeviceLinkSource - linkedPorts: - 3132: - - Pressed: Toggle - 2923: - - Pressed: Toggle - 3942: - - Pressed: Toggle - 27245: - - Pressed: Toggle - uid: 28346 components: - type: Transform @@ -168608,62 +165090,6 @@ entities: - Pressed: Open 2548: - Pressed: Open - - uid: 28737 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,1.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 26537: - - Pressed: Toggle - 26072: - - Pressed: Toggle - 26594: - - Pressed: Toggle - - uid: 28738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,3.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 249: - - Pressed: Toggle - 23161: - - Pressed: Toggle - 22100: - - Pressed: Toggle - 5027: - - Pressed: Toggle - 26596: - - Pressed: Toggle - 26461: - - Pressed: Toggle - 26414: - - Pressed: Toggle - 11019: - - Pressed: Toggle - 26490: - - Pressed: Toggle - 26578: - - Pressed: Toggle - - uid: 29344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,2.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 6739: - - Pressed: Toggle - 29178: - - Pressed: Toggle - 29179: - - Pressed: Toggle - uid: 29834 components: - type: Transform @@ -169137,46 +165563,22 @@ entities: rot: 3.141592653589793 rad pos: -25.5,75.5 parent: 12 - - uid: 8977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,0.5 - parent: 12 - - uid: 9016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-5.5 - parent: 12 - - uid: 9017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-5.5 - parent: 12 - - uid: 9667 + - uid: 7522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,14.5 + pos: 63.5,7.5 parent: 12 - - uid: 9668 + - uid: 8977 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,1.5 + pos: 41.5,0.5 parent: 12 - uid: 11451 components: - type: Transform pos: -55.5,39.5 parent: 12 - - uid: 19815 - components: - - type: Transform - pos: 60.5,14.5 - parent: 12 - uid: 19829 components: - type: Transform @@ -169193,6 +165595,11 @@ entities: rot: 3.141592653589793 rad pos: -53.5,68.5 parent: 12 + - uid: 22153 + components: + - type: Transform + pos: 63.5,1.5 + parent: 12 - uid: 25392 components: - type: Transform @@ -169205,11 +165612,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,75.5 parent: 12 - - uid: 27097 - components: - - type: Transform - pos: 70.5,14.5 - parent: 12 - uid: 27155 components: - type: Transform @@ -169292,12 +165694,6 @@ entities: parent: 12 - proto: SignFlammable entities: - - uid: 16699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,17.5 - parent: 12 - uid: 26428 components: - type: Transform @@ -169408,32 +165804,6 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,55.5 parent: 12 -- proto: SignLaserMed - entities: - - uid: 28533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,13.5 - parent: 12 - - uid: 28534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,13.5 - parent: 12 - - uid: 28535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-4.5 - parent: 12 - - uid: 28648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-4.5 - parent: 12 - proto: SignLawyer entities: - uid: 18903 @@ -169530,23 +165900,6 @@ entities: - type: Transform pos: -20.5,-57.5 parent: 12 -- proto: SignRadiationMed - entities: - - uid: 9710 - components: - - type: Transform - pos: 56.5,1.5 - parent: 12 - - uid: 11338 - components: - - type: Transform - pos: 61.5,-2.5 - parent: 12 - - uid: 28925 - components: - - type: Transform - pos: 63.5,9.5 - parent: 12 - proto: SignReception entities: - uid: 4057 @@ -169708,6 +166061,20 @@ entities: - type: Transform pos: -29.5,-22.5 parent: 12 +- proto: SignSomethingOld + entities: + - uid: 5380 + components: + - type: Transform + pos: 3.5,23.5 + parent: 12 +- proto: SignSomethingOld2 + entities: + - uid: 5370 + components: + - type: Transform + pos: -5.5,21.5 + parent: 12 - proto: SignSpace entities: - uid: 29292 @@ -169766,13 +166133,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,69.5 parent: 12 -- proto: SingularityGenerator - entities: - - uid: 5130 - components: - - type: Transform - pos: 62.5,0.5 - parent: 12 - proto: Sink entities: - uid: 19874 @@ -169801,6 +166161,11 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-29.5 parent: 12 + - uid: 8428 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 12 - proto: SinkWide entities: - uid: 288 @@ -169895,7 +166260,7 @@ entities: - uid: 26065 components: - type: Transform - pos: 70.45827,20.649218 + pos: 54.49004,14.54105 parent: 12 - proto: SmallLight entities: @@ -169957,6 +166322,11 @@ entities: - type: Transform pos: 12.5,-17.5 parent: 12 + - uid: 5364 + components: + - type: Transform + pos: 62.5,0.5 + parent: 12 - uid: 7947 components: - type: Transform @@ -169977,16 +166347,6 @@ entities: - type: Transform pos: 38.5,-6.5 parent: 12 - - uid: 29181 - components: - - type: Transform - pos: 46.5,5.5 - parent: 12 - - uid: 31901 - components: - - type: Transform - pos: 59.5,12.5 - parent: 12 - uid: 32042 components: - type: Transform @@ -171658,14 +168018,6 @@ entities: - type: Transform pos: -50.5,21.5 parent: 12 -- proto: SpawnMobFrog - entities: - - uid: 22538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,36.5 - parent: 12 - proto: SpawnMobGoat entities: - uid: 23176 @@ -171702,18 +168054,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,22.5 parent: 12 - - uid: 22536 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,39.5 - parent: 12 - - uid: 22537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,38.5 - parent: 12 - proto: SpawnMobMcGriff entities: - uid: 20839 @@ -171761,6 +168101,16 @@ entities: parent: 12 - proto: SpawnMobMouse entities: + - uid: 7533 + components: + - type: Transform + pos: 55.5,-7.5 + parent: 12 + - uid: 9748 + components: + - type: Transform + pos: 46.5,24.5 + parent: 12 - uid: 12317 components: - type: Transform @@ -171889,15 +168239,21 @@ entities: parent: 12 - proto: SpawnPointBorg entities: - - uid: 1775 + - uid: 9662 components: - type: Transform - pos: -25.5,-29.5 + pos: -23.5,-30.5 parent: 12 - - uid: 4045 + - uid: 12110 components: - type: Transform - pos: -21.5,-28.5 + rot: 1.5707963267948966 rad + pos: -26.5,-28.5 + parent: 12 + - uid: 12138 + components: + - type: Transform + pos: -24.5,-30.5 parent: 12 - proto: SpawnPointBotanist entities: @@ -172319,10 +168675,10 @@ entities: - type: Transform pos: -45.5,-34.5 parent: 12 - - uid: 2065 + - uid: 12353 components: - type: Transform - pos: -24.5,-30.5 + pos: -24.5,-28.5 parent: 12 - proto: SpawnPointSecurityCadet entities: @@ -172402,20 +168758,15 @@ entities: parent: 12 - proto: SpawnPointStationEngineer entities: - - uid: 4754 - components: - - type: Transform - pos: 9.5,-14.5 - parent: 12 - - uid: 4757 + - uid: 3469 components: - type: Transform - pos: 8.5,-14.5 + pos: 14.5,-15.5 parent: 12 - - uid: 5497 + - uid: 4629 components: - type: Transform - pos: 11.5,-14.5 + pos: 13.5,-15.5 parent: 12 - uid: 5501 components: @@ -172437,6 +168788,11 @@ entities: - type: Transform pos: 31.5,-19.5 parent: 12 + - uid: 9174 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 12 - proto: SpawnPointTechnicalAssistant entities: - uid: 4856 @@ -173079,6 +169435,11 @@ entities: - type: Transform pos: 10.5,76.5 parent: 12 + - uid: 16345 + components: + - type: Transform + pos: 56.5,2.5 + parent: 12 - uid: 17608 components: - type: Transform @@ -173625,11 +169986,6 @@ entities: - type: Transform pos: 24.5,1.5 parent: 12 - - uid: 7171 - components: - - type: Transform - pos: 36.5,-32.5 - parent: 12 - uid: 20776 components: - type: Transform @@ -173710,6 +170066,11 @@ entities: - type: Transform pos: 38.5,-15.5 parent: 12 + - uid: 4528 + components: + - type: Transform + pos: 62.5,-0.5 + parent: 12 - uid: 4720 components: - type: Transform @@ -173795,11 +170156,6 @@ entities: - type: Transform pos: -36.5,-50.5 parent: 12 - - uid: 31896 - components: - - type: Transform - pos: 60.5,12.5 - parent: 12 - uid: 32116 components: - type: Transform @@ -173814,6 +170170,11 @@ entities: parent: 12 - proto: SuitStorageEngi entities: + - uid: 2287 + components: + - type: Transform + pos: 62.5,-3.5 + parent: 12 - uid: 4553 components: - type: Transform @@ -173829,66 +170190,11 @@ entities: - type: Transform pos: 29.5,-13.5 parent: 12 - - uid: 28689 - components: - - type: Transform - pos: 60.5,-2.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 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25104 - - uid: 28690 + - uid: 9173 components: - type: Transform - pos: 59.5,-2.5 + pos: 60.5,-3.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 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25191 - proto: SuitStorageEVA entities: - uid: 22129 @@ -174013,17 +170319,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: AI entrance - - uid: 3033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,38.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command camera room - uid: 3065 components: - type: Transform @@ -174308,6 +170603,39 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engi hallway AME + - uid: 4761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG East + - uid: 6774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,8.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Tesla containment + - uid: 7157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,17.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG West - uid: 8416 components: - type: Transform @@ -174340,16 +170668,28 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering front - - uid: 12289 + - uid: 19166 components: - type: Transform - pos: 11.5,13.5 + rot: -1.5707963267948966 rad + pos: 57.5,10.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Tesla Storage + - uid: 19311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,7.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: TEG + id: PA - uid: 21894 components: - type: Transform @@ -174382,113 +170722,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos entrance - - uid: 28784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,4.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Containment east - - uid: 28785 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,12.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Containment north - - uid: 28786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,6.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: PA room - - uid: 28787 - components: - - type: Transform - pos: 72.5,-3.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Containment south - - uid: 28788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-2.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Containment monitoring room - - uid: 28790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,6.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Break room - - uid: 28791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,12.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Containment internals room - - uid: 28792 - components: - - type: Transform - pos: 61.5,-0.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Containment storage - - uid: 28793 - components: - - type: Transform - pos: 46.5,-1.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Containment entrance - - uid: 28794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,4.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Station anchor - uid: 28795 components: - type: Transform @@ -174554,28 +170787,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos canister storage - - uid: 28801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,28.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG exterior - - uid: 28807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,47.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Northeast solars - uid: 28808 components: - type: Transform @@ -174674,17 +170885,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Hallway north B - - uid: 2902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,48.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Hallway northeast A - uid: 2948 components: - type: Transform @@ -174771,16 +170971,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Evac east - - uid: 9835 - components: - - type: Transform - pos: 41.5,-32.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Vending machine room - uid: 9836 components: - type: Transform @@ -174802,17 +170992,17 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Evac north - - uid: 9847 + - uid: 12672 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-26.5 + pos: 50.5,49.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Medical/Science hallway + id: Hallway Northeast - uid: 17130 components: - type: Transform @@ -174877,17 +171067,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Green dorm - - uid: 21926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,28.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bee room - uid: 21928 components: - type: Transform @@ -174909,16 +171088,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Salon - - uid: 22542 - components: - - type: Transform - pos: 3.5,34.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Pool - uid: 24135 components: - type: Transform @@ -175128,17 +171297,6 @@ entities: - SurveillanceCameraMedical nameSet: True id: Gene lab - - uid: 3960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-56.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology isolated ward - uid: 3961 components: - type: Transform @@ -175380,11 +171538,6 @@ entities: - SurveillanceCameraScience nameSet: True id: Science front desk - - uid: 3976 - components: - - type: Transform - pos: -23.5,-31.5 - parent: 12 - uid: 3977 components: - type: Transform @@ -175417,16 +171570,6 @@ entities: - SurveillanceCameraScience nameSet: True id: Robotics - - uid: 21970 - components: - - type: Transform - pos: -20.5,-25.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science entrance airlock - uid: 28803 components: - type: Transform @@ -175451,17 +171594,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Armory entrance - - uid: 3050 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,56.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brigmed - uid: 8717 components: - type: Transform @@ -175581,16 +171713,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Armory - - uid: 23779 - components: - - type: Transform - pos: -46.5,50.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's office - uid: 23780 components: - type: Transform @@ -175802,16 +171924,6 @@ entities: - SurveillanceCameraService nameSet: True id: Reporter's room - - uid: 21971 - components: - - type: Transform - pos: 20.5,26.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Musical observitory - uid: 24194 components: - type: Transform @@ -176029,17 +172141,6 @@ entities: - SurveillanceCameraSupply nameSet: True id: Salvage locker room - - uid: 9832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-14.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo dock - uid: 9833 components: - type: Transform @@ -176179,6 +172280,12 @@ entities: - type: Transform pos: -52.717888,28.43466 parent: 12 + - uid: 19562 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 41.515606,-12.499336 + parent: 12 - proto: SyringeInaprovaline entities: - uid: 1842 @@ -176244,16 +172351,6 @@ entities: - type: Transform pos: -30.5,-21.5 parent: 12 - - uid: 1717 - components: - - type: Transform - pos: -26.5,-31.5 - parent: 12 - - uid: 1718 - components: - - type: Transform - pos: -25.5,-31.5 - parent: 12 - uid: 1719 components: - type: Transform @@ -176304,11 +172401,6 @@ entities: - type: Transform pos: -42.5,-41.5 parent: 12 - - uid: 2028 - components: - - type: Transform - pos: -22.5,-29.5 - parent: 12 - uid: 2112 components: - type: Transform @@ -176548,6 +172640,18 @@ entities: - type: Transform pos: 16.5,-15.5 parent: 12 + - uid: 4935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,22.5 + parent: 12 + - uid: 4936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,22.5 + parent: 12 - uid: 5015 components: - type: Transform @@ -176708,6 +172812,16 @@ entities: - type: Transform pos: -13.5,-50.5 parent: 12 + - uid: 9056 + components: + - type: Transform + pos: 2.5,11.5 + parent: 12 + - uid: 9077 + components: + - type: Transform + pos: 38.5,-31.5 + parent: 12 - uid: 9405 components: - type: Transform @@ -176719,6 +172833,11 @@ entities: - type: Transform pos: -5.5,-52.5 parent: 12 + - uid: 9679 + components: + - type: Transform + pos: 3.5,11.5 + parent: 12 - uid: 9743 components: - type: Transform @@ -176729,12 +172848,6 @@ entities: - type: Transform pos: 8.5,-9.5 parent: 12 - - uid: 9855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,18.5 - parent: 12 - uid: 9992 components: - type: Transform @@ -176795,6 +172908,11 @@ entities: - type: Transform pos: -26.5,-8.5 parent: 12 + - uid: 10630 + components: + - type: Transform + pos: 52.5,46.5 + parent: 12 - uid: 10888 components: - type: Transform @@ -176807,11 +172925,15 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-2.5 parent: 12 - - uid: 10985 + - uid: 11040 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,19.5 + pos: 49.5,46.5 + parent: 12 + - uid: 11325 + components: + - type: Transform + pos: -19.5,-27.5 parent: 12 - uid: 11346 components: @@ -176863,6 +172985,16 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-44.5 parent: 12 + - uid: 12671 + components: + - type: Transform + pos: 48.5,46.5 + parent: 12 + - uid: 12673 + components: + - type: Transform + pos: 49.5,48.5 + parent: 12 - uid: 12717 components: - type: Transform @@ -176927,31 +173059,11 @@ entities: - type: Transform pos: 27.5,37.5 parent: 12 - - uid: 13976 - components: - - type: Transform - pos: 48.5,46.5 - parent: 12 - - uid: 13977 - components: - - type: Transform - pos: 49.5,46.5 - parent: 12 - uid: 13978 components: - type: Transform pos: 49.5,47.5 parent: 12 - - uid: 13979 - components: - - type: Transform - pos: 49.5,48.5 - parent: 12 - - uid: 13980 - components: - - type: Transform - pos: 52.5,46.5 - parent: 12 - uid: 13981 components: - type: Transform @@ -176962,11 +173074,6 @@ entities: - type: Transform pos: 52.5,48.5 parent: 12 - - uid: 13983 - components: - - type: Transform - pos: 53.5,46.5 - parent: 12 - uid: 14516 components: - type: Transform @@ -177097,12 +173204,6 @@ entities: - type: Transform pos: 34.5,53.5 parent: 12 - - uid: 15671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,21.5 - parent: 12 - uid: 16307 components: - type: Transform @@ -177221,6 +173322,11 @@ entities: rot: 3.141592653589793 rad pos: -40.5,45.5 parent: 12 + - uid: 19279 + components: + - type: Transform + pos: 53.5,46.5 + parent: 12 - uid: 19398 components: - type: Transform @@ -177236,6 +173342,11 @@ entities: - type: Transform pos: -42.5,61.5 parent: 12 + - uid: 19436 + components: + - type: Transform + pos: -34.5,68.5 + parent: 12 - uid: 19872 components: - type: Transform @@ -178095,11 +174206,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,71.5 parent: 12 - - uid: 31903 - components: - - type: Transform - pos: 59.5,9.5 - parent: 12 - proto: TableCarpet entities: - uid: 22653 @@ -178268,6 +174374,11 @@ entities: parent: 12 - proto: TableFrame entities: + - uid: 17599 + components: + - type: Transform + pos: 38.5,-32.5 + parent: 12 - uid: 30485 components: - type: Transform @@ -178592,22 +174703,12 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,65.5 parent: 12 - - uid: 12011 - components: - - type: Transform - pos: 57.5,-6.5 - parent: 12 - uid: 12114 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-45.5 parent: 12 - - uid: 13009 - components: - - type: Transform - pos: 56.5,-6.5 - parent: 12 - uid: 13789 components: - type: Transform @@ -178874,6 +174975,12 @@ entities: - type: Transform pos: -43.5,32.5 parent: 12 + - uid: 19818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-4.5 + parent: 12 - uid: 19966 components: - type: Transform @@ -178889,6 +174996,12 @@ entities: - type: Transform pos: -24.5,-42.5 parent: 12 + - uid: 22536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-5.5 + parent: 12 - uid: 22613 components: - type: Transform @@ -178956,12 +175069,6 @@ entities: - type: Transform pos: -18.5,-19.5 parent: 12 - - uid: 27353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-5.5 - parent: 12 - uid: 28260 components: - type: Transform @@ -179738,26 +175845,26 @@ entities: parent: 12 - proto: TegCenter entities: - - uid: 26368 + - uid: 12047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,18.5 + rot: -1.5707963267948966 rad + pos: 11.5,15.5 parent: 12 - proto: TegCirculator entities: - - uid: 11064 + - uid: 3132 components: - type: Transform - pos: 11.5,18.5 + rot: 3.141592653589793 rad + pos: 10.5,15.5 parent: 12 - type: PointLight color: '#FF3300FF' - - uid: 11126 + - uid: 11944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,18.5 + pos: 12.5,15.5 parent: 12 - type: PointLight color: '#FF3300FF' @@ -179831,122 +175938,109 @@ entities: parent: 12 - proto: TeslaCoil entities: - - uid: 3020 + - uid: 6741 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: 71.5,-0.5 + pos: 62.5,10.5 parent: 12 - - uid: 3089 + - type: Physics + bodyType: Dynamic + - uid: 7152 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: 71.5,9.5 + pos: 62.5,12.5 parent: 12 - - uid: 8439 + - type: Physics + bodyType: Dynamic + - uid: 10923 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: 77.5,5.5 + pos: 61.5,11.5 parent: 12 - - uid: 8709 + - type: Physics + bodyType: Dynamic + - uid: 11019 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: 73.5,-0.5 + pos: 62.5,11.5 parent: 12 - - uid: 9308 + - type: Physics + bodyType: Dynamic + - uid: 11039 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: 77.5,3.5 + pos: 61.5,10.5 parent: 12 - - uid: 9414 + - type: Physics + bodyType: Dynamic + - uid: 11435 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: 73.5,9.5 - parent: 12 -- proto: TeslaCoilFlatpack - entities: - - uid: 5187 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 61.233635,-0.31611788 + pos: 61.5,12.5 parent: 12 + - type: Physics + bodyType: Dynamic - proto: TeslaGenerator entities: - - uid: 5158 + - uid: 4988 components: - type: Transform - pos: 60.5,0.5 + pos: 60.5,10.5 parent: 12 - proto: TeslaGroundingRod entities: - - uid: 3127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,10.5 - parent: 12 - - uid: 8846 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,7.5 - parent: 12 - - uid: 8856 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,10.5 - parent: 12 - - uid: 8857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-1.5 - parent: 12 - - uid: 9406 + - uid: 5528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,1.5 + anchored: False + pos: 59.5,12.5 parent: 12 - - uid: 9456 + - type: Physics + bodyType: Dynamic + - uid: 11304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-1.5 + anchored: False + pos: 59.5,11.5 parent: 12 - - uid: 26527 + - type: Physics + bodyType: Dynamic + - uid: 15687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,1.5 + anchored: False + pos: 60.5,12.5 parent: 12 - - uid: 26528 + - type: Physics + bodyType: Dynamic + - uid: 16349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,7.5 + anchored: False + pos: 60.5,11.5 parent: 12 -- proto: TeslaGroundingRodFlatpack + - type: Physics + bodyType: Dynamic +- proto: ThermomachineFreezerMachineCircuitBoard entities: - - uid: 21621 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 60.604073,-0.31611776 - parent: 12 - - uid: 27003 + - uid: 11244 components: - type: Transform - pos: 60.715595,-0.57507586 + rot: -25.132741228718352 rad + pos: 2.7921197,11.371174 parent: 12 -- proto: ThermomachineFreezerMachineCircuitBoard - entities: - uid: 23708 components: - type: Transform @@ -179954,6 +176048,12 @@ entities: parent: 12 - proto: ThermomachineHeaterMachineCircuitBoard entities: + - uid: 1917 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: 2.927537,11.631771 + parent: 12 - uid: 23707 components: - type: Transform @@ -180012,6 +176112,12 @@ entities: parent: 12 - proto: ToiletDirtyWater entities: + - uid: 2845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-30.5 + parent: 12 - uid: 4218 components: - type: Transform @@ -180112,6 +176218,12 @@ entities: parent: 12 - proto: ToolboxElectricalFilled entities: + - uid: 2259 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: 1.41712,11.464989 + parent: 12 - uid: 3586 components: - type: Transform @@ -180233,6 +176345,12 @@ entities: - type: Transform pos: -46.53791,-40.44164 parent: 12 + - uid: 2021 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: 1.6879535,11.527533 + parent: 12 - uid: 5912 components: - type: Transform @@ -180344,7 +176462,7 @@ entities: - uid: 24128 components: - type: Transform - pos: 53.060947,46.619484 + pos: 58.407543,47.57981 parent: 12 - proto: ToyFigurineBoxer entities: @@ -180476,7 +176594,8 @@ entities: - uid: 2497 components: - type: Transform - pos: -19.357992,-38.81534 + rot: -12.566370614359172 rad + pos: -19.476633,-39.26552 parent: 12 - proto: ToyFigurineMime entities: @@ -180540,7 +176659,8 @@ entities: - uid: 23416 components: - type: Transform - pos: -37.477703,53.58296 + rot: -6.283185307179586 rad + pos: -39.49372,55.609993 parent: 12 - proto: ToyFigurineWizardFake entities: @@ -180678,8 +176798,7 @@ entities: - uid: 28715 components: - type: Transform - rot: -69.11503837897548 rad - pos: 56.595398,-6.4191794 + pos: 52.670685,1.6892309 parent: 12 - proto: TrumpetInstrument entities: @@ -181741,17 +177860,17 @@ entities: parent: 12 - proto: VendingMachineRoboDrobe entities: - - uid: 1811 + - uid: 12354 components: - type: Transform - pos: -21.5,-31.5 + pos: -23.5,-27.5 parent: 12 - proto: VendingMachineRobotics entities: - - uid: 2025 + - uid: 289 components: - type: Transform - pos: -23.5,-27.5 + pos: -26.5,-31.5 parent: 12 - proto: VendingMachineSalvage entities: @@ -181886,16 +178005,6 @@ entities: parent: 12 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 570 - components: - - type: Transform - pos: 57.5,8.5 - parent: 12 - - uid: 16777 - components: - - type: Transform - pos: 10.5,-13.5 - parent: 12 - uid: 27384 components: - type: Transform @@ -182185,12 +178294,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,6.5 parent: 12 - - uid: 68 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-20.5 - parent: 12 - uid: 76 components: - type: Transform @@ -182201,11 +178304,6 @@ entities: - type: Transform pos: -31.5,12.5 parent: 12 - - uid: 79 - components: - - type: Transform - pos: 48.5,-2.5 - parent: 12 - uid: 80 components: - type: Transform @@ -182587,6 +178685,11 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-17.5 parent: 12 + - uid: 206 + components: + - type: Transform + pos: 7.5,27.5 + parent: 12 - uid: 211 components: - type: Transform @@ -182635,6 +178738,11 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-21.5 parent: 12 + - uid: 227 + components: + - type: Transform + pos: 6.5,27.5 + parent: 12 - uid: 232 components: - type: Transform @@ -182645,6 +178753,11 @@ entities: - type: Transform pos: -7.5,-19.5 parent: 12 + - uid: 249 + components: + - type: Transform + pos: 56.5,12.5 + parent: 12 - uid: 282 components: - type: Transform @@ -182656,12 +178769,6 @@ entities: - type: Transform pos: 39.5,-9.5 parent: 12 - - uid: 327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-18.5 - parent: 12 - uid: 376 components: - type: Transform @@ -182672,11 +178779,6 @@ entities: - type: Transform pos: -30.5,-9.5 parent: 12 - - uid: 383 - components: - - type: Transform - pos: -12.5,-19.5 - parent: 12 - uid: 386 components: - type: Transform @@ -182794,27 +178896,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,0.5 parent: 12 - - uid: 493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-26.5 - parent: 12 - - uid: 494 - components: - - type: Transform - pos: -19.5,-26.5 - parent: 12 - - uid: 495 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 12 - - uid: 505 - components: - - type: Transform - pos: -22.5,-32.5 - parent: 12 - uid: 516 components: - type: Transform @@ -182830,16 +178911,6 @@ entities: - type: Transform pos: -34.5,-18.5 parent: 12 - - uid: 524 - components: - - type: Transform - pos: -20.5,-32.5 - parent: 12 - - uid: 525 - components: - - type: Transform - pos: -21.5,-32.5 - parent: 12 - uid: 532 components: - type: Transform @@ -182860,15 +178931,22 @@ entities: - type: Transform pos: -24.5,-32.5 parent: 12 - - uid: 540 + - uid: 551 components: - type: Transform - pos: -23.5,-32.5 + pos: -13.5,-25.5 parent: 12 - - uid: 551 + - uid: 564 components: - type: Transform - pos: -13.5,-25.5 + rot: 3.141592653589793 rad + pos: -5.5,-17.5 + parent: 12 + - uid: 566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-14.5 parent: 12 - uid: 569 components: @@ -183056,12 +179134,6 @@ entities: - type: Transform pos: 39.5,-10.5 parent: 12 - - uid: 697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-3.5 - parent: 12 - uid: 703 components: - type: Transform @@ -183273,12 +179345,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,5.5 parent: 12 - - uid: 908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-1.5 - parent: 12 - uid: 923 components: - type: Transform @@ -183373,6 +179439,16 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-51.5 parent: 12 + - uid: 1057 + components: + - type: Transform + pos: -47.5,52.5 + parent: 12 + - uid: 1058 + components: + - type: Transform + pos: -47.5,51.5 + parent: 12 - uid: 1075 components: - type: Transform @@ -183442,23 +179518,11 @@ entities: - type: Transform pos: -54.5,-45.5 parent: 12 - - uid: 1538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,50.5 - parent: 12 - uid: 1549 components: - type: Transform pos: 26.5,-6.5 parent: 12 - - uid: 1551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 12 - uid: 1556 components: - type: Transform @@ -183508,12 +179572,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,2.5 parent: 12 - - uid: 2031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,50.5 - parent: 12 - uid: 2032 components: - type: Transform @@ -183525,6 +179583,12 @@ entities: - type: Transform pos: -54.5,-43.5 parent: 12 + - uid: 2052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,11.5 + parent: 12 - uid: 2078 components: - type: Transform @@ -183617,12 +179681,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,3.5 parent: 12 - - uid: 2305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,17.5 - parent: 12 - uid: 2325 components: - type: Transform @@ -183716,26 +179774,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,60.5 parent: 12 - - uid: 2654 - components: - - type: Transform - pos: -9.5,-62.5 - parent: 12 - - uid: 2655 - components: - - type: Transform - pos: -9.5,-61.5 - parent: 12 - - uid: 2656 - components: - - type: Transform - pos: -9.5,-60.5 - parent: 12 - - uid: 2664 - components: - - type: Transform - pos: -7.5,-60.5 - parent: 12 - uid: 2781 components: - type: Transform @@ -183762,6 +179800,11 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,1.5 parent: 12 + - uid: 2878 + components: + - type: Transform + pos: 63.5,11.5 + parent: 12 - uid: 2883 components: - type: Transform @@ -183824,12 +179867,6 @@ entities: - type: Transform pos: 4.5,-33.5 parent: 12 - - uid: 3012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,12.5 - parent: 12 - uid: 3013 components: - type: Transform @@ -183851,6 +179888,12 @@ entities: - type: Transform pos: -10.5,3.5 parent: 12 + - uid: 3516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-4.5 + parent: 12 - uid: 3631 components: - type: Transform @@ -183879,24 +179922,12 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-2.5 parent: 12 - - uid: 3945 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,5.5 - parent: 12 - uid: 4013 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,11.5 parent: 12 - - uid: 4055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,13.5 - parent: 12 - uid: 4103 components: - type: Transform @@ -183907,6 +179938,11 @@ entities: - type: Transform pos: 7.5,-53.5 parent: 12 + - uid: 4386 + components: + - type: Transform + pos: 57.5,8.5 + parent: 12 - uid: 4389 components: - type: Transform @@ -184055,22 +180091,37 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,21.5 parent: 12 + - uid: 4680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-3.5 + parent: 12 + - uid: 4681 + components: + - type: Transform + pos: 10.5,22.5 + parent: 12 - uid: 4682 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 12 - - uid: 4685 + - uid: 4683 components: - type: Transform - pos: 10.5,4.5 + pos: 12.5,20.5 parent: 12 - - uid: 4693 + - uid: 4684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,13.5 + pos: 10.5,20.5 + parent: 12 + - uid: 4685 + components: + - type: Transform + pos: 10.5,4.5 parent: 12 - uid: 4714 components: @@ -184130,24 +180181,12 @@ entities: - type: Transform pos: 26.5,-8.5 parent: 12 - - uid: 4936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-4.5 - parent: 12 - uid: 4949 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-9.5 parent: 12 - - uid: 4952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,12.5 - parent: 12 - uid: 4955 components: - type: Transform @@ -184160,12 +180199,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-1.5 parent: 12 - - uid: 4988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-0.5 - parent: 12 - uid: 4992 components: - type: Transform @@ -184198,12 +180231,6 @@ entities: - type: Transform pos: 23.5,-11.5 parent: 12 - - uid: 5033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,13.5 - parent: 12 - uid: 5040 components: - type: Transform @@ -184298,11 +180325,6 @@ entities: - type: Transform pos: 37.5,-4.5 parent: 12 - - uid: 5111 - components: - - type: Transform - pos: 60.5,9.5 - parent: 12 - uid: 5112 components: - type: Transform @@ -184313,12 +180335,6 @@ entities: - type: Transform pos: -27.5,8.5 parent: 12 - - uid: 5126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,6.5 - parent: 12 - uid: 5139 components: - type: Transform @@ -184377,12 +180393,6 @@ entities: - type: Transform pos: 12.5,-12.5 parent: 12 - - uid: 5214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,11.5 - parent: 12 - uid: 5220 components: - type: Transform @@ -184548,27 +180558,15 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-19.5 parent: 12 - - uid: 5519 - components: - - type: Transform - pos: 34.5,-15.5 - parent: 12 - - uid: 5527 - components: - - type: Transform - pos: 48.5,-3.5 - parent: 12 - - uid: 5528 + - uid: 5485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,12.5 + pos: 63.5,12.5 parent: 12 - - uid: 5553 + - uid: 5519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,10.5 + pos: 34.5,-15.5 parent: 12 - uid: 5562 components: @@ -184605,6 +180603,18 @@ entities: - type: Transform pos: 35.5,-16.5 parent: 12 + - uid: 5618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-17.5 + parent: 12 + - uid: 5620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-15.5 + parent: 12 - uid: 5628 components: - type: Transform @@ -184639,12 +180649,6 @@ entities: - type: Transform pos: 13.5,6.5 parent: 12 - - uid: 5815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,14.5 - parent: 12 - uid: 5820 components: - type: Transform @@ -184666,6 +180670,12 @@ entities: - type: Transform pos: 27.5,4.5 parent: 12 + - uid: 5891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,14.5 + parent: 12 - uid: 5904 components: - type: Transform @@ -184786,12 +180796,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-40.5 parent: 12 - - uid: 6309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-41.5 - parent: 12 - uid: 6317 components: - type: Transform @@ -184909,6 +180913,11 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-10.5 parent: 12 + - uid: 7278 + components: + - type: Transform + pos: 5.5,19.5 + parent: 12 - uid: 7286 components: - type: Transform @@ -184953,12 +180962,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,18.5 parent: 12 - - uid: 7360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-6.5 - parent: 12 - uid: 7363 components: - type: Transform @@ -185145,12 +181148,6 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,-27.5 parent: 12 - - uid: 7524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-6.5 - parent: 12 - uid: 7525 components: - type: Transform @@ -185169,48 +181166,12 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-9.5 parent: 12 - - uid: 7528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-10.5 - parent: 12 - - uid: 7529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-10.5 - parent: 12 - - uid: 7530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-10.5 - parent: 12 - - uid: 7531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-9.5 - parent: 12 - uid: 7532 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-9.5 parent: 12 - - uid: 7533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-9.5 - parent: 12 - - uid: 7534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-9.5 - parent: 12 - uid: 7535 components: - type: Transform @@ -185240,6 +181201,12 @@ entities: - type: Transform pos: -9.5,-4.5 parent: 12 + - uid: 7571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-6.5 + parent: 12 - uid: 7575 components: - type: Transform @@ -185648,42 +181615,6 @@ entities: - type: Transform pos: 31.5,1.5 parent: 12 - - uid: 8974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-4.5 - parent: 12 - - uid: 8976 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-4.5 - parent: 12 - - uid: 9008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-4.5 - parent: 12 - - uid: 9009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-4.5 - parent: 12 - - uid: 9010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-4.5 - parent: 12 - - uid: 9012 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-4.5 - parent: 12 - uid: 9013 components: - type: Transform @@ -185696,23 +181627,22 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,-4.5 parent: 12 - - uid: 9055 + - uid: 9041 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,1.5 + pos: 57.5,-6.5 parent: 12 - - uid: 9056 + - uid: 9053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,2.5 + rot: 3.141592653589793 rad + pos: 12.5,23.5 parent: 12 - - uid: 9057 + - uid: 9054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-2.5 + pos: 10.5,19.5 parent: 12 - uid: 9058 components: @@ -185765,6 +181695,11 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,8.5 parent: 12 + - uid: 9308 + components: + - type: Transform + pos: 12.5,19.5 + parent: 12 - uid: 9379 components: - type: Transform @@ -185792,24 +181727,12 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 12 - - uid: 9432 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,9.5 - parent: 12 - uid: 9443 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-26.5 parent: 12 - - uid: 9502 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,20.5 - parent: 12 - uid: 9506 components: - type: Transform @@ -185839,17 +181762,10 @@ entities: rot: 3.141592653589793 rad pos: -51.5,56.5 parent: 12 - - uid: 9526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,10.5 - parent: 12 - - uid: 9527 + - uid: 9533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,17.5 + pos: 62.5,8.5 parent: 12 - uid: 9534 components: @@ -185857,18 +181773,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,60.5 parent: 12 - - uid: 9540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,11.5 - parent: 12 - - uid: 9542 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,12.5 - parent: 12 - uid: 9545 components: - type: Transform @@ -185880,6 +181784,11 @@ entities: - type: Transform pos: 39.5,-15.5 parent: 12 + - uid: 9562 + components: + - type: Transform + pos: 56.5,10.5 + parent: 12 - uid: 9589 components: - type: Transform @@ -185892,12 +181801,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,12.5 parent: 12 - - uid: 9592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,17.5 - parent: 12 - uid: 9613 components: - type: Transform @@ -185922,17 +181825,17 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,13.5 parent: 12 - - uid: 9642 + - uid: 9640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,12.5 + rot: 3.141592653589793 rad + pos: 17.5,23.5 parent: 12 - - uid: 9643 + - uid: 9642 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,13.5 + pos: 17.5,12.5 parent: 12 - uid: 9645 components: @@ -185940,69 +181843,33 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,11.5 parent: 12 - - uid: 9650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,13.5 - parent: 12 - uid: 9652 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,65.5 parent: 12 - - uid: 9662 + - uid: 9669 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-2.5 + rot: 1.5707963267948966 rad + pos: 3.5,21.5 parent: 12 - uid: 9675 components: - type: Transform pos: 48.5,7.5 parent: 12 - - uid: 9679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-2.5 - parent: 12 - - uid: 9681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,8.5 - parent: 12 - - uid: 9701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,13.5 - parent: 12 - uid: 9704 components: - type: Transform pos: 20.5,8.5 parent: 12 - - uid: 9713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,11.5 - parent: 12 - - uid: 9716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,14.5 - parent: 12 - - uid: 9726 + - uid: 9715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,17.5 + rot: 1.5707963267948966 rad + pos: 5.5,23.5 parent: 12 - uid: 9729 components: @@ -186010,23 +181877,11 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,10.5 parent: 12 - - uid: 9731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,12.5 - parent: 12 - - uid: 9734 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-62.5 - parent: 12 - - uid: 9747 + - uid: 9750 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-60.5 + pos: 47.5,-6.5 parent: 12 - uid: 9766 components: @@ -186201,12 +182056,6 @@ entities: - type: Transform pos: -56.5,20.5 parent: 12 - - uid: 10381 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-1.5 - parent: 12 - uid: 10396 components: - type: Transform @@ -186344,24 +182193,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,14.5 parent: 12 - - uid: 10603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,12.5 - parent: 12 - - uid: 10604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,13.5 - parent: 12 - - uid: 10605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,14.5 - parent: 12 - uid: 10608 components: - type: Transform @@ -186380,29 +182211,11 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,19.5 parent: 12 - - uid: 10617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,12.5 - parent: 12 - - uid: 10618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,12.5 - parent: 12 - - uid: 10628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,23.5 - parent: 12 - - uid: 10630 + - uid: 10632 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,22.5 + pos: 1.5,21.5 parent: 12 - uid: 10633 components: @@ -186410,18 +182223,6 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-50.5 parent: 12 - - uid: 10636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,12.5 - parent: 12 - - uid: 10637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,14.5 - parent: 12 - uid: 10639 components: - type: Transform @@ -186508,8 +182309,7 @@ entities: - uid: 10655 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,13.5 + pos: 12.5,22.5 parent: 12 - uid: 10669 components: @@ -186665,47 +182465,11 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,33.5 parent: 12 - - uid: 10790 + - uid: 10841 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,12.5 - parent: 12 - - uid: 10791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,13.5 - parent: 12 - - uid: 10792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,13.5 - parent: 12 - - uid: 10793 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-4.5 - parent: 12 - - uid: 10795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,13.5 - parent: 12 - - uid: 10826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,10.5 - parent: 12 - - uid: 10833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,6.5 + pos: -3.5,-17.5 parent: 12 - uid: 10842 components: @@ -186719,6 +182483,12 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,-5.5 parent: 12 + - uid: 10890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-6.5 + parent: 12 - uid: 10909 components: - type: Transform @@ -186734,18 +182504,6 @@ entities: - type: Transform pos: 38.5,4.5 parent: 12 - - uid: 10937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,13.5 - parent: 12 - - uid: 10938 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-5.5 - parent: 12 - uid: 10939 components: - type: Transform @@ -186776,6 +182534,18 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,73.5 parent: 12 + - uid: 10980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,11.5 + parent: 12 + - uid: 10984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,22.5 + parent: 12 - uid: 11000 components: - type: Transform @@ -186793,35 +182563,10 @@ entities: - type: Transform pos: -29.5,-9.5 parent: 12 - - uid: 11035 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-4.5 - parent: 12 - uid: 11038 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,19.5 - parent: 12 - - uid: 11039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,20.5 - parent: 12 - - uid: 11048 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-4.5 - parent: 12 - - uid: 11050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-4.5 + pos: 5.5,20.5 parent: 12 - uid: 11051 components: @@ -186829,12 +182574,6 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,-4.5 parent: 12 - - uid: 11053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-4.5 - parent: 12 - uid: 11128 components: - type: Transform @@ -187014,66 +182753,6 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,27.5 parent: 12 - - uid: 11199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,23.5 - parent: 12 - - uid: 11200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,23.5 - parent: 12 - - uid: 11201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,23.5 - parent: 12 - - uid: 11202 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,24.5 - parent: 12 - - uid: 11204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,25.5 - parent: 12 - - uid: 11205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 12 - - uid: 11206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,27.5 - parent: 12 - - uid: 11207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,29.5 - parent: 12 - - uid: 11209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-4.5 - parent: 12 - - uid: 11213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,22.5 - parent: 12 - uid: 11217 components: - type: Transform @@ -187200,11 +182879,11 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,22.5 parent: 12 - - uid: 11276 + - uid: 11274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-4.5 + rot: -1.5707963267948966 rad + pos: 62.5,1.5 parent: 12 - uid: 11296 components: @@ -187212,11 +182891,23 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,71.5 parent: 12 - - uid: 11306 + - uid: 11319 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,22.5 + pos: 0.5,15.5 + parent: 12 + - uid: 11327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,23.5 + parent: 12 + - uid: 11329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,21.5 parent: 12 - uid: 11389 components: @@ -187265,11 +182956,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,19.5 parent: 12 - - uid: 11429 - components: - - type: Transform - pos: -6.5,-62.5 - parent: 12 - uid: 11439 components: - type: Transform @@ -187300,31 +182986,6 @@ entities: - type: Transform pos: 50.5,7.5 parent: 12 - - uid: 11453 - components: - - type: Transform - pos: 54.5,13.5 - parent: 12 - - uid: 11456 - components: - - type: Transform - pos: 53.5,13.5 - parent: 12 - - uid: 11458 - components: - - type: Transform - pos: 53.5,15.5 - parent: 12 - - uid: 11474 - components: - - type: Transform - pos: -7.5,-62.5 - parent: 12 - - uid: 11477 - components: - - type: Transform - pos: -8.5,-62.5 - parent: 12 - uid: 11521 components: - type: Transform @@ -187623,16 +183284,16 @@ entities: - type: Transform pos: 42.5,14.5 parent: 12 - - uid: 12100 + - uid: 12011 components: - type: Transform - pos: 43.5,13.5 + rot: 3.141592653589793 rad + pos: 48.5,-6.5 parent: 12 - - uid: 12110 + - uid: 12100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-4.5 + pos: 43.5,13.5 parent: 12 - uid: 12217 components: @@ -187724,16 +183385,15 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-40.5 parent: 12 - - uid: 12573 + - uid: 12641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,28.5 + pos: 35.5,5.5 parent: 12 - - uid: 12641 + - uid: 12714 components: - type: Transform - pos: 35.5,5.5 + pos: 56.5,9.5 parent: 12 - uid: 12810 components: @@ -188529,6 +184189,12 @@ entities: - type: Transform pos: 50.5,5.5 parent: 12 + - uid: 15999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,0.5 + parent: 12 - uid: 16001 components: - type: Transform @@ -188544,6 +184210,11 @@ entities: - type: Transform pos: 50.5,4.5 parent: 12 + - uid: 16360 + components: + - type: Transform + pos: 56.5,11.5 + parent: 12 - uid: 16646 components: - type: Transform @@ -190105,11 +185776,6 @@ entities: - type: Transform pos: -30.5,66.5 parent: 12 - - uid: 22080 - components: - - type: Transform - pos: 65.5,14.5 - parent: 12 - uid: 22081 components: - type: Transform @@ -190140,31 +185806,11 @@ entities: - type: Transform pos: 56.5,13.5 parent: 12 - - uid: 22089 - components: - - type: Transform - pos: 64.5,13.5 - parent: 12 - uid: 22091 components: - type: Transform pos: 60.5,13.5 parent: 12 - - uid: 22092 - components: - - type: Transform - pos: 60.5,14.5 - parent: 12 - - uid: 22124 - components: - - type: Transform - pos: 69.5,13.5 - parent: 12 - - uid: 22153 - components: - - type: Transform - pos: 75.5,13.5 - parent: 12 - uid: 22164 components: - type: Transform @@ -190315,35 +185961,34 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,74.5 parent: 12 - - uid: 23157 + - uid: 23162 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,-1.5 + pos: 52.5,-5.5 parent: 12 - - uid: 23159 + - uid: 23166 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,22.5 + rot: -1.5707963267948966 rad + pos: 18.5,8.5 parent: 12 - - uid: 23160 + - uid: 23171 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,22.5 + pos: 52.5,-3.5 parent: 12 - - uid: 23166 + - uid: 23177 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,8.5 + pos: -57.5,63.5 parent: 12 - - uid: 23177 + - uid: 23598 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,63.5 + pos: 46.5,-6.5 parent: 12 - uid: 23700 components: @@ -190386,11 +186031,6 @@ entities: - type: Transform pos: 48.5,66.5 parent: 12 - - uid: 23985 - components: - - type: Transform - pos: 60.5,8.5 - parent: 12 - uid: 24226 components: - type: Transform @@ -190454,24 +186094,12 @@ entities: - type: Transform pos: -30.5,-5.5 parent: 12 - - uid: 24453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-1.5 - parent: 12 - uid: 24460 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,71.5 parent: 12 - - uid: 24469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-61.5 - parent: 12 - uid: 24663 components: - type: Transform @@ -190510,15 +186138,15 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-18.5 parent: 12 - - uid: 25101 + - uid: 25135 components: - type: Transform - pos: 63.5,0.5 + pos: 63.5,8.5 parent: 12 - - uid: 25135 + - uid: 25136 components: - type: Transform - pos: 63.5,8.5 + pos: 45.5,-40.5 parent: 12 - uid: 25275 components: @@ -190543,12 +186171,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,56.5 parent: 12 - - uid: 25385 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,50.5 - parent: 12 - uid: 25391 components: - type: Transform @@ -190673,10 +186295,11 @@ entities: - type: Transform pos: -50.5,45.5 parent: 12 - - uid: 25527 + - uid: 25526 components: - type: Transform - pos: 3.5,18.5 + rot: 1.5707963267948966 rad + pos: 54.5,-6.5 parent: 12 - uid: 25551 components: @@ -190746,16 +186369,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,66.5 parent: 12 - - uid: 25835 - components: - - type: Transform - pos: 3.5,12.5 - parent: 12 - - uid: 25889 - components: - - type: Transform - pos: -20.5,-31.5 - parent: 12 - uid: 25902 components: - type: Transform @@ -190771,16 +186384,6 @@ entities: - type: Transform pos: -49.5,58.5 parent: 12 - - uid: 26007 - components: - - type: Transform - pos: -19.5,-31.5 - parent: 12 - - uid: 26045 - components: - - type: Transform - pos: -18.5,-31.5 - parent: 12 - uid: 26067 components: - type: Transform @@ -190792,12 +186395,6 @@ entities: rot: 3.141592653589793 rad pos: 63.5,-27.5 parent: 12 - - uid: 26104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 12 - uid: 26131 components: - type: Transform @@ -190854,24 +186451,12 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,11.5 parent: 12 - - uid: 26440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,4.5 - parent: 12 - uid: 26448 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,6.5 parent: 12 - - uid: 26469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-1.5 - parent: 12 - uid: 26472 components: - type: Transform @@ -190912,12 +186497,6 @@ entities: - type: Transform pos: 56.5,3.5 parent: 12 - - uid: 26489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-4.5 - parent: 12 - uid: 26492 components: - type: Transform @@ -190936,62 +186515,18 @@ entities: rot: 3.141592653589793 rad pos: 59.5,0.5 parent: 12 - - uid: 26563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,13.5 - parent: 12 - - uid: 26603 - components: - - type: Transform - pos: 65.5,13.5 - parent: 12 - - uid: 26605 - components: - - type: Transform - pos: 70.5,14.5 - parent: 12 - uid: 26611 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,6.5 parent: 12 - - uid: 26612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,7.5 - parent: 12 - uid: 26634 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-17.5 parent: 12 - - uid: 26637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,7.5 - parent: 12 - - uid: 26638 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-4.5 - parent: 12 - - uid: 26670 - components: - - type: Transform - pos: 66.5,13.5 - parent: 12 - - uid: 26786 - components: - - type: Transform - pos: 63.5,-0.5 - parent: 12 - uid: 26822 components: - type: Transform @@ -191015,44 +186550,12 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-16.5 parent: 12 - - uid: 26882 - components: - - type: Transform - pos: 56.5,-9.5 - parent: 12 - - uid: 27038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,20.5 - parent: 12 - - uid: 27043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,21.5 - parent: 12 - uid: 27050 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-13.5 parent: 12 - - uid: 27076 - components: - - type: Transform - pos: 67.5,13.5 - parent: 12 - - uid: 27091 - components: - - type: Transform - pos: 68.5,13.5 - parent: 12 - - uid: 27106 - components: - - type: Transform - pos: 55.5,13.5 - parent: 12 - uid: 27147 components: - type: Transform @@ -191151,12 +186654,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,61.5 parent: 12 - - uid: 27924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,21.5 - parent: 12 - uid: 27952 components: - type: Transform @@ -191368,12 +186865,6 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,8.5 parent: 12 - - uid: 28743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,10.5 - parent: 12 - uid: 28834 components: - type: Transform @@ -191687,30 +187178,18 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,22.5 parent: 12 - - uid: 31892 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,22.5 - parent: 12 - - uid: 31895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,18.5 - parent: 12 - - uid: 31906 +- proto: WallReinforcedRust + entities: + - uid: 191 components: - type: Transform - pos: 60.5,10.5 + pos: 63.5,10.5 parent: 12 -- proto: WallReinforcedRust - entities: - - uid: 499 + - uid: 383 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-18.5 + pos: 56.5,-6.5 parent: 12 - uid: 1880 components: @@ -191734,6 +187213,21 @@ entities: - type: Transform pos: -40.5,-55.5 parent: 12 + - uid: 4631 + components: + - type: Transform + pos: 49.5,2.5 + parent: 12 + - uid: 4757 + components: + - type: Transform + pos: 48.5,2.5 + parent: 12 + - uid: 4794 + components: + - type: Transform + pos: 47.5,2.5 + parent: 12 - uid: 4956 components: - type: Transform @@ -191745,16 +187239,21 @@ entities: rot: 3.141592653589793 rad pos: 38.5,0.5 parent: 12 + - uid: 5064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,1.5 + parent: 12 - uid: 5095 components: - type: Transform pos: -37.5,73.5 parent: 12 - - uid: 5110 + - uid: 5247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-7.5 + pos: 59.5,-5.5 parent: 12 - uid: 5794 components: @@ -191803,6 +187302,12 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-11.5 parent: 12 + - uid: 9612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 12 - uid: 9644 components: - type: Transform @@ -191844,6 +187349,11 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-53.5 parent: 12 + - uid: 10636 + components: + - type: Transform + pos: 52.5,-6.5 + parent: 12 - uid: 10666 components: - type: Transform @@ -191890,17 +187400,17 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,14.5 parent: 12 - - uid: 11268 + - uid: 11271 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,28.5 + pos: 5.5,29.5 parent: 12 - - uid: 11271 + - uid: 11275 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,29.5 + pos: 59.5,-3.5 parent: 12 - uid: 11278 components: @@ -191979,12 +187489,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,24.5 parent: 12 - - uid: 11510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,16.5 - parent: 12 - uid: 11550 components: - type: Transform @@ -192091,12 +187595,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,71.5 parent: 12 - - uid: 14197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,13.5 - parent: 12 - uid: 14555 components: - type: Transform @@ -192132,16 +187630,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,64.5 parent: 12 - - uid: 20187 - components: - - type: Transform - pos: -3.5,14.5 - parent: 12 - - uid: 21083 - components: - - type: Transform - pos: -4.5,13.5 - parent: 12 - uid: 22034 components: - type: Transform @@ -192167,16 +187655,16 @@ entities: - type: Transform pos: -49.5,-51.5 parent: 12 - - uid: 23898 + - uid: 23599 components: - type: Transform - pos: -57.5,-24.5 + rot: 3.141592653589793 rad + pos: 50.5,-6.5 parent: 12 - - uid: 25142 + - uid: 23898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-20.5 + pos: -57.5,-24.5 parent: 12 - uid: 25332 components: @@ -192237,48 +187725,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,70.5 parent: 12 - - uid: 26595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,0.5 - parent: 12 - - uid: 26608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-3.5 - parent: 12 - - uid: 26680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,11.5 - parent: 12 - - uid: 26691 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,14.5 - parent: 12 - - uid: 26697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-5.5 - parent: 12 - - uid: 26714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-5.5 - parent: 12 - - uid: 27020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,13.5 - parent: 12 - uid: 27035 components: - type: Transform @@ -192319,84 +187765,24 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,15.5 parent: 12 - - uid: 27972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,1.5 - parent: 12 - - uid: 27973 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-1.5 - parent: 12 - uid: 27974 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-6.5 parent: 12 - - uid: 27975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-4.5 - parent: 12 - - uid: 27976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-4.5 - parent: 12 - uid: 27977 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,7.5 parent: 12 - - uid: 27978 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,7.5 - parent: 12 - - uid: 27984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,11.5 - parent: 12 - - uid: 27993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-5.5 - parent: 12 - - uid: 28044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-5.5 - parent: 12 - uid: 28048 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-4.5 parent: 12 - - uid: 28051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,14.5 - parent: 12 - - uid: 28052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,15.5 - parent: 12 - uid: 28053 components: - type: Transform @@ -192439,54 +187825,12 @@ entities: rot: 3.141592653589793 rad pos: 57.5,13.5 parent: 12 - - uid: 28071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-4.5 - parent: 12 - uid: 28072 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,7.5 parent: 12 - - uid: 28075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-5.5 - parent: 12 - - uid: 28117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,3.5 - parent: 12 - - uid: 28118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-7.5 - parent: 12 - - uid: 28119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,0.5 - parent: 12 - - uid: 28121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,9.5 - parent: 12 - - uid: 28122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,7.5 - parent: 12 - uid: 28132 components: - type: Transform @@ -193424,6 +188768,12 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-40.5 parent: 12 + - uid: 1068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-26.5 + parent: 12 - uid: 1173 components: - type: Transform @@ -193566,30 +188916,6 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,49.5 parent: 12 - - uid: 2463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-32.5 - parent: 12 - - uid: 2464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-32.5 - parent: 12 - - uid: 2465 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-32.5 - parent: 12 - - uid: 2466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-32.5 - parent: 12 - uid: 2467 components: - type: Transform @@ -194245,11 +189571,27 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-40.5 parent: 12 + - uid: 5126 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 12 + - uid: 5129 + components: + - type: Transform + pos: -22.5,-31.5 + parent: 12 - uid: 5178 components: - type: Transform pos: -26.5,-17.5 parent: 12 + - uid: 5207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-9.5 + parent: 12 - uid: 5248 components: - type: Transform @@ -194345,6 +189687,11 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-30.5 parent: 12 + - uid: 5845 + components: + - type: Transform + pos: -49.5,50.5 + parent: 12 - uid: 5867 components: - type: Transform @@ -194566,12 +189913,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-32.5 parent: 12 - - uid: 6775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-33.5 - parent: 12 - uid: 6776 components: - type: Transform @@ -194583,18 +189924,6 @@ entities: - type: Transform pos: -17.5,69.5 parent: 12 - - uid: 7088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-33.5 - parent: 12 - - uid: 7097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-33.5 - parent: 12 - uid: 7101 components: - type: Transform @@ -194625,30 +189954,12 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-25.5 parent: 12 - - uid: 7109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-33.5 - parent: 12 - - uid: 7110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-32.5 - parent: 12 - uid: 7111 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-31.5 parent: 12 - - uid: 7112 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-30.5 - parent: 12 - uid: 7113 components: - type: Transform @@ -194661,24 +189972,12 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-29.5 parent: 12 - - uid: 7115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-29.5 - parent: 12 - uid: 7116 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-29.5 parent: 12 - - uid: 7117 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-29.5 - parent: 12 - uid: 7118 components: - type: Transform @@ -195055,10 +190354,10 @@ entities: - type: Transform pos: -42.5,71.5 parent: 12 - - uid: 9140 + - uid: 9180 components: - type: Transform - pos: 45.5,-40.5 + pos: 54.5,-7.5 parent: 12 - uid: 9366 components: @@ -195092,6 +190391,18 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,24.5 parent: 12 + - uid: 9664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-29.5 + parent: 12 + - uid: 9666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-29.5 + parent: 12 - uid: 9736 components: - type: Transform @@ -195286,12 +190597,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,14.5 parent: 12 - - uid: 10634 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,17.5 - parent: 12 - uid: 10665 components: - type: Transform @@ -195344,6 +190649,17 @@ entities: - type: Transform pos: -59.5,-58.5 parent: 12 + - uid: 10887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-60.5 + parent: 12 + - uid: 10891 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 12 - uid: 10895 components: - type: Transform @@ -195450,17 +190766,35 @@ entities: - type: Transform pos: -47.5,66.5 parent: 12 - - uid: 11333 + - uid: 11308 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,-20.5 + pos: -8.5,-61.5 parent: 12 - - uid: 11355 + - uid: 11309 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,20.5 + pos: -5.5,-60.5 + parent: 12 + - uid: 11313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-27.5 + parent: 12 + - uid: 11317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-60.5 + parent: 12 + - uid: 11333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-20.5 parent: 12 - uid: 11363 components: @@ -196310,6 +191644,72 @@ entities: - type: Transform pos: 43.5,40.5 parent: 12 + - uid: 12685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-31.5 + parent: 12 + - uid: 12686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-30.5 + parent: 12 + - uid: 12687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-26.5 + parent: 12 + - uid: 12688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-26.5 + parent: 12 + - uid: 12689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-31.5 + parent: 12 + - uid: 12690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-31.5 + parent: 12 + - uid: 12691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-32.5 + parent: 12 + - uid: 12694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-62.5 + parent: 12 + - uid: 12695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-61.5 + parent: 12 + - uid: 12696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-60.5 + parent: 12 + - uid: 12701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-60.5 + parent: 12 - uid: 12972 components: - type: Transform @@ -196340,6 +191740,12 @@ entities: rot: 3.141592653589793 rad pos: 39.5,10.5 parent: 12 + - uid: 13834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-60.5 + parent: 12 - uid: 13849 components: - type: Transform @@ -196425,6 +191831,29 @@ entities: - type: Transform pos: 47.5,46.5 parent: 12 + - uid: 13976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,23.5 + parent: 12 + - uid: 13979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 12 + - uid: 13980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,23.5 + parent: 12 + - uid: 13983 + components: + - type: Transform + pos: 3.5,27.5 + parent: 12 - uid: 13984 components: - type: Transform @@ -196756,6 +192185,11 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,44.5 parent: 12 + - uid: 14197 + components: + - type: Transform + pos: 3.5,25.5 + parent: 12 - uid: 14199 components: - type: Transform @@ -197363,6 +192797,44 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,41.5 parent: 12 + - uid: 15666 + components: + - type: Transform + pos: 3.5,24.5 + parent: 12 + - uid: 15667 + components: + - type: Transform + pos: 3.5,26.5 + parent: 12 + - uid: 15668 + components: + - type: Transform + pos: 3.5,28.5 + parent: 12 + - uid: 15669 + components: + - type: Transform + pos: 3.5,29.5 + parent: 12 + - uid: 15673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,13.5 + parent: 12 + - uid: 15676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,13.5 + parent: 12 + - uid: 15677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,15.5 + parent: 12 - uid: 15704 components: - type: Transform @@ -197433,6 +192905,34 @@ entities: - type: Transform pos: 0.5,42.5 parent: 12 + - uid: 16342 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 12 + - uid: 16348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,13.5 + parent: 12 + - uid: 16362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-32.5 + parent: 12 + - uid: 16365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-32.5 + parent: 12 + - uid: 16367 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 12 - uid: 16637 components: - type: Transform @@ -197774,6 +193274,26 @@ entities: - type: Transform pos: -55.5,-31.5 parent: 12 + - uid: 17973 + components: + - type: Transform + pos: -4.5,-53.5 + parent: 12 + - uid: 17974 + components: + - type: Transform + pos: -4.5,-52.5 + parent: 12 + - uid: 17977 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 12 + - uid: 18307 + components: + - type: Transform + pos: -4.5,-54.5 + parent: 12 - uid: 18567 components: - type: Transform @@ -198123,6 +193643,27 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-5.5 parent: 12 + - uid: 19459 + components: + - type: Transform + pos: 1.5,-48.5 + parent: 12 + - uid: 19461 + components: + - type: Transform + pos: -5.5,-53.5 + parent: 12 + - uid: 19462 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 12 + - uid: 19560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,0.5 + parent: 12 - uid: 19567 components: - type: Transform @@ -198904,6 +194445,12 @@ entities: - type: Transform pos: 13.5,-29.5 parent: 12 + - uid: 22157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-9.5 + parent: 12 - uid: 22159 components: - type: Transform @@ -198960,10 +194507,11 @@ entities: - type: Transform pos: 19.5,-33.5 parent: 12 - - uid: 22624 + - uid: 22538 components: - type: Transform - pos: 0.5,-60.5 + rot: -1.5707963267948966 rad + pos: 54.5,-9.5 parent: 12 - uid: 22710 components: @@ -199008,16 +194556,41 @@ entities: - type: Transform pos: -12.5,-63.5 parent: 12 + - uid: 23133 + components: + - type: Transform + pos: -3.5,-48.5 + parent: 12 - uid: 23167 components: - type: Transform pos: -59.5,-55.5 parent: 12 + - uid: 23174 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 12 + - uid: 23175 + components: + - type: Transform + pos: 48.5,-4.5 + parent: 12 - uid: 23363 components: - type: Transform pos: -10.5,-63.5 parent: 12 + - uid: 23418 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 12 + - uid: 23420 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 12 - uid: 23423 components: - type: Transform @@ -199045,6 +194618,23 @@ entities: - type: Transform pos: 2.5,-54.5 parent: 12 + - uid: 23595 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 12 + - uid: 23600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-10.5 + parent: 12 + - uid: 23602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-10.5 + parent: 12 - uid: 23654 components: - type: Transform @@ -199061,6 +194651,11 @@ entities: - type: Transform pos: 2.5,-24.5 parent: 12 + - uid: 23779 + components: + - type: Transform + pos: -1.5,12.5 + parent: 12 - uid: 23797 components: - type: Transform @@ -199086,6 +194681,36 @@ entities: - type: Transform pos: 10.5,-30.5 parent: 12 + - uid: 23897 + components: + - type: Transform + pos: -1.5,13.5 + parent: 12 + - uid: 23946 + components: + - type: Transform + pos: -1.5,14.5 + parent: 12 + - uid: 23947 + components: + - type: Transform + pos: -3.5,12.5 + parent: 12 + - uid: 23951 + components: + - type: Transform + pos: -2.5,12.5 + parent: 12 + - uid: 23984 + components: + - type: Transform + pos: -4.5,12.5 + parent: 12 + - uid: 23985 + components: + - type: Transform + pos: -4.5,14.5 + parent: 12 - uid: 24079 components: - type: Transform @@ -199096,6 +194721,12 @@ entities: - type: Transform pos: 0.5,-56.5 parent: 12 + - uid: 24208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-9.5 + parent: 12 - uid: 24227 components: - type: Transform @@ -199227,16 +194858,6 @@ entities: - type: Transform pos: 10.5,-31.5 parent: 12 - - uid: 24701 - components: - - type: Transform - pos: -1.5,22.5 - parent: 12 - - uid: 24702 - components: - - type: Transform - pos: -1.5,21.5 - parent: 12 - uid: 24892 components: - type: Transform @@ -199278,6 +194899,11 @@ entities: - type: Transform pos: -15.5,-59.5 parent: 12 + - uid: 25200 + components: + - type: Transform + pos: 46.5,-4.5 + parent: 12 - uid: 25243 components: - type: Transform @@ -199330,11 +194956,6 @@ entities: - type: Transform pos: 10.5,-32.5 parent: 12 - - uid: 25568 - components: - - type: Transform - pos: 2.5,-56.5 - parent: 12 - uid: 25574 components: - type: Transform @@ -199356,11 +194977,6 @@ entities: - type: Transform pos: 24.5,-29.5 parent: 12 - - uid: 25581 - components: - - type: Transform - pos: -1.5,19.5 - parent: 12 - uid: 25583 components: - type: Transform @@ -199522,11 +195138,6 @@ entities: - type: Transform pos: -21.5,-9.5 parent: 12 - - uid: 26139 - components: - - type: Transform - pos: -9.5,-63.5 - parent: 12 - uid: 26184 components: - type: Transform @@ -200163,6 +195774,30 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,-21.5 parent: 12 + - uid: 6775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-2.5 + parent: 12 + - uid: 7322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,18.5 + parent: 12 + - uid: 7717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-4.5 + parent: 12 + - uid: 7794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-4.5 + parent: 12 - uid: 7841 components: - type: Transform @@ -200228,6 +195863,12 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-21.5 parent: 12 + - uid: 13794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-61.5 + parent: 12 - uid: 14490 components: - type: Transform @@ -200300,6 +195941,12 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,18.5 parent: 12 + - uid: 15672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-61.5 + parent: 12 - uid: 15706 components: - type: Transform @@ -200330,6 +195977,30 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,9.5 parent: 12 + - uid: 16354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,16.5 + parent: 12 + - uid: 16358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,14.5 + parent: 12 + - uid: 16359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,15.5 + parent: 12 + - uid: 16372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-63.5 + parent: 12 - uid: 16923 components: - type: Transform @@ -200495,6 +196166,16 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,64.5 parent: 12 + - uid: 22141 + components: + - type: Transform + pos: 47.5,0.5 + parent: 12 + - uid: 22145 + components: + - type: Transform + pos: 44.5,-4.5 + parent: 12 - uid: 22285 components: - type: Transform @@ -200511,27 +196192,114 @@ entities: rot: 3.141592653589793 rad pos: 31.5,25.5 parent: 12 + - uid: 23603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-9.5 + parent: 12 + - uid: 24333 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 12 + - uid: 24409 + components: + - type: Transform + pos: -3.5,14.5 + parent: 12 + - uid: 24445 + components: + - type: Transform + pos: -4.5,13.5 + parent: 12 - uid: 24452 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,13.5 parent: 12 + - uid: 24453 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 12 - uid: 24635 components: - type: Transform pos: 31.5,19.5 parent: 12 + - uid: 24701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-33.5 + parent: 12 + - uid: 24702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-33.5 + parent: 12 - uid: 24982 components: - type: Transform pos: -21.5,51.5 parent: 12 + - uid: 25027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-33.5 + parent: 12 - uid: 25035 components: - type: Transform pos: -22.5,54.5 parent: 12 + - uid: 25061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-33.5 + parent: 12 + - uid: 25101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-32.5 + parent: 12 + - uid: 25104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-30.5 + parent: 12 + - uid: 25142 + components: + - type: Transform + pos: -4.5,17.5 + parent: 12 + - uid: 25191 + components: + - type: Transform + pos: -3.5,-60.5 + parent: 12 + - uid: 25192 + components: + - type: Transform + pos: 3.5,23.5 + parent: 12 + - uid: 25193 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 12 + - uid: 25199 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 12 - uid: 25572 components: - type: Transform @@ -200754,11 +196522,6 @@ entities: - type: Transform pos: -47.5,-14.5 parent: 12 - - uid: 27446 - components: - - type: Transform - pos: -1.5,17.5 - parent: 12 - uid: 27861 components: - type: Transform @@ -200838,16 +196601,6 @@ entities: - type: Transform pos: -8.5,18.5 parent: 12 - - uid: 28138 - components: - - type: Transform - pos: -0.5,17.5 - parent: 12 - - uid: 28140 - components: - - type: Transform - pos: -1.5,20.5 - parent: 12 - uid: 28141 components: - type: Transform @@ -201487,6 +197240,11 @@ entities: - type: Transform pos: 5.5,-29.5 parent: 12 + - uid: 4663 + components: + - type: Transform + pos: 55.5,11.5 + parent: 12 - uid: 9211 components: - type: Transform @@ -201581,21 +197339,6 @@ entities: parent: 12 - proto: WaterVaporCanister entities: - - uid: 2956 - components: - - type: Transform - pos: 4.5,15.5 - parent: 12 - - uid: 2960 - components: - - type: Transform - pos: 4.5,18.5 - parent: 12 - - uid: 2966 - components: - - type: Transform - pos: 13.5,21.5 - parent: 12 - uid: 5034 components: - type: Transform @@ -201606,6 +197349,11 @@ entities: - type: Transform pos: 24.5,-2.5 parent: 12 + - uid: 9727 + components: + - type: Transform + pos: 11.5,12.5 + parent: 12 - uid: 15785 components: - type: Transform @@ -201624,6 +197372,11 @@ entities: - type: Transform pos: -52.5,34.5 parent: 12 + - uid: 19456 + components: + - type: Transform + pos: -34.5,68.5 + parent: 12 - uid: 20825 components: - type: Transform @@ -201803,8 +197556,19 @@ entities: - type: Transform pos: -34.661064,-10.37479 parent: 12 + - uid: 23597 + components: + - type: Transform + pos: 55.47354,5.5168424 + parent: 12 - proto: WelderIndustrialAdvanced entities: + - uid: 3015 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: 2.3754535,11.683891 + parent: 12 - uid: 9249 components: - type: Transform @@ -201847,6 +197611,11 @@ entities: - type: Transform pos: -33.5,-10.5 parent: 12 + - uid: 11254 + components: + - type: Transform + pos: 4.5,11.5 + parent: 12 - uid: 11526 components: - type: Transform @@ -201877,6 +197646,11 @@ entities: - type: Transform pos: -26.5,21.5 parent: 12 + - uid: 23596 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 12 - uid: 24224 components: - type: Transform @@ -201907,15 +197681,10 @@ entities: - type: Transform pos: 48.5,-32.5 parent: 12 - - uid: 26892 - components: - - type: Transform - pos: 16.5,20.5 - parent: 12 - - uid: 27022 + - uid: 25386 components: - type: Transform - pos: 45.5,-3.5 + pos: 52.5,2.5 parent: 12 - uid: 27846 components: @@ -201954,6 +197723,11 @@ entities: parent: 12 - proto: WetFloorSign entities: + - uid: 2721 + components: + - type: Transform + pos: 36.92181,-30.370167 + parent: 12 - uid: 12247 components: - type: Transform @@ -201964,6 +197738,11 @@ entities: - type: Transform pos: 48.600037,20.622837 parent: 12 + - uid: 22158 + components: + - type: Transform + pos: 36.62012,-30.786295 + parent: 12 - uid: 25014 components: - type: Transform @@ -202036,6 +197815,11 @@ entities: - type: Transform pos: 48.5,-29.5 parent: 12 + - uid: 12577 + components: + - type: Transform + pos: 53.5,46.5 + parent: 12 - uid: 12650 components: - type: Transform @@ -202054,6 +197838,29 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,40.5 parent: 12 + - uid: 16449 + components: + - type: Transform + pos: 48.5,46.5 + parent: 12 + - uid: 16450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,47.5 + parent: 12 + - uid: 17272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,0.5 + parent: 12 + - uid: 19271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,47.5 + parent: 12 - uid: 22611 components: - type: Transform @@ -202077,17 +197884,6 @@ entities: - type: Transform pos: -5.5,55.5 parent: 12 - - uid: 23601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,47.5 - parent: 12 - - uid: 23602 - components: - - type: Transform - pos: 48.5,46.5 - parent: 12 - uid: 29642 components: - type: Transform @@ -202117,18 +197913,12 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-57.5 parent: 12 - - uid: 31564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 12 - proto: WindoorBarKitchenLocked entities: - - uid: 22820 + - uid: 11203 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: 27.5,53.5 parent: 12 - proto: WindoorChapelLocked @@ -202145,33 +197935,8 @@ entities: rot: 3.141592653589793 rad pos: 44.5,32.5 parent: 12 -- proto: WindoorHydroponicsLocked - entities: - - uid: 23603 - components: - - type: Transform - pos: 53.5,46.5 - parent: 12 - - uid: 23604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,47.5 - parent: 12 - proto: WindoorSecure entities: - - uid: 2029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-28.5 - parent: 12 - - uid: 8732 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-30.5 - parent: 12 - uid: 12234 components: - type: Transform @@ -202211,6 +197976,18 @@ entities: parent: 12 - proto: WindoorSecureArmoryLocked entities: + - uid: 16521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,53.5 + parent: 12 + - uid: 16699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,52.5 + parent: 12 - uid: 20340 components: - type: Transform @@ -202235,31 +198012,19 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,65.5 parent: 12 - - uid: 31530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,52.5 - parent: 12 - - uid: 31531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,53.5 - parent: 12 - proto: WindoorSecureBrigLocked entities: - - uid: 19350 + - uid: 19175 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,57.5 parent: 12 - proto: WindoorSecureCargoLocked entities: - - uid: 28142 + - uid: 11373 components: - type: Transform + rot: 3.141592653589793 rad pos: 53.5,-23.5 parent: 12 - proto: WindoorSecureChemistryLocked @@ -202321,22 +198086,17 @@ entities: parent: 12 - proto: WindoorSecureEngineeringLocked entities: - - uid: 28553 - components: - - type: Transform - pos: 12.5,-24.5 - parent: 12 - - uid: 29346 + - uid: 8429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,3.5 + rot: 3.141592653589793 rad + pos: 13.5,-24.5 parent: 12 - - uid: 31908 + - uid: 8472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,11.5 + rot: 3.141592653589793 rad + pos: 12.5,-24.5 parent: 12 - proto: WindoorSecureHeadOfPersonnelLocked entities: @@ -202353,23 +198113,27 @@ entities: parent: 12 - proto: WindoorSecureMedicalLocked entities: - - uid: 2458 + - uid: 1718 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-37.5 + pos: 30.5,40.5 parent: 12 - - uid: 2459 + - uid: 1775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-39.5 + pos: 29.5,40.5 parent: 12 - - uid: 13794 + - uid: 2458 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,40.5 + pos: -20.5,-37.5 + parent: 12 + - uid: 9557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-39.5 parent: 12 - uid: 21667 components: @@ -202416,10 +198180,10 @@ entities: parent: 12 - proto: WindoorSecureScienceLocked entities: - - uid: 28443 + - uid: 11280 components: - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: -18.5,-20.5 parent: 12 - proto: WindoorSecureSecurityLawyerLocked @@ -202437,31 +198201,23 @@ entities: - type: Transform pos: 52.5,-30.5 parent: 12 - - uid: 23846 + - uid: 19185 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,50.5 - parent: 12 - - uid: 28826 - components: - - type: Transform - rot: 1.5707963267948966 rad pos: -19.5,39.5 parent: 12 - - uid: 29067 + - uid: 23846 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,58.5 + pos: -33.5,50.5 parent: 12 -- proto: WindoorSecureServiceLocked - entities: - - uid: 23947 + - uid: 29067 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,54.5 + pos: 20.5,58.5 parent: 12 - proto: WindoorServiceLocked entities: @@ -202482,6 +198238,12 @@ entities: rot: 3.141592653589793 rad pos: 11.5,36.5 parent: 12 + - uid: 16777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,54.5 + parent: 12 - uid: 30396 components: - type: Transform @@ -202642,6 +198404,18 @@ entities: - type: Transform pos: 2.5,-44.5 parent: 12 + - uid: 3375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,20.5 + parent: 12 + - uid: 3472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,19.5 + parent: 12 - uid: 4472 components: - type: Transform @@ -202660,6 +198434,12 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-37.5 parent: 12 + - uid: 7088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-2.5 + parent: 12 - uid: 7382 components: - type: Transform @@ -203477,17 +199257,39 @@ entities: parent: 12 - proto: WindowDirectional entities: - - uid: 289 + - uid: 7837 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,0.5 + rot: 1.5707963267948966 rad + pos: -12.5,-51.5 parent: 12 - - uid: 7837 + - uid: 9559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,46.5 + parent: 12 + - uid: 9597 + components: + - type: Transform + pos: 52.5,46.5 + parent: 12 + - uid: 11048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,48.5 + parent: 12 + - uid: 11053 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-51.5 + pos: 49.5,48.5 + parent: 12 + - uid: 12289 + components: + - type: Transform + pos: 49.5,46.5 parent: 12 - uid: 14518 components: @@ -203495,6 +199297,12 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-51.5 parent: 12 + - uid: 16832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,0.5 + parent: 12 - uid: 16847 components: - type: Transform @@ -203518,6 +199326,18 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-47.5 parent: 12 + - uid: 19188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,46.5 + parent: 12 + - uid: 19292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,54.5 + parent: 12 - uid: 28193 components: - type: Transform @@ -203599,24 +199419,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,22.5 parent: 12 - - uid: 31556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,0.5 - parent: 12 - - uid: 31557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 12 - - uid: 31562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 12 - proto: WindowFrostedDirectional entities: - uid: 4236 @@ -203923,34 +199725,6 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-33.5 parent: 12 - - uid: 1776 - components: - - type: Transform - pos: -21.5,-29.5 - parent: 12 - - uid: 2022 - components: - - type: Transform - pos: -22.5,-29.5 - parent: 12 - - uid: 2023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-29.5 - parent: 12 - - uid: 2024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-27.5 - parent: 12 - - uid: 2460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-38.5 - parent: 12 - uid: 2461 components: - type: Transform @@ -204010,6 +199784,12 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-13.5 parent: 12 + - uid: 4898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-23.5 + parent: 12 - uid: 5411 components: - type: Transform @@ -204161,12 +199941,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,40.5 parent: 12 - - uid: 13788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,40.5 - parent: 12 - uid: 14981 components: - type: Transform @@ -204226,12 +200000,30 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 12 + - uid: 16493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-19.5 + parent: 12 + - uid: 16547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-23.5 + parent: 12 - uid: 16643 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,40.5 parent: 12 + - uid: 16663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-38.5 + parent: 12 - uid: 16822 components: - type: Transform @@ -204244,11 +200036,11 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-44.5 parent: 12 - - uid: 17272 + - uid: 17204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,5.5 + rot: -1.5707963267948966 rad + pos: -18.5,-21.5 parent: 12 - uid: 17371 components: @@ -204353,12 +200145,6 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,57.5 parent: 12 - - uid: 19349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,57.5 - parent: 12 - uid: 19969 components: - type: Transform @@ -204486,40 +200272,6 @@ entities: - type: Transform pos: 15.5,55.5 parent: 12 - - uid: 23595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,46.5 - parent: 12 - - uid: 23596 - components: - - type: Transform - pos: 52.5,46.5 - parent: 12 - - uid: 23597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,48.5 - parent: 12 - - uid: 23598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,48.5 - parent: 12 - - uid: 23599 - components: - - type: Transform - pos: 49.5,46.5 - parent: 12 - - uid: 23600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,46.5 - parent: 12 - uid: 23844 components: - type: Transform @@ -204531,12 +200283,6 @@ entities: - type: Transform pos: -33.5,50.5 parent: 12 - - uid: 23946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,54.5 - parent: 12 - uid: 26588 components: - type: Transform @@ -204549,29 +200295,6 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-11.5 parent: 12 - - uid: 27236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,12.5 - parent: 12 - - uid: 27514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,4.5 - parent: 12 - - uid: 28144 - components: - - type: Transform - pos: 54.5,-23.5 - parent: 12 - - uid: 28645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-21.5 - parent: 12 - uid: 28932 components: - type: Transform @@ -204584,22 +200307,12 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-11.5 parent: 12 - - uid: 28934 - components: - - type: Transform - pos: 52.5,-23.5 - parent: 12 - uid: 29220 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,65.5 parent: 12 - - uid: 30002 - components: - - type: Transform - pos: 13.5,-24.5 - parent: 12 - uid: 30324 components: - type: Transform @@ -204676,24 +200389,12 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-67.5 parent: 12 - - uid: 31529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-19.5 - parent: 12 - uid: 31770 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,27.5 parent: 12 - - uid: 31907 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,10.5 - parent: 12 - uid: 31911 components: - type: Transform @@ -204780,11 +200481,6 @@ entities: rot: -1.5707963267948966 rad pos: 33.52617,-19.538431 parent: 12 - - uid: 7162 - components: - - type: Transform - pos: 37.89979,-31.511305 - parent: 12 - uid: 7197 components: - type: Transform @@ -204823,16 +200519,11 @@ entities: - type: Transform pos: -23.775642,-15.327034 parent: 12 - - uid: 29076 - components: - - type: Transform - pos: 5.7223816,16.863264 - parent: 12 - uid: 29302 components: - type: Transform rot: -12.566370614359172 rad - pos: 37.46028,4.4797335 + pos: 9.636911,-13.368637 parent: 12 - proto: Zipties entities: From eb4e422cb099cddd499daa3fd2b279d754b750b5 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Sat, 5 Oct 2024 20:44:47 +0200 Subject: [PATCH 183/213] fix light bulbs not fitting into the trash bag (#32452) fix trash --- Resources/Prototypes/Entities/Objects/Power/lights.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Power/lights.yml b/Resources/Prototypes/Entities/Objects/Power/lights.yml index 22573669ede645..e0ae055e7d8c17 100644 --- a/Resources/Prototypes/Entities/Objects/Power/lights.yml +++ b/Resources/Prototypes/Entities/Objects/Power/lights.yml @@ -129,6 +129,7 @@ - type: Tag tags: - LightBulb + - Trash - type: entity parent: BaseLightbulb @@ -147,6 +148,7 @@ - type: Tag tags: - LightBulb + - Trash - type: entity parent: LightBulb @@ -160,9 +162,6 @@ lightEnergy: 0.3 # old incandescents just arent as bright lightRadius: 6 lightSoftness: 1.1 - - type: Tag - tags: - - LightBulb - type: entity suffix: Broken @@ -190,6 +189,7 @@ - type: Tag tags: - LightBulb + - Trash - type: entity parent: BaseLightTube From 386e59b46231cb5d1a3c1d6086cfead08bf2590d Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 5 Oct 2024 18:45:55 +0000 Subject: [PATCH 184/213] 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 092e71e0ec8711..b46f5c46be7e1c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: GoldenCan - changes: - - message: Added a Security Clown Mask which is obtainable by hacking a SecDrobe. - type: Add - id: 6989 - time: '2024-07-27T04:09:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30249 - author: Plykiya changes: - message: Thief game rule now properly selects more than one thief. @@ -3942,3 +3935,10 @@ id: 7488 time: '2024-10-04T09:34:49.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32423 +- author: slarticodefast + changes: + - message: Light bulbs now fit into the trash bag again. + type: Fix + id: 7489 + time: '2024-10-05T18:44:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32452 From 126c1786de2ca4112433f797bcba68ef715b364f Mon Sep 17 00:00:00 2001 From: Spessmann <156740760+Spessmann@users.noreply.github.com> Date: Sat, 5 Oct 2024 19:30:10 -0700 Subject: [PATCH 185/213] Cog update fix (#32657) * fixes for cog * ok fixed that --- Resources/Maps/cog.yml | 1409 ++++++++++++++++++++++++++++------------ 1 file changed, 998 insertions(+), 411 deletions(-) diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index 882aab9eb1f2f4..30b4730a57d5e8 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -47,6 +47,7 @@ tilemap: 112: FloorTechMaint2 13: FloorTechMaint3 115: FloorWhite + 40: FloorWhiteMini 20: FloorWhiteMono 125: FloorWood 5: FloorWoodLarge @@ -184,7 +185,7 @@ entities: version: 6 2,-1: ind: 2,-1 - tiles: YAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAgAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABCwAAAAAACwAAAAAACwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAAwAAAAABAgAAAAABBwAAAAAAgQAAAAAAfQAAAAADfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABCwAAAAAAEgAAAAAACwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADBwAAAAAAYAAAAAACgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACCwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACYAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADYAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABgQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADAgAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACBwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAADgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAgAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABCwAAAAAACwAAAAAACwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAAwAAAAABAgAAAAABBwAAAAAAgQAAAAAAfQAAAAADfQAAAAAAKAAAAAAAKAAAAAAAgQAAAAAAIAAAAAABCwAAAAAAEgAAAAAACwAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAADBwAAAAAAYAAAAAACgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAKAAAAAAAgQAAAAAAIAAAAAACCwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACYAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACgQAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADYAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACBwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABgQAAAAAAIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADAgAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACBwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAA version: 6 2,0: ind: 2,0 @@ -490,6 +491,13 @@ entities: id: Arrows decals: 8243: 29,5 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 8967: 6.0002394,17.436628 + 8968: 11.993295,17.42273 + 8969: 13.000239,17.436626 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -520,6 +528,9 @@ entities: 8200: 30,-9 8721: 57,11 8722: 58,11 + 8961: 9,17 + 8962: 10,17 + 8963: 16,17 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -836,6 +847,7 @@ entities: 8210: 40,4 8253: 31,6 8912: 51,-11 + 8970: 8,-14 - node: cleanable: True color: '#FFFFFFFF' @@ -1760,6 +1772,7 @@ entities: 8713: -33,67 8714: -33,68 8755: -3,19 + 8960: 33,-13 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -8964,14 +8977,14 @@ entities: 0: 511 0,-2: 0: 3581 + 1,-4: + 0: 17623 1,-2: 0: 41718 - 1,-4: - 0: 17638 + 1,-5: + 0: 21591 1,-3: 0: 25668 - 1,-5: - 0: 25687 2,-4: 0: 4095 2,-3: @@ -9710,9 +9723,9 @@ entities: 7,0: 0: 61006 8,-4: - 0: 33787 + 0: 41979 8,-3: - 0: 2746 + 0: 2744 8,-2: 0: 61167 8,-1: @@ -14040,6 +14053,12 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-17.5 parent: 12 + - uid: 4683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-10.5 + parent: 12 - uid: 5517 components: - type: Transform @@ -14161,11 +14180,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-19.5 parent: 12 - - uid: 21885 - components: - - type: Transform - pos: 32.5,-10.5 - parent: 12 - uid: 22224 components: - type: Transform @@ -14187,6 +14201,12 @@ entities: - type: Transform pos: -23.5,58.5 parent: 12 + - uid: 26389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-15.5 + parent: 12 - uid: 27457 components: - type: Transform @@ -19146,6 +19166,13 @@ entities: rot: -12.566370614359172 rad pos: -3.622931,-15.409775 parent: 12 +- proto: Ash + entities: + - uid: 26653 + components: + - type: Transform + pos: -0.5,19.5 + parent: 12 - proto: Ashtray entities: - uid: 6886 @@ -22779,6 +22806,11 @@ entities: - type: Transform pos: -25.5,6.5 parent: 12 + - uid: 20 + components: + - type: Transform + pos: 11.5,24.5 + parent: 12 - uid: 51 components: - type: Transform @@ -22849,6 +22881,11 @@ entities: - type: Transform pos: 52.5,-11.5 parent: 12 + - uid: 185 + components: + - type: Transform + pos: 4.5,20.5 + parent: 12 - uid: 190 components: - type: Transform @@ -29594,11 +29631,6 @@ entities: - type: Transform pos: 11.5,19.5 parent: 12 - - uid: 9615 - components: - - type: Transform - pos: 3.5,19.5 - parent: 12 - uid: 9617 components: - type: Transform @@ -29614,11 +29646,6 @@ entities: - type: Transform pos: 4.5,22.5 parent: 12 - - uid: 9655 - components: - - type: Transform - pos: 4.5,21.5 - parent: 12 - uid: 9668 components: - type: Transform @@ -40279,6 +40306,21 @@ entities: - type: Transform pos: 55.5,2.5 parent: 12 + - uid: 26488 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 12 + - uid: 26489 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 12 + - uid: 26490 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 12 - uid: 26500 components: - type: Transform @@ -40319,6 +40361,16 @@ entities: - type: Transform pos: 31.5,7.5 parent: 12 + - uid: 26536 + components: + - type: Transform + pos: 11.5,26.5 + parent: 12 + - uid: 26537 + components: + - type: Transform + pos: 11.5,25.5 + parent: 12 - uid: 26574 components: - type: Transform @@ -43719,8 +43771,8 @@ entities: - uid: 28714 components: - type: Transform - rot: -37.69911184307754 rad - pos: 54.474026,-5.1717267 + rot: -50.265482457436725 rad + pos: 55.51719,-5.372972 parent: 12 - proto: CableApcStack1 entities: @@ -43792,11 +43844,6 @@ entities: - type: Transform pos: 54.5,7.5 parent: 12 - - uid: 20 - components: - - type: Transform - pos: 32.5,-10.5 - parent: 12 - uid: 21 components: - type: Transform @@ -43877,11 +43924,6 @@ entities: - type: Transform pos: 8.5,28.5 parent: 12 - - uid: 681 - components: - - type: Transform - pos: 31.5,-10.5 - parent: 12 - uid: 693 components: - type: Transform @@ -45112,11 +45154,6 @@ entities: - type: Transform pos: -25.5,-55.5 parent: 12 - - uid: 5177 - components: - - type: Transform - pos: 33.5,-10.5 - parent: 12 - uid: 5179 components: - type: Transform @@ -51762,6 +51799,11 @@ entities: - type: Transform pos: -26.5,27.5 parent: 12 + - uid: 25832 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 12 - uid: 25839 components: - type: Transform @@ -51772,6 +51814,11 @@ entities: - type: Transform pos: 36.5,0.5 parent: 12 + - uid: 26072 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 12 - uid: 26079 components: - type: Transform @@ -51817,6 +51864,26 @@ entities: - type: Transform pos: -56.5,21.5 parent: 12 + - uid: 26154 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 12 + - uid: 26202 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 12 + - uid: 26261 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 12 + - uid: 26262 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 12 - uid: 26417 components: - type: Transform @@ -51872,6 +51939,31 @@ entities: - type: Transform pos: 58.5,1.5 parent: 12 + - uid: 26525 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 12 + - uid: 26526 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 12 + - uid: 26527 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 12 + - uid: 26528 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 12 + - uid: 26529 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 12 - uid: 26543 components: - type: Transform @@ -52047,11 +52139,6 @@ entities: - type: Transform pos: 30.5,-4.5 parent: 12 - - uid: 26927 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 12 - uid: 27028 components: - type: Transform @@ -55082,8 +55169,8 @@ entities: - uid: 28713 components: - type: Transform - rot: -37.69911184307754 rad - pos: 54.49033,-5.6204934 + rot: -50.265482457436725 rad + pos: 55.498672,-5.6926384 parent: 12 - proto: CableMV entities: @@ -56487,6 +56574,11 @@ entities: - type: Transform pos: -17.5,-24.5 parent: 12 + - uid: 4715 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 12 - uid: 4800 components: - type: Transform @@ -56532,6 +56624,11 @@ entities: - type: Transform pos: -27.5,65.5 parent: 12 + - uid: 4988 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 12 - uid: 5036 components: - type: Transform @@ -56582,6 +56679,26 @@ entities: - type: Transform pos: -1.5,1.5 parent: 12 + - uid: 5170 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 12 + - uid: 5175 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 12 + - uid: 5176 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 12 + - uid: 5177 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 12 - uid: 5272 components: - type: Transform @@ -56597,6 +56714,11 @@ entities: - type: Transform pos: 14.5,4.5 parent: 12 + - uid: 5303 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 12 - uid: 5311 components: - type: Transform @@ -56605,7 +56727,7 @@ entities: - uid: 5378 components: - type: Transform - pos: 33.5,-9.5 + pos: 7.5,-21.5 parent: 12 - uid: 5405 components: @@ -56937,6 +57059,11 @@ entities: - type: Transform pos: 63.5,-23.5 parent: 12 + - uid: 6774 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 12 - uid: 6891 components: - type: Transform @@ -57042,6 +57169,11 @@ entities: - type: Transform pos: 43.5,-12.5 parent: 12 + - uid: 7524 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 12 - uid: 7580 components: - type: Transform @@ -57642,6 +57774,11 @@ entities: - type: Transform pos: 53.5,63.5 parent: 12 + - uid: 8805 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 12 - uid: 9002 components: - type: Transform @@ -57817,6 +57954,11 @@ entities: - type: Transform pos: 62.5,-0.5 parent: 12 + - uid: 9615 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 12 - uid: 9628 components: - type: Transform @@ -57832,6 +57974,11 @@ entities: - type: Transform pos: 30.5,4.5 parent: 12 + - uid: 9655 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 12 - uid: 9671 components: - type: Transform @@ -58367,6 +58514,11 @@ entities: - type: Transform pos: -6.5,28.5 parent: 12 + - uid: 10655 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 12 - uid: 10668 components: - type: Transform @@ -58427,6 +58579,11 @@ entities: - type: Transform pos: -47.5,15.5 parent: 12 + - uid: 11323 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 12 - uid: 11331 components: - type: Transform @@ -58437,6 +58594,11 @@ entities: - type: Transform pos: 32.5,15.5 parent: 12 + - uid: 11371 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 12 - uid: 11383 components: - type: Transform @@ -58477,6 +58639,11 @@ entities: - type: Transform pos: -9.5,-19.5 parent: 12 + - uid: 11574 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 12 - uid: 11932 components: - type: Transform @@ -61052,6 +61219,11 @@ entities: - type: Transform pos: -60.5,24.5 parent: 12 + - uid: 17584 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 12 - uid: 17735 components: - type: Transform @@ -61350,7 +61522,7 @@ entities: - uid: 18631 components: - type: Transform - pos: 33.5,-10.5 + pos: 8.5,-14.5 parent: 12 - uid: 18759 components: @@ -62752,6 +62924,11 @@ entities: - type: Transform pos: -6.5,32.5 parent: 12 + - uid: 21604 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 12 - uid: 21705 components: - type: Transform @@ -62775,7 +62952,12 @@ entities: - uid: 21884 components: - type: Transform - pos: 32.5,-10.5 + pos: 13.5,-15.5 + parent: 12 + - uid: 21885 + components: + - type: Transform + pos: 14.5,-16.5 parent: 12 - uid: 21901 components: @@ -62902,6 +63084,11 @@ entities: - type: Transform pos: -31.5,70.5 parent: 12 + - uid: 23130 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 12 - uid: 23713 components: - type: Transform @@ -63787,6 +63974,41 @@ entities: - type: Transform pos: -30.5,12.5 parent: 12 + - uid: 25824 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 12 + - uid: 25825 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 12 + - uid: 25826 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 12 + - uid: 25827 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 12 + - uid: 25828 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 12 + - uid: 25829 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 12 + - uid: 25830 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 12 - uid: 25833 components: - type: Transform @@ -63827,6 +64049,41 @@ entities: - type: Transform pos: -27.5,-27.5 parent: 12 + - uid: 26263 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 12 + - uid: 26264 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 12 + - uid: 26276 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 12 + - uid: 26311 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 12 + - uid: 26368 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 12 + - uid: 26382 + components: + - type: Transform + pos: 19.5,-22.5 + parent: 12 + - uid: 26383 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 12 - uid: 26451 components: - type: Transform @@ -64527,86 +64784,6 @@ entities: - type: Transform pos: 54.5,1.5 parent: 12 - - uid: 28970 - components: - - type: Transform - pos: -6.5,-20.5 - parent: 12 - - uid: 28971 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 12 - - uid: 28972 - components: - - type: Transform - pos: -4.5,-20.5 - parent: 12 - - uid: 28973 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 12 - - uid: 28974 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 12 - - uid: 28975 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 12 - - uid: 28976 - components: - - type: Transform - pos: -1.5,-22.5 - parent: 12 - - uid: 28977 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 12 - - uid: 28978 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 12 - - uid: 28979 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 12 - - uid: 28980 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 12 - - uid: 28981 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 12 - - uid: 28982 - components: - - type: Transform - pos: 4.5,-22.5 - parent: 12 - - uid: 28983 - components: - - type: Transform - pos: 5.5,-22.5 - parent: 12 - - uid: 28984 - components: - - type: Transform - pos: 6.5,-22.5 - parent: 12 - - uid: 28985 - components: - - type: Transform - pos: -2.5,-22.5 - parent: 12 - uid: 28986 components: - type: Transform @@ -65932,8 +66109,8 @@ entities: - uid: 28716 components: - type: Transform - rot: -37.69911184307754 rad - pos: 54.425102,-5.334914 + rot: -50.265482457436725 rad + pos: 55.50793,-5.5443873 parent: 12 - proto: CableMVStack1 entities: @@ -70937,12 +71114,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,15.5 parent: 12 - - uid: 11574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-22.5 - parent: 12 - uid: 11688 components: - type: Transform @@ -72871,12 +73042,102 @@ entities: rot: 3.141592653589793 rad pos: -20.5,59.5 parent: 12 + - uid: 26414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-22.5 + parent: 12 + - uid: 26421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-22.5 + parent: 12 + - uid: 26422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-22.5 + parent: 12 + - uid: 26432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-22.5 + parent: 12 + - uid: 26438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-22.5 + parent: 12 + - uid: 26440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-22.5 + parent: 12 + - uid: 26445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-22.5 + parent: 12 + - uid: 26446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-22.5 + parent: 12 - uid: 26447 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,0.5 parent: 12 + - uid: 26452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-22.5 + parent: 12 + - uid: 26455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-22.5 + parent: 12 + - uid: 26461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-22.5 + parent: 12 + - uid: 26462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-21.5 + parent: 12 + - uid: 26466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-20.5 + parent: 12 + - uid: 26469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-20.5 + parent: 12 + - uid: 26470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-20.5 + parent: 12 - uid: 26778 components: - type: Transform @@ -73634,76 +73895,6 @@ entities: - type: Transform pos: -7.5,-20.5 parent: 12 - - uid: 28632 - components: - - type: Transform - pos: -6.5,-20.5 - parent: 12 - - uid: 28633 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 12 - - uid: 28634 - components: - - type: Transform - pos: -4.5,-20.5 - parent: 12 - - uid: 28635 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 12 - - uid: 28636 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 12 - - uid: 28637 - components: - - type: Transform - pos: -2.5,-22.5 - parent: 12 - - uid: 28638 - components: - - type: Transform - pos: -1.5,-22.5 - parent: 12 - - uid: 28639 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 12 - - uid: 28640 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 12 - - uid: 28641 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 12 - - uid: 28642 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 12 - - uid: 28643 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 12 - - uid: 28644 - components: - - type: Transform - pos: 4.5,-22.5 - parent: 12 - - uid: 28647 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 12 - uid: 28922 components: - type: Transform @@ -76223,11 +76414,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,0.5 parent: 12 - - uid: 23130 - components: - - type: Transform - pos: 56.427277,-4.6059856 - parent: 12 - uid: 23441 components: - type: Transform @@ -76252,6 +76438,11 @@ entities: rot: -1.5707963267948966 rad pos: 58.720875,57.492115 parent: 12 + - uid: 26532 + components: + - type: Transform + pos: 56.5,-4.5 + parent: 12 - uid: 27066 components: - type: Transform @@ -76818,11 +77009,6 @@ entities: - type: Transform pos: -13.5,-19.5 parent: 12 - - uid: 8805 - components: - - type: Transform - pos: 5.5,-15.5 - parent: 12 - uid: 9567 components: - type: Transform @@ -76978,6 +77164,16 @@ entities: - type: Transform pos: -45.5,31.5 parent: 12 + - uid: 26027 + components: + - type: Transform + pos: -0.5,10.5 + parent: 12 + - uid: 26205 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 12 - uid: 26682 components: - type: Transform @@ -77265,11 +77461,6 @@ entities: - type: Transform pos: -52.5,-19.5 parent: 12 - - uid: 28442 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 12 - uid: 30472 components: - type: Transform @@ -77552,11 +77743,6 @@ entities: - type: Transform pos: -56.5,-29.5 parent: 12 - - uid: 17584 - components: - - type: Transform - pos: 5.5,-16.5 - parent: 12 - uid: 18105 components: - type: Transform @@ -79090,11 +79276,6 @@ entities: - type: Transform pos: 53.5,-42.5 parent: 12 - - uid: 5303 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 12 - uid: 9215 components: - type: Transform @@ -79232,6 +79413,12 @@ entities: rot: 3.141592653589793 rad pos: 46.5,58.5 parent: 12 + - uid: 25835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-23.5 + parent: 12 - uid: 30201 components: - type: Transform @@ -79975,12 +80162,6 @@ entities: parent: 12 - proto: ComputerSolarControl entities: - - uid: 499 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-5.5 - parent: 12 - uid: 9217 components: - type: Transform @@ -80003,6 +80184,12 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,47.5 parent: 12 + - uid: 26073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-5.5 + parent: 12 - uid: 31765 components: - type: Transform @@ -81917,11 +82104,6 @@ entities: - type: Transform pos: -30.5,30.5 parent: 12 - - uid: 21604 - components: - - type: Transform - pos: -22.5,44.5 - parent: 12 - proto: DefaultStationBeaconCryonics entities: - uid: 3938 @@ -82176,10 +82358,10 @@ entities: parent: 12 - proto: DefaultStationBeaconSingularity entities: - - uid: 26754 + - uid: 26654 components: - type: Transform - pos: 59.5,4.5 + pos: 60.5,5.5 parent: 12 - proto: DefaultStationBeaconSolars entities: @@ -82224,6 +82406,13 @@ entities: - type: Transform pos: 40.5,-38.5 parent: 12 +- proto: DefaultStationBeaconTEG + entities: + - uid: 26552 + components: + - type: Transform + pos: 11.5,14.5 + parent: 12 - proto: DefaultStationBeaconTelecoms entities: - uid: 21869 @@ -83451,6 +83640,12 @@ entities: - type: Transform pos: 23.5,11.5 parent: 12 + - uid: 26523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-10.5 + parent: 12 - uid: 26729 components: - type: Transform @@ -84112,6 +84307,11 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-41.5 parent: 12 + - uid: 26519 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 12 - proto: DisposalMachineFrame entities: - uid: 12940 @@ -84121,6 +84321,12 @@ entities: parent: 12 - proto: DisposalPipe entities: + - uid: 19 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-14.5 + parent: 12 - uid: 357 components: - type: Transform @@ -84133,6 +84339,12 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-12.5 parent: 12 + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-12.5 + parent: 12 - uid: 637 components: - type: Transform @@ -84518,6 +84730,12 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-12.5 parent: 12 + - uid: 2369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 12 - uid: 2538 components: - type: Transform @@ -85044,6 +85262,18 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,45.5 parent: 12 + - uid: 4681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-10.5 + parent: 12 + - uid: 4684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 12 - uid: 4695 components: - type: Transform @@ -90806,6 +91036,12 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-23.5 parent: 12 + - uid: 26104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-13.5 + parent: 12 - uid: 26114 components: - type: Transform @@ -92988,6 +93224,11 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-13.5 parent: 12 + - uid: 26522 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 12 - uid: 27021 components: - type: Transform @@ -94153,6 +94394,13 @@ entities: rot: -12.566370614359172 rad pos: -29.330828,7.500151 parent: 12 +- proto: ElectrolysisUnitMachineCircuitboard + entities: + - uid: 26647 + components: + - type: Transform + pos: -3.5,21.5 + parent: 12 - proto: EmergencyFunnyOxygenTankFilled entities: - uid: 27129 @@ -101575,14 +101823,14 @@ entities: pos: 6.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2733 components: - type: Transform pos: 12.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2734 components: - type: Transform @@ -101590,7 +101838,7 @@ entities: pos: 12.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2758 components: - type: Transform @@ -102092,7 +102340,7 @@ entities: pos: 3.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5427 components: - type: Transform @@ -102155,7 +102403,7 @@ entities: pos: 6.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 6220 components: - type: Transform @@ -104037,6 +104285,40 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 26573 + components: + - type: Transform + pos: 10.5,24.5 + parent: 12 + - uid: 26576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,24.5 + parent: 12 + - uid: 26594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,27.5 + parent: 12 + - uid: 26595 + components: + - type: Transform + pos: 13.5,27.5 + parent: 12 + - uid: 26596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,24.5 + parent: 12 + - uid: 26602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,24.5 + parent: 12 - uid: 26985 components: - type: Transform @@ -106016,7 +106298,7 @@ entities: pos: 11.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2448 components: - type: Transform @@ -106055,7 +106337,7 @@ entities: pos: 4.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2677 components: - type: Transform @@ -106071,7 +106353,7 @@ entities: pos: 5.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 2692 components: - type: Transform @@ -106297,7 +106579,7 @@ entities: pos: 10.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 3464 components: - type: Transform @@ -107887,7 +108169,7 @@ entities: pos: 12.5,2.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 4390 components: - type: Transform @@ -109318,7 +109600,7 @@ entities: pos: 12.5,4.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5387 components: - type: Transform @@ -109342,7 +109624,7 @@ entities: pos: 9.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5399 components: - type: Transform @@ -109374,7 +109656,7 @@ entities: pos: 7.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5408 components: - type: Transform @@ -109398,7 +109680,7 @@ entities: pos: 6.5,6.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5418 components: - type: Transform @@ -109406,7 +109688,7 @@ entities: pos: 8.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5422 components: - type: Transform @@ -109530,7 +109812,7 @@ entities: pos: 12.5,1.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 5634 components: - type: Transform @@ -109893,7 +110175,7 @@ entities: pos: 3.5,9.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 6854 components: - type: Transform @@ -110707,7 +110989,7 @@ entities: pos: 3.5,8.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 7117 components: - type: Transform @@ -110715,7 +110997,7 @@ entities: pos: 3.5,10.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 7119 components: - type: Transform @@ -110731,7 +111013,7 @@ entities: pos: 3.5,11.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 7137 components: - type: Transform @@ -110787,7 +111069,7 @@ entities: pos: 3.5,12.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 7147 components: - type: Transform @@ -112420,7 +112702,7 @@ entities: pos: 12.5,0.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 8981 components: - type: Transform @@ -114019,15 +114301,7 @@ entities: pos: 13.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' - - uid: 11323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 11344 components: - type: Transform @@ -114113,7 +114387,7 @@ entities: pos: 12.5,3.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' - uid: 11592 components: - type: Transform @@ -124947,6 +125221,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 12 - uid: 25959 components: - type: Transform @@ -125260,6 +125540,100 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 26559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,19.5 + parent: 12 + - uid: 26561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,20.5 + parent: 12 + - uid: 26562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,21.5 + parent: 12 + - uid: 26563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,22.5 + parent: 12 + - uid: 26572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,23.5 + parent: 12 + - uid: 26578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,23.5 + parent: 12 + - uid: 26581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,22.5 + parent: 12 + - uid: 26582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,21.5 + parent: 12 + - uid: 26585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,20.5 + parent: 12 + - uid: 26587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,19.5 + parent: 12 + - uid: 26603 + components: + - type: Transform + pos: 9.5,25.5 + parent: 12 + - uid: 26604 + components: + - type: Transform + pos: 9.5,26.5 + parent: 12 + - uid: 26605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 12 + - uid: 26608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,27.5 + parent: 12 + - uid: 26612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,25.5 + parent: 12 + - uid: 26613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,26.5 + parent: 12 - uid: 26629 components: - type: Transform @@ -134737,7 +135111,28 @@ entities: pos: 3.5,13.5 parent: 12 - type: AtmosPipeColor - color: '#947507FF' + color: '#FFA500FF' + - uid: 26045 + components: + - type: MetaData + name: volumetric gas pump to TEG + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 26556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,18.5 + parent: 12 + - uid: 26592 + components: + - type: Transform + pos: 12.5,18.5 + parent: 12 - proto: Gauze entities: - uid: 13825 @@ -141877,6 +142272,24 @@ entities: - type: Transform pos: -40.5,57.5 parent: 12 + - uid: 26156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,22.5 + parent: 12 + - uid: 26157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 12 + - uid: 26158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,20.5 + parent: 12 - uid: 26171 components: - type: Transform @@ -141990,6 +142403,12 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-54.5 parent: 12 + - uid: 26201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,22.5 + parent: 12 - uid: 26229 components: - type: Transform @@ -144638,6 +145057,12 @@ entities: - type: Transform pos: -45.5,-19.5 parent: 12 + - uid: 26617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,27.5 + parent: 12 - uid: 28293 components: - type: Transform @@ -146019,11 +146444,6 @@ entities: parent: 12 - proto: LockerElectricalSuppliesFilled entities: - - uid: 2369 - components: - - type: Transform - pos: 33.5,-11.5 - parent: 12 - uid: 4523 components: - type: Transform @@ -146059,6 +146479,11 @@ entities: - type: Transform pos: 48.5,63.5 parent: 12 + - uid: 26159 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 12 - uid: 32071 components: - type: Transform @@ -146593,15 +147018,15 @@ entities: - type: Transform pos: 47.5,53.5 parent: 12 - - uid: 27154 + - uid: 26203 components: - type: Transform - pos: -54.5,-17.5 + pos: 4.5,-14.5 parent: 12 - - uid: 28050 + - uid: 27154 components: - type: Transform - pos: 3.5,-23.5 + pos: -54.5,-17.5 parent: 12 - proto: LogicGateOr entities: @@ -148631,6 +149056,33 @@ entities: - type: Transform pos: 54.333927,24.618994 parent: 12 + - uid: 26645 + components: + - type: Transform + pos: 58.5,6.5 + parent: 12 + - type: Paper + content: >- + Notes to self: + + + - [bold]BUILD METEOR DEFENCE FOR TESLA!!![/bold] + + - Don't put tesla coils or grounding rods near the emitters + + - Tesla coils need to be hooked up to HV to generate power, emitters need to be hooked up to MV to work + + - Make sure [bold]ALL[/bold] the emitters and containment field generators are turned on and locked before starting the tesla + + - Turn off the PA after the tesla starts + + - Remember to repair tesla coils and grounding rods using welding fuel + + - Don't put the emitters too close to the tesla, don't put the tesla coils too far from the tesla + + - Make sure the emitters are not shooting at the tesla coils or grounding rods + + - [bold]WEAR INSULATED GLOVES WHEN WORKING ON THE TESLA!!![/bold] - uid: 29970 components: - type: Transform @@ -149077,13 +149529,14 @@ entities: - uid: 8435 components: - type: Transform - rot: -6.283185307179586 rad - pos: 53.5426,-3.492909 + rot: -43.98229715025713 rad + pos: 61.374832,-3.3119311 parent: 12 - uid: 8436 components: - type: Transform - pos: 61.5,-3.5 + rot: -43.98229715025713 rad + pos: 61.708168,-3.4995613 parent: 12 - uid: 16482 components: @@ -149748,6 +150201,13 @@ entities: rot: -6.283185307179586 rad pos: -2.5359287,58.81089 parent: 12 +- proto: PlushieSpaceLizard + entities: + - uid: 26670 + components: + - type: Transform + pos: -3.4178286,7.476963 + parent: 12 - proto: PlushieVox entities: - uid: 21518 @@ -149881,8 +150341,11 @@ entities: - uid: 2465 components: - type: Transform + anchored: True pos: 8.5,-13.5 parent: 12 + - type: Physics + bodyType: Static - proto: PortableScrubber entities: - uid: 1760 @@ -154113,6 +154576,11 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-49.5 parent: 12 + - uid: 26520 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 12 - uid: 26560 components: - type: Transform @@ -154488,11 +154956,6 @@ entities: - type: Transform pos: 39.5,-19.5 parent: 12 - - uid: 7524 - components: - - type: Transform - pos: 54.5,-5.5 - parent: 12 - uid: 8040 components: - type: Transform @@ -154981,6 +155444,11 @@ entities: - type: Transform pos: -34.5,-34.5 parent: 12 + - uid: 26007 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 12 - uid: 26301 components: - type: Transform @@ -157609,6 +158077,24 @@ entities: - type: Transform pos: 9.5,19.5 parent: 12 + - uid: 26622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 12 + - uid: 26637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,20.5 + parent: 12 + - uid: 26638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,22.5 + parent: 12 - uid: 26639 components: - type: Transform @@ -157619,6 +158105,12 @@ entities: - type: Transform pos: 10.5,0.5 parent: 12 + - uid: 26642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,22.5 + parent: 12 - uid: 26672 components: - type: Transform @@ -164012,6 +164504,13 @@ entities: - type: Transform pos: 49.57303,47.439972 parent: 12 +- proto: SheetPlasma + entities: + - uid: 26077 + components: + - type: Transform + pos: 39.5,4.5 + parent: 12 - proto: SheetPlasma1 entities: - uid: 22020 @@ -164028,14 +164527,6 @@ entities: - type: Transform pos: -35.41417,-37.542362 parent: 12 - - uid: 29092 - components: - - type: Transform - rot: -12.566370614359172 rad - pos: 39.49274,4.534418 - parent: 12 - - type: Stack - count: 20 - proto: SheetPlasteel entities: - uid: 7311 @@ -164051,8 +164542,14 @@ entities: - uid: 23173 components: - type: Transform - rot: -6.283185307179586 rad - pos: 57.489006,-5.2227006 + rot: -43.98229715025713 rad + pos: 53.468582,-3.3849072 + parent: 12 + - uid: 26101 + components: + - type: Transform + rot: -43.98229715025713 rad + pos: 57.301918,-5.261206 parent: 12 - proto: SheetPlastic entities: @@ -164117,7 +164614,8 @@ entities: - uid: 8439 components: - type: Transform - pos: 61.5,-3.5 + rot: -43.98229715025713 rad + pos: 57.63525,-5.083999 parent: 12 - uid: 8898 components: @@ -164165,14 +164663,14 @@ entities: parent: 12 - proto: SheetUranium1 entities: - - uid: 11371 + - uid: 26534 components: - type: Transform - rot: -18.84955592153876 rad - pos: 9.582282,-13.607407 + rot: -56.54866776461632 rad + pos: 9.501114,-13.461607 parent: 12 - type: Stack - count: 10 + count: 15 - proto: ShelfBar entities: - uid: 22816 @@ -166249,6 +166747,12 @@ entities: - type: Transform pos: 30.5,60.5 parent: 12 + - uid: 26064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-10.5 + parent: 12 - uid: 28212 components: - type: Transform @@ -166392,6 +166896,11 @@ entities: - type: Transform pos: 43.38873,16.572454 parent: 12 + - uid: 26524 + components: + - type: Transform + pos: 33.465336,-10.465965 + parent: 12 - proto: SodaDispenser entities: - uid: 8983 @@ -170036,11 +170545,6 @@ entities: parent: 12 - proto: SubstationBasic entities: - - uid: 19 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 12 - uid: 2121 components: - type: Transform @@ -170076,6 +170580,11 @@ entities: - type: Transform pos: -11.5,-19.5 parent: 12 + - uid: 4761 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 12 - uid: 4890 components: - type: Transform @@ -170512,6 +171021,16 @@ entities: - SurveillanceCameraCommand nameSet: True id: AI core + - uid: 26204 + components: + - type: Transform + pos: 4.5,7.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI exterior - uid: 28804 components: - type: Transform @@ -170592,39 +171111,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos lockers/engi hallway - - uid: 4715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,1.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engi hallway AME - - uid: 4761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,16.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG East - - uid: 6774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,8.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Tesla containment - uid: 7157 components: - type: Transform @@ -170711,6 +171197,102 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering entrance + - uid: 26102 + components: + - type: Transform + pos: 52.5,4.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Break room + - uid: 26133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,1.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment entrance + - uid: 26139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,8.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Tesla North + - uid: 26533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,4.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Station anchor + - uid: 26535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,0.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Tesla South + - uid: 26549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-3.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment control room + - uid: 26551 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment airlock + - uid: 26553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG East + - uid: 26646 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME hallway - uid: 27001 components: - type: Transform @@ -175994,10 +176576,10 @@ entities: bodyType: Dynamic - proto: TeslaGenerator entities: - - uid: 4988 + - uid: 26531 components: - type: Transform - pos: 60.5,10.5 + pos: 57.5,10.5 parent: 12 - proto: TeslaGroundingRod entities: @@ -176033,6 +176615,22 @@ entities: parent: 12 - type: Physics bodyType: Dynamic + - uid: 26153 + components: + - type: Transform + anchored: False + pos: 59.5,10.5 + parent: 12 + - type: Physics + bodyType: Dynamic + - uid: 26530 + components: + - type: Transform + anchored: False + pos: 60.5,10.5 + parent: 12 + - type: Physics + bodyType: Dynamic - proto: ThermomachineFreezerMachineCircuitBoard entities: - uid: 11244 @@ -176171,6 +176769,11 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,54.5 parent: 12 + - uid: 26160 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 12 - proto: ToiletEmpty entities: - uid: 4220 @@ -176751,6 +177354,11 @@ entities: parent: 12 - proto: TrashBakedBananaPeel entities: + - uid: 26132 + components: + - type: Transform + pos: -1.5,21.5 + parent: 12 - uid: 31148 components: - type: Transform @@ -178005,6 +178613,11 @@ entities: parent: 12 - proto: VendingMachineTankDispenserEngineering entities: + - uid: 26669 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 12 - uid: 27384 components: - type: Transform @@ -178601,12 +179214,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-16.5 parent: 12 - - uid: 185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-16.5 - parent: 12 - uid: 186 components: - type: Transform @@ -179119,11 +179726,6 @@ entities: - type: Transform pos: -31.5,-33.5 parent: 12 - - uid: 683 - components: - - type: Transform - pos: 32.5,-11.5 - parent: 12 - uid: 685 components: - type: Transform @@ -180097,27 +180699,12 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,-3.5 parent: 12 - - uid: 4681 - components: - - type: Transform - pos: 10.5,22.5 - parent: 12 - uid: 4682 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 12 - - uid: 4683 - components: - - type: Transform - pos: 12.5,20.5 - parent: 12 - - uid: 4684 - components: - - type: Transform - pos: 10.5,20.5 - parent: 12 - uid: 4685 components: - type: Transform @@ -180358,30 +180945,12 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-10.5 parent: 12 - - uid: 5170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-9.5 - parent: 12 - uid: 5172 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-12.5 parent: 12 - - uid: 5175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-12.5 - parent: 12 - - uid: 5176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-12.5 - parent: 12 - uid: 5189 components: - type: Transform @@ -182306,11 +182875,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,15.5 parent: 12 - - uid: 10655 - components: - - type: Transform - pos: 12.5,22.5 - parent: 12 - uid: 10669 components: - type: Transform @@ -186369,6 +186933,17 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,66.5 parent: 12 + - uid: 25870 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 12 + - uid: 25889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 12 - uid: 25902 components: - type: Transform @@ -186679,12 +187254,6 @@ entities: - type: Transform pos: 5.5,-10.5 parent: 12 - - uid: 27991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-15.5 - parent: 12 - uid: 28046 components: - type: Transform @@ -186848,12 +187417,6 @@ entities: - type: Transform pos: -4.5,7.5 parent: 12 - - uid: 28522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-14.5 - parent: 12 - uid: 28527 components: - type: Transform @@ -188356,6 +188919,18 @@ entities: - type: Transform pos: -29.5,-22.5 parent: 12 + - uid: 681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-9.5 + parent: 12 + - uid: 683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-11.5 + parent: 12 - uid: 686 components: - type: Transform @@ -195138,6 +195713,18 @@ entities: - type: Transform pos: -21.5,-9.5 parent: 12 + - uid: 26155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-12.5 + parent: 12 + - uid: 26162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-11.5 + parent: 12 - uid: 26184 components: - type: Transform From 867efe8b5ba551b85a167aa5dfbe9afe03899730 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82?= <123451459+JustArt1m@users.noreply.github.com> Date: Sun, 6 Oct 2024 15:48:49 +0300 Subject: [PATCH 186/213] Add flowers to loadout (#32097) * Add_Poppy&Lily * Add_FlowerWreath * Add_Headflowers Sprites, meta, prototype * Id_Changes * Changes * Update_Sprite * Desc_Change * Scale_Change * Sprite_Scaling --- .../Entities/Clothing/Head/misc.yml | 11 +++++++++++ .../Loadouts/Miscellaneous/trinkets.yml | 13 +++++++++++++ .../Prototypes/Loadouts/loadout_groups.yml | 2 ++ .../Misc/hairflower.rsi/equipped-HELMET.png | Bin 0 -> 297 bytes .../Head/Misc/hairflower.rsi/icon.png | Bin 0 -> 442 bytes .../Head/Misc/hairflower.rsi/meta.json | 18 ++++++++++++++++++ 6 files changed, 44 insertions(+) create mode 100644 Resources/Textures/Clothing/Head/Misc/hairflower.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Clothing/Head/Misc/hairflower.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Head/Misc/hairflower.rsi/meta.json diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index 22ea8ed6ba606c..254eaf37c80f5c 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -312,3 +312,14 @@ - WhitelistChameleon - type: StaticPrice price: 1 + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHairflower + name: hairflower + description: A beautiful hairflower that can be inserted between locks of hair. + components: + - type: Sprite + sprite: Clothing/Head/Misc/hairflower.rsi + - type: Clothing + sprite: Clothing/Head/Misc/hairflower.rsi diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml index ea70828ce4a24d..14c1174a7d06d7 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml @@ -8,6 +8,19 @@ department: Command time: 3600 # 1 hour +# Flowers +- type: loadout + id: FlowerWreath + storage: + back: + - ClothingHeadHatFlowerWreath + +- type: loadout + id: Hairflower + storage: + back: + - ClothingHeadHatHairflower + # Plushies - type: loadout id: PlushieLizard diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index 1483fc3c11ffb2..069dae3ae1a4b6 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -5,6 +5,8 @@ minLimit: 0 maxLimit: 3 loadouts: + - FlowerWreath + - Hairflower - PlushieLizard - PlushieSpaceLizard - Lighter diff --git a/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Misc/hairflower.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..d1a436b83793c3d52c053dfcff4d88fe84243253 GIT binary patch literal 297 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=A3R+gLn`LHowbpZ$x(#$eph3R z?z3mt+kIz7Hru{f`YfuYbEbmQ9N!w5zPXwYjLmgoKHW0$eK}K9*Wq$)L+R0p*X!mS zSG2Tw{>E>5SmEdRDSH|UJ>Jbv*&TUhySgSSd=tPx$bV)=(R9J=Wmc44jFcgJPN*c)EK)_l%c2e+=)oaH>roKSOyhDe)Ltdg&z@wib zLy4x2U9Z4ULjz499TEw}jVf7AI<)@4Aj?1Z_}qIX11&B8olcX77vs@RjVH@h(7S>K zEXJc%m|qc~&~}pq zurIjCa&J|n%Qb5ep31cN;%qCk6I428y#a&} zV2pu?z&Xd$=Q{v=bIi3iI2}-_Fj2wg!#+6Y+6k3!^Kf;6R~uGIvK(oe0@$bF`Su3D z!J(QfqIU{Tb%W}JB+Kz~e|I$RD Date: Sun, 6 Oct 2024 12:49:56 +0000 Subject: [PATCH 187/213] 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 b46f5c46be7e1c..cfa746141e6f2c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: Thief game rule now properly selects more than one thief. - type: Fix - id: 6990 - time: '2024-07-27T07:27:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30393 - author: BombasterDS changes: - message: Added new plant mutations for apple, sugarcane and galaxythistle @@ -3942,3 +3935,10 @@ id: 7489 time: '2024-10-05T18:44:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32452 +- author: Just_Art + changes: + - message: Added a flower wreath and hairflower to loadout! + type: Add + id: 7490 + time: '2024-10-06T12:48:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32097 From 46a2eb545e39a63f48b8da3d1fa78da47e0f6db2 Mon Sep 17 00:00:00 2001 From: Golinth Date: Sun, 6 Oct 2024 08:33:02 -0500 Subject: [PATCH 188/213] Fully Revert Clown Waddling (#32652) Fully revert Clown Waddling (revival of #29161) A sad day, see #29156 for discussion --- .../Movement/Systems/WaddleAnimationSystem.cs | 149 ------------------ .../Movement/Systems/WaddleAnimationSystem.cs | 5 - .../Components/WaddleWhenWornComponent.cs | 36 ----- .../EntitySystems/WaddleClothingSystem.cs | 32 ---- .../Components/WaddleAnimationComponent.cs | 74 --------- .../Systems/SharedWaddleAnimationSystem.cs | 106 ------------- .../Entities/Clothing/Shoes/misc.yml | 2 - .../Entities/Clothing/Shoes/specific.yml | 1 - 8 files changed, 405 deletions(-) delete mode 100644 Content.Client/Movement/Systems/WaddleAnimationSystem.cs delete mode 100644 Content.Server/Movement/Systems/WaddleAnimationSystem.cs delete mode 100644 Content.Shared/Clothing/Components/WaddleWhenWornComponent.cs delete mode 100644 Content.Shared/Clothing/EntitySystems/WaddleClothingSystem.cs delete mode 100644 Content.Shared/Movement/Components/WaddleAnimationComponent.cs delete mode 100644 Content.Shared/Movement/Systems/SharedWaddleAnimationSystem.cs diff --git a/Content.Client/Movement/Systems/WaddleAnimationSystem.cs b/Content.Client/Movement/Systems/WaddleAnimationSystem.cs deleted file mode 100644 index 0ed2d04f694af5..00000000000000 --- a/Content.Client/Movement/Systems/WaddleAnimationSystem.cs +++ /dev/null @@ -1,149 +0,0 @@ -using System.Numerics; -using Content.Client.Buckle; -using Content.Client.Gravity; -using Content.Shared.ActionBlocker; -using Content.Shared.Mobs.Systems; -using Content.Shared.Movement.Components; -using Content.Shared.Movement.Systems; -using Robust.Client.Animations; -using Robust.Client.GameObjects; -using Robust.Shared.Animations; - -namespace Content.Client.Movement.Systems; - -public sealed class WaddleAnimationSystem : SharedWaddleAnimationSystem -{ - [Dependency] private readonly AnimationPlayerSystem _animation = default!; - [Dependency] private readonly GravitySystem _gravity = default!; - [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; - [Dependency] private readonly BuckleSystem _buckle = default!; - [Dependency] private readonly MobStateSystem _mobState = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeAllEvent(OnStartWaddling); - SubscribeLocalEvent(OnAnimationCompleted); - SubscribeAllEvent(OnStopWaddling); - } - - private void OnStartWaddling(StartedWaddlingEvent msg, EntitySessionEventArgs args) - { - if (TryComp(GetEntity(msg.Entity), out var comp)) - StartWaddling((GetEntity(msg.Entity), comp)); - } - - private void OnStopWaddling(StoppedWaddlingEvent msg, EntitySessionEventArgs args) - { - if (TryComp(GetEntity(msg.Entity), out var comp)) - StopWaddling((GetEntity(msg.Entity), comp)); - } - - private void StartWaddling(Entity entity) - { - if (_animation.HasRunningAnimation(entity.Owner, entity.Comp.KeyName)) - return; - - if (!TryComp(entity.Owner, out var mover)) - return; - - if (_gravity.IsWeightless(entity.Owner)) - return; - - if (!_actionBlocker.CanMove(entity.Owner, mover)) - return; - - // Do nothing if buckled in - if (_buckle.IsBuckled(entity.Owner)) - return; - - // Do nothing if crit or dead (for obvious reasons) - if (_mobState.IsIncapacitated(entity.Owner)) - return; - - PlayWaddleAnimationUsing( - (entity.Owner, entity.Comp), - CalculateAnimationLength(entity.Comp, mover), - CalculateTumbleIntensity(entity.Comp) - ); - } - - private static float CalculateTumbleIntensity(WaddleAnimationComponent component) - { - return component.LastStep ? 360 - component.TumbleIntensity : component.TumbleIntensity; - } - - private static float CalculateAnimationLength(WaddleAnimationComponent component, InputMoverComponent mover) - { - return mover.Sprinting ? component.AnimationLength * component.RunAnimationLengthMultiplier : component.AnimationLength; - } - - private void OnAnimationCompleted(Entity entity, ref AnimationCompletedEvent args) - { - if (args.Key != entity.Comp.KeyName) - return; - - if (!TryComp(entity.Owner, out var mover)) - return; - - PlayWaddleAnimationUsing( - (entity.Owner, entity.Comp), - CalculateAnimationLength(entity.Comp, mover), - CalculateTumbleIntensity(entity.Comp) - ); - } - - private void StopWaddling(Entity entity) - { - if (!_animation.HasRunningAnimation(entity.Owner, entity.Comp.KeyName)) - return; - - _animation.Stop(entity.Owner, entity.Comp.KeyName); - - if (!TryComp(entity.Owner, out var sprite)) - return; - - sprite.Offset = new Vector2(); - sprite.Rotation = Angle.FromDegrees(0); - } - - private void PlayWaddleAnimationUsing(Entity entity, float len, float tumbleIntensity) - { - entity.Comp.LastStep = !entity.Comp.LastStep; - - var anim = new Animation() - { - Length = TimeSpan.FromSeconds(len), - AnimationTracks = - { - new AnimationTrackComponentProperty() - { - ComponentType = typeof(SpriteComponent), - Property = nameof(SpriteComponent.Rotation), - InterpolationMode = AnimationInterpolationMode.Linear, - KeyFrames = - { - new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(0), 0), - new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(tumbleIntensity), len/2), - new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(0), len/2), - } - }, - new AnimationTrackComponentProperty() - { - ComponentType = typeof(SpriteComponent), - Property = nameof(SpriteComponent.Offset), - InterpolationMode = AnimationInterpolationMode.Linear, - KeyFrames = - { - new AnimationTrackProperty.KeyFrame(new Vector2(), 0), - new AnimationTrackProperty.KeyFrame(entity.Comp.HopIntensity, len/2), - new AnimationTrackProperty.KeyFrame(new Vector2(), len/2), - } - } - } - }; - - _animation.Play(entity.Owner, anim, entity.Comp.KeyName); - } -} diff --git a/Content.Server/Movement/Systems/WaddleAnimationSystem.cs b/Content.Server/Movement/Systems/WaddleAnimationSystem.cs deleted file mode 100644 index e6083210e1bffa..00000000000000 --- a/Content.Server/Movement/Systems/WaddleAnimationSystem.cs +++ /dev/null @@ -1,5 +0,0 @@ -using Content.Shared.Movement.Systems; - -namespace Content.Server.Movement.Systems; - -public sealed class WaddleAnimationSystem : SharedWaddleAnimationSystem; diff --git a/Content.Shared/Clothing/Components/WaddleWhenWornComponent.cs b/Content.Shared/Clothing/Components/WaddleWhenWornComponent.cs deleted file mode 100644 index fb7490ef4fbec5..00000000000000 --- a/Content.Shared/Clothing/Components/WaddleWhenWornComponent.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Numerics; -using Robust.Shared.GameStates; - -namespace Content.Shared.Clothing.Components; - -/// -/// Defines something as causing waddling when worn. -/// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -public sealed partial class WaddleWhenWornComponent : Component -{ - /// - /// How high should they hop during the waddle? Higher hop = more energy. - /// - [DataField, AutoNetworkedField] - public Vector2 HopIntensity = new(0, 0.25f); - - /// - /// How far should they rock backward and forward during the waddle? - /// Each step will alternate between this being a positive and negative rotation. More rock = more scary. - /// - [DataField, AutoNetworkedField] - public float TumbleIntensity = 20.0f; - - /// - /// How long should a complete step take? Less time = more chaos. - /// - [DataField, AutoNetworkedField] - public float AnimationLength = 0.66f; - - /// - /// How much shorter should the animation be when running? - /// - [DataField, AutoNetworkedField] - public float RunAnimationLengthMultiplier = 0.568f; -} diff --git a/Content.Shared/Clothing/EntitySystems/WaddleClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/WaddleClothingSystem.cs deleted file mode 100644 index b445eb258e9a1a..00000000000000 --- a/Content.Shared/Clothing/EntitySystems/WaddleClothingSystem.cs +++ /dev/null @@ -1,32 +0,0 @@ -using Content.Shared.Clothing; -using Content.Shared.Clothing.Components; -using Content.Shared.Movement.Components; -using Content.Shared.Inventory.Events; - -namespace Content.Shared.Clothing.EntitySystems; - -public sealed class WaddleClothingSystem : EntitySystem -{ - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); - } - - private void OnGotEquipped(EntityUid entity, WaddleWhenWornComponent comp, ClothingGotEquippedEvent args) - { - var waddleAnimComp = EnsureComp(args.Wearer); - - waddleAnimComp.AnimationLength = comp.AnimationLength; - waddleAnimComp.HopIntensity = comp.HopIntensity; - waddleAnimComp.RunAnimationLengthMultiplier = comp.RunAnimationLengthMultiplier; - waddleAnimComp.TumbleIntensity = comp.TumbleIntensity; - } - - private void OnGotUnequipped(EntityUid entity, WaddleWhenWornComponent comp, ClothingGotUnequippedEvent args) - { - RemComp(args.Wearer); - } -} diff --git a/Content.Shared/Movement/Components/WaddleAnimationComponent.cs b/Content.Shared/Movement/Components/WaddleAnimationComponent.cs deleted file mode 100644 index 3cd9a3749e81c1..00000000000000 --- a/Content.Shared/Movement/Components/WaddleAnimationComponent.cs +++ /dev/null @@ -1,74 +0,0 @@ -using System.Numerics; -using Robust.Shared.Serialization; - -namespace Content.Shared.Movement.Components; - -/// -/// Declares that an entity has started to waddle like a duck/clown. -/// -/// The newly be-waddled. -[Serializable, NetSerializable] -public sealed class StartedWaddlingEvent(NetEntity entity) : EntityEventArgs -{ - public NetEntity Entity = entity; -} - -/// -/// Declares that an entity has stopped waddling like a duck/clown. -/// -/// The former waddle-er. -[Serializable, NetSerializable] -public sealed class StoppedWaddlingEvent(NetEntity entity) : EntityEventArgs -{ - public NetEntity Entity = entity; -} - -/// -/// Defines something as having a waddle animation when it moves. -/// -[RegisterComponent, AutoGenerateComponentState] -public sealed partial class WaddleAnimationComponent : Component -{ - /// - /// What's the name of this animation? Make sure it's unique so it can play along side other animations. - /// This prevents someone accidentally causing two identical waddling effects to play on someone at the same time. - /// - [DataField] - public string KeyName = "Waddle"; - - /// - /// How high should they hop during the waddle? Higher hop = more energy. - /// - [DataField, AutoNetworkedField] - public Vector2 HopIntensity = new(0, 0.25f); - - /// - /// How far should they rock backward and forward during the waddle? - /// Each step will alternate between this being a positive and negative rotation. More rock = more scary. - /// - [DataField, AutoNetworkedField] - public float TumbleIntensity = 20.0f; - - /// - /// How long should a complete step take? Less time = more chaos. - /// - [DataField, AutoNetworkedField] - public float AnimationLength = 0.66f; - - /// - /// How much shorter should the animation be when running? - /// - [DataField, AutoNetworkedField] - public float RunAnimationLengthMultiplier = 0.568f; - - /// - /// Stores which step we made last, so if someone cancels out of the animation mid-step then restarts it looks more natural. - /// - public bool LastStep; - - /// - /// Stores if we're currently waddling so we can start/stop as appropriate and can tell other systems our state. - /// - [AutoNetworkedField] - public bool IsCurrentlyWaddling; -} diff --git a/Content.Shared/Movement/Systems/SharedWaddleAnimationSystem.cs b/Content.Shared/Movement/Systems/SharedWaddleAnimationSystem.cs deleted file mode 100644 index cebae8093b4015..00000000000000 --- a/Content.Shared/Movement/Systems/SharedWaddleAnimationSystem.cs +++ /dev/null @@ -1,106 +0,0 @@ -using Content.Shared.Buckle.Components; -using Content.Shared.Gravity; -using Content.Shared.Movement.Components; -using Content.Shared.Movement.Events; -using Content.Shared.Movement.Systems; -using Content.Shared.Standing; -using Content.Shared.Stunnable; -using Robust.Shared.Timing; - -namespace Content.Shared.Movement.Systems; - -public abstract class SharedWaddleAnimationSystem : EntitySystem -{ - [Dependency] private readonly IGameTiming _timing = default!; - - public override void Initialize() - { - // Startup - SubscribeLocalEvent(OnComponentStartup); - - // Start moving possibilities - SubscribeLocalEvent(OnMovementInput); - SubscribeLocalEvent(OnStood); - - // Stop moving possibilities - SubscribeLocalEvent((Entity ent, ref StunnedEvent _) => StopWaddling(ent)); - SubscribeLocalEvent((Entity ent, ref DownedEvent _) => StopWaddling(ent)); - SubscribeLocalEvent((Entity ent, ref BuckledEvent _) => StopWaddling(ent)); - SubscribeLocalEvent(OnGravityChanged); - } - - private void OnGravityChanged(Entity ent, ref GravityChangedEvent args) - { - if (!args.HasGravity && ent.Comp.IsCurrentlyWaddling) - StopWaddling(ent); - } - - private void OnComponentStartup(Entity entity, ref ComponentStartup args) - { - if (!TryComp(entity.Owner, out var moverComponent)) - return; - - // If the waddler is currently moving, make them start waddling - if ((moverComponent.HeldMoveButtons & MoveButtons.AnyDirection) == MoveButtons.AnyDirection) - { - RaiseNetworkEvent(new StartedWaddlingEvent(GetNetEntity(entity.Owner))); - } - } - - private void OnMovementInput(Entity entity, ref MoveInputEvent args) - { - // Prediction mitigation. Prediction means that MoveInputEvents are spammed repeatedly, even though you'd assume - // they're once-only for the user actually doing something. As such do nothing if we're just repeating this FoR. - if (!_timing.IsFirstTimePredicted) - { - return; - } - - if (!args.HasDirectionalMovement && entity.Comp.IsCurrentlyWaddling) - { - StopWaddling(entity); - - return; - } - - // Only start waddling if we're not currently AND we're actually moving. - if (entity.Comp.IsCurrentlyWaddling || !args.HasDirectionalMovement) - return; - - entity.Comp.IsCurrentlyWaddling = true; - - RaiseNetworkEvent(new StartedWaddlingEvent(GetNetEntity(entity.Owner))); - } - - private void OnStood(Entity entity, ref StoodEvent args) - { - // Prediction mitigation. Prediction means that MoveInputEvents are spammed repeatedly, even though you'd assume - // they're once-only for the user actually doing something. As such do nothing if we're just repeating this FoR. - if (!_timing.IsFirstTimePredicted) - { - return; - } - - if (!TryComp(entity.Owner, out var mover)) - { - return; - } - - if ((mover.HeldMoveButtons & MoveButtons.AnyDirection) == MoveButtons.None) - return; - - if (entity.Comp.IsCurrentlyWaddling) - return; - - entity.Comp.IsCurrentlyWaddling = true; - - RaiseNetworkEvent(new StartedWaddlingEvent(GetNetEntity(entity.Owner))); - } - - private void StopWaddling(Entity entity) - { - entity.Comp.IsCurrentlyWaddling = false; - - RaiseNetworkEvent(new StoppedWaddlingEvent(GetNetEntity(entity.Owner))); - } -} diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml index ea4c9d9c7cdd78..61dda89d13720f 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml @@ -47,8 +47,6 @@ collection: FootstepDuck params: variation: 0.07 - - type: WaddleWhenWorn - tumbleIntensity: 10 # smaller than clown shoes - type: Construction graph: ClothingShoeSlippersDuck node: shoes diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index bd37135e98d7d1..a4fbe012c52a5b 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -15,7 +15,6 @@ parent: [ClothingShoesBaseButcherable, ClothingSlotBase] id: ClothingShoesClownBase components: - - type: WaddleWhenWorn - type: ItemSlots slots: item: From a6c468b6971c1731da5f030e98036e6d80822dd1 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 6 Oct 2024 13:34:08 +0000 Subject: [PATCH 189/213] 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 cfa746141e6f2c..dd28bae785cbdb 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: BombasterDS - changes: - - message: Added new plant mutations for apple, sugarcane and galaxythistle - type: Add - id: 6991 - time: '2024-07-27T15:08:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28993 - author: Spessmann changes: - message: Thief objectives for figurines and stamps now require less items @@ -3942,3 +3935,10 @@ id: 7490 time: '2024-10-06T12:48:49.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32097 +- author: Golinth + changes: + - message: Removed clown waddling until implemented properly + type: Remove + id: 7491 + time: '2024-10-06T13:33:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32652 From 6b10e00da495379d61b35e3b809d2564cc3228c6 Mon Sep 17 00:00:00 2001 From: Scribbles0 <91828755+Scribbles0@users.noreply.github.com> Date: Sun, 6 Oct 2024 18:24:44 -0700 Subject: [PATCH 190/213] oasis update (#32679) sec apcs and ai core wiring --- Resources/Maps/oasis.yml | 273 ++++++++++++++++++++++++++++++++++----- 1 file changed, 238 insertions(+), 35 deletions(-) diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 8cde5f558c2a76..15a719bb532b5b 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -14470,7 +14470,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -75908.84 + secondsUntilStateChange: -76151.9 state: Opening - uid: 6934 components: @@ -14482,7 +14482,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -75911.48 + secondsUntilStateChange: -76154.53 state: Opening - uid: 6935 components: @@ -14494,7 +14494,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -75910.33 + secondsUntilStateChange: -76153.38 state: Opening - uid: 6936 components: @@ -14505,7 +14505,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -75909.55 + secondsUntilStateChange: -76152.6 state: Opening - proto: AirlockTheatreLocked entities: @@ -15707,12 +15707,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-5.5 parent: 2 - - uid: 2421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-18.5 - parent: 2 - uid: 2763 components: - type: Transform @@ -15885,6 +15879,30 @@ entities: rot: 3.141592653589793 rad pos: 25.5,35.5 parent: 2 + - uid: 29578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-13.5 + parent: 2 + - uid: 29579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-8.5 + parent: 2 + - uid: 29580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-23.5 + parent: 2 + - uid: 29581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-17.5 + parent: 2 - proto: APCElectronics entities: - uid: 5818 @@ -42197,27 +42215,27 @@ entities: - uid: 4624 components: - type: Transform - pos: 38.5,-17.5 + pos: 54.5,-17.5 parent: 2 - uid: 4625 components: - type: Transform - pos: 39.5,-17.5 + pos: 34.5,-13.5 parent: 2 - uid: 4626 components: - type: Transform - pos: 40.5,-17.5 + pos: 39.5,-11.5 parent: 2 - uid: 4627 components: - type: Transform - pos: 41.5,-17.5 + pos: 55.5,-17.5 parent: 2 - uid: 4628 components: - type: Transform - pos: 41.5,-18.5 + pos: 53.5,-14.5 parent: 2 - uid: 4629 components: @@ -42292,7 +42310,7 @@ entities: - uid: 4643 components: - type: Transform - pos: 38.5,-16.5 + pos: 47.5,-14.5 parent: 2 - uid: 4644 components: @@ -42404,11 +42422,6 @@ entities: - type: Transform pos: 31.5,-15.5 parent: 2 - - uid: 4666 - components: - - type: Transform - pos: 41.5,-17.5 - parent: 2 - uid: 4667 components: - type: Transform @@ -42652,12 +42665,7 @@ entities: - uid: 4823 components: - type: Transform - pos: 50.5,-16.5 - parent: 2 - - uid: 4824 - components: - - type: Transform - pos: 50.5,-15.5 + pos: 60.5,18.5 parent: 2 - uid: 4825 components: @@ -43042,7 +43050,7 @@ entities: - uid: 5414 components: - type: Transform - pos: 39.5,-18.5 + pos: 46.5,-8.5 parent: 2 - uid: 5463 components: @@ -50027,7 +50035,7 @@ entities: - uid: 13051 components: - type: Transform - pos: 56.5,16.5 + pos: 45.5,-8.5 parent: 2 - uid: 13052 components: @@ -56209,6 +56217,46 @@ entities: - type: Transform pos: -59.5,-8.5 parent: 2 + - uid: 29575 + components: + - type: Transform + pos: 60.5,19.5 + parent: 2 + - uid: 29576 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 29577 + components: + - type: Transform + pos: 60.5,21.5 + parent: 2 + - uid: 29582 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - uid: 29583 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 29584 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 29585 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 2 + - uid: 29586 + components: + - type: Transform + pos: 37.5,-19.5 + parent: 2 - proto: CableApcStack1 entities: - uid: 23589 @@ -63885,7 +63933,7 @@ entities: - uid: 418 components: - type: Transform - pos: 39.5,-18.5 + pos: 46.5,-8.5 parent: 2 - uid: 867 components: @@ -63927,6 +63975,11 @@ entities: - type: Transform pos: -25.5,0.5 parent: 2 + - uid: 2421 + components: + - type: Transform + pos: 53.5,-17.5 + parent: 2 - uid: 3299 components: - type: Transform @@ -64200,12 +64253,17 @@ entities: - uid: 4564 components: - type: Transform - pos: 40.5,-17.5 + pos: 54.5,-17.5 parent: 2 - uid: 4565 components: - type: Transform - pos: 39.5,-17.5 + pos: 55.5,-17.5 + parent: 2 + - uid: 4666 + components: + - type: Transform + pos: 47.5,-8.5 parent: 2 - uid: 4686 components: @@ -64657,6 +64715,11 @@ entities: - type: Transform pos: 43.5,-37.5 parent: 2 + - uid: 4824 + components: + - type: Transform + pos: 48.5,-8.5 + parent: 2 - uid: 4855 components: - type: Transform @@ -69467,6 +69530,146 @@ entities: - type: Transform pos: 25.5,35.5 parent: 2 + - uid: 29587 + components: + - type: Transform + pos: 45.5,-8.5 + parent: 2 + - uid: 29588 + components: + - type: Transform + pos: 40.5,-21.5 + parent: 2 + - uid: 29589 + components: + - type: Transform + pos: 39.5,-21.5 + parent: 2 + - uid: 29590 + components: + - type: Transform + pos: 38.5,-21.5 + parent: 2 + - uid: 29591 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 2 + - uid: 29592 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 2 + - uid: 29593 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 + - uid: 29594 + components: + - type: Transform + pos: 37.5,-21.5 + parent: 2 + - uid: 29595 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 2 + - uid: 29596 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - uid: 29597 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - uid: 29598 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 29599 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 29600 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 29601 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 + - uid: 29602 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 2 + - uid: 29603 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - uid: 29604 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 29605 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 29606 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 29607 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 2 + - uid: 29608 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 29609 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - uid: 29610 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 + - uid: 29611 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 29612 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 29613 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 2 + - uid: 29614 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 - proto: CableTerminal entities: - uid: 6405 @@ -94055,7 +94258,7 @@ entities: pos: -13.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -67232.83 + secondsUntilStateChange: -67475.88 - type: DeviceNetwork deviceLists: - 18275 @@ -138604,7 +138807,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -104064.67 + secondsUntilStateChange: -104307.73 state: Opening - uid: 5211 components: @@ -189959,7 +190162,7 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -449269.3 + secondsUntilStateChange: -449512.38 state: Opening - uid: 28863 components: From eecbfb63a0dedc20abb7e195a71427081bc8b6dd Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Mon, 7 Oct 2024 19:19:42 +0200 Subject: [PATCH 191/213] Move client dumpentities command to "DEBUG" (#32687) --- Resources/clientCommandPerms.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/clientCommandPerms.yml b/Resources/clientCommandPerms.yml index 11418621fc28f2..2e613a0fce497a 100644 --- a/Resources/clientCommandPerms.yml +++ b/Resources/clientCommandPerms.yml @@ -20,7 +20,6 @@ - net_watchent - devwindow - fill - - dumpentities - ">" - gcf - gc @@ -73,6 +72,7 @@ - detachent - localdelete - fullstatereset + - dumpentities - Flags: MAPPING Commands: From f22f9e39c5e9af1a8f622e12eb2f916b69c6be22 Mon Sep 17 00:00:00 2001 From: Saphire Lattice Date: Tue, 8 Oct 2024 04:42:42 +0600 Subject: [PATCH 192/213] Change minibomb to be explosion resistant and start timer on damage (#32429) * Make minibomb explosion resistant and trigger timer on damage * Tune damage behaviour and threshold for minibomb --- .../Thresholds/Behaviors/TimerStartBehavior.cs | 10 ++++++++++ .../Objects/Weapons/Throwable/grenades.yml | 16 ++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 Content.Server/Destructible/Thresholds/Behaviors/TimerStartBehavior.cs diff --git a/Content.Server/Destructible/Thresholds/Behaviors/TimerStartBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/TimerStartBehavior.cs new file mode 100644 index 00000000000000..97a5f8b7ef5e86 --- /dev/null +++ b/Content.Server/Destructible/Thresholds/Behaviors/TimerStartBehavior.cs @@ -0,0 +1,10 @@ +namespace Content.Server.Destructible.Thresholds.Behaviors; + +[DataDefinition] +public sealed partial class TimerStartBehavior : IThresholdBehavior +{ + public void Execute(EntityUid owner, DestructibleSystem system, EntityUid? cause = null) + { + system.TriggerSystem.StartTimer(owner, cause); + } +} diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml index a279c56378f28b..8f253097abc3cd 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml @@ -106,6 +106,22 @@ components: - type: Sprite sprite: Objects/Weapons/Grenades/syndgrenade.rsi + - type: ExplosionResistance + damageCoefficient: 0.1 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:TimerStartBehavior + - trigger: + !type:DamageTrigger + damage: 45 + behaviors: + - !type:TriggerBehavior + - !type:DoActsBehavior + acts: ["Destruction"] - type: OnUseTimerTrigger delay: 5 - type: ExplodeOnTrigger From 34df781668bc1b2fec4c84111b4ee040d80de4ee Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 7 Oct 2024 22:43:51 +0000 Subject: [PATCH 193/213] 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 dd28bae785cbdb..62ef075a6c6251 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Spessmann - changes: - - message: Thief objectives for figurines and stamps now require less items - type: Tweak - id: 6992 - time: '2024-07-27T23:11:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30390 - author: metalgearsloth changes: - message: Moved VGRoid from 1,000m away to ~500m. @@ -3942,3 +3935,11 @@ id: 7491 time: '2024-10-06T13:33:02.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32652 +- author: SaphireLattice + changes: + - message: Minibomb is now explosion resistant and will start counting down if damaged + by a C4 + type: Tweak + id: 7492 + time: '2024-10-07T22:42:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32429 From 38fd54a1bf06d3f9e9d5a9e04388d872501391a0 Mon Sep 17 00:00:00 2001 From: Ubaser <134914314+UbaserB@users.noreply.github.com> Date: Tue, 8 Oct 2024 12:59:06 +1100 Subject: [PATCH 194/213] Update Core (#32665) * add * remove invalids * fix * yes --- Resources/Maps/core.yml | 37786 +++++++++++++++++--------------------- 1 file changed, 16354 insertions(+), 21432 deletions(-) diff --git a/Resources/Maps/core.yml b/Resources/Maps/core.yml index 6968f69c4dba5c..1c5b67b5005dc1 100644 --- a/Resources/Maps/core.yml +++ b/Resources/Maps/core.yml @@ -899,6 +899,8 @@ entities: 7347: 63,-36 7354: 62,-37 7410: 23,-53 + 7417: -55,-46 + 7418: -41,-46 - node: cleanable: True color: '#FFFFFFFF' @@ -1503,6 +1505,8 @@ entities: 6990: -33,-5 6991: -31,-5 7406: 8,-49 + 7419: -4,-12 + 7420: -5,-12 - node: cleanable: True color: '#FFFFFFFF' @@ -10325,7 +10329,8 @@ entities: 1,5: 1: 47359 1,6: - 1: 15291 + 1: 15289 + 7: 2 1,7: 1: 65307 1,8: @@ -10359,7 +10364,8 @@ entities: -3,7: 1: 55807 -3,8: - 1: 3549 + 1: 3533 + 8: 16 -2,5: 1: 30719 -2,6: @@ -11612,6 +11618,36 @@ 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: 293.15 + moles: + - 21.824873 + - 82.1031 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -11890,6 +11926,22 @@ entities: - 493 - 492 - 491 + - uid: 1973 + components: + - type: Transform + pos: 0.5,49.5 + parent: 2 + - type: DeviceList + devices: + - 8585 + - 8586 + - 8581 + - 8582 + - 8583 + - 8584 + - 18743 + - 18741 + - 18742 - uid: 2086 components: - type: Transform @@ -13265,22 +13317,6 @@ entities: - 18684 - 18683 - 18682 - - uid: 8462 - components: - - type: Transform - pos: 1.5,49.5 - parent: 2 - - type: DeviceList - devices: - - 8585 - - 8586 - - 8581 - - 8582 - - 8583 - - 8584 - - 18743 - - 18741 - - 18742 - uid: 8463 components: - type: Transform @@ -15227,21 +15263,21 @@ entities: rot: 1.5707963267948966 rad pos: 73.5,-2.5 parent: 2 - - uid: 15229 + - uid: 15230 components: - type: MetaData name: Evacuation pod docking airlock - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,1.5 + pos: 73.5,5.5 parent: 2 - - uid: 15230 + - uid: 17539 components: - type: MetaData name: Evacuation pod docking airlock - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,5.5 + pos: 73.5,1.5 parent: 2 - uid: 21378 components: @@ -17040,16 +17076,22 @@ entities: parent: 2 - proto: AirlockSalvageGlassLocked entities: - - uid: 5544 + - uid: 8230 components: - type: MetaData name: Salvage airlock - type: Transform - rot: -1.5707963267948966 rad pos: 32.5,18.5 parent: 2 - proto: AirlockScienceGlassLocked entities: + - uid: 1988 + components: + - type: MetaData + name: Artifact chamber airlock + - type: Transform + pos: 78.5,-13.5 + parent: 2 - uid: 7106 components: - type: MetaData @@ -17078,13 +17120,10 @@ entities: - type: Transform pos: 65.5,-21.5 parent: 2 - - uid: 7353 - components: - - type: Transform - pos: 78.5,-13.5 - parent: 2 - uid: 7354 components: + - type: MetaData + name: Artifact chamber airlock - type: Transform pos: 78.5,-17.5 parent: 2 @@ -17593,6 +17632,9 @@ entities: - type: Transform pos: -1.5,45.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 18756 components: - type: Transform @@ -18318,12 +18360,12 @@ entities: - type: Transform pos: 16.69675,-24.555443 parent: 2 -- proto: AnomalyLocatorUnpowered +- proto: AnomalyLocatorEmpty entities: - - uid: 7240 + - uid: 6028 components: - type: Transform - pos: 67.51584,-14.324951 + pos: 67.48892,-14.349368 parent: 2 - proto: AnomalyScanner entities: @@ -20404,16 +20446,6 @@ entities: - type: Transform pos: -32.5,-2.5 parent: 2 - - uid: 22465 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 2 - - uid: 22466 - components: - - type: Transform - pos: -33.5,-1.5 - parent: 2 - proto: Autolathe entities: - uid: 127 @@ -21209,13 +21241,6 @@ entities: - type: Transform pos: -50.5,-20.5 parent: 2 -- proto: Bible - entities: - - uid: 6028 - components: - - type: Transform - pos: -30.352081,-37.38564 - parent: 2 - proto: BikeHorn entities: - uid: 1228 @@ -21230,6 +21255,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: Biogenerator + entities: + - uid: 2019 + components: + - type: Transform + pos: 3.5,50.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 - proto: BlastDoor entities: - uid: 157 @@ -21329,10 +21366,8 @@ entities: - type: Transform pos: 82.5,-18.5 parent: 2 - - uid: 7934 + - uid: 16684 components: - - type: MetaData - name: Disposals blast door - type: Transform pos: -9.5,-41.5 parent: 2 @@ -21952,10 +21987,10 @@ entities: - type: Transform pos: -4.63874,48.68385 parent: 2 - - uid: 14241 + - uid: 8009 components: - type: Transform - pos: -30.688831,14.685245 + pos: -31.929813,14.762749 parent: 2 - uid: 16333 components: @@ -63891,15 +63926,15 @@ entities: parent: 2 - proto: DiseaseSwab entities: - - uid: 5270 + - uid: 1972 components: - type: Transform - pos: 3.6125865,51.851067 + pos: 3.3475041,52.103363 parent: 2 - - uid: 21883 + - uid: 2013 components: - type: Transform - pos: 3.422883,51.88294 + pos: 3.2537541,52.134613 parent: 2 - proto: DisposalBend entities: @@ -69810,6 +69845,18 @@ entities: - type: Transform pos: 51.5,-38.5 parent: 2 + - uid: 1955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,45.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,50.5 + parent: 2 - uid: 2295 components: - type: Transform @@ -69846,6 +69893,12 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-6.5 parent: 2 + - uid: 5469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,51.5 + parent: 2 - uid: 5991 components: - type: Transform @@ -70351,12 +70404,6 @@ entities: - type: Transform pos: -8.5,29.5 parent: 2 - - uid: 17450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,51.5 - parent: 2 - uid: 17451 components: - type: Transform @@ -70504,12 +70551,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-4.5 parent: 2 - - uid: 21911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,45.5 - parent: 2 - uid: 22321 components: - type: Transform @@ -72957,12 +72998,18 @@ entities: rot: 3.141592653589793 rad pos: -2.5,44.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8582 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,44.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8593 components: - type: Transform @@ -73872,11 +73919,17 @@ entities: - type: Transform pos: -5.5,45.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8584 components: - type: Transform pos: 2.5,45.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8620 components: - type: Transform @@ -74944,11 +74997,17 @@ entities: - type: Transform pos: -2.5,49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8586 components: - type: Transform pos: -1.5,49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - uid: 8595 components: - type: Transform @@ -94809,6 +94868,9 @@ entities: - type: Transform pos: -2.5,45.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18744 @@ -96024,6 +96086,9 @@ entities: - type: Transform pos: -0.5,45.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 1973 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18755 @@ -99920,6 +99985,11 @@ entities: - type: Transform pos: 62.5,28.5 parent: 2 + - uid: 16176 + components: + - type: Transform + pos: 25.5,-63.5 + parent: 2 - uid: 16294 components: - type: Transform @@ -101582,11 +101652,6 @@ entities: - type: Transform pos: 19.5,-71.5 parent: 2 - - uid: 22046 - components: - - type: Transform - pos: 25.5,-63.5 - parent: 2 - uid: 22047 components: - type: Transform @@ -101908,6 +101973,11 @@ entities: - type: Transform pos: 23.5,26.5 parent: 2 + - uid: 5550 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 - uid: 7876 components: - type: Transform @@ -101973,11 +102043,6 @@ entities: - type: Transform pos: 3.5,-42.5 parent: 2 - - uid: 15608 - components: - - type: Transform - pos: 31.5,26.5 - parent: 2 - uid: 15609 components: - type: Transform @@ -102567,6 +102632,13 @@ entities: - type: Transform pos: -31.5,34.5 parent: 2 +- proto: Handcuffs + entities: + - uid: 7240 + components: + - type: Transform + pos: 48.17024,-38.59788 + parent: 2 - proto: HandheldGPSBasic entities: - uid: 14948 @@ -102814,10 +102886,10 @@ entities: parent: 2 - proto: HydroponicsToolClippers entities: - - uid: 5267 + - uid: 1965 components: - type: Transform - pos: 3.4828591,51.077652 + pos: 3.5818791,51.900238 parent: 2 - uid: 21332 components: @@ -102826,10 +102898,10 @@ entities: parent: 2 - proto: HydroponicsToolMiniHoe entities: - - uid: 5266 + - uid: 1975 components: - type: Transform - pos: 3.4094758,50.54562 + pos: 3.5662541,51.509613 parent: 2 - uid: 16334 components: @@ -102838,10 +102910,10 @@ entities: parent: 2 - proto: HydroponicsToolSpade entities: - - uid: 5269 + - uid: 1976 components: - type: Transform - pos: 3.5378966,50.582314 + pos: 3.6443791,51.618988 parent: 2 - uid: 16335 components: @@ -103009,6 +103081,11 @@ entities: parent: 2 - proto: InflatableWall entities: + - uid: 1991 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 - uid: 9229 components: - type: Transform @@ -103553,12 +103630,6 @@ entities: - type: Transform pos: 35.535755,-32.141846 parent: 2 - - uid: 5946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.28428,-38.068363 - parent: 2 - uid: 5947 components: - type: Transform @@ -103575,6 +103646,12 @@ entities: - type: Transform pos: 54.507133,11.775886 parent: 2 + - uid: 8836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.404613,-37.97288 + parent: 2 - uid: 9178 components: - type: Transform @@ -104067,8 +104144,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.8978093 - - 7.139378 + - 1.8978151 + - 7.1394 - 0 - 0 - 0 @@ -104601,8 +104678,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -104619,9 +104696,9 @@ entities: showEnts: False occludes: True ents: - - 5718 - - 20230 - 20229 + - 20230 + - 5718 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -105260,10 +105337,15 @@ entities: parent: 2 - proto: MicrowaveMachineCircuitboard entities: - - uid: 17481 + - uid: 1977 + components: + - type: Transform + pos: -31.664188,14.512749 + parent: 2 + - uid: 3582 components: - type: Transform - pos: -31.524014,14.605584 + pos: -31.195438,15.497125 parent: 2 - proto: MiniGravityGeneratorCircuitboard entities: @@ -106385,13 +106467,6 @@ entities: - type: Transform pos: 21.69673,-35.586906 parent: 2 - - uid: 21452 - components: - - type: Transform - pos: -1.3248596,-17.594215 - parent: 2 - - type: Stack - count: 15 - proto: Pen entities: - uid: 1543 @@ -106566,204 +106641,6 @@ entities: parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 1972 - components: - - type: Transform - pos: 13.5,-30.5 - parent: 2 - - uid: 1973 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 2 - - uid: 1974 - components: - - type: Transform - pos: 16.5,-30.5 - parent: 2 - - uid: 1975 - components: - - type: Transform - pos: 12.5,-30.5 - parent: 2 - - uid: 1976 - components: - - type: Transform - pos: 14.5,-30.5 - parent: 2 - - uid: 1977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,2.5 - parent: 2 - - uid: 1978 - components: - - type: Transform - pos: -12.5,0.5 - parent: 2 - - uid: 1979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 2 - - uid: 1980 - components: - - type: Transform - pos: -10.5,0.5 - parent: 2 - - uid: 1981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,2.5 - parent: 2 - - uid: 1982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,2.5 - parent: 2 - - uid: 1983 - components: - - type: Transform - pos: 32.5,-13.5 - parent: 2 - - uid: 1984 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-5.5 - parent: 2 - - uid: 1985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-5.5 - parent: 2 - - uid: 1986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-5.5 - parent: 2 - - uid: 1987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 2 - - uid: 1988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 2 - - uid: 1989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 2 - - uid: 1990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-11.5 - parent: 2 - - uid: 1991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-13.5 - parent: 2 - - uid: 1992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-12.5 - parent: 2 - - uid: 1993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-16.5 - parent: 2 - - uid: 1994 - components: - - type: Transform - pos: 78.5,-18.5 - parent: 2 - - uid: 1995 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-16.5 - parent: 2 - - uid: 1996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-18.5 - parent: 2 - - uid: 1997 - components: - - type: Transform - pos: 78.5,-12.5 - parent: 2 - - uid: 1998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-12.5 - parent: 2 - - uid: 1999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-12.5 - parent: 2 - - uid: 2000 - components: - - type: Transform - pos: 78.5,-16.5 - parent: 2 - - uid: 2001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-16.5 - parent: 2 - - uid: 2003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-12.5 - parent: 2 - - uid: 2004 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,21.5 - parent: 2 - - uid: 2005 - components: - - type: Transform - pos: -43.5,21.5 - parent: 2 - - uid: 2006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,21.5 - parent: 2 - - uid: 2007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,21.5 - parent: 2 - uid: 5901 components: - type: Transform @@ -106817,444 +106694,6 @@ entities: - type: Transform pos: -43.5,22.5 parent: 2 - - uid: 22904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-10.5 - parent: 2 - - uid: 22905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-10.5 - parent: 2 - - uid: 22906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-10.5 - parent: 2 - - uid: 22907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-11.5 - parent: 2 - - uid: 22908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-12.5 - parent: 2 - - uid: 22909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-13.5 - parent: 2 - - uid: 22931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-18.5 - parent: 2 - - uid: 22932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-18.5 - parent: 2 - - uid: 22933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-16.5 - parent: 2 - - uid: 22934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-17.5 - parent: 2 - - uid: 22935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-18.5 - parent: 2 - - uid: 22936 - components: - - type: Transform - pos: 84.5,-18.5 - parent: 2 - - uid: 22937 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-18.5 - parent: 2 - - uid: 22938 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-17.5 - parent: 2 - - uid: 22939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-16.5 - parent: 2 - - uid: 22940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-16.5 - parent: 2 - - uid: 22941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-12.5 - parent: 2 - - uid: 22942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-12.5 - parent: 2 - - uid: 22943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-13.5 - parent: 2 - - uid: 22944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-14.5 - parent: 2 - - uid: 22945 - components: - - type: Transform - pos: 84.5,-14.5 - parent: 2 - - uid: 22946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-14.5 - parent: 2 - - uid: 22947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-13.5 - parent: 2 - - uid: 22948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-12.5 - parent: 2 - - uid: 23034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-5.5 - parent: 2 - - uid: 23035 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-5.5 - parent: 2 - - uid: 23036 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-5.5 - parent: 2 - - uid: 23037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-5.5 - parent: 2 - - uid: 23038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-5.5 - parent: 2 - - uid: 23039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-5.5 - parent: 2 - - uid: 23040 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-5.5 - parent: 2 - - uid: 23041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-5.5 - parent: 2 - - uid: 23042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-5.5 - parent: 2 - - uid: 23043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 2 - - uid: 23044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 2 - - uid: 23045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 2 - - uid: 23046 - components: - - type: Transform - pos: 26.5,-5.5 - parent: 2 - - uid: 23047 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 2 - - uid: 23048 - components: - - type: Transform - pos: 22.5,-5.5 - parent: 2 - - uid: 23049 - components: - - type: Transform - pos: 20.5,-5.5 - parent: 2 - - uid: 23050 - components: - - type: Transform - pos: 18.5,-5.5 - parent: 2 - - uid: 23051 - components: - - type: Transform - pos: 16.5,-5.5 - parent: 2 - - uid: 23084 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-30.5 - parent: 2 - - uid: 23085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-30.5 - parent: 2 - - uid: 23086 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-30.5 - parent: 2 - - uid: 23087 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-30.5 - parent: 2 - - uid: 23088 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-30.5 - parent: 2 - - uid: 23089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-30.5 - parent: 2 - - uid: 23090 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-30.5 - parent: 2 - - uid: 23216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,23.5 - parent: 2 - - uid: 23217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,23.5 - parent: 2 - - uid: 23218 - components: - - type: Transform - pos: -41.5,23.5 - parent: 2 - - uid: 23219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,23.5 - parent: 2 - - uid: 23220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,25.5 - parent: 2 - - uid: 23221 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,25.5 - parent: 2 - - uid: 23222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,25.5 - parent: 2 - - uid: 23223 - components: - - type: Transform - pos: -43.5,25.5 - parent: 2 - - uid: 23224 - components: - - type: Transform - pos: -45.5,23.5 - parent: 2 - - uid: 23225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,23.5 - parent: 2 - - uid: 23226 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,23.5 - parent: 2 - - uid: 23227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,23.5 - parent: 2 - - uid: 23228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,0.5 - parent: 2 - - uid: 23229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,2.5 - parent: 2 - - uid: 23230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,1.5 - parent: 2 - - uid: 23231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,0.5 - parent: 2 - - uid: 23232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,0.5 - parent: 2 - - uid: 23233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,1.5 - parent: 2 - - uid: 23234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,2.5 - parent: 2 - - uid: 23235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,2.5 - parent: 2 - - uid: 23236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,1.5 - parent: 2 - - uid: 23237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,0.5 - parent: 2 - - uid: 23291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-14.5 - parent: 2 - - uid: 23292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-14.5 - parent: 2 - - uid: 23293 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-14.5 - parent: 2 - - uid: 23294 - components: - - type: Transform - pos: 78.5,-14.5 - parent: 2 - proto: PlasmaWindoorSecureArmoryLocked entities: - uid: 21596 @@ -108523,15 +107962,6 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 - - uid: 1634 - components: - - type: Transform - pos: -32.5,17.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1635 components: - type: Transform @@ -108861,13 +108291,9 @@ entities: - uid: 1678 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,11.5 + rot: -1.5707963267948966 rad + pos: -28.5,15.5 parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1679 components: - type: Transform @@ -109112,6 +108538,17 @@ entities: - type: Transform pos: -29.5,7.5 parent: 2 + - uid: 1974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,50.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: 1.5,48.5 + parent: 2 - uid: 2683 components: - type: Transform @@ -109838,25 +109275,6 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 - - uid: 6040 - components: - - type: Transform - pos: 1.5,48.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,50.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - uid: 6045 components: - type: Transform @@ -110230,6 +109648,12 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 + - uid: 7839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,15.5 + parent: 2 - uid: 7988 components: - type: Transform @@ -113730,6 +113154,11 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-26.5 parent: 2 + - uid: 5946 + components: + - type: Transform + pos: 1.5,49.5 + parent: 2 - uid: 7040 components: - type: Transform @@ -113963,12 +113392,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,26.5 parent: 2 - - uid: 8836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,49.5 - parent: 2 - uid: 8837 components: - type: Transform @@ -115043,38254 +114466,33753 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-0.5 parent: 21128 -- proto: ReinforcedWindow +- proto: ReinforcedPlasmaWindow entities: - - uid: 5115 + - uid: 1978 components: - type: Transform - pos: -39.5,18.5 + pos: 13.5,-30.5 parent: 2 - - uid: 6870 + - uid: 1979 components: - type: Transform - pos: 60.5,20.5 + pos: 15.5,-30.5 parent: 2 - - uid: 6892 + - uid: 1980 components: - type: Transform - pos: 59.5,20.5 + pos: 16.5,-30.5 parent: 2 - - uid: 6896 + - uid: 1981 components: - type: Transform - pos: 58.5,20.5 + pos: 12.5,-30.5 parent: 2 - - uid: 6929 + - uid: 1982 components: - type: Transform - pos: 60.5,22.5 + pos: 14.5,-30.5 parent: 2 - - uid: 6930 + - uid: 1983 components: - type: Transform - pos: 59.5,22.5 + pos: -10.5,1.5 parent: 2 - - uid: 6931 + - uid: 1984 components: - type: Transform - pos: 58.5,22.5 + pos: -12.5,2.5 parent: 2 - - uid: 15873 + - uid: 1986 components: - type: Transform - pos: -40.5,18.5 + pos: -10.5,0.5 parent: 2 - - uid: 17254 + - uid: 1987 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-52.5 + pos: 78.5,-16.5 parent: 2 -- proto: RemoteSignaller - entities: - - uid: 3270 + - uid: 1989 components: - - type: MetaData - desc: Bolts all doors and windoors in the HoP's room. - name: Lockdown remote - type: Transform - pos: 40.97135,-23.35855 + pos: 78.5,-12.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 3516: - - Pressed: DoorBolt - - Pressed: Close - - Pressed: AutoClose - 49: - - Pressed: DoorBolt - - Pressed: AutoClose - - Pressed: Close - 3489: - - Pressed: Close - - Pressed: AutoClose - - Pressed: DoorBolt - - uid: 20229 - components: - - type: MetaData - desc: Just incase you need a double layer of security to the armory! - name: perma blast door remote - - type: Transform - parent: 4586 - - type: DeviceLinkSource - linkedPorts: - 20613: - - Pressed: Toggle - 20612: - - Pressed: Toggle - 20611: - - Pressed: Toggle - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 20230 + - uid: 1990 components: - - type: MetaData - desc: Helpful for troublesome prisoners trying to break out in perma! - name: armory blast door remote - type: Transform - parent: 4586 - - type: DeviceLinkSource - linkedPorts: - 4719: - - Pressed: Toggle - 4895: - - Pressed: Toggle - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ResearchAndDevelopmentServer - entities: - - uid: 7429 + pos: 78.5,-14.5 + parent: 2 + - uid: 1992 components: - type: Transform - pos: 71.5,-29.5 + pos: 84.5,-16.5 parent: 2 -- proto: RevolverCapGun - entities: - - uid: 16113 + - uid: 1993 components: - type: Transform - pos: 58.457176,26.640175 + pos: 84.5,-17.5 parent: 2 -- proto: RobustHarvestChemistryBottle - entities: - - uid: 16065 + - uid: 1994 components: - type: Transform - pos: -30.329456,14.528995 + pos: 84.5,-18.5 parent: 2 -- proto: RubberStampApproved - entities: - - uid: 16307 + - uid: 1995 components: - type: Transform - pos: 28.655685,10.5061245 + pos: 84.5,-12.5 parent: 2 - - uid: 16905 + - uid: 1996 components: - type: Transform - pos: 44.978428,-23.253704 + pos: 84.5,-13.5 parent: 2 -- proto: RubberStampDenied - entities: - - uid: 16306 + - uid: 1997 components: - type: Transform - pos: 28.325459,10.518355 + pos: 84.5,-14.5 parent: 2 - - uid: 16917 + - uid: 1998 components: - type: Transform - pos: 44.978428,-23.482008 + pos: -43.5,25.5 parent: 2 -- proto: SalvageMagnet - entities: - - uid: 6058 + - uid: 1999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,21.5 + pos: -43.5,21.5 parent: 2 -- proto: Screen - entities: - - uid: 3271 + - uid: 2000 components: - type: Transform - pos: 15.5,38.5 + pos: -41.5,23.5 parent: 2 - - uid: 7573 + - uid: 2001 components: - type: Transform - pos: -2.5,18.5 + pos: -45.5,23.5 parent: 2 - - uid: 10319 + - uid: 2006 components: - type: Transform - pos: 18.5,10.5 + pos: -10.5,2.5 parent: 2 - - uid: 10320 + - uid: 2007 components: - type: Transform - pos: 40.5,6.5 + pos: -12.5,0.5 parent: 2 - - uid: 12087 + - uid: 2008 components: - type: Transform - pos: 71.5,-19.5 + pos: -12.5,1.5 parent: 2 - - uid: 14883 + - uid: 2009 components: - type: Transform - pos: -45.5,-5.5 + pos: 78.5,-18.5 parent: 2 - - uid: 16012 + - uid: 2039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-34.5 + pos: 22.5,-5.5 parent: 2 - - uid: 16057 + - uid: 2040 components: - type: Transform - pos: 55.5,-22.5 + pos: 24.5,-5.5 parent: 2 - - uid: 16166 + - uid: 2042 components: - type: Transform - pos: 65.5,-27.5 + pos: 20.5,-5.5 parent: 2 - - uid: 16445 + - uid: 2045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-34.5 + pos: 26.5,-5.5 parent: 2 - - uid: 16617 + - uid: 15235 components: - type: Transform - pos: 11.5,-34.5 + pos: 32.5,-13.5 parent: 2 - - uid: 16618 + - uid: 16089 components: - type: Transform - pos: 6.5,-25.5 + pos: 18.5,-5.5 parent: 2 - - uid: 16804 + - uid: 16119 components: - type: Transform - pos: -57.5,-26.5 + pos: 16.5,-5.5 parent: 2 - - uid: 16940 + - uid: 16125 components: - type: Transform - pos: 40.5,-31.5 + pos: 32.5,-10.5 parent: 2 - - uid: 17205 + - uid: 16126 components: - type: Transform - pos: 25.5,-34.5 + pos: 32.5,-11.5 parent: 2 - - uid: 17223 + - uid: 16155 components: - type: Transform - rot: 4.71238898038469 rad - pos: 30.5,-24.5 + pos: 32.5,-12.5 parent: 2 - - uid: 20293 +- proto: ReinforcedWindow + entities: + - uid: 1634 components: - type: Transform - pos: -31.5,-5.5 + pos: 19.5,22.5 parent: 2 - - uid: 20311 + - uid: 1944 components: - type: Transform - pos: -6.5,-32.5 + pos: -34.5,-3.5 parent: 2 - - uid: 20312 + - uid: 1952 components: - type: Transform - pos: -22.5,-20.5 + pos: -34.5,-2.5 parent: 2 - - uid: 20313 + - uid: 1985 components: - type: Transform - pos: -17.5,-5.5 + pos: 0.5,7.5 parent: 2 - - uid: 20796 + - uid: 2003 components: - type: Transform - pos: -21.5,22.5 + pos: -50.5,-49.5 parent: 2 - - uid: 20797 + - uid: 2004 components: - type: Transform - pos: -9.5,30.5 + pos: 7.5,0.5 parent: 2 - - uid: 20798 + - uid: 2005 components: - type: Transform - pos: -3.5,49.5 + pos: 0.5,-6.5 parent: 2 - - uid: 20799 + - uid: 2028 components: - type: Transform - pos: 35.5,10.5 + pos: -44.5,-5.5 parent: 2 - - uid: 20800 + - uid: 2029 components: - type: Transform - pos: 23.5,24.5 + pos: -19.5,-46.5 parent: 2 - - uid: 20801 + - uid: 2030 components: - type: Transform - pos: 48.5,15.5 + pos: -17.5,-46.5 parent: 2 - - uid: 20802 + - uid: 2031 components: - type: Transform - pos: 44.5,-9.5 + pos: 0.5,-10.5 parent: 2 - - uid: 20803 + - uid: 2032 components: - type: Transform - pos: 22.5,-19.5 + pos: -1.5,-10.5 parent: 2 - - uid: 20806 + - uid: 2033 components: - type: Transform - pos: 26.5,-40.5 + pos: -8.5,-20.5 parent: 2 - - uid: 20808 + - uid: 2034 components: - type: Transform - pos: -1.5,-38.5 + pos: -9.5,-20.5 parent: 2 - - uid: 20809 + - uid: 2036 components: - type: Transform - pos: -44.5,-32.5 + pos: -0.5,-24.5 parent: 2 - - uid: 20810 + - uid: 2038 components: - type: Transform - pos: -50.5,-32.5 + pos: 0.5,-28.5 parent: 2 - - uid: 20811 + - uid: 2044 components: - type: Transform - pos: -55.5,2.5 + pos: 30.5,-10.5 parent: 2 - - uid: 20812 + - uid: 2046 components: - type: Transform - pos: -55.5,0.5 + pos: 30.5,-11.5 parent: 2 - - uid: 20813 + - uid: 2047 components: - type: Transform - pos: -42.5,9.5 + pos: 30.5,-12.5 parent: 2 - - uid: 20814 + - uid: 2048 components: - type: Transform - pos: -49.5,-5.5 + pos: 30.5,-13.5 parent: 2 - - uid: 20816 + - uid: 2695 components: - type: Transform - pos: -38.5,-11.5 + pos: 30.5,-16.5 parent: 2 - - uid: 21033 + - uid: 2957 components: - type: Transform - pos: 31.5,24.5 + pos: 26.5,-16.5 parent: 2 - - uid: 21034 + - uid: 2982 components: - type: Transform - pos: -33.5,8.5 + pos: -22.5,-12.5 parent: 2 - - uid: 22184 + - uid: 2983 components: - type: Transform - pos: 21.5,-51.5 + pos: -22.5,-15.5 parent: 2 - - uid: 22188 + - uid: 2984 components: - type: Transform - pos: 19.5,-74.5 + pos: 25.5,-27.5 parent: 2 - - uid: 22189 + - uid: 3053 components: - type: Transform - pos: 21.5,-66.5 + pos: 28.5,-27.5 parent: 2 - - uid: 22190 + - uid: 3159 components: - type: Transform - pos: 17.5,-66.5 + pos: 24.5,-27.5 parent: 2 -- proto: Screwdriver - entities: - - uid: 2052 + - uid: 3161 components: - type: Transform - pos: -4.4728403,-17.587566 + pos: -27.5,12.5 parent: 2 - - uid: 7717 + - uid: 3182 components: - type: Transform - pos: 27.200108,-41.24766 + pos: -41.5,-31.5 parent: 2 -- proto: SecurityTechFab - entities: - - uid: 5043 + - uid: 3186 components: - type: Transform - pos: 7.5,30.5 + pos: -41.5,-30.5 parent: 2 -- proto: SeedExtractor - entities: - - uid: 5236 + - uid: 3187 components: - type: Transform - pos: -3.5,51.5 + pos: -57.5,3.5 parent: 2 - - uid: 16260 + - uid: 3188 components: - type: Transform - pos: -31.5,17.5 + pos: -56.5,3.5 parent: 2 -- proto: ShardGlass - entities: - - uid: 6994 + - uid: 3190 components: - type: Transform - pos: 37.799515,9.717336 + pos: -57.5,-2.5 parent: 2 - - uid: 15987 + - uid: 3191 components: - type: Transform - pos: 37.220566,10.453447 + pos: -55.5,1.5 parent: 2 - - uid: 17064 + - uid: 3192 components: - type: Transform - pos: 38.60945,9.960392 + pos: -45.5,-39.5 parent: 2 -- proto: SheetGlass - entities: - - uid: 2054 + - uid: 3193 components: - type: Transform - pos: -5.303391,-23.421415 + pos: -43.5,-42.5 parent: 2 - - uid: 4395 + - uid: 3301 components: - type: Transform - pos: 30.404766,-0.06552839 + pos: -6.5,25.5 parent: 2 - - uid: 7254 + - uid: 3304 components: - type: Transform - pos: 58.962917,-11.384084 + pos: -10.5,25.5 parent: 2 - - uid: 8196 + - uid: 3375 components: - type: Transform - pos: 10.711848,-40.45789 + pos: -14.5,25.5 parent: 2 - - uid: 15156 + - uid: 3376 components: - type: Transform - pos: -33.249187,38.611046 + pos: -46.5,8.5 parent: 2 - - uid: 20556 + - uid: 3529 components: - type: Transform - pos: 5.544655,27.559452 + pos: -49.5,8.5 parent: 2 - - type: Stack - count: 15 - - uid: 20886 + - uid: 3530 components: - type: Transform - pos: 23.487421,19.497616 + pos: -48.5,8.5 parent: 2 -- proto: SheetPlasma - entities: - - uid: 7262 + - uid: 3568 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.45334,-7.4422317 + pos: -50.5,8.5 parent: 2 - - uid: 21253 + - uid: 3569 components: - type: Transform - pos: 7.572357,0.5568676 - parent: 21128 - - type: Stack - count: 15 - - uid: 21570 + pos: -45.5,-5.5 + parent: 2 + - uid: 3571 components: - type: Transform - pos: 34.50172,-1.4871633 + pos: -50.5,-5.5 parent: 2 - - type: Stack - count: 15 - - uid: 21882 + - uid: 3574 components: - type: Transform - pos: 6.5330257,-14.510506 + rot: 1.5707963267948966 rad + pos: -45.5,14.5 parent: 2 - - type: Stack - count: 15 -- proto: SheetPlasma1 - entities: - - uid: 17337 + - uid: 3583 components: - type: Transform - pos: 23.631372,-65.50266 + rot: 1.5707963267948966 rad + pos: -49.5,14.5 parent: 2 - - type: Stack - count: 15 - - uid: 21880 + - uid: 3584 components: - type: Transform - pos: 15.5072975,-22.504484 + rot: 1.5707963267948966 rad + pos: -48.5,14.5 parent: 2 - - type: Stack - count: 15 -- proto: SheetPlasteel - entities: - - uid: 7622 + - uid: 3585 components: - type: Transform - pos: 21.439888,-35.48906 + pos: -49.5,-5.5 parent: 2 -- proto: SheetPlastic - entities: - - uid: 1942 + - uid: 3586 components: - type: Transform - pos: 5.388405,27.434452 + pos: -50.5,-18.5 parent: 2 - - type: Stack - count: 15 - - uid: 2056 + - uid: 3649 components: - type: Transform - pos: -5.037766,-23.452665 + pos: -47.5,-18.5 parent: 2 - - uid: 7159 + - uid: 3672 components: - type: Transform - pos: 58.244167,-11.384084 + pos: -51.5,-17.5 parent: 2 - - uid: 15157 + - uid: 3673 components: - type: Transform - pos: -32.858562,38.579796 + pos: -48.5,-30.5 parent: 2 - - uid: 23343 + - uid: 3674 components: - type: Transform - pos: 23.378046,19.38824 + pos: -44.5,-18.5 parent: 2 -- proto: SheetRPGlass - entities: - - uid: 5108 + - uid: 3675 components: - type: Transform - pos: -1.5633564,-17.410757 + pos: 35.5,-39.5 parent: 2 - - type: Stack - count: 15 -- proto: SheetSteel - entities: - - uid: 1960 + - uid: 3676 components: - type: Transform - pos: 23.549921,19.57574 + pos: 37.5,-39.5 parent: 2 - - uid: 2058 + - uid: 3682 components: - type: Transform - pos: -5.490891,-23.421415 + pos: 32.5,-39.5 parent: 2 - - uid: 2059 + - uid: 3695 components: - type: Transform - pos: 13.431305,-15.361163 + pos: 39.5,-39.5 parent: 2 - - uid: 2060 + - uid: 3753 components: - type: Transform - pos: 13.559727,-15.471238 + pos: 41.5,-39.5 parent: 2 - - uid: 4393 + - uid: 3773 components: - type: Transform - pos: 30.423111,0.55823207 + pos: 43.5,-39.5 parent: 2 - - uid: 7253 + - uid: 3774 components: - type: Transform - pos: 58.494167,-11.36325 + pos: 46.5,-39.5 parent: 2 - - uid: 8195 + - uid: 3779 components: - type: Transform - pos: 10.393852,-40.433426 + pos: 48.5,-39.5 parent: 2 - - uid: 15155 + - uid: 3807 components: - type: Transform - pos: -33.561687,38.65792 + pos: 33.5,1.5 parent: 2 - - uid: 16653 + - uid: 3822 components: - type: Transform - pos: 13.535873,34.51549 + pos: 34.5,1.5 parent: 2 - - uid: 21944 + - uid: 3823 components: - type: Transform - pos: 5.65403,27.653202 + pos: 40.5,-2.5 parent: 2 - - type: Stack - count: 15 -- proto: SheetSteel10 - entities: - - uid: 20573 + - uid: 3824 components: - type: Transform - pos: -38.542088,26.524464 + pos: 0.5,25.5 parent: 2 -- proto: SheetUranium - entities: - - uid: 20347 + - uid: 3825 components: - type: Transform - pos: 6.5942326,-13.459567 + pos: -5.5,22.5 parent: 2 - - type: Stack - count: 15 -- proto: ShelfChemistryChemistrySecure - entities: - - uid: 1813 + - uid: 3828 components: - type: Transform - pos: 42.5,14.5 + pos: 2.5,54.5 parent: 2 -- proto: ShotGunCabinetFilled - entities: - - uid: 8186 + - uid: 3835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,33.5 + pos: 0.5,54.5 parent: 2 -- proto: ShuttersNormal - entities: - - uid: 2061 + - uid: 3851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-26.5 + pos: -1.5,54.5 parent: 2 - - uid: 2062 + - uid: 3905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-25.5 + pos: 1.5,44.5 parent: 2 - - uid: 2063 + - uid: 3918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-27.5 + pos: -29.5,32.5 parent: 2 - - uid: 6546 + - uid: 3922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-7.5 + pos: -13.5,37.5 parent: 2 - - uid: 6547 + - uid: 3952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-6.5 + pos: 24.5,15.5 parent: 2 - - uid: 6548 + - uid: 3963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-0.5 + pos: 36.5,23.5 parent: 2 - - uid: 6549 + - uid: 3974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-1.5 + pos: 35.5,23.5 parent: 2 - - uid: 6550 + - uid: 3975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-3.5 + pos: 34.5,23.5 parent: 2 - - uid: 6551 + - uid: 3976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-4.5 + pos: 33.5,23.5 parent: 2 - - uid: 16146 + - uid: 3977 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,28.5 + pos: -65.5,-29.5 parent: 2 - - uid: 16147 + - uid: 3978 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,28.5 + pos: -68.5,-31.5 parent: 2 -- proto: ShuttersNormalOpen - entities: - - uid: 2064 + - uid: 3979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 + pos: -65.5,-33.5 parent: 2 - - uid: 2065 + - uid: 3980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,0.5 + pos: 45.5,10.5 parent: 2 - - uid: 2066 + - uid: 3981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,1.5 + pos: -42.5,-42.5 parent: 2 - - uid: 2067 + - uid: 3982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,2.5 + pos: -44.5,-42.5 parent: 2 - - uid: 2068 + - uid: 3983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,3.5 + pos: 44.5,-1.5 parent: 2 - - uid: 2693 + - uid: 3984 components: - type: Transform - pos: 43.5,10.5 + pos: 44.5,-0.5 parent: 2 - - uid: 2694 + - uid: 3985 components: - type: Transform - pos: 42.5,10.5 + pos: -49.5,-49.5 parent: 2 - - uid: 2908 + - uid: 3986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-52.5 + pos: -48.5,-49.5 parent: 2 - - uid: 4423 + - uid: 3987 components: - type: Transform - pos: -45.5,-18.5 + pos: -47.5,-49.5 parent: 2 - - uid: 4424 + - uid: 3988 components: - type: Transform - pos: -44.5,-18.5 + pos: -46.5,-49.5 parent: 2 - - uid: 4425 + - uid: 3989 components: - type: Transform - pos: -43.5,-18.5 + pos: -45.5,-49.5 parent: 2 - - uid: 4540 + - uid: 3990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-27.5 + pos: -44.5,-49.5 parent: 2 - - uid: 4542 + - uid: 4218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-27.5 + pos: -52.5,-63.5 parent: 2 - - uid: 4543 + - uid: 4219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-27.5 + pos: -52.5,-60.5 parent: 2 - - uid: 4544 + - uid: 4221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-27.5 + pos: -52.5,-61.5 parent: 2 - - uid: 4545 + - uid: 4228 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-27.5 + pos: -52.5,-62.5 parent: 2 - - uid: 4546 + - uid: 4230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-27.5 + pos: -17.5,-44.5 parent: 2 - - uid: 4547 + - uid: 4231 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-27.5 + pos: 52.5,10.5 parent: 2 - - uid: 5655 + - uid: 4232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,21.5 + pos: -45.5,-40.5 parent: 2 - - uid: 5661 + - uid: 4246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,20.5 + pos: -49.5,-40.5 parent: 2 - - uid: 7033 + - uid: 4249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,14.5 + pos: 62.5,-13.5 parent: 2 - - uid: 7377 + - uid: 4251 components: - type: Transform - pos: -20.5,10.5 + pos: 66.5,-13.5 parent: 2 - - uid: 8280 + - uid: 4252 components: - type: Transform - pos: 33.5,-39.5 + pos: 72.5,-12.5 parent: 2 - - uid: 8281 + - uid: 4294 components: - type: Transform - pos: 32.5,-39.5 + pos: -54.5,-33.5 parent: 2 - - uid: 8437 + - uid: 4310 components: - type: Transform - pos: 34.5,-39.5 + pos: 64.5,16.5 parent: 2 - - uid: 8587 + - uid: 4311 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,54.5 + pos: 27.5,-47.5 parent: 2 - - uid: 8588 + - uid: 4312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,54.5 + pos: 26.5,-47.5 parent: 2 - - uid: 8589 + - uid: 4313 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,54.5 + pos: 28.5,-49.5 parent: 2 - - uid: 8590 + - uid: 4344 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,54.5 + pos: 28.5,-47.5 parent: 2 - - uid: 8591 + - uid: 4682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,54.5 + pos: 17.5,-48.5 parent: 2 - - uid: 8592 + - uid: 4704 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,54.5 + pos: 17.5,-47.5 parent: 2 - - uid: 8687 + - uid: 4706 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-22.5 + pos: 13.5,-63.5 parent: 2 - - uid: 8688 + - uid: 4752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-22.5 + pos: -10.5,-41.5 parent: 2 - - uid: 8689 + - uid: 4761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-22.5 + pos: -6.5,0.5 parent: 2 - - uid: 8691 + - uid: 4778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-22.5 + pos: 2.5,-40.5 parent: 2 - - uid: 8744 + - uid: 4783 components: - type: Transform - pos: 48.5,-39.5 + pos: 2.5,-39.5 parent: 2 - - uid: 8747 + - uid: 4805 components: - type: Transform - pos: 45.5,10.5 + pos: -4.5,-42.5 parent: 2 - - uid: 8748 + - uid: 4807 components: - type: Transform - pos: 46.5,10.5 + pos: 13.5,-65.5 parent: 2 - - uid: 8768 + - uid: 4931 components: - type: Transform - pos: 47.5,-39.5 + pos: 13.5,-64.5 parent: 2 - - uid: 9248 + - uid: 4932 components: - type: Transform - pos: 46.5,-39.5 + pos: -29.5,31.5 parent: 2 - - uid: 12915 + - uid: 4991 components: - type: Transform - pos: 42.5,-39.5 + pos: -23.5,12.5 parent: 2 - - uid: 14724 + - uid: 4992 components: - type: Transform - pos: 38.5,-39.5 + pos: -19.5,-47.5 parent: 2 - - uid: 15408 + - uid: 4994 components: - type: Transform - pos: -22.5,10.5 + pos: -34.5,36.5 parent: 2 - - uid: 15409 + - uid: 5104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,14.5 + pos: -34.5,37.5 parent: 2 - - uid: 15410 + - uid: 5105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,13.5 + pos: 73.5,4.5 parent: 2 - - uid: 15411 + - uid: 5115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,12.5 + pos: -39.5,18.5 parent: 2 - - uid: 16627 + - uid: 5121 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,33.5 + pos: 72.5,-1.5 parent: 2 - - uid: 17478 + - uid: 5122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,12.5 + pos: 73.5,2.5 parent: 2 - - uid: 17479 + - uid: 5197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,13.5 + pos: 72.5,4.5 parent: 2 - - uid: 17480 + - uid: 5198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,14.5 + pos: 72.5,6.5 parent: 2 - - uid: 17492 + - uid: 5199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-15.5 + pos: 72.5,0.5 parent: 2 - - uid: 17493 + - uid: 5200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-14.5 + pos: 72.5,2.5 parent: 2 - - uid: 17494 + - uid: 5201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-13.5 + pos: 73.5,0.5 parent: 2 - - uid: 17495 + - uid: 5202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-12.5 + pos: -13.5,42.5 parent: 2 - - uid: 17496 + - uid: 5203 components: - type: Transform - pos: -16.5,-28.5 + pos: -12.5,42.5 parent: 2 - - uid: 17497 + - uid: 5204 components: - type: Transform - pos: -15.5,-28.5 + pos: 84.5,-29.5 parent: 2 - - uid: 17498 + - uid: 5205 components: - type: Transform - pos: -17.5,-28.5 + pos: 84.5,-28.5 parent: 2 - - uid: 17502 + - uid: 5206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,24.5 + pos: 84.5,-27.5 parent: 2 - - uid: 17503 + - uid: 5208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,23.5 + pos: 84.5,-26.5 parent: 2 - - uid: 17512 + - uid: 5230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,14.5 + pos: 84.5,-25.5 parent: 2 - - uid: 17514 + - uid: 5266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,13.5 + rot: 1.5707963267948966 rad + pos: 49.5,23.5 parent: 2 - - uid: 17515 + - uid: 5267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,12.5 + pos: -67.5,-27.5 parent: 2 - - uid: 17521 + - uid: 5269 components: - type: Transform - pos: 57.5,-15.5 + pos: 66.5,-36.5 parent: 2 - - uid: 17522 + - uid: 5270 components: - type: Transform - pos: 58.5,-15.5 + pos: 66.5,-34.5 parent: 2 - - uid: 17523 + - uid: 5426 components: - type: Transform - pos: 59.5,-15.5 + pos: -23.5,-46.5 parent: 2 - - uid: 17524 + - uid: 5454 components: - type: Transform - pos: 60.5,-15.5 + pos: 10.5,41.5 parent: 2 - - uid: 19928 + - uid: 5462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,15.5 + pos: -23.5,-47.5 parent: 2 - - uid: 20807 + - uid: 5480 components: - type: Transform - pos: -0.5,-28.5 + pos: -17.5,-43.5 parent: 2 - - uid: 20827 + - uid: 5481 components: - type: Transform - pos: 0.5,-28.5 + pos: -17.5,-47.5 parent: 2 - - uid: 21746 + - uid: 5482 components: - type: Transform - pos: -21.5,10.5 + pos: -66.5,-29.5 parent: 2 - - uid: 22199 + - uid: 5487 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-71.5 + pos: -65.5,-27.5 parent: 2 - - uid: 22860 + - uid: 5544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,15.5 + pos: -67.5,-29.5 parent: 2 - - uid: 22861 + - uid: 5546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,19.5 + pos: 24.5,25.5 parent: 2 - - uid: 22862 + - uid: 5547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,25.5 + pos: 27.5,26.5 parent: 2 -- proto: ShuttersRadiationOpen - entities: - - uid: 2069 + - uid: 5636 components: - type: Transform - pos: 2.5,-10.5 + pos: 27.5,25.5 parent: 2 - - uid: 2070 + - uid: 5643 components: - type: Transform - pos: 1.5,-10.5 + pos: -22.5,10.5 parent: 2 - - uid: 2071 + - uid: 5658 components: - type: Transform - pos: 0.5,-10.5 + pos: -13.5,22.5 parent: 2 - - uid: 2072 + - uid: 5662 components: - type: Transform - pos: -0.5,-10.5 - parent: 2 - - uid: 2073 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 2 - - uid: 20350 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 2 - - uid: 20351 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 2 - - uid: 20352 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 2 -- proto: ShuttersWindowOpen - entities: - - uid: 4616 - components: - - type: Transform - pos: 35.5,-39.5 - parent: 2 - - uid: 4617 - components: - - type: Transform - pos: 36.5,-39.5 - parent: 2 - - uid: 4618 - components: - - type: Transform - pos: 37.5,-39.5 - parent: 2 - - uid: 4620 - components: - - type: Transform - pos: 39.5,-39.5 - parent: 2 - - uid: 4621 - components: - - type: Transform - pos: 40.5,-39.5 - parent: 2 - - uid: 4622 - components: - - type: Transform - pos: 41.5,-39.5 - parent: 2 - - uid: 4624 - components: - - type: Transform - pos: 43.5,-39.5 - parent: 2 - - uid: 4625 - components: - - type: Transform - pos: 44.5,-39.5 - parent: 2 - - uid: 4626 - components: - - type: Transform - pos: 45.5,-39.5 - parent: 2 -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 21318 - components: - - type: Transform - pos: 7.516014,2.0782585 - parent: 21128 -- proto: ShuttleWindow - entities: - - uid: 21176 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 21128 - - uid: 21177 - components: - - type: Transform - pos: 0.5,0.5 - parent: 21128 - - uid: 21178 - components: - - type: Transform - pos: 1.5,0.5 - parent: 21128 - - uid: 21179 - components: - - type: Transform - pos: 3.5,0.5 - parent: 21128 - - uid: 21180 - components: - - type: Transform - pos: 7.5,3.5 - parent: 21128 - - uid: 21181 - components: - - type: Transform - pos: 7.5,4.5 - parent: 21128 - - uid: 21182 - components: - - type: Transform - pos: 9.5,3.5 - parent: 21128 - - uid: 21183 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 21128 - - uid: 21193 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 21128 - - uid: 21194 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 21128 -- proto: SignAi - entities: - - uid: 21407 - components: - - type: Transform - pos: 17.5,-41.5 - parent: 2 - - uid: 22196 - components: - - type: Transform - pos: 18.5,-61.5 - parent: 2 -- proto: SignAiUpload - entities: - - uid: 21887 - components: - - type: Transform - pos: 20.5,-41.5 - parent: 2 - - uid: 22186 - components: - - type: Transform - pos: 21.5,-53.5 - parent: 2 -- proto: SignalButton - entities: - - uid: 2074 - components: - - type: MetaData - name: Radiation shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2069: - - Pressed: Toggle - 2070: - - Pressed: Toggle - 2071: - - Pressed: Toggle - 2072: - - Pressed: Toggle - 2073: - - Pressed: Toggle - - uid: 2075 - components: - - type: MetaData - name: secure supply button - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 160: - - Pressed: Toggle - 159: - - Pressed: Toggle - - uid: 2076 - components: - - type: MetaData - name: Blast chamber doors button - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-14.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 158: - - Pressed: Toggle - 157: - - Pressed: Toggle - 16939: - - Pressed: Toggle - - uid: 2077 - components: - - type: MetaData - name: Door bolt button - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6: - - Pressed: DoorBolt - - uid: 2079 - components: - - type: MetaData - name: Door bolt button - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7: - - Pressed: DoorBolt - - uid: 15610 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-25.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12667: - - Pressed: Toggle - - uid: 20353 - components: - - type: MetaData - name: Radiation shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-24.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20352: - - Pressed: Toggle - 20351: - - Pressed: Toggle - 20350: - - Pressed: Toggle - - uid: 21867 - components: - - type: MetaData - name: Medical exit button - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-2.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6514: - - Pressed: Open - 6515: - - Pressed: Open - 6516: - - Pressed: Open -- proto: SignalButtonDirectional - entities: - - uid: 2100 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,12.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8747: - - Pressed: Toggle - 8748: - - Pressed: Toggle - 2693: - - Pressed: Toggle - 2694: - - Pressed: Toggle - - uid: 4520 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 4425: - - Pressed: Toggle - 4424: - - Pressed: Toggle - 4423: - - Pressed: Toggle - - uid: 4548 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-31.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 4547: - - Pressed: Toggle - 4546: - - Pressed: Toggle - 4545: - - Pressed: Toggle - 4544: - - Pressed: Toggle - 4543: - - Pressed: Toggle - 4542: - - Pressed: Toggle - 4540: - - Pressed: Toggle - - uid: 5653 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,21.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5655: - - Pressed: Toggle - 5661: - - Pressed: Toggle - 22861: - - Pressed: Toggle - - uid: 5757 - components: - - type: MetaData - name: Secure storage doors button - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,5.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5465: - - Pressed: Toggle - 5466: - - Pressed: Toggle - 5464: - - Pressed: Toggle - - uid: 6961 - components: - - type: MetaData - name: containment button - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6960: - - Pressed: Toggle - 6905: - - Pressed: DoorBolt - - uid: 7032 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 14224: - - Pressed: Toggle - - uid: 7039 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-22.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16058: - - Pressed: Toggle - - uid: 7054 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-31.5 - parent: 2 - - uid: 8185 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-26.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8691: - - Pressed: Toggle - 8689: - - Pressed: Toggle - 8688: - - Pressed: Toggle - 8687: - - Pressed: Toggle - - uid: 8530 - components: - - type: MetaData - name: Door bolt button - - type: Transform - pos: 17.5,26.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8242: - - Pressed: DoorBolt - - uid: 8532 - components: - - type: MetaData - name: Door bolt button - - type: Transform - pos: 17.5,24.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8243: - - Pressed: DoorBolt - - uid: 12911 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2064: - - Pressed: Toggle - 2065: - - Pressed: Toggle - 2066: - - Pressed: Toggle - 2067: - - Pressed: Toggle - 2068: - - Pressed: Toggle - - uid: 12913 - components: - - type: MetaData - name: Blast doors button - - type: Transform - pos: 27.5,24.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5517: - - Pressed: Toggle - 5516: - - Pressed: Toggle - - uid: 12914 - components: - - type: MetaData - name: Blast doors button - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-12.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7332: - - Pressed: Toggle - 7333: - - Pressed: Toggle - 7334: - - Pressed: Toggle - - uid: 12916 - components: - - type: MetaData - name: Blast doors button - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7335: - - Pressed: Toggle - 7336: - - Pressed: Toggle - 7337: - - Pressed: Toggle - - uid: 14403 - components: - - type: MetaData - name: Janitorial service light button - - type: Transform - pos: 2.9529366,23.045258 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20777: - - Pressed: Toggle - - uid: 14879 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1686: - - Pressed: Toggle - - uid: 14901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-37.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7934: - - Pressed: Toggle - - uid: 15913 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,15.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 15410: - - Pressed: Toggle - 15409: - - Pressed: Toggle - 15411: - - Pressed: Toggle - 15408: - - Pressed: Toggle - 21746: - - Pressed: Toggle - 7377: - - Pressed: Toggle - - uid: 16121 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1688: - - Pressed: Toggle - - uid: 16148 - components: - - type: Transform - pos: 57.5,28.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16147: - - Pressed: Toggle - - uid: 16149 - components: - - type: Transform - pos: 61.5,28.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16146: - - Pressed: Toggle - - uid: 16628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,31.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16627: - - Pressed: Toggle - - uid: 16704 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-36.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12915: - - Pressed: Toggle - 14724: - - Pressed: Toggle - 8437: - - Pressed: Toggle - 4626: - - Pressed: Toggle - 4625: - - Pressed: Toggle - 4624: - - Pressed: Toggle - 8281: - - Pressed: Toggle - 4622: - - Pressed: Toggle - 4621: - - Pressed: Toggle - 4620: - - Pressed: Toggle - 8280: - - Pressed: Toggle - 4618: - - Pressed: Toggle - 4617: - - Pressed: Toggle - 4616: - - Pressed: Toggle - 8744: - - Pressed: Toggle - 8768: - - Pressed: Toggle - 9248: - - Pressed: Toggle - - uid: 17461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-27.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20807: - - Pressed: Toggle - 20827: - - Pressed: Toggle - - uid: 17491 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17492: - - Pressed: Toggle - 17493: - - Pressed: Toggle - 17494: - - Pressed: Toggle - 17495: - - Pressed: Toggle - - uid: 17499 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-28.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17498: - - Pressed: Toggle - 17496: - - Pressed: Toggle - 17497: - - Pressed: Toggle - - uid: 17505 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,22.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17503: - - Pressed: Toggle - 17502: - - Pressed: Toggle - 22862: - - Pressed: Toggle - - uid: 17507 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,53.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8587: - - Pressed: Toggle - 8588: - - Pressed: Toggle - 8589: - - Pressed: Toggle - 8590: - - Pressed: Toggle - 8591: - - Pressed: Toggle - 8592: - - Pressed: Toggle - - uid: 17516 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,9.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17515: - - Pressed: Toggle - 17514: - - Pressed: Toggle - 17512: - - Pressed: Toggle - 22860: - - Pressed: Toggle - - uid: 17517 - components: - - type: MetaData - name: Shutters button - - type: Transform - pos: 46.5,-5.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6547: - - Pressed: Toggle - 6546: - - Pressed: Toggle - - uid: 17518 - components: - - type: MetaData - name: Shutters button - - type: Transform - pos: 46.5,-2.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6550: - - Pressed: Toggle - 6551: - - Pressed: Toggle - - uid: 17519 - components: - - type: MetaData - name: Shutters button - - type: Transform - pos: 46.5,0.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6548: - - Pressed: Toggle - 6549: - - Pressed: Toggle - - uid: 17520 - components: - - type: MetaData - name: Shutters button - - type: Transform - pos: 61.5,-10.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17524: - - Pressed: Toggle - 17523: - - Pressed: Toggle - 17522: - - Pressed: Toggle - 17521: - - Pressed: Toggle - - uid: 17526 - components: - - type: MetaData - name: Lockdown button - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-51.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17259: - - Pressed: DoorBolt - 2908: - - Pressed: Toggle - - uid: 18465 - components: - - type: MetaData - name: Shutters button - - type: Transform - pos: 35.5,16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7033: - - Pressed: Toggle - 19928: - - Pressed: Toggle - - uid: 20319 - components: - - type: MetaData - name: Blast doors button - - type: Transform - pos: 61.5,-21.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7121: - - Pressed: Toggle - 7123: - - Pressed: Toggle - - uid: 20781 - components: - - type: MetaData - name: Janitorial service light button - - type: Transform - pos: -5.5,-24.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20783: - - Pressed: Toggle - - uid: 20784 - components: - - type: MetaData - name: Janitorial service light button - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20778: - - Pressed: Toggle - - uid: 20785 - components: - - type: MetaData - name: Janitorial service light button - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,2.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20779: - - Pressed: Toggle - - uid: 20786 - components: - - type: MetaData - name: Janitorial service light button - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20780: - - Pressed: Toggle - - uid: 21235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 21128 - - type: DeviceLinkSource - linkedPorts: - 21191: - - Pressed: Toggle - 21192: - - Pressed: Toggle - - uid: 21451 - components: - - type: MetaData - name: lockdown button - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.47196,16.864159 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6727: - - Pressed: DoorBolt - - Pressed: Close - - Pressed: AutoClose - - uid: 21844 - components: - - type: MetaData - name: Shutters button - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,10.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17478: - - Pressed: Toggle - 17480: - - Pressed: Toggle - 17479: - - Pressed: Toggle - - uid: 21873 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 21874: - - Pressed: Toggle - - uid: 21875 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,32.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 14851: - - Pressed: Toggle - - uid: 21876 - components: - - type: MetaData - name: Lights off button - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 21877: - - Pressed: Toggle -- proto: SignAnomaly - entities: - - uid: 8366 - components: - - type: Transform - pos: 72.5,-15.5 - parent: 2 -- proto: SignAnomaly2 - entities: - - uid: 7214 - components: - - type: Transform - pos: 66.5,-11.5 - parent: 2 -- proto: SignArcade - entities: - - uid: 2145 - components: - - type: Transform - pos: -44.5,8.5 - parent: 2 - - uid: 3123 - components: - - type: Transform - pos: -50.5,8.5 - parent: 2 -- proto: SignArmory - entities: - - uid: 4749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,29.5 - parent: 2 -- proto: SignAtmos - entities: - - uid: 2080 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 2 - - uid: 4791 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 2 - - uid: 8347 - components: - - type: Transform - pos: 14.5,-19.5 - parent: 2 -- proto: SignBar - entities: - - uid: 6812 - components: - - type: Transform - pos: -18.5,4.5 - parent: 2 -- proto: SignBio - entities: - - uid: 6811 - components: - - type: Transform - pos: 52.5,15.5 - parent: 2 -- proto: SignBiohazardMed - entities: - - uid: 21893 - components: - - type: Transform - pos: 47.5,10.5 - parent: 2 -- proto: SignBridge - entities: - - uid: 6813 - components: - - type: Transform - pos: 46.5,-21.5 - parent: 2 -- proto: SignCargo - entities: - - uid: 6814 - components: - - type: Transform - pos: 22.5,9.5 - parent: 2 -- proto: SignCargoDock - entities: - - uid: 21894 - components: - - type: Transform - pos: 30.5,24.5 - parent: 2 - - uid: 21895 - components: - - type: Transform - pos: 24.5,24.5 - parent: 2 -- proto: SignChapel - entities: - - uid: 2082 - components: - - type: Transform - pos: -25.5,-32.5 - parent: 2 -- proto: SignChem - entities: - - uid: 5964 - components: - - type: Transform - pos: 41.5,10.5 - parent: 2 - - uid: 8369 - components: - - type: Transform - pos: 42.5,16.5 - parent: 2 -- proto: SignConference - entities: - - uid: 2699 - components: - - type: Transform - pos: 30.5,-28.5 - parent: 2 -- proto: SignCryogenicsMed - entities: - - uid: 7038 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-2.5 - parent: 2 -- proto: SignDangerMed - entities: - - uid: 17068 - components: - - type: Transform - pos: 30.5,-52.5 - parent: 2 - - uid: 20805 - components: - - type: Transform - pos: 27.5,-57.5 - parent: 2 - - uid: 21077 - components: - - type: Transform - pos: 55.5,-43.5 - parent: 2 - - uid: 21125 - components: - - type: Transform - pos: 50.5,-43.5 - parent: 2 - - uid: 22095 - components: - - type: Transform - pos: 11.5,-52.5 - parent: 2 - - uid: 22500 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-35.5 - parent: 2 -- proto: SignDirectionalBar - entities: - - uid: 13599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-5.5 - parent: 2 - - uid: 13600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-32.5 - parent: 2 - - uid: 13601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-11.5 - parent: 2 - - uid: 13602 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 2 - - uid: 13603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,9.5 - parent: 2 - - uid: 13604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,18.5 - parent: 2 - - uid: 21869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.509625,-34.787674 - parent: 2 -- proto: SignDirectionalBrig - entities: - - uid: 13605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,26.5 - parent: 2 -- proto: SignDirectionalChapel - entities: - - uid: 13606 - components: - - type: Transform - pos: -22.495113,-11.233777 - parent: 2 - - uid: 13607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.491245,-32.232563 - parent: 2 -- proto: SignDirectionalChemistry - entities: - - uid: 13608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,6.5 - parent: 2 -- proto: SignDirectionalCryo - entities: - - uid: 13609 - components: - - type: Transform - pos: 52.5,9.5 - parent: 2 -- proto: SignDirectionalDorms - entities: - - uid: 13610 - components: - - type: Transform - pos: -27.5,8.5 - parent: 2 - - uid: 13611 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-32.5 - parent: 2 -- proto: SignDirectionalEng - entities: - - uid: 13612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.511724,-32.217175 - parent: 2 - - uid: 20489 - components: - - type: Transform - pos: -25.510857,-5.767983 - parent: 2 - - uid: 20864 - components: - - type: Transform - pos: 16.5,1.5 - parent: 2 -- proto: SignDirectionalEvac - entities: - - uid: 13613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.4961,-32.779675 - parent: 2 - - uid: 13614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.494131,8.773048 - parent: 2 - - uid: 13615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,18.5 - parent: 2 - - uid: 13616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,1.5 - parent: 2 - - uid: 13617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-17.5 - parent: 2 - - uid: 13618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-34.5 - parent: 2 - - uid: 17454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.502985,-24.238998 - parent: 2 -- proto: SignDirectionalFood - entities: - - uid: 13619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-32.5 - parent: 2 - - uid: 13620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.499298,18.229422 - parent: 2 -- proto: SignDirectionalGravity - entities: - - uid: 13621 - components: - - type: Transform - pos: 44.51204,-17.745241 - parent: 2 -- proto: SignDirectionalHop - entities: - - uid: 13622 - components: - - type: Transform - pos: 18.493233,9.222223 - parent: 2 - - uid: 13623 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 2 -- proto: SignDirectionalJanitor - entities: - - uid: 13624 - components: - - type: Transform - pos: -25.505726,-7.2018347 - parent: 2 - - uid: 13625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.482073,18.78723 - parent: 2 - - uid: 13626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.543232,-17.25335 - parent: 2 -- proto: SignDirectionalLibrary - entities: - - uid: 13627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.480328,-32.243916 - parent: 2 - - uid: 13628 - components: - - type: Transform - pos: -27.506214,8.259279 - parent: 2 - - uid: 13629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,18.5 - parent: 2 -- proto: SignDirectionalMed - entities: - - uid: 17449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.470295,-5.772457 - parent: 2 - - uid: 20486 - components: - - type: Transform - pos: -25.5,-5.5 - parent: 2 - - uid: 20487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.499676,16.214537 - parent: 2 - - uid: 20490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.495012,18.771885 - parent: 2 - - uid: 20491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.508957,-25.217173 - parent: 2 - - uid: 21908 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.512268,-21.218489 - parent: 2 - - uid: 21910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.47832,-32.75125 - parent: 2 -- proto: SignDirectionalSalvage - entities: - - uid: 13630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.51097,17.851742 - parent: 2 -- proto: SignDirectionalSci - entities: - - uid: 7179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-21.5 - parent: 2 - - uid: 13631 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.482822,1.7950348 - parent: 2 - - uid: 13632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 2 - - uid: 13633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.500166,-25.753792 - parent: 2 - - uid: 13634 - components: - - type: Transform - pos: -25.51464,-7.7475777 - parent: 2 - - uid: 13647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.51245,-24.757616 - parent: 2 -- proto: SignDirectionalSec - entities: - - uid: 13635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,16.5 - parent: 2 - - uid: 13636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.51479,-5.215695 - parent: 2 - - uid: 13637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-24.5 - parent: 2 - - uid: 13638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.51868,-17.241924 - parent: 2 - - uid: 13639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.507929,1.2496392 - parent: 2 -- proto: SignDirectionalSupply - entities: - - uid: 13640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.46845,-17.784672 - parent: 2 - - uid: 13641 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.479525,-32.753902 - parent: 2 - - uid: 13642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.510996,-34.195675 - parent: 2 - - uid: 13643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.50406,16.777948 - parent: 2 - - uid: 13644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.515841,18.759907 - parent: 2 - - uid: 20488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.510857,-5.235952 - parent: 2 -- proto: SignDirectionalWash - entities: - - uid: 13645 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,18.5 - parent: 2 - - uid: 13646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.4859295,18.77162 - parent: 2 -- proto: SignDisposalSpace - entities: - - uid: 7904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-37.5 - parent: 2 -- proto: SignDoors - entities: - - uid: 6816 - components: - - type: Transform - pos: 37.5,19.5 - parent: 2 - - uid: 8119 - components: - - type: Transform - pos: -54.5,-59.5 - parent: 2 - - uid: 8349 - components: - - type: Transform - pos: -40.5,-59.5 - parent: 2 - - uid: 8351 - components: - - type: Transform - pos: -40.5,-64.5 - parent: 2 - - uid: 8352 - components: - - type: Transform - pos: -54.5,-64.5 - parent: 2 -- proto: SignElectricalMed - entities: - - uid: 6817 - components: - - type: Transform - pos: -10.5,-17.5 - parent: 2 - - uid: 6818 - components: - - type: Transform - pos: 13.5,-23.5 - parent: 2 - - uid: 7864 - components: - - type: Transform - pos: 13.5,-78.5 - parent: 2 - - uid: 8356 - components: - - type: Transform - pos: -52.5,8.5 - parent: 2 - - uid: 8357 - components: - - type: Transform - pos: 40.5,-14.5 - parent: 2 - - uid: 8358 - components: - - type: Transform - pos: 37.5,8.5 - parent: 2 - - uid: 8359 - components: - - type: Transform - pos: 0.5,13.5 - parent: 2 - - uid: 8360 - components: - - type: Transform - pos: -5.5,13.5 - parent: 2 - - uid: 9268 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 2 - - uid: 9348 - components: - - type: Transform - pos: -2.5,-37.5 - parent: 2 - - uid: 17335 - components: - - type: Transform - pos: -2.5,16.5 - parent: 2 - - uid: 17506 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,55.5 - parent: 2 - - uid: 17508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,55.5 - parent: 2 - - uid: 17509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,51.5 - parent: 2 - - uid: 17510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,43.5 - parent: 2 - - uid: 17511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,42.5 - parent: 2 - - uid: 20349 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 2 - - uid: 21111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-37.5 - parent: 2 - - uid: 22016 - components: - - type: Transform - pos: 27.5,-66.5 - parent: 2 - - uid: 22018 - components: - - type: Transform - pos: 11.5,-66.5 - parent: 2 - - uid: 22019 - components: - - type: Transform - pos: 25.5,-78.5 - parent: 2 - - uid: 22029 - components: - - type: Transform - pos: 22.5,-63.5 - parent: 2 - - uid: 22434 - components: - - type: Transform - pos: 14.5,-37.5 - parent: 2 - - uid: 22435 - components: - - type: Transform - pos: 52.5,-30.5 - parent: 2 - - uid: 22436 - components: - - type: Transform - pos: -37.5,-36.5 - parent: 2 - - uid: 22440 - components: - - type: Transform - pos: -22.5,33.5 - parent: 2 - - uid: 22441 - components: - - type: Transform - pos: -61.5,-21.5 - parent: 2 - - uid: 22442 - components: - - type: Transform - pos: 63.5,-29.5 - parent: 2 - - uid: 22443 - components: - - type: Transform - pos: 88.5,-21.5 - parent: 2 - - uid: 22444 - components: - - type: Transform - pos: 62.5,10.5 - parent: 2 -- proto: SignEngine - entities: - - uid: 6819 - components: - - type: Transform - pos: 15.5,-23.5 - parent: 2 -- proto: SignEngineering - entities: - - uid: 2083 - components: - - type: Transform - pos: -4.5,-28.5 - parent: 2 - - uid: 15951 - components: - - type: Transform - pos: 15.5,0.5 - parent: 2 -- proto: SignEscapePods - entities: - - uid: 15261 - components: - - type: Transform - pos: 66.5,4.5 - parent: 2 - - uid: 15262 - components: - - type: Transform - pos: 66.5,0.5 - parent: 2 - - uid: 15263 - components: - - type: Transform - pos: 66.5,-3.5 - parent: 2 - - uid: 16026 - components: - - type: Transform - pos: -21.5,-45.5 - parent: 2 - - uid: 17016 - components: - - type: Transform - pos: -19.5,-45.5 - parent: 2 -- proto: SignEVA - entities: - - uid: 7704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-34.5 - parent: 2 -- proto: SignExamroom - entities: - - uid: 6810 - components: - - type: Transform - pos: 48.5,0.5 - parent: 2 -- proto: SignFire - entities: - - uid: 8361 - components: - - type: Transform - pos: 15.5,-14.5 - parent: 2 -- proto: SignFlammableMed - entities: - - uid: 8362 - components: - - type: Transform - pos: 32.5,-9.5 - parent: 2 - - uid: 8363 - components: - - type: Transform - pos: 32.5,-14.5 - parent: 2 -- proto: SignGravity - entities: - - uid: 19808 - components: - - type: Transform - pos: 51.5,-37.5 - parent: 2 -- proto: SignHead - entities: - - uid: 2084 - components: - - type: Transform - pos: 45.5,-22.5 - parent: 2 -- proto: SignHydro1 - entities: - - uid: 2085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,15.5 - parent: 2 -- proto: SignInterrogation - entities: - - uid: 4822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,29.5 - parent: 2 -- proto: SignJanitor - entities: - - uid: 6821 - components: - - type: Transform - pos: -14.5,-28.5 - parent: 2 -- proto: SignLawyer - entities: - - uid: 6823 - components: - - type: Transform - pos: -46.5,-18.5 - parent: 2 -- proto: SignLibrary - entities: - - uid: 6822 - components: - - type: Transform - pos: -22.5,-16.5 - parent: 2 -- proto: SignMagneticsMed - entities: - - uid: 22501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-33.5 - parent: 2 -- proto: SignMail - entities: - - uid: 6815 - components: - - type: Transform - pos: 22.5,16.5 - parent: 2 -- proto: SignMaterials - entities: - - uid: 4375 - components: - - type: Transform - pos: 31.5,1.5 - parent: 2 -- proto: SignMedical - entities: - - uid: 6824 - components: - - type: Transform - pos: 44.5,0.5 - parent: 2 -- proto: SignMorgue - entities: - - uid: 6665 - components: - - type: Transform - pos: 50.5,-8.5 - parent: 2 - - uid: 14213 - components: - - type: Transform - pos: 47.5,-11.5 - parent: 2 -- proto: SignNanotrasen1 - entities: - - uid: 19752 - components: - - type: Transform - pos: 34.5,-21.5 - parent: 2 -- proto: SignNanotrasen2 - entities: - - uid: 19751 - components: - - type: Transform - pos: 35.5,-21.5 - parent: 2 -- proto: SignNanotrasen3 - entities: - - uid: 19750 - components: - - type: Transform - pos: 36.5,-21.5 - parent: 2 -- proto: SignNanotrasen4 - entities: - - uid: 19749 - components: - - type: Transform - pos: 37.5,-21.5 - parent: 2 -- proto: SignNanotrasen5 - entities: - - uid: 19748 - components: - - type: Transform - pos: 38.5,-21.5 - parent: 2 -- proto: SignNews - entities: - - uid: 3096 - components: - - type: Transform - pos: -52.5,-27.5 - parent: 2 -- proto: SignNTMine - entities: - - uid: 7084 - components: - - type: Transform - pos: 32.5,17.5 - parent: 2 -- proto: SignPrison - entities: - - uid: 5110 - components: - - type: Transform - pos: -2.5,35.5 - parent: 2 -- proto: SignRadiationMed - entities: - - uid: 2091 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 2 -- proto: SignReception - entities: - - uid: 854 - components: - - type: Transform - pos: 24.5,15.5 - parent: 2 - - uid: 21597 - components: - - type: Transform - pos: 57.5,-15.5 - parent: 2 - - uid: 21598 - components: - - type: Transform - pos: 44.5,-22.5 - parent: 2 - - uid: 21599 - components: - - type: Transform - pos: 0.5,25.5 - parent: 2 -- proto: SignRedOne - entities: - - uid: 21619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.497345,-11.735416 - parent: 2 -- proto: SignRedTwo - entities: - - uid: 21620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.505127,-11.735416 - parent: 2 -- proto: SignRestroom - entities: - - uid: 20295 - components: - - type: Transform - pos: 15.5,22.5 - parent: 2 -- proto: SignRND - entities: - - uid: 21928 - components: - - type: Transform - pos: 61.5,-15.5 - parent: 2 -- proto: SignRobo - entities: - - uid: 7162 - components: - - type: Transform - pos: 60.5,-21.5 - parent: 2 -- proto: SignSalvage - entities: - - uid: 855 - components: - - type: Transform - pos: 32.5,19.5 - parent: 2 -- proto: SignScience - entities: - - uid: 7158 - components: - - type: Transform - pos: 62.5,-18.5 - parent: 2 -- proto: SignSecureMed - entities: - - uid: 1969 - components: - - type: Transform - pos: -29.5,-1.5 - parent: 2 - - uid: 6827 - components: - - type: Transform - pos: 21.5,-19.5 - parent: 2 - - uid: 15635 - components: - - type: Transform - pos: -41.5,22.5 - parent: 2 - - uid: 15929 - components: - - type: Transform - pos: -45.5,22.5 - parent: 2 - - uid: 16658 - components: - - type: Transform - pos: -41.5,24.5 - parent: 2 - - uid: 16659 - components: - - type: Transform - pos: -45.5,24.5 - parent: 2 - - uid: 17248 - components: - - type: Transform - pos: 49.5,-56.5 - parent: 2 - - uid: 17249 - components: - - type: Transform - pos: 43.5,-57.5 - parent: 2 - - uid: 17250 - components: - - type: Transform - pos: 39.5,-52.5 - parent: 2 - - uid: 17251 - components: - - type: Transform - pos: 55.5,-48.5 - parent: 2 - - uid: 17252 - components: - - type: Transform - pos: 61.5,-56.5 - parent: 2 - - uid: 17253 - components: - - type: Transform - pos: 64.5,-48.5 - parent: 2 - - uid: 21950 - components: - - type: Transform - pos: 53.5,-35.5 - parent: 2 - - uid: 22024 - components: - - type: Transform - pos: 15.5,-67.5 - parent: 2 - - uid: 22025 - components: - - type: Transform - pos: 15.5,-74.5 - parent: 2 - - uid: 22026 - components: - - type: Transform - pos: 23.5,-74.5 - parent: 2 - - uid: 22027 - components: - - type: Transform - pos: 23.5,-67.5 - parent: 2 -- proto: SignSecureMedRed - entities: - - uid: 6826 - components: - - type: Transform - pos: 25.5,-5.5 - parent: 2 -- proto: SignSecurity - entities: - - uid: 5111 - components: - - type: Transform - pos: 0.5,22.5 - parent: 2 -- proto: SignServer - entities: - - uid: 21937 - components: - - type: Transform - pos: 71.5,-24.5 - parent: 2 -- proto: SignShipDock - entities: - - uid: 8354 - components: - - type: Transform - pos: -55.5,-0.5 - parent: 2 - - uid: 8355 - components: - - type: Transform - pos: -55.5,3.5 - parent: 2 -- proto: SignSmoking - entities: - - uid: 6825 - components: - - type: Transform - pos: 27.5,-14.5 - parent: 2 -- proto: SignSpace - entities: - - uid: 3616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-2.5 - parent: 2 - - uid: 3617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,5.5 - parent: 2 - - uid: 5726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,17.5 - parent: 2 - - uid: 6828 - components: - - type: Transform - pos: -5.5,-12.5 - parent: 2 - - uid: 21938 - components: - - type: Transform - pos: -10.5,40.5 - parent: 2 - - uid: 21948 - components: - - type: Transform - pos: 71.5,-33.5 - parent: 2 - - uid: 21951 - components: - - type: Transform - pos: -23.5,38.5 - parent: 2 - - uid: 21953 - components: - - type: Transform - pos: -57.5,-20.5 - parent: 2 - - uid: 21954 - components: - - type: Transform - pos: 68.5,20.5 - parent: 2 - - uid: 21991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-31.5 - parent: 2 - - uid: 22185 - components: - - type: Transform - pos: 20.5,-61.5 - parent: 2 -- proto: SignSurgery - entities: - - uid: 6886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,3.5 - parent: 2 -- proto: SignTelecomms - entities: - - uid: 7586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-35.5 - parent: 2 - - uid: 7591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-35.5 - parent: 2 -- proto: SignToolStorage - entities: - - uid: 4404 - components: - - type: Transform - pos: 40.5,0.5 - parent: 2 -- proto: SignVault - entities: - - uid: 21949 - components: - - type: Transform - pos: 53.5,-34.5 - parent: 2 -- proto: SignVirology - entities: - - uid: 6829 - components: - - type: Transform - pos: 56.5,15.5 - parent: 2 -- proto: SignVox - entities: - - uid: 21377 - components: - - type: Transform - pos: -34.5,-1.5 - parent: 2 -- proto: SingularityGenerator - entities: - - uid: 2092 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - - uid: 3104 - components: - - type: Transform - pos: 0.5,0.5 - parent: 2 -- proto: Sink - entities: - - uid: 5948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-29.5 - parent: 2 - - uid: 13488 - components: - - type: Transform - pos: 36.5,-22.5 - parent: 2 -- proto: SinkWide - entities: - - uid: 5258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,45.5 - parent: 2 - - uid: 6755 - components: - - type: Transform - pos: -20.5,12.5 - parent: 2 - - uid: 8239 - components: - - type: Transform - pos: 13.5,26.5 - parent: 2 - - uid: 8240 - components: - - type: Transform - pos: 15.5,26.5 - parent: 2 - - uid: 9024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,14.5 - parent: 2 - - uid: 14218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,14.5 - parent: 2 - - uid: 16795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,5.5 - parent: 2 -- proto: Skub - entities: - - uid: 17542 - components: - - type: Transform - pos: 85.054985,-7.3956304 - parent: 2 -- proto: SmartFridge - entities: - - uid: 5992 - components: - - type: Transform - pos: 44.5,10.5 - parent: 2 - - uid: 16772 - components: - - type: Transform - pos: -19.5,10.5 - parent: 2 -- proto: SMESBasic - entities: - - uid: 2095 - components: - - type: MetaData - name: Singularity SMES - - type: Transform - pos: 1.5,-17.5 - parent: 2 - - uid: 2096 - components: - - type: MetaData - name: Main SMES - - type: Transform - pos: -12.5,-17.5 - parent: 2 - - uid: 2097 - components: - - type: MetaData - name: Main SMES - - type: Transform - pos: -12.5,-14.5 - parent: 2 - - uid: 2098 - components: - - type: MetaData - name: Main SMES - - type: Transform - pos: -12.5,-15.5 - parent: 2 - - uid: 2099 - components: - - type: MetaData - name: Main SMES - - type: Transform - pos: -12.5,-16.5 - parent: 2 - - uid: 8097 - components: - - type: MetaData - name: South Solars SMES - - type: Transform - pos: -1.5,-37.5 - parent: 2 - - uid: 8098 - components: - - type: MetaData - name: South Solars SMES - - type: Transform - pos: -0.5,-37.5 - parent: 2 - - uid: 10575 - components: - - type: MetaData - name: Secure Command SMES - - type: Transform - pos: 54.5,-40.5 - parent: 2 - - uid: 15809 - components: - - type: MetaData - name: North Solars SMES - - type: Transform - pos: -28.5,34.5 - parent: 2 - - uid: 15810 - components: - - type: MetaData - name: North Solars SMES - - type: Transform - pos: -28.5,35.5 - parent: 2 - - uid: 20944 - components: - - type: MetaData - name: Rage Cage SMES - - type: Transform - pos: 88.5,-22.5 - parent: 2 - - uid: 22070 - components: - - type: MetaData - name: AI Core SMES - - type: Transform - pos: 23.5,-63.5 - parent: 2 -- proto: SodaDispenser - entities: - - uid: 2102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,2.5 - parent: 2 - - uid: 2103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,0.5 - parent: 2 - - uid: 16595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,40.5 - parent: 2 -- proto: SolarPanel - entities: - - uid: 3207 - components: - - type: Transform - pos: 3.5,-52.5 - parent: 2 - - uid: 3279 - components: - - type: Transform - pos: 2.5,-48.5 - parent: 2 - - uid: 3281 - components: - - type: Transform - pos: 3.5,-48.5 - parent: 2 - - uid: 3295 - components: - - type: Transform - pos: 2.5,-52.5 - parent: 2 - - uid: 3297 - components: - - type: Transform - pos: 3.5,-50.5 - parent: 2 - - uid: 3323 - components: - - type: Transform - pos: 2.5,-50.5 - parent: 2 - - uid: 3324 - components: - - type: Transform - pos: -0.5,-50.5 - parent: 2 - - uid: 3669 - components: - - type: Transform - pos: -0.5,-48.5 - parent: 2 - - uid: 4999 - components: - - type: Transform - pos: -1.5,-48.5 - parent: 2 - - uid: 5000 - components: - - type: Transform - pos: -1.5,-50.5 - parent: 2 - - uid: 15083 - components: - - type: Transform - pos: -2.5,-48.5 - parent: 2 - - uid: 15474 - components: - - type: Transform - pos: -2.5,-50.5 - parent: 2 - - uid: 15475 - components: - - type: Transform - pos: -3.5,-48.5 - parent: 2 - - uid: 15476 - components: - - type: Transform - pos: -3.5,-50.5 - parent: 2 - - uid: 15477 - components: - - type: Transform - pos: -4.5,-50.5 - parent: 2 - - uid: 15478 - components: - - type: Transform - pos: -5.5,-50.5 - parent: 2 - - uid: 15479 - components: - - type: Transform - pos: -6.5,-50.5 - parent: 2 - - uid: 15480 - components: - - type: Transform - pos: -6.5,-48.5 - parent: 2 - - uid: 15481 - components: - - type: Transform - pos: -5.5,-48.5 - parent: 2 - - uid: 15482 - components: - - type: Transform - pos: -4.5,-48.5 - parent: 2 - - uid: 15483 - components: - - type: Transform - pos: -6.5,-46.5 - parent: 2 - - uid: 15484 - components: - - type: Transform - pos: -4.5,-46.5 - parent: 2 - - uid: 15485 - components: - - type: Transform - pos: -5.5,-46.5 - parent: 2 - - uid: 15486 - components: - - type: Transform - pos: -3.5,-46.5 - parent: 2 - - uid: 15487 - components: - - type: Transform - pos: -2.5,-46.5 - parent: 2 - - uid: 15488 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 2 - - uid: 15489 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 2 - - uid: 15490 - components: - - type: Transform - pos: -1.5,-44.5 - parent: 2 - - uid: 15491 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 2 - - uid: 15492 - components: - - type: Transform - pos: -3.5,-44.5 - parent: 2 - - uid: 15493 - components: - - type: Transform - pos: -2.5,-44.5 - parent: 2 - - uid: 15494 - components: - - type: Transform - pos: -4.5,-44.5 - parent: 2 - - uid: 15495 - components: - - type: Transform - pos: -5.5,-44.5 - parent: 2 - - uid: 15496 - components: - - type: Transform - pos: -6.5,-44.5 - parent: 2 - - uid: 15497 - components: - - type: Transform - pos: -6.5,-52.5 - parent: 2 - - uid: 15498 - components: - - type: Transform - pos: -4.5,-52.5 - parent: 2 - - uid: 15499 - components: - - type: Transform - pos: -5.5,-52.5 - parent: 2 - - uid: 15500 - components: - - type: Transform - pos: -3.5,-52.5 - parent: 2 - - uid: 15501 - components: - - type: Transform - pos: -1.5,-52.5 - parent: 2 - - uid: 15502 - components: - - type: Transform - pos: -2.5,-52.5 - parent: 2 - - uid: 15503 - components: - - type: Transform - pos: -0.5,-52.5 - parent: 2 - - uid: 15504 - components: - - type: Transform - pos: -0.5,-54.5 - parent: 2 - - uid: 15505 - components: - - type: Transform - pos: -1.5,-54.5 - parent: 2 - - uid: 15506 - components: - - type: Transform - pos: -2.5,-54.5 - parent: 2 - - uid: 15507 - components: - - type: Transform - pos: -3.5,-54.5 - parent: 2 - - uid: 15508 - components: - - type: Transform - pos: -5.5,-54.5 - parent: 2 - - uid: 15509 - components: - - type: Transform - pos: -6.5,-54.5 - parent: 2 - - uid: 15510 - components: - - type: Transform - pos: -4.5,-54.5 - parent: 2 - - uid: 15533 - components: - - type: Transform - pos: 2.5,-46.5 - parent: 2 - - uid: 15534 - components: - - type: Transform - pos: 2.5,-44.5 - parent: 2 - - uid: 15570 - components: - - type: Transform - pos: 2.5,-54.5 - parent: 2 - - uid: 15571 - components: - - type: Transform - pos: 3.5,-54.5 - parent: 2 - - uid: 15693 - components: - - type: Transform - pos: -23.5,42.5 - parent: 2 - - uid: 15703 - components: - - type: Transform - pos: -28.5,48.5 - parent: 2 - - uid: 15704 - components: - - type: Transform - pos: -27.5,48.5 - parent: 2 - - uid: 15705 - components: - - type: Transform - pos: -25.5,48.5 - parent: 2 - - uid: 15706 - components: - - type: Transform - pos: -26.5,48.5 - parent: 2 - - uid: 15707 - components: - - type: Transform - pos: -24.5,48.5 - parent: 2 - - uid: 15708 - components: - - type: Transform - pos: -23.5,48.5 - parent: 2 - - uid: 15709 - components: - - type: Transform - pos: -20.5,48.5 - parent: 2 - - uid: 15710 - components: - - type: Transform - pos: -19.5,48.5 - parent: 2 - - uid: 15711 - components: - - type: Transform - pos: -19.5,46.5 - parent: 2 - - uid: 15712 - components: - - type: Transform - pos: -20.5,46.5 - parent: 2 - - uid: 15713 - components: - - type: Transform - pos: -20.5,44.5 - parent: 2 - - uid: 15714 - components: - - type: Transform - pos: -19.5,44.5 - parent: 2 - - uid: 15715 - components: - - type: Transform - pos: -19.5,42.5 - parent: 2 - - uid: 15716 - components: - - type: Transform - pos: -20.5,42.5 - parent: 2 - - uid: 15717 - components: - - type: Transform - pos: -24.5,42.5 - parent: 2 - - uid: 15718 - components: - - type: Transform - pos: -25.5,42.5 - parent: 2 - - uid: 15719 - components: - - type: Transform - pos: -26.5,42.5 - parent: 2 - - uid: 15720 - components: - - type: Transform - pos: -28.5,42.5 - parent: 2 - - uid: 15721 - components: - - type: Transform - pos: -28.5,44.5 - parent: 2 - - uid: 15722 - components: - - type: Transform - pos: -27.5,44.5 - parent: 2 - - uid: 15723 - components: - - type: Transform - pos: -26.5,44.5 - parent: 2 - - uid: 15724 - components: - - type: Transform - pos: -25.5,44.5 - parent: 2 - - uid: 15725 - components: - - type: Transform - pos: -24.5,44.5 - parent: 2 - - uid: 15726 - components: - - type: Transform - pos: -23.5,44.5 - parent: 2 - - uid: 15727 - components: - - type: Transform - pos: -27.5,42.5 - parent: 2 - - uid: 15729 - components: - - type: Transform - pos: -28.5,50.5 - parent: 2 - - uid: 15730 - components: - - type: Transform - pos: -27.5,50.5 - parent: 2 - - uid: 15731 - components: - - type: Transform - pos: -26.5,50.5 - parent: 2 - - uid: 15732 - components: - - type: Transform - pos: -25.5,50.5 - parent: 2 - - uid: 15733 - components: - - type: Transform - pos: -24.5,50.5 - parent: 2 - - uid: 15734 - components: - - type: Transform - pos: -23.5,50.5 - parent: 2 - - uid: 15735 - components: - - type: Transform - pos: -23.5,52.5 - parent: 2 - - uid: 15736 - components: - - type: Transform - pos: -24.5,52.5 - parent: 2 - - uid: 15737 - components: - - type: Transform - pos: -25.5,52.5 - parent: 2 - - uid: 15738 - components: - - type: Transform - pos: -27.5,52.5 - parent: 2 - - uid: 15739 - components: - - type: Transform - pos: -28.5,52.5 - parent: 2 - - uid: 15796 - components: - - type: Transform - pos: -23.5,46.5 - parent: 2 - - uid: 15797 - components: - - type: Transform - pos: -24.5,46.5 - parent: 2 - - uid: 15798 - components: - - type: Transform - pos: -26.5,46.5 - parent: 2 - - uid: 15799 - components: - - type: Transform - pos: -25.5,46.5 - parent: 2 - - uid: 15800 - components: - - type: Transform - pos: -27.5,46.5 - parent: 2 - - uid: 15801 - components: - - type: Transform - pos: -28.5,46.5 - parent: 2 - - uid: 15802 - components: - - type: Transform - pos: -26.5,52.5 - parent: 2 - - uid: 15803 - components: - - type: Transform - pos: -20.5,52.5 - parent: 2 - - uid: 15804 - components: - - type: Transform - pos: -19.5,52.5 - parent: 2 - - uid: 15806 - components: - - type: Transform - pos: -19.5,50.5 - parent: 2 - - uid: 15807 - components: - - type: Transform - pos: -20.5,50.5 - parent: 2 -- proto: SolarTracker - entities: - - uid: 15468 - components: - - type: Transform - pos: 1.5,-58.5 - parent: 2 - - uid: 15702 - components: - - type: Transform - pos: -22.5,55.5 - parent: 2 -- proto: SolidSecretDoor - entities: - - uid: 2339 - components: - - type: Transform - pos: -35.5,-42.5 - parent: 2 -- proto: SpaceCash100 - entities: - - uid: 2104 - components: - - type: Transform - pos: -19.177664,-3.0928874 - parent: 2 - - uid: 2105 - components: - - type: Transform - pos: -19.19601,-3.3864217 - parent: 2 - - uid: 16651 - components: - - type: Transform - parent: 16650 - - type: Stack - count: 500 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SpaceHeater - entities: - - uid: 21477 - components: - - type: Transform - pos: 21.5,-17.5 - parent: 2 - - uid: 21478 - components: - - type: Transform - pos: 21.5,-16.5 - parent: 2 -- proto: SpacemenFigureSpawner - entities: - - uid: 15870 - components: - - type: Transform - pos: -17.5,-8.5 - parent: 2 -- proto: SpawnMechRipley - entities: - - uid: 22481 - components: - - type: Transform - pos: 27.5,8.5 - parent: 2 -- proto: SpawnMobAlexander - entities: - - uid: 21078 - components: - - type: Transform - pos: -21.5,13.5 - parent: 2 -- proto: SpawnMobButterfly - entities: - - uid: 13099 - components: - - type: Transform - pos: -47.5,-6.5 - parent: 2 - - uid: 13740 - components: - - type: Transform - pos: -49.5,-6.5 - parent: 2 - - uid: 13742 - components: - - type: Transform - pos: -45.5,-8.5 - parent: 2 - - uid: 14411 - components: - - type: Transform - pos: -48.5,-8.5 - parent: 2 - - uid: 16201 - components: - - type: Transform - pos: -46.5,-7.5 - parent: 2 -- proto: SpawnMobCatException - entities: - - uid: 6742 - components: - - type: Transform - pos: 59.5,10.5 - parent: 2 -- proto: SpawnMobCatSpace - entities: - - uid: 17293 - components: - - type: Transform - pos: 67.5,-53.5 - parent: 2 -- proto: SpawnMobCorgi - entities: - - uid: 2107 - components: - - type: Transform - pos: 44.5,-25.5 - parent: 2 -- proto: SpawnMobCrabAtmos - entities: - - uid: 14868 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 2 -- proto: SpawnMobFoxRenault - entities: - - uid: 4579 - components: - - type: Transform - pos: 41.5,-30.5 - parent: 2 -- proto: SpawnMobMcGriff - entities: - - uid: 4990 - components: - - type: Transform - pos: 1.5,23.5 - parent: 2 -- proto: SpawnMobMedibot - entities: - - uid: 6049 - components: - - type: Transform - pos: 42.5,8.5 - parent: 2 -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 12921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,6.5 - parent: 2 -- proto: SpawnMobPossumMorty - entities: - - uid: 12918 - components: - - type: Transform - pos: 52.5,-10.5 - parent: 2 -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 5733 - components: - - type: Transform - pos: 37.5,15.5 - parent: 2 -- proto: SpawnMobShiva - entities: - - uid: 5701 - components: - - type: Transform - pos: -12.5,34.5 - parent: 2 -- proto: SpawnMobSlothPaperwork - entities: - - uid: 2109 - components: - - type: Transform - pos: -19.5,-18.5 - parent: 2 -- proto: SpawnMobSmile - entities: - - uid: 7422 - components: - - type: Transform - pos: 68.5,-22.5 - parent: 2 -- proto: SpawnPointAtmos - entities: - - uid: 2110 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 2 - - uid: 2111 - components: - - type: Transform - pos: 11.5,-16.5 - parent: 2 - - uid: 2112 - components: - - type: Transform - pos: 12.5,-17.5 - parent: 2 -- proto: SpawnPointBartender - entities: - - uid: 2113 - components: - - type: Transform - pos: -14.5,7.5 - parent: 2 - - uid: 2114 - components: - - type: Transform - pos: -14.5,6.5 - parent: 2 -- proto: SpawnPointBorg - entities: - - uid: 13722 - components: - - type: Transform - pos: 63.5,-23.5 - parent: 2 - - uid: 13723 - components: - - type: Transform - pos: 64.5,-23.5 - parent: 2 - - uid: 13724 - components: - - type: Transform - pos: 65.5,-23.5 - parent: 2 - - uid: 13725 - components: - - type: Transform - pos: 65.5,-24.5 - parent: 2 - - uid: 13726 - components: - - type: Transform - pos: 64.5,-24.5 - parent: 2 - - uid: 13727 - components: - - type: Transform - pos: 63.5,-24.5 - parent: 2 -- proto: SpawnPointBotanist - entities: - - uid: 14252 - components: - - type: Transform - pos: -37.5,12.5 - parent: 2 - - uid: 14255 - components: - - type: Transform - pos: -37.5,13.5 - parent: 2 -- proto: SpawnPointBoxer - entities: - - uid: 2117 - components: - - type: Transform - pos: -32.5,-33.5 - parent: 2 - - uid: 2118 - components: - - type: Transform - pos: -33.5,-33.5 - parent: 2 - - uid: 3911 - components: - - type: Transform - pos: -35.5,-27.5 - parent: 2 - - uid: 3912 - components: - - type: Transform - pos: -32.5,-30.5 - parent: 2 -- proto: SpawnPointCaptain - entities: - - uid: 4578 - components: - - type: Transform - pos: 41.5,-28.5 - parent: 2 -- proto: SpawnPointCargoTechnician - entities: - - uid: 5736 - components: - - type: Transform - pos: 28.5,18.5 - parent: 2 - - uid: 5737 - components: - - type: Transform - pos: 26.5,18.5 - parent: 2 - - uid: 5738 - components: - - type: Transform - pos: 25.5,18.5 - parent: 2 - - uid: 5740 - components: - - type: Transform - pos: 29.5,18.5 - parent: 2 -- proto: SpawnPointChaplain - entities: - - uid: 15872 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 2 -- proto: SpawnPointChef - entities: - - uid: 16118 - components: - - type: Transform - pos: -20.5,12.5 - parent: 2 -- proto: SpawnPointChemist - entities: - - uid: 6047 - components: - - type: Transform - pos: 42.5,12.5 - parent: 2 - - uid: 6048 - components: - - type: Transform - pos: 46.5,12.5 - parent: 2 -- proto: SpawnPointChiefEngineer - entities: - - uid: 2120 - components: - - type: Transform - pos: 3.5,-26.5 - parent: 2 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 6723 - components: - - type: Transform - pos: 55.5,11.5 - parent: 2 -- proto: SpawnPointClown - entities: - - uid: 3910 - components: - - type: Transform - pos: -28.5,-19.5 - parent: 2 -- proto: SpawnPointDetective - entities: - - uid: 10272 - components: - - type: Transform - pos: -29.5,26.5 - parent: 2 -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 2121 - components: - - type: Transform - pos: 36.5,-25.5 - parent: 2 -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 5674 - components: - - type: Transform - pos: -17.5,32.5 - parent: 2 -- proto: SpawnPointJanitor - entities: - - uid: 2122 - components: - - type: Transform - pos: -17.5,-26.5 - parent: 2 - - uid: 2123 - components: - - type: Transform - pos: -16.5,-26.5 - parent: 2 - - uid: 22467 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 2 -- proto: SpawnPointLatejoin - entities: - - uid: 5022 - components: - - type: Transform - pos: -47.5,-46.5 - parent: 2 -- proto: SpawnPointLawyer - entities: - - uid: 5968 - components: - - type: Transform - pos: -48.5,-14.5 - parent: 2 -- proto: SpawnPointLibrarian - entities: - - uid: 15871 - components: - - type: Transform - pos: -18.5,-9.5 - parent: 2 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 6720 - components: - - type: Transform - pos: 55.5,3.5 - parent: 2 - - uid: 6721 - components: - - type: Transform - pos: 56.5,3.5 - parent: 2 - - uid: 6722 - components: - - type: Transform - pos: 57.5,3.5 - parent: 2 -- proto: SpawnPointMedicalIntern - entities: - - uid: 6724 - components: - - type: Transform - pos: 56.5,2.5 - parent: 2 - - uid: 6725 - components: - - type: Transform - pos: 57.5,2.5 - parent: 2 -- proto: SpawnPointMime - entities: - - uid: 3909 - components: - - type: Transform - pos: -33.5,-19.5 - parent: 2 - - uid: 3913 - components: - - type: Transform - pos: -33.5,6.5 - parent: 2 -- proto: SpawnPointMusician - entities: - - uid: 2124 - components: - - type: Transform - pos: -24.5,1.5 - parent: 2 - - uid: 3908 - components: - - type: Transform - pos: -38.5,-19.5 - parent: 2 -- proto: SpawnPointObserver - entities: - - uid: 21965 - components: - - type: Transform - pos: -33.5,0.5 - parent: 2 -- proto: SpawnPointParamedic - entities: - - uid: 6718 - components: - - type: Transform - pos: 55.5,7.5 - parent: 2 - - uid: 6719 - components: - - type: Transform - pos: 56.5,7.5 - parent: 2 -- proto: SpawnPointPassenger - entities: - - uid: 15639 - components: - - type: Transform - pos: -36.5,-9.5 - parent: 2 - - uid: 15641 - components: - - type: Transform - pos: -28.5,-9.5 - parent: 2 - - uid: 15642 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 2 - - uid: 15643 - components: - - type: Transform - pos: -35.5,-14.5 - parent: 2 - - uid: 15644 - components: - - type: Transform - pos: -32.5,-13.5 - parent: 2 - - uid: 15645 - components: - - type: Transform - pos: -32.5,-14.5 - parent: 2 - - uid: 15646 - components: - - type: Transform - pos: -29.5,-13.5 - parent: 2 - - uid: 15647 - components: - - type: Transform - pos: -29.5,-14.5 - parent: 2 -- proto: SpawnPointQuartermaster - entities: - - uid: 5693 - components: - - type: Transform - pos: 37.5,13.5 - parent: 2 -- proto: SpawnPointReporter - entities: - - uid: 5966 - components: - - type: Transform - pos: -55.5,-28.5 - parent: 2 - - uid: 5967 - components: - - type: Transform - pos: -54.5,-28.5 - parent: 2 -- proto: SpawnPointResearchAssistant - entities: - - uid: 23342 - components: - - type: Transform - pos: 69.5,-12.5 - parent: 2 -- proto: SpawnPointResearchDirector - entities: - - uid: 7450 - components: - - type: Transform - pos: 71.5,-22.5 - parent: 2 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 5704 - components: - - type: Transform - pos: 35.5,19.5 - parent: 2 - - uid: 5715 - components: - - type: Transform - pos: 35.5,20.5 - parent: 2 - - uid: 5735 - components: - - type: Transform - pos: 35.5,21.5 - parent: 2 -- proto: SpawnPointScientist - entities: - - uid: 7447 - components: - - type: Transform - pos: 69.5,-13.5 - parent: 2 - - uid: 7449 - components: - - type: Transform - pos: 68.5,-13.5 - parent: 2 - - uid: 20553 - components: - - type: Transform - pos: 70.5,-13.5 - parent: 2 -- proto: SpawnPointSecurityCadet - entities: - - uid: 5675 - components: - - type: Transform - pos: -6.5,33.5 - parent: 2 -- proto: SpawnPointSecurityOfficer - entities: - - uid: 5676 - components: - - type: Transform - pos: -9.5,33.5 - parent: 2 - - uid: 5677 - components: - - type: Transform - pos: -8.5,33.5 - parent: 2 - - uid: 5678 - components: - - type: Transform - pos: -7.5,33.5 - parent: 2 -- proto: SpawnPointServiceWorker - entities: - - uid: 2126 - components: - - type: Transform - pos: -32.5,0.5 - parent: 2 - - uid: 2127 - components: - - type: Transform - pos: -34.5,0.5 - parent: 2 - - uid: 2128 - components: - - type: Transform - pos: -36.5,0.5 - parent: 2 - - uid: 2129 - components: - - type: Transform - pos: -30.5,0.5 - parent: 2 -- proto: SpawnPointStationEngineer - entities: - - uid: 2130 - components: - - type: Transform - pos: -9.5,-18.5 - parent: 2 - - uid: 2131 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 2 - - uid: 2132 - components: - - type: Transform - pos: -7.5,-18.5 - parent: 2 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 2133 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 2 - - uid: 2134 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 2 -- proto: SpawnPointWarden - entities: - - uid: 5673 - components: - - type: Transform - pos: 2.5,24.5 - parent: 2 -- proto: Spear - entities: - - uid: 20997 - components: - - type: Transform - pos: 91.5888,-20.49667 - parent: 2 - - uid: 20998 - components: - - type: Transform - pos: 91.44817,-20.40292 - parent: 2 -- proto: SpiderWeb - entities: - - uid: 2136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,14.5 - parent: 2 -- proto: SprayBottle - entities: - - uid: 8194 - components: - - type: Transform - pos: -13.281918,-24.159872 - parent: 2 - - uid: 8430 - components: - - type: Transform - pos: -13.465376,-24.172104 - parent: 2 -- proto: SprayBottleWater - entities: - - uid: 6926 - components: - - type: Transform - pos: 58.459965,18.571264 - parent: 2 -- proto: StairDark - entities: - - uid: 3105 - components: - - type: Transform - pos: 26.5,4.5 - parent: 2 - - uid: 3106 - components: - - type: Transform - pos: 25.5,4.5 - parent: 2 - - uid: 3107 - components: - - type: Transform - pos: 24.5,4.5 - parent: 2 -- proto: Stairs - entities: - - uid: 2682 - components: - - type: Transform - pos: -46.5,-45.5 - parent: 2 - - uid: 2684 - components: - - type: Transform - pos: -47.5,-45.5 - parent: 2 - - uid: 2687 - components: - - type: Transform - pos: -48.5,-45.5 - parent: 2 - - uid: 3741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,2.5 - parent: 2 - - uid: 3742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,1.5 - parent: 2 - - uid: 3743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,0.5 - parent: 2 - - uid: 3829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-28.5 - parent: 2 - - uid: 3830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-27.5 - parent: 2 - - uid: 5932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-17.5 - parent: 2 - - uid: 5933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-17.5 - parent: 2 - - uid: 5934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-17.5 - parent: 2 - - uid: 5935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,21.5 - parent: 2 - - uid: 5936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,20.5 - parent: 2 - - uid: 5937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,19.5 - parent: 2 - - uid: 5938 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,21.5 - parent: 2 - - uid: 5939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,20.5 - parent: 2 - - uid: 5940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,19.5 - parent: 2 - - uid: 5941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,3.5 - parent: 2 - - uid: 5943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,4.5 - parent: 2 - - uid: 5944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 2 - - uid: 7119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-22.5 - parent: 2 - - uid: 7120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-23.5 - parent: 2 - - uid: 8464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-21.5 - parent: 2 - - uid: 21884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-21.5 - parent: 2 - - uid: 21885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-21.5 - parent: 2 - - uid: 21886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-21.5 - parent: 2 -- proto: StairStage - entities: - - uid: 2150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,4.5 - parent: 2 - - uid: 2151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,4.5 - parent: 2 -- proto: StairWood - entities: - - uid: 8154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-20.5 - parent: 2 - - uid: 8963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 2 - - uid: 13333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,0.5 - parent: 2 - - uid: 14396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,3.5 - parent: 2 - - uid: 14397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,2.5 - parent: 2 - - uid: 15046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,1.5 - parent: 2 - - uid: 21558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-20.5 - parent: 2 -- proto: StasisBed - entities: - - uid: 6583 - components: - - type: Transform - pos: 55.5,-0.5 - parent: 2 -- proto: StationAiUploadComputer - entities: - - uid: 20815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-53.5 - parent: 2 -- proto: StationAnchor - entities: - - uid: 14912 - components: - - type: Transform - pos: 62.5,-35.5 - parent: 2 -- proto: StationBeaconPart - entities: - - uid: 21365 - components: - - type: Transform - pos: 30.702707,-1.6835423 - parent: 2 - - uid: 21366 - components: - - type: Transform - pos: 30.441788,-1.871078 - parent: 2 - - uid: 21367 - components: - - type: Transform - pos: 30.572248,-1.7732333 - parent: 2 -- proto: StationEfficiencyCircuitBoard - entities: - - uid: 21076 - components: - - type: Transform - pos: 14.458807,-65.50417 - parent: 2 -- proto: StationMap - entities: - - uid: 7556 - components: - - type: Transform - pos: 48.5,-17.5 - parent: 2 - - uid: 13592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-23.5 - parent: 2 - - uid: 13593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,18.5 - parent: 2 - - uid: 13594 - components: - - type: Transform - pos: 41.5,6.5 - parent: 2 - - uid: 13595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-34.5 - parent: 2 - - uid: 20200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-48.5 - parent: 2 - - uid: 20438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-19.5 - parent: 2 - - uid: 20439 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-28.5 - parent: 2 - - uid: 20440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-14.5 - parent: 2 - - uid: 20441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,14.5 - parent: 2 - - uid: 20442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,32.5 - parent: 2 - - uid: 20443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,9.5 - parent: 2 - - uid: 21889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-48.5 - parent: 2 - - uid: 22399 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-53.5 - parent: 2 -- proto: StoolBar - entities: - - uid: 2152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,3.5 - parent: 2 - - uid: 2153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,2.5 - parent: 2 - - uid: 2154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,1.5 - parent: 2 - - uid: 2155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,0.5 - parent: 2 - - uid: 2156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 2 - - uid: 14965 - components: - - type: Transform - pos: -35.5,24.5 - parent: 2 - - uid: 14966 - components: - - type: Transform - pos: -36.5,24.5 - parent: 2 - - uid: 15024 - components: - - type: Transform - pos: -34.5,24.5 - parent: 2 - - uid: 16635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,34.5 - parent: 2 - - uid: 16636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,34.5 - parent: 2 - - uid: 16637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,34.5 - parent: 2 - - uid: 16918 - components: - - type: Transform - pos: -37.5,24.5 - parent: 2 -- proto: StorageCanister - entities: - - uid: 2157 - components: - - type: Transform - pos: -1.5,-19.5 - parent: 2 - - uid: 2158 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 2 - - uid: 2159 - components: - - type: Transform - pos: -0.5,-20.5 - parent: 2 - - uid: 2160 - components: - - type: Transform - pos: -1.5,-20.5 - parent: 2 - - uid: 2161 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 2 - - uid: 2162 - components: - - type: Transform - pos: 25.5,-17.5 - parent: 2 - - uid: 2163 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 2 - - uid: 2164 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 2 - - uid: 7394 - components: - - type: Transform - pos: 73.5,-11.5 - parent: 2 - - uid: 7395 - components: - - type: Transform - pos: 73.5,-12.5 - parent: 2 - - uid: 14854 - components: - - type: Transform - pos: -16.5,17.5 - parent: 2 -- proto: SubstationBasic - entities: - - uid: 2165 - components: - - type: MetaData - name: Singularity substation - - type: Transform - pos: 2.5,-17.5 - parent: 2 - - uid: 2166 - components: - - type: MetaData - name: Central Substation - - type: Transform - pos: -3.5,15.5 - parent: 2 - - uid: 2167 - components: - - type: MetaData - name: East Substation - - type: Transform - pos: 37.5,-14.5 - parent: 2 - - uid: 3700 - components: - - type: MetaData - name: Evacuation Substation - - type: Transform - pos: -52.5,10.5 - parent: 2 - - uid: 5971 - components: - - type: MetaData - name: Cargo Substation - - type: Transform - pos: 38.5,6.5 - parent: 2 - - uid: 6135 - components: - - type: MetaData - name: Command Substation - - type: Transform - pos: 51.5,-28.5 - parent: 2 - - uid: 6983 - components: - - type: MetaData - name: South-West Substation - - type: Transform - pos: -37.5,-37.5 - parent: 2 - - uid: 8524 - components: - - type: MetaData - name: Arrivals Substation - - type: Transform - pos: -36.5,-53.5 - parent: 2 - - uid: 9108 - components: - - type: MetaData - name: Science Substation - - type: Transform - pos: 61.5,-32.5 - parent: 2 - - uid: 9117 - components: - - type: MetaData - name: Medical Substation - - type: Transform - pos: 65.5,10.5 - parent: 2 - - uid: 9196 - components: - - type: MetaData - name: Security Substation - - type: Transform - pos: -22.5,35.5 - parent: 2 - - uid: 9203 - components: - - type: MetaData - name: South Substation - - type: Transform - pos: 14.5,-38.5 - parent: 2 - - uid: 9212 - components: - - type: MetaData - name: West Substation - - type: Transform - pos: -61.5,-20.5 - parent: 2 - - uid: 9275 - components: - - type: MetaData - name: Engineering substation - - type: Transform - pos: -0.5,-17.5 - parent: 2 - - uid: 10576 - components: - - type: MetaData - name: Secure Command Substation - - type: Transform - pos: 54.5,-41.5 - parent: 2 - - uid: 17231 - components: - - type: MetaData - name: Outpost Substation - - type: Transform - pos: 66.5,-49.5 - parent: 2 - - uid: 20937 - components: - - type: MetaData - name: Rage Cage Substation - - type: Transform - pos: 89.5,-22.5 - parent: 2 - - uid: 22069 - components: - - type: MetaData - name: AI Core substation - - type: Transform - pos: 24.5,-63.5 - parent: 2 -- proto: SubstationMachineCircuitboard - entities: - - uid: 5879 - components: - - type: Transform - pos: 54.525455,-38.59651 - parent: 2 -- proto: SuitStorageAtmos - entities: - - uid: 2168 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 2 - - uid: 2169 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 2 - - uid: 2170 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 2 -- proto: SuitStorageCaptain - entities: - - uid: 12703 - components: - - type: Transform - pos: 43.5,-27.5 - parent: 2 -- proto: SuitStorageCE - entities: - - uid: 2171 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 2 -- proto: SuitStorageCMO - entities: - - uid: 6736 - components: - - type: Transform - pos: 56.5,12.5 - parent: 2 -- proto: SuitStorageEngi - entities: - - uid: 2172 - components: - - type: Transform - pos: -4.5,-19.5 - parent: 2 - - uid: 2173 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 2 - - uid: 2174 - components: - - type: Transform - pos: -3.5,-19.5 - parent: 2 - - uid: 8113 - components: - - type: Transform - pos: -5.5,-33.5 - parent: 2 - - uid: 8114 - components: - - type: Transform - pos: -4.5,-33.5 - parent: 2 -- proto: SuitStorageEVA - entities: - - uid: 7606 - components: - - type: Transform - pos: 25.5,-35.5 - parent: 2 - - uid: 7607 - components: - - type: Transform - pos: 23.5,-35.5 - parent: 2 - - uid: 7608 - components: - - type: Transform - pos: 24.5,-35.5 - parent: 2 - - uid: 7609 - components: - - type: Transform - pos: 23.5,-38.5 - parent: 2 - - uid: 7610 - components: - - type: Transform - pos: 24.5,-38.5 - parent: 2 - - uid: 7611 - components: - - type: Transform - pos: 25.5,-38.5 - parent: 2 -- proto: SuitStorageEVAEmergency - entities: - - uid: 7081 - components: - - type: Transform - pos: 57.5,-0.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: SuitStorageEVAPrisoner - entities: - - uid: 8190 - components: - - type: Transform - pos: -2.5,40.5 - parent: 2 - - uid: 8191 - components: - - type: Transform - pos: -0.5,40.5 - parent: 2 -- proto: SuitStorageHOS - entities: - - uid: 5034 - components: - - type: Transform - pos: -11.5,34.5 - parent: 2 -- proto: SuitStorageRD - entities: - - uid: 7425 - components: - - type: Transform - pos: 71.5,-25.5 - parent: 2 -- proto: SuitStorageSec - entities: - - uid: 1966 - components: - - type: Transform - pos: 5.5,31.5 - parent: 2 - - uid: 1967 - components: - - type: Transform - pos: 4.5,31.5 - parent: 2 - - uid: 5041 - components: - - type: Transform - pos: 7.5,32.5 - parent: 2 - - uid: 5042 - components: - - type: Transform - pos: 7.5,31.5 - parent: 2 -- proto: SuitStorageWarden - entities: - - uid: 4956 - components: - - type: Transform - pos: 5.5,23.5 - parent: 2 -- proto: SurveillanceCameraCommand - entities: - - uid: 5889 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-39.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Gravity - - uid: 8964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-37.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EVA storage - - uid: 8965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-43.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Telecommunications - - uid: 8968 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-44.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: High security mainframe - - uid: 8969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-46.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Camera routers - - uid: 8970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-38.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Connective hallway - - uid: 8971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: West bridge - - uid: 8972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: East bridge - - uid: 8975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: West bridge entrance - - uid: 8976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: East bridge entrance - - uid: 8977 - components: - - type: Transform - pos: 41.5,-25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Head of Personel's office - - uid: 8979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-29.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: North east bridge - - uid: 8980 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-28.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: North west bridge - - uid: 8981 - components: - - type: Transform - pos: 25.5,-33.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference room - - uid: 8984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-32.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - - uid: 15592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-46.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Secure board room - - uid: 16967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-32.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: High security - - uid: 22356 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-51.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI core entrance - - uid: 22358 - components: - - type: Transform - pos: 22.5,-53.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI upload room - - uid: 22359 - components: - - type: Transform - pos: 18.5,-65.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI core lobby - - uid: 22360 - components: - - type: Transform - pos: 19.5,-73.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI core mainframe - - uid: 22361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-74.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: East AI core mainframe - - uid: 22362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-74.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: West AI core mainframe - - uid: 22363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-48.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: High security mainframe hallway - - uid: 22364 - components: - - type: Transform - pos: 14.5,-65.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI core break room - - uid: 22365 - components: - - type: Transform - pos: 23.5,-65.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI core power generation - - uid: 22382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-32.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: North bridge - - uid: 22473 - components: - - type: Transform - pos: 18.5,-60.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: External AI core -- proto: SurveillanceCameraEngineering - entities: - - uid: 6780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-28.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Command substation - - uid: 8010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,4.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North west outer singularity - - uid: 8945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-13.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES - - uid: 8946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Locker bay - - uid: 8947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-12.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Particle accelerator - - uid: 8948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singularity storage - - uid: 8949 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-20.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Break room - - uid: 8950 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Central hallway - - uid: 8952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Front desk - - uid: 8953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Chief Engineer's office - - uid: 8954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Chief Engineer's room - - uid: 8955 - components: - - type: Transform - pos: 13.5,-22.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos-Engineering connection - - uid: 8956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-25.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Antimatter engine - - uid: 8958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-16.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics supply bay - - uid: 8959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-9.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: East atmospherics - - uid: 8960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Spare storage - - uid: 8961 - components: - - type: Transform - pos: 2.5,-37.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South solars - - uid: 8962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-39.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Board room - - uid: 8994 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-15.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: East substation - - uid: 8995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,7.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Cargo substation - - uid: 8996 - components: - - type: Transform - pos: -2.5,14.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Central substation - - uid: 8997 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,10.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Evacuation substation - - uid: 9036 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Drone room - - uid: 10655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,4.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North east outer singularity - - uid: 10657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,6.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North inner singularity - - uid: 10659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South west outer singularity - - uid: 10660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South east outer singularity - - uid: 18066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-22.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: West central hallway - - uid: 18068 - components: - - type: Transform - pos: 18.5,-22.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospheric's front desk - - uid: 19436 - components: - - type: Transform - pos: 15.5,-38.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South substation - - uid: 20205 - components: - - type: Transform - pos: -38.5,-37.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South west substation - - uid: 20206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-53.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Arrivals Substation - - uid: 20207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-31.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Science substation - - uid: 20208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,10.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Medical substation - - uid: 20209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Security substation - - uid: 20210 - components: - - type: Transform - pos: -26.5,34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North solars - - uid: 20211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-19.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: West substation - - uid: 22374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,0.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: West inner singularity - - uid: 22375 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South inner singularity - - uid: 22376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,0.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: East inner singularity - - uid: 22377 - components: - - type: Transform - pos: 34.5,-16.5 - parent: 2 - - uid: 22378 - components: - - type: Transform - pos: 18.5,-18.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South atmospherics - - uid: 22379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-9.5 + pos: -14.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: West atmospherics - - uid: 22380 + - uid: 5707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-8.5 + pos: -15.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North atmospherics - - uid: 22381 + - uid: 5708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-11.5 + pos: -6.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics blast chamber - - uid: 22405 + - uid: 5710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,38.5 + pos: -7.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Shuttle preperations room - - uid: 22497 + - uid: 5712 components: - type: Transform - pos: 65.5,-36.5 + pos: -9.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Station anchor -- proto: SurveillanceCameraGeneral - entities: - - uid: 8420 + - uid: 5713 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-56.5 + pos: -10.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South west arrivals - - uid: 9037 + - uid: 5731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,25.5 + pos: -11.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bathroom - - uid: 9038 + - uid: 5755 components: - type: Transform - pos: 38.5,-4.5 + pos: -5.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Tool room - - uid: 9039 + - uid: 5903 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-26.5 + pos: -3.5,32.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Engineering front - - uid: 9044 + - uid: 6030 components: - type: Transform - pos: -30.5,-15.5 + pos: -3.5,33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms hallway - - uid: 9047 + - uid: 6031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-20.5 + pos: -8.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North lounge - - uid: 9048 + - uid: 6040 components: - type: Transform - pos: -44.5,-31.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South lounge - - uid: 9049 + pos: -11.5,30.5 + parent: 2 + - uid: 6042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-27.5 + pos: 1.5,54.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West lounge - - uid: 9050 + - uid: 6059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-42.5 + pos: -0.5,54.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals connective hallway - - uid: 9051 + - uid: 6099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-50.5 + pos: -2.5,54.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: East arrivals - - uid: 9052 + - uid: 6103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-50.5 + pos: -4.5,44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West arrivals - - uid: 9053 + - uid: 6113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-56.5 + pos: -0.5,49.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South east arrivals - - uid: 9055 + - uid: 6122 components: - type: Transform - pos: -56.5,-65.5 + pos: -3.5,49.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South west arrivals 2 - - uid: 9056 + - uid: 6123 components: - type: Transform - pos: -42.5,-47.5 + pos: 0.5,49.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North arrivals - - uid: 9057 + - uid: 6130 components: - type: Transform - pos: -33.5,-33.5 + pos: -14.5,42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South boxing arena - - uid: 9058 + - uid: 6131 components: - type: Transform - pos: -35.5,-4.5 + pos: -15.5,42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Front cafeteria - - uid: 9059 + - uid: 6132 components: - type: Transform - pos: -28.5,-4.5 + pos: -17.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Back cafeteria - - uid: 9060 + - uid: 6133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,9.5 + pos: -17.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Kitchen exterior - - uid: 9061 + - uid: 6134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-7.5 + pos: -9.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms-cafeteria hallway - - uid: 9062 + - uid: 6143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-0.5 + pos: -22.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Cafeteria entrance - - uid: 9063 + - uid: 6148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,6.5 + pos: -28.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North evacuation - - uid: 9064 + - uid: 6178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,6.5 + pos: -25.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North evacuation 2 - - uid: 9065 + - uid: 6179 components: - type: Transform - pos: -51.5,-3.5 + pos: -26.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South evacuation - - uid: 9066 + - uid: 6180 components: - type: Transform - pos: -43.5,-3.5 + pos: -27.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South evacuation 2 - - uid: 9067 + - uid: 6181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,20.5 + pos: -40.5,29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Small cafeteria - - uid: 9068 + - uid: 6182 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,21.5 + pos: -40.5,28.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Security hallway - - uid: 9069 + - uid: 6183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,21.5 + pos: -38.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Security front - - uid: 9070 + - uid: 6184 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,21.5 + pos: -40.5,27.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: East security hallway - - uid: 9071 + - uid: 6230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,18.5 + pos: 24.5,26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior loading bay - - uid: 9072 + - uid: 6231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,9.5 + pos: 21.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Cargo hallway - - uid: 9073 + - uid: 6232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,4.5 + pos: -37.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South cargo hallway - - uid: 9074 + - uid: 6233 components: - type: Transform - pos: 27.5,2.5 + pos: 20.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior secure storage - - uid: 9075 + - uid: 6234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,4.5 + pos: 30.5,25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Medical-cargo hallway - - uid: 9076 + - uid: 6235 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-4.5 + pos: -34.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior tool room - - uid: 9077 + - uid: 6236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,4.5 + pos: -35.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Medical front - - uid: 9079 + - uid: 6237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-16.5 + pos: -29.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North exterior bridge - - uid: 9080 + - uid: 6269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-18.5 + pos: -29.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: East exterior bridge - - uid: 9081 + - uid: 6270 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-18.5 + pos: -55.5,2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West exterior bridge - - uid: 9082 + - uid: 6271 components: - type: Transform - pos: 60.5,-20.5 + pos: -57.5,-0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Science front - - uid: 9083 + - uid: 6272 components: - type: Transform - pos: 54.5,-23.5 + pos: -56.5,-0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior science - - uid: 9084 + - uid: 6273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-21.5 + pos: -56.5,5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Atmos-bridge hallway - - uid: 9085 + - uid: 6274 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-24.5 + pos: -57.5,5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Atmospherics front - - uid: 9086 + - uid: 6275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-29.5 + pos: -56.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: EVA-atmos hallway - - uid: 9087 + - uid: 6276 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-31.5 + pos: -55.5,0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior antimatter engine - - uid: 9088 + - uid: 6461 components: - type: Transform - pos: 8.5,-33.5 + pos: -48.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: External engineering hallway - - uid: 9090 + - uid: 6491 components: - type: Transform - pos: -2.5,-31.5 + pos: -47.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South solars exterior - - uid: 9091 + - uid: 6523 components: - type: Transform - pos: -10.5,-31.5 + pos: -46.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Engineering-janitorial hallway - - uid: 9092 + - uid: 6540 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-29.5 + pos: -45.5,-18.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Exterior janitorials - - uid: 9093 + - uid: 6545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-23.5 + pos: -51.5,-16.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South west hallway - - uid: 9094 + - uid: 6554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-16.5 + pos: -43.5,-18.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms exterior - - uid: 12807 + - uid: 6555 components: - type: Transform - pos: -38.5,-65.5 + pos: -67.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South east arrivals 2 - - uid: 18921 + - uid: 6572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-10.5 + pos: -66.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bridge-medical hallway - - uid: 19758 + - uid: 6577 components: - type: Transform - pos: -47.5,-8.5 + pos: -54.5,-22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Memorial room - - uid: 22393 + - uid: 6870 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,21.5 + pos: 60.5,20.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dining area - - uid: 22394 + - uid: 6892 components: - type: Transform - pos: -52.5,-21.5 + pos: 59.5,20.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: North west lounge - - uid: 22395 + - uid: 6894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-9.5 + pos: -53.5,-22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evacuation-lounge hallway - - uid: 22404 + - uid: 6896 components: - type: Transform - pos: 10.5,23.5 + pos: 58.5,20.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: West bathroom - - uid: 22469 + - uid: 6929 components: - type: Transform - pos: -32.5,-4.5 + pos: 60.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Vox box -- proto: SurveillanceCameraMedical - entities: - - uid: 9023 + - uid: 6930 components: - type: Transform - pos: 41.5,7.5 + pos: 59.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Lobby - - uid: 9025 + - uid: 6931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,12.5 + pos: 58.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: North hallway - - uid: 9026 + - uid: 6965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,6.5 + pos: -47.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Central hallway - - uid: 9027 + - uid: 6971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-5.5 + pos: -46.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination bay - - uid: 9028 + - uid: 6972 components: - type: Transform - pos: 52.5,-14.5 + pos: -46.5,-30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue - - uid: 9029 + - uid: 7007 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-3.5 + pos: -47.5,-30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cryogenics - - uid: 9030 + - uid: 7086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,2.5 + pos: -48.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery rooms - - uid: 9031 + - uid: 7100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,3.5 + pos: -41.5,-24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical doctor supplies - - uid: 9032 + - uid: 7111 components: - type: Transform - pos: 55.5,6.5 + pos: -41.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Paramedic's office - - uid: 9033 + - uid: 7193 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,12.5 + pos: -41.5,-26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chief Medical Officer's office - - uid: 9035 + - uid: 7194 components: - type: Transform - pos: 59.5,14.5 + pos: -41.5,-29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology - - uid: 14256 + - uid: 7310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,16.5 + pos: -26.5,-31.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - - uid: 22383 + - uid: 7313 components: - type: Transform - pos: 45.5,-4.5 + pos: -26.5,-30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination room 2 - - uid: 22384 + - uid: 7314 components: - type: Transform - pos: 45.5,-1.5 + pos: -26.5,-29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination room 1 - - uid: 22385 + - uid: 7315 components: - type: Transform - pos: 45.5,-7.5 + pos: -26.5,-26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination room 3 - - uid: 22386 + - uid: 7343 components: - type: Transform - pos: 55.5,-1.5 + pos: -26.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination room 4 - - uid: 22387 + - uid: 7344 components: - type: Transform - pos: 55.5,-7.5 + pos: -26.5,-24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination room 5 - - uid: 22388 + - uid: 7346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,4.5 + pos: -22.5,-13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery room 1 - - uid: 22389 + - uid: 7347 components: - type: Transform - pos: 62.5,0.5 + pos: -22.5,-14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery room 2 - - uid: 22390 + - uid: 7348 components: - type: Transform - pos: 54.5,14.5 + pos: -17.5,-28.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology connective hallway -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 7976 + - uid: 7353 components: - type: Transform - pos: 11.5,-44.5 + pos: -33.5,-37.5 parent: 2 -- proto: SurveillanceCameraRouterConstructed - entities: - - uid: 7749 + - uid: 7366 components: - type: Transform - pos: 11.5,-49.5 + pos: -29.5,-46.5 parent: 2 -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 7957 + - uid: 7369 components: - type: Transform - pos: 13.5,-48.5 + pos: -30.5,-46.5 parent: 2 -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 7953 + - uid: 7448 components: - type: Transform - pos: 16.5,-48.5 + pos: -54.5,-44.5 parent: 2 -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 7958 + - uid: 7475 components: - type: Transform - pos: 13.5,-49.5 + pos: -41.5,-42.5 parent: 2 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 7956 + - uid: 7494 components: - type: Transform - pos: 14.5,-48.5 + pos: -44.5,-44.5 parent: 2 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 7977 + - uid: 7508 components: - type: Transform - pos: 14.5,-44.5 + pos: -53.5,-44.5 parent: 2 -- proto: SurveillanceCameraRouterService - entities: - - uid: 7954 + - uid: 7509 components: - type: Transform - pos: 16.5,-49.5 + pos: -52.5,-44.5 parent: 2 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 7955 + - uid: 7510 components: - type: Transform - pos: 14.5,-49.5 + pos: -50.5,-44.5 parent: 2 -- proto: SurveillanceCameraScience - entities: - - uid: 8985 + - uid: 7668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-22.5 + pos: -51.5,-44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics - - uid: 8986 + - uid: 7669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-26.5 + pos: -40.5,-42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Server room - - uid: 8988 + - uid: 7670 components: - type: Transform - pos: 70.5,-18.5 + pos: -40.5,-44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Connective hallway - - uid: 8989 + - uid: 7671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-14.5 + pos: -41.5,-44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Xenoarchaeology labs - - uid: 8990 + - uid: 7721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-7.5 + pos: -42.5,-44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Anomaly centre - - uid: 8991 + - uid: 7722 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-11.5 + pos: -43.5,-44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Reception desk - - uid: 8992 + - uid: 7723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-14.5 + pos: -42.5,-60.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Central hallway -- proto: SurveillanceCameraSecurity - entities: - - uid: 8998 + - uid: 7724 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,29.5 + pos: -42.5,-61.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: West hallway - - uid: 8999 + - uid: 7759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,29.5 + pos: -42.5,-62.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Main hallway - - uid: 9000 + - uid: 7790 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,34.5 + pos: -42.5,-63.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Officer supply room - - uid: 9001 + - uid: 7795 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,34.5 + pos: 30.5,26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Head of Security's office - - uid: 9003 + - uid: 7890 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,29.5 + pos: -66.5,-27.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrogation room - - uid: 9004 + - uid: 7899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,24.5 + pos: -60.5,-34.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Prison 1 - - uid: 9005 + - uid: 7934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,24.5 + pos: -60.5,-35.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Prison 2 - - uid: 9006 + - uid: 7960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,24.5 + pos: -44.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Prison 3 - - uid: 9007 + - uid: 7991 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,25.5 + pos: -45.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security lobby - - uid: 9008 + - uid: 7992 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,28.5 + rot: 1.5707963267948966 rad + pos: -47.5,14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's office - - uid: 9009 + - uid: 8005 components: - type: Transform - pos: 6.5,30.5 + rot: 1.5707963267948966 rad + pos: -46.5,14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - - uid: 9010 + - uid: 8087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,48.5 + pos: 10.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Central perma - - uid: 9011 + - uid: 8163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,53.5 + pos: 12.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma hydroponics - - uid: 9012 + - uid: 8199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,42.5 + pos: 12.5,40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma room 2 - - uid: 9013 + - uid: 8204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,42.5 + pos: 14.5,33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma room 1 - - uid: 9045 + - uid: 8205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-12.5 + pos: 22.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Lawyer office - - uid: 9046 + - uid: 8206 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-13.5 + pos: 22.5,20.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Lawyer conference room - - uid: 12808 + - uid: 8426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,38.5 + pos: 32.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security-perma hallway - - uid: 12809 + - uid: 8492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,43.5 + pos: 32.5,15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma entrance - - uid: 20212 + - uid: 8923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,29.5 + pos: 32.5,14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective's office -- proto: SurveillanceCameraService - entities: - - uid: 8924 + - uid: 8926 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,3.5 + pos: 43.5,10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - - uid: 8925 + - uid: 8927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-3.5 + pos: 27.5,16.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar lounge - - uid: 8929 + - uid: 8928 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,7.5 + pos: 52.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Theatre - - uid: 8930 + - uid: 8931 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-12.5 + rot: 1.5707963267948966 rad + pos: 52.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Game room - - uid: 8932 + - uid: 8935 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-17.5 + pos: 52.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Library - - uid: 8933 + - uid: 8978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-26.5 + pos: 36.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitorial closet - - uid: 8936 + - uid: 8987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,11.5 + pos: 37.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Arcade - - uid: 8938 + - uid: 9020 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,14.5 + pos: 38.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany closet - - uid: 8939 + - uid: 9041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-28.5 + pos: 40.5,-0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Reporter office - - uid: 8940 + - uid: 9043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-24.5 + pos: 40.5,-1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: News room - - uid: 8941 + - uid: 9099 components: - type: Transform - pos: -29.5,11.5 + pos: 44.5,-6.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany - - uid: 8942 + - uid: 10658 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,15.5 + pos: 44.5,-4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - - uid: 8943 + - uid: 11658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,14.5 + pos: 44.5,-7.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Freezer - - uid: 8944 + - uid: 11660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,5.5 + pos: 44.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Music corner - - uid: 9040 + - uid: 12256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-24.5 + pos: 57.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: North boxing arena - - uid: 21412 + - uid: 12257 components: - type: Transform - pos: -22.5,-39.5 + pos: 72.5,-13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Chapel - - uid: 22392 + - uid: 12810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,12.5 + pos: 93.5,-13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Arcade reception -- proto: SurveillanceCameraSupply - entities: - - uid: 3557 + - uid: 13741 components: - type: Transform - pos: 38.5,20.5 + pos: 93.5,-12.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: External salvage - - uid: 9014 + - uid: 13965 components: - type: Transform - pos: 25.5,10.5 + pos: 93.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Front desk - - uid: 9015 + - uid: 13981 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,15.5 + pos: 93.5,-14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo front - - uid: 9018 + - uid: 14241 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,6.5 + pos: 64.5,-21.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Break room - - uid: 9019 + - uid: 14245 components: - type: Transform - pos: 23.5,6.5 + pos: 68.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Secure storage - - uid: 9021 + - uid: 14705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,22.5 + pos: 69.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage supply - - uid: 20086 + - uid: 14786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,13.5 + pos: 70.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Hallway - - uid: 22391 + - uid: 14901 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,23.5 + pos: 71.5,-34.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Storage bay -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 7959 + - uid: 14953 components: - type: Transform - pos: 11.5,-48.5 + pos: 71.5,-35.5 parent: 2 -- proto: SurveillanceWirelessCameraAnchoredEntertainment - entities: - - uid: 2175 + - uid: 14955 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,5.5 + pos: 73.5,-34.5 parent: 2 - - uid: 4519 + - uid: 14957 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-26.5 + pos: 73.5,-35.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: News channel -- proto: SurveillanceWirelessCameraMovableConstructed - entities: - - uid: 4531 + - uid: 14958 components: - type: Transform - pos: -56.5,-23.5 + pos: 80.5,-36.5 parent: 2 - - uid: 4532 + - uid: 14961 components: - type: Transform - pos: -55.5,-23.5 + pos: 82.5,-36.5 parent: 2 -- proto: SyndieFlag - entities: - - uid: 21058 + - uid: 14968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-42.5 + pos: 40.5,-22.5 parent: 2 -- proto: SyndieHandyFlag - entities: - - uid: 21059 + - uid: 14969 components: - type: Transform - pos: -34.495705,-44.393948 + pos: 41.5,-22.5 parent: 2 -- proto: SynthesizerInstrument - entities: - - uid: 21334 + - uid: 15032 components: - type: Transform - pos: 47.788773,21.30058 + pos: 42.5,-22.5 parent: 2 -- proto: Syringe - entities: - - uid: 8193 + - uid: 15040 components: - type: Transform - pos: 61.51553,-3.394734 + pos: 44.5,-22.5 parent: 2 - - uid: 16540 + - uid: 15041 components: - type: Transform - pos: 15.512184,29.873684 + pos: 27.5,-27.5 parent: 2 - - uid: 16966 + - uid: 15042 components: - type: Transform - pos: 61.425484,17.165861 + pos: 29.5,-27.5 parent: 2 -- proto: Table - entities: - - uid: 153 + - uid: 15043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-8.5 + pos: 26.5,-27.5 parent: 2 - - uid: 1413 + - uid: 15053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-9.5 + pos: 23.5,-27.5 parent: 2 - - uid: 2177 + - uid: 15091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-16.5 + pos: 30.5,-30.5 parent: 2 - - uid: 2178 + - uid: 15215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-17.5 + pos: 45.5,-39.5 parent: 2 - - uid: 2179 + - uid: 15222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-21.5 + pos: 33.5,-39.5 parent: 2 - - uid: 2180 + - uid: 15226 components: - type: Transform - pos: -5.5,-23.5 + pos: 34.5,-39.5 parent: 2 - - uid: 2181 + - uid: 15227 components: - type: Transform - pos: -4.5,-23.5 + pos: 38.5,-39.5 parent: 2 - - uid: 2182 + - uid: 15229 components: - type: Transform - pos: 1.5,-19.5 + pos: 36.5,-39.5 parent: 2 - - uid: 2183 + - uid: 15231 components: - type: Transform - pos: 2.5,-19.5 + pos: 40.5,-39.5 parent: 2 - - uid: 2184 + - uid: 15232 components: - type: Transform - pos: -4.5,-26.5 + pos: 44.5,-39.5 parent: 2 - - uid: 2185 + - uid: 15233 components: - type: Transform - pos: 5.5,-19.5 + pos: 42.5,-39.5 parent: 2 - - uid: 2186 + - uid: 15234 components: - type: Transform - pos: 6.5,-19.5 + pos: 47.5,-39.5 parent: 2 - - uid: 2187 + - uid: 15254 components: - type: Transform - pos: 6.5,-23.5 + pos: 23.5,-7.5 parent: 2 - - uid: 2188 + - uid: 15413 components: - type: Transform - pos: 5.5,-23.5 + pos: 22.5,-7.5 parent: 2 - - uid: 2189 + - uid: 15608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-27.5 + pos: 52.5,-21.5 parent: 2 - - uid: 2190 + - uid: 15869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-27.5 + pos: 21.5,-7.5 parent: 2 - - uid: 2191 + - uid: 15873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-17.5 + pos: -40.5,18.5 parent: 2 - - uid: 2192 + - uid: 15875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-17.5 + pos: 27.5,-7.5 parent: 2 - - uid: 2193 + - uid: 15879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-18.5 + pos: 26.5,-7.5 parent: 2 - - uid: 2194 + - uid: 15880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-18.5 + pos: 25.5,-7.5 parent: 2 - - uid: 2195 + - uid: 15881 components: - type: Transform - pos: 24.5,-26.5 + pos: 28.5,-8.5 parent: 2 - - uid: 2196 + - uid: 15882 components: - type: Transform - pos: 27.5,-26.5 + pos: 24.5,-7.5 parent: 2 - - uid: 2197 + - uid: 15887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,13.5 + pos: 16.5,-7.5 parent: 2 - - uid: 2198 + - uid: 15954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,14.5 + pos: 17.5,-7.5 parent: 2 - - uid: 2201 + - uid: 15993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,15.5 + pos: 54.5,-21.5 parent: 2 - - uid: 2202 + - uid: 16005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,15.5 + pos: 18.5,-7.5 parent: 2 - - uid: 2203 + - uid: 16065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,15.5 + pos: 19.5,-7.5 parent: 2 - - uid: 2204 + - uid: 16074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,15.5 + pos: 29.5,-9.5 parent: 2 - - uid: 2205 + - uid: 16097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,17.5 + pos: 20.5,-7.5 parent: 2 - - uid: 2206 + - uid: 16156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,21.5 + pos: 19.5,-34.5 parent: 2 - - uid: 2207 + - uid: 16162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,21.5 + pos: 25.5,-47.5 parent: 2 - - uid: 2208 + - uid: 16172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,17.5 + pos: 27.5,-49.5 parent: 2 - - uid: 2209 + - uid: 16174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-16.5 + pos: 26.5,-49.5 parent: 2 - - uid: 2210 + - uid: 16175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-16.5 + pos: 25.5,-49.5 parent: 2 - - uid: 2211 + - uid: 16192 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,13.5 + pos: 25.5,-65.5 parent: 2 - - uid: 2212 + - uid: 16310 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,14.5 + pos: 25.5,-64.5 parent: 2 - - uid: 2213 + - uid: 16311 components: - type: Transform - pos: -29.5,-17.5 + pos: 19.5,-61.5 parent: 2 - - uid: 2214 + - uid: 16336 components: - type: Transform - pos: -27.5,-17.5 + pos: 19.5,-55.5 parent: 2 - - uid: 2215 + - uid: 16344 components: - type: Transform - pos: -27.5,-33.5 + pos: 25.5,-63.5 parent: 2 - - uid: 2216 + - uid: 16385 components: - type: Transform - pos: -28.5,-33.5 + pos: 19.5,-71.5 parent: 2 - - uid: 2217 + - uid: 16386 components: - type: Transform - pos: -29.5,-33.5 + pos: -5.5,-32.5 parent: 2 - - uid: 3237 + - uid: 16393 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-8.5 + pos: -4.5,-32.5 parent: 2 - - uid: 3705 + - uid: 16404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,10.5 + pos: -3.5,-32.5 parent: 2 - - uid: 3706 + - uid: 16428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,9.5 + pos: -0.5,-28.5 parent: 2 - - uid: 4063 + - uid: 16443 components: - type: Transform - pos: 49.5,-24.5 + pos: 0.5,-24.5 parent: 2 - - uid: 4064 + - uid: 16453 components: - type: Transform - pos: 31.5,-24.5 + pos: -4.5,-20.5 parent: 2 - - uid: 4254 + - uid: 16454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,1.5 + pos: -3.5,-20.5 parent: 2 - - uid: 4270 + - uid: 16474 components: - type: Transform - pos: -18.5,27.5 + pos: 2.5,-10.5 parent: 2 - - uid: 4307 + - uid: 16515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,8.5 + pos: 1.5,-10.5 parent: 2 - - uid: 4504 + - uid: 16528 components: - type: Transform - pos: -50.5,-13.5 + pos: -0.5,-10.5 parent: 2 - - uid: 4505 + - uid: 16536 components: - type: Transform - pos: -50.5,-12.5 + pos: 0.5,-18.5 parent: 2 - - uid: 4794 + - uid: 16567 components: - type: Transform - pos: -9.5,23.5 + pos: -0.5,-18.5 parent: 2 - - uid: 4871 + - uid: 16568 components: - type: Transform - pos: -5.5,23.5 + pos: 1.5,-18.5 parent: 2 - - uid: 4874 + - uid: 16590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,23.5 + pos: -13.5,-41.5 parent: 2 - - uid: 5048 + - uid: 16638 components: - type: Transform - pos: -8.5,31.5 + pos: -14.5,-41.5 parent: 2 - - uid: 5049 + - uid: 16683 components: - type: Transform - pos: -9.5,31.5 + pos: -11.5,-41.5 parent: 2 - - uid: 5057 + - uid: 16685 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,29.5 + pos: -21.5,-46.5 parent: 2 - - uid: 5058 + - uid: 16686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,29.5 + pos: -21.5,-47.5 parent: 2 - - uid: 5166 + - uid: 16916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,47.5 + pos: -49.5,-39.5 parent: 2 - - uid: 5169 + - uid: 17015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,48.5 + pos: -52.5,-37.5 parent: 2 - - uid: 5170 + - uid: 17019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,46.5 + pos: 38.5,19.5 parent: 2 - - uid: 5171 + - uid: 17031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,47.5 + pos: 41.5,19.5 parent: 2 - - uid: 5172 + - uid: 17254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,47.5 + rot: 3.141592653589793 rad + pos: 64.5,-52.5 parent: 2 - - uid: 5173 + - uid: 17308 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,46.5 + pos: 49.5,24.5 parent: 2 - - uid: 5174 + - uid: 17325 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,48.5 + pos: 56.5,28.5 parent: 2 - - uid: 5175 + - uid: 17330 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,48.5 + pos: 62.5,28.5 parent: 2 - - uid: 5228 + - uid: 17450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,52.5 + pos: 68.5,20.5 parent: 2 - - uid: 5229 + - uid: 17481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,51.5 + pos: 64.5,13.5 parent: 2 - - uid: 5230 + - uid: 17504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,50.5 + pos: 64.5,14.5 parent: 2 - - uid: 5245 + - uid: 17513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,43.5 + pos: 64.5,15.5 parent: 2 - - uid: 5246 + - uid: 17537 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,43.5 + pos: 73.5,-1.5 parent: 2 - - uid: 5515 + - uid: 18277 components: - type: Transform - pos: -19.5,27.5 + pos: 73.5,6.5 parent: 2 - - uid: 5562 + - uid: 18992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,7.5 + pos: 77.5,-7.5 parent: 2 - - uid: 5563 + - uid: 19740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,8.5 + pos: 81.5,-4.5 parent: 2 - - uid: 5572 + - uid: 19794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,7.5 + pos: 82.5,-4.5 parent: 2 - - uid: 5669 + - uid: 20354 components: - type: Transform - pos: -20.5,27.5 + pos: 77.5,-5.5 parent: 2 - - uid: 5770 + - uid: 20355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,2.5 + pos: -3.5,22.5 parent: 2 - - uid: 5771 + - uid: 20395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,3.5 + pos: -0.5,22.5 parent: 2 - - uid: 5772 + - uid: 20396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,3.5 + pos: -23.5,28.5 parent: 2 - - uid: 6137 + - uid: 20397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-28.5 + pos: -23.5,27.5 parent: 2 - - uid: 6331 + - uid: 21590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-60.5 + pos: 14.5,-45.5 parent: 2 - - uid: 6332 + - uid: 21591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-61.5 + pos: 11.5,-45.5 parent: 2 - - uid: 6333 + - uid: 21592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-62.5 + pos: -0.5,-40.5 parent: 2 - - uid: 6334 + - uid: 21593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-63.5 + pos: -0.5,-39.5 parent: 2 - - uid: 6335 + - uid: 21594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-60.5 + pos: -5.5,-42.5 parent: 2 - - uid: 6336 + - uid: 21595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-61.5 + pos: -6.5,-42.5 parent: 2 - - uid: 6337 +- proto: RemoteSignaller + entities: + - uid: 3270 components: + - type: MetaData + desc: Bolts all doors and windoors in the HoP's room. + name: Lockdown remote - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-62.5 + pos: 40.97135,-23.35855 parent: 2 - - uid: 6338 + - type: DeviceLinkSource + linkedPorts: + 3516: + - Pressed: DoorBolt + - Pressed: Close + - Pressed: AutoClose + 49: + - Pressed: DoorBolt + - Pressed: AutoClose + - Pressed: Close + 3489: + - Pressed: Close + - Pressed: AutoClose + - Pressed: DoorBolt + - uid: 20229 components: + - type: MetaData + desc: Helpful for troublesome prisoners trying to break out of perma! + name: perma blast door remote - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-63.5 + parent: 4586 + - type: DeviceLinkSource + linkedPorts: + 20613: + - Pressed: Toggle + 20612: + - Pressed: Toggle + 20611: + - Pressed: Toggle + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20230 + components: + - type: MetaData + desc: Just in case you need a double layer of security to the armory! + name: armory blast door remote + - type: Transform + parent: 4586 + - type: DeviceLinkSource + linkedPorts: + 4719: + - Pressed: Toggle + 4895: + - Pressed: Toggle + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ResearchAndDevelopmentServer + entities: + - uid: 7429 + components: + - type: Transform + pos: 71.5,-29.5 parent: 2 - - uid: 6382 +- proto: RevolverCapGun + entities: + - uid: 16113 components: - type: Transform - pos: -55.5,-45.5 + pos: 58.457176,26.640175 parent: 2 - - uid: 6383 +- proto: RobustHarvestChemistryBottle + entities: + - uid: 8017 components: - type: Transform - pos: -39.5,-45.5 + pos: -32.148563,14.497124 parent: 2 - - uid: 6587 +- proto: RubberStampApproved + entities: + - uid: 16307 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-8.5 + pos: 28.655685,10.5061245 parent: 2 - - uid: 6684 + - uid: 16905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,1.5 + pos: 44.978428,-23.253704 parent: 2 - - uid: 6685 +- proto: RubberStampDenied + entities: + - uid: 16306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,1.5 + pos: 28.325459,10.518355 parent: 2 - - uid: 6686 + - uid: 16917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,1.5 + pos: 44.978428,-23.482008 parent: 2 - - uid: 6708 +- proto: SalvageMagnet + entities: + - uid: 6058 components: - type: Transform - pos: 48.5,4.5 + rot: 3.141592653589793 rad + pos: 38.5,21.5 parent: 2 - - uid: 6715 +- proto: Screen + entities: + - uid: 3271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,8.5 + pos: 15.5,38.5 parent: 2 - - uid: 6716 + - uid: 7573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,8.5 + pos: -2.5,18.5 parent: 2 - - uid: 7268 + - uid: 10319 components: - type: Transform - pos: 64.5,-11.5 + pos: 18.5,10.5 parent: 2 - - uid: 7277 + - uid: 10320 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-15.5 + pos: 40.5,6.5 parent: 2 - - uid: 8115 + - uid: 12087 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-36.5 + pos: 71.5,-19.5 parent: 2 - - uid: 8213 + - uid: 14883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-7.5 + pos: -45.5,-5.5 parent: 2 - - uid: 8267 + - uid: 16012 components: - type: Transform - pos: -4.5,21.5 + rot: -1.5707963267948966 rad + pos: -39.5,-34.5 parent: 2 - - uid: 9179 + - uid: 16057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,25.5 + pos: 55.5,-22.5 parent: 2 - - uid: 9180 + - uid: 16166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,25.5 + pos: 65.5,-27.5 parent: 2 - - uid: 9197 + - uid: 16445 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,35.5 + rot: -1.5707963267948966 rad + pos: -28.5,-34.5 parent: 2 - - uid: 14240 + - uid: 16617 components: - type: Transform - pos: -21.5,10.5 + pos: 11.5,-34.5 parent: 2 - - uid: 14738 + - uid: 16618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,35.5 + pos: 6.5,-25.5 parent: 2 - - uid: 14753 + - uid: 16804 components: - type: Transform - pos: -20.5,10.5 + pos: -57.5,-26.5 parent: 2 - - uid: 15092 + - uid: 16940 components: - type: Transform - pos: -3.5,-41.5 + pos: 40.5,-31.5 parent: 2 - - uid: 15093 + - uid: 17205 components: - type: Transform - pos: -3.5,-40.5 + pos: 25.5,-34.5 parent: 2 - - uid: 15148 + - uid: 17223 components: - type: Transform - pos: -32.5,38.5 + rot: 4.71238898038469 rad + pos: 30.5,-24.5 parent: 2 - - uid: 15149 + - uid: 20293 components: - type: Transform - pos: -33.5,38.5 + pos: -31.5,-5.5 parent: 2 - - uid: 15620 + - uid: 20311 components: - type: Transform - pos: 69.5,-3.5 + pos: -6.5,-32.5 parent: 2 - - uid: 15952 + - uid: 20312 components: - type: Transform - pos: -42.5,17.5 + pos: -22.5,-20.5 parent: 2 - - uid: 16110 + - uid: 20313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,26.5 + pos: -17.5,-5.5 parent: 2 - - uid: 16138 + - uid: 20796 components: - type: Transform - pos: 60.5,25.5 + pos: -21.5,22.5 parent: 2 - - uid: 16191 + - uid: 20797 components: - type: Transform - pos: 56.5,-27.5 + pos: -9.5,30.5 parent: 2 - - uid: 16203 + - uid: 20798 components: - type: Transform - pos: 55.5,-27.5 + pos: -3.5,49.5 parent: 2 - - uid: 16327 + - uid: 20799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-5.5 + pos: 35.5,10.5 parent: 2 - - uid: 16328 + - uid: 20800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-5.5 + pos: 23.5,24.5 parent: 2 - - uid: 16394 + - uid: 20801 components: - type: Transform - pos: 50.5,22.5 + pos: 48.5,15.5 parent: 2 - - uid: 16395 + - uid: 20802 components: - type: Transform - pos: 51.5,22.5 + pos: 44.5,-9.5 parent: 2 - - uid: 16396 + - uid: 20803 components: - type: Transform - pos: 52.5,22.5 + pos: 22.5,-19.5 parent: 2 - - uid: 16422 + - uid: 20806 components: - type: Transform - pos: 63.5,8.5 + pos: 26.5,-40.5 parent: 2 - - uid: 16463 + - uid: 20808 components: - type: Transform - pos: -54.5,-35.5 + pos: -1.5,-38.5 parent: 2 - - uid: 16464 + - uid: 20809 components: - type: Transform - pos: -54.5,-36.5 + pos: -44.5,-32.5 parent: 2 - - uid: 16467 + - uid: 20810 components: - type: Transform - pos: -59.5,-35.5 + pos: -50.5,-32.5 parent: 2 - - uid: 16468 + - uid: 20811 components: - type: Transform - pos: -59.5,-36.5 + pos: -55.5,2.5 parent: 2 - - uid: 16529 + - uid: 20812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,32.5 + pos: -55.5,0.5 parent: 2 - - uid: 16530 + - uid: 20813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,31.5 + pos: -42.5,9.5 parent: 2 - - uid: 16531 + - uid: 20814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,30.5 + pos: -49.5,-5.5 parent: 2 - - uid: 16532 + - uid: 20816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,29.5 + pos: -38.5,-11.5 parent: 2 - - uid: 16578 + - uid: 21033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,40.5 + pos: 31.5,24.5 parent: 2 - - uid: 16597 + - uid: 21034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,42.5 + pos: -33.5,8.5 parent: 2 - - uid: 16598 + - uid: 22184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,42.5 + pos: 21.5,-51.5 parent: 2 - - uid: 16599 + - uid: 22188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,41.5 + pos: 19.5,-74.5 parent: 2 - - uid: 16600 + - uid: 22189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,40.5 + pos: 21.5,-66.5 parent: 2 - - uid: 17379 + - uid: 22190 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-3.5 + pos: 17.5,-66.5 parent: 2 - - uid: 20792 +- proto: Screwdriver + entities: + - uid: 2052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,16.5 + pos: -4.4728403,-17.587566 parent: 2 - - uid: 21186 + - uid: 7717 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-4.5 + pos: 27.200108,-41.24766 parent: 2 - - uid: 21330 +- proto: SecurityTechFab + entities: + - uid: 5043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-32.5 + pos: 7.5,30.5 parent: 2 -- proto: TableCarpet +- proto: SeedExtractor entities: - - uid: 2218 + - uid: 5236 components: - type: Transform - pos: -19.5,-2.5 + pos: -3.5,51.5 parent: 2 - - uid: 2219 + - uid: 16260 components: - type: Transform - pos: -18.5,-3.5 + pos: -31.5,17.5 parent: 2 - - uid: 2220 +- proto: ShardGlass + entities: + - uid: 6994 components: - type: Transform - pos: -19.5,-3.5 + pos: 37.799515,9.717336 parent: 2 - - uid: 2221 + - uid: 15987 components: - type: Transform - pos: -18.5,-2.5 + pos: 37.220566,10.453447 parent: 2 - - uid: 2222 + - uid: 17064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-14.5 + pos: 38.60945,9.960392 parent: 2 - - uid: 2223 +- proto: SheetGlass + entities: + - uid: 2054 components: - type: Transform - pos: -19.5,-13.5 + pos: -5.303391,-23.421415 parent: 2 - - uid: 2224 + - uid: 4395 components: - type: Transform - pos: -20.5,-13.5 + pos: 30.404766,-0.06552839 parent: 2 - - uid: 2225 + - uid: 7254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-14.5 + pos: 58.962917,-11.384084 parent: 2 - - uid: 16631 + - uid: 8196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,36.5 + pos: 10.711848,-40.45789 parent: 2 - - uid: 16632 + - uid: 15156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,35.5 + pos: -33.249187,38.611046 parent: 2 - - uid: 16633 + - uid: 20556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,35.5 + pos: 5.544655,27.559452 parent: 2 - - uid: 16634 + - type: Stack + count: 15 + - uid: 20886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,35.5 + pos: 23.487421,19.497616 parent: 2 -- proto: TableCounterWood +- proto: SheetPlasma entities: - - uid: 2226 + - uid: 7262 components: - type: Transform - pos: -16.5,-0.5 + rot: 3.141592653589793 rad + pos: 71.45334,-7.4422317 parent: 2 - - uid: 2227 + - uid: 21253 components: - type: Transform - pos: -16.5,3.5 - parent: 2 - - uid: 2228 + pos: 7.572357,0.5568676 + parent: 21128 + - type: Stack + count: 15 + - uid: 21570 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,0.5 + pos: 34.50172,-1.4871633 parent: 2 - - uid: 2229 + - type: Stack + count: 15 + - uid: 21882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,1.5 + pos: 6.5330257,-14.510506 parent: 2 - - uid: 2230 + - type: Stack + count: 15 +- proto: SheetPlasma1 + entities: + - uid: 17337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,2.5 + pos: 23.631372,-65.50266 parent: 2 - - uid: 2231 + - type: Stack + count: 15 + - uid: 21880 components: - type: Transform - pos: -15.5,3.5 + pos: 15.5072975,-22.504484 parent: 2 - - uid: 2237 + - type: Stack + count: 15 +- proto: SheetPlasteel + entities: + - uid: 7622 components: - type: Transform - pos: -37.5,-20.5 + pos: 21.439888,-35.48906 parent: 2 - - uid: 2238 +- proto: SheetPlastic + entities: + - uid: 1942 components: - type: Transform - pos: -36.5,-20.5 + pos: 5.388405,27.434452 parent: 2 - - uid: 3730 + - type: Stack + count: 15 + - uid: 2056 components: - type: Transform - pos: -44.5,11.5 + pos: -5.037766,-23.452665 parent: 2 - - uid: 3731 + - uid: 7159 components: - type: Transform - pos: -44.5,12.5 + pos: 58.244167,-11.384084 parent: 2 - - uid: 3732 + - uid: 15157 components: - type: Transform - pos: -44.5,13.5 + pos: -32.858562,38.579796 parent: 2 - - uid: 4407 + - uid: 23343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-15.5 + pos: 23.378046,19.38824 parent: 2 - - uid: 4410 +- proto: SheetRPGlass + entities: + - uid: 5108 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-15.5 + pos: -1.4794626,-17.443817 parent: 2 - - uid: 4414 + - type: Stack + count: 15 +- proto: SheetSteel + entities: + - uid: 1960 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-16.5 + pos: 23.549921,19.57574 parent: 2 - - uid: 4415 + - uid: 2058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-17.5 + pos: -5.490891,-23.421415 parent: 2 - - uid: 4418 + - uid: 2059 components: - type: Transform - pos: -44.5,-15.5 + pos: 13.431305,-15.361163 parent: 2 - - uid: 4427 + - uid: 2060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-15.5 + pos: 13.559727,-15.471238 parent: 2 - - uid: 4567 + - uid: 4393 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-28.5 + pos: 30.423111,0.55823207 parent: 2 - - uid: 12701 + - uid: 7253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-27.5 + pos: 58.494167,-11.36325 parent: 2 - - uid: 12702 + - uid: 8195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-27.5 + pos: 10.393852,-40.433426 parent: 2 - - uid: 16197 + - uid: 15155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-24.5 + pos: -33.561687,38.65792 parent: 2 - - uid: 16199 + - uid: 16653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-24.5 + pos: 13.535873,34.51549 parent: 2 - - uid: 16200 + - uid: 21944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-24.5 + pos: 5.65403,27.653202 parent: 2 -- proto: TableFancyBlack + - type: Stack + count: 15 +- proto: SheetSteel10 entities: - - uid: 3109 + - uid: 20573 components: - type: Transform - pos: -36.5,5.5 + pos: -38.542088,26.524464 parent: 2 - - uid: 3110 +- proto: SheetUranium + entities: + - uid: 20347 components: - type: Transform - pos: -30.5,5.5 + pos: 6.5942326,-13.459567 parent: 2 - - uid: 3111 + - type: Stack + count: 15 +- proto: ShelfChemistryChemistrySecure + entities: + - uid: 1813 components: - type: Transform - pos: -36.5,6.5 + pos: 42.5,14.5 parent: 2 - - uid: 3112 +- proto: ShelfMetal + entities: + - uid: 8462 components: - type: Transform - pos: -30.5,7.5 + pos: 2.5,49.5 parent: 2 - - uid: 3121 +- proto: ShotGunCabinetFilled + entities: + - uid: 8186 components: - type: Transform - pos: -30.5,6.5 + rot: 1.5707963267948966 rad + pos: -10.5,33.5 parent: 2 -- proto: TableFancyRed +- proto: ShuttersNormal entities: - - uid: 3124 + - uid: 2061 components: - type: Transform - pos: -20.5,7.5 + rot: -1.5707963267948966 rad + pos: -21.5,-26.5 parent: 2 - - uid: 3490 + - uid: 2062 components: - type: Transform - pos: -21.5,7.5 + rot: -1.5707963267948966 rad + pos: -21.5,-25.5 parent: 2 -- proto: TableFrame - entities: - - uid: 16498 + - uid: 2063 components: - type: Transform - pos: -66.5,-23.5 + rot: -1.5707963267948966 rad + pos: -21.5,-27.5 parent: 2 -- proto: TableReinforced - entities: - - uid: 182 + - uid: 6546 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-64.5 + pos: 44.5,-7.5 parent: 2 - - uid: 758 + - uid: 6547 components: - type: Transform - pos: 9.5,-48.5 + rot: -1.5707963267948966 rad + pos: 44.5,-6.5 parent: 2 - - uid: 880 + - uid: 6548 components: - type: Transform - pos: -32.5,14.5 + rot: -1.5707963267948966 rad + pos: 44.5,-0.5 parent: 2 - - uid: 2243 + - uid: 6549 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-28.5 + rot: -1.5707963267948966 rad + pos: 44.5,-1.5 parent: 2 - - uid: 2244 + - uid: 6550 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-28.5 + rot: -1.5707963267948966 rad + pos: 44.5,-3.5 parent: 2 - - uid: 2245 + - uid: 6551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-27.5 + rot: -1.5707963267948966 rad + pos: 44.5,-4.5 parent: 2 - - uid: 2246 + - uid: 16146 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-27.5 + pos: 62.5,28.5 parent: 2 - - uid: 2247 + - uid: 16147 components: - type: Transform - pos: 20.5,-23.5 + rot: 3.141592653589793 rad + pos: 56.5,28.5 parent: 2 - - uid: 2248 +- proto: ShuttersNormalOpen + entities: + - uid: 2064 components: - type: Transform - pos: 21.5,-23.5 + rot: -1.5707963267948966 rad + pos: -16.5,-0.5 parent: 2 - - uid: 2249 + - uid: 2065 components: - type: Transform - pos: 14.5,-15.5 + rot: -1.5707963267948966 rad + pos: -16.5,0.5 parent: 2 - - uid: 2250 + - uid: 2066 components: - type: Transform - pos: 13.5,-15.5 + rot: -1.5707963267948966 rad + pos: -16.5,1.5 parent: 2 - - uid: 2251 + - uid: 2067 components: - type: Transform - pos: 17.5,-22.5 + rot: -1.5707963267948966 rad + pos: -16.5,2.5 parent: 2 - - uid: 2252 + - uid: 2068 components: - type: Transform - pos: 17.5,-21.5 + rot: -1.5707963267948966 rad + pos: -16.5,3.5 parent: 2 - - uid: 2253 + - uid: 2693 components: - type: Transform - pos: 17.5,-20.5 + pos: 43.5,10.5 parent: 2 - - uid: 2254 + - uid: 2694 components: - type: Transform - pos: 43.5,-22.5 + pos: 42.5,10.5 parent: 2 - - uid: 2255 + - uid: 2908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-23.5 + rot: -1.5707963267948966 rad + pos: 64.5,-52.5 parent: 2 - - uid: 2256 + - uid: 4423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-23.5 + pos: -45.5,-18.5 parent: 2 - - uid: 2257 + - uid: 4424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-23.5 + pos: -44.5,-18.5 parent: 2 - - uid: 2258 + - uid: 4425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-23.5 + pos: -43.5,-18.5 parent: 2 - - uid: 2259 + - uid: 4540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-28.5 + rot: 3.141592653589793 rad + pos: 23.5,-27.5 parent: 2 - - uid: 2260 + - uid: 4542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-28.5 + rot: 3.141592653589793 rad + pos: 24.5,-27.5 parent: 2 - - uid: 2261 + - uid: 4543 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-24.5 + pos: 25.5,-27.5 parent: 2 - - uid: 2262 + - uid: 4544 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-25.5 + pos: 26.5,-27.5 parent: 2 - - uid: 2263 + - uid: 4545 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-23.5 + pos: 27.5,-27.5 parent: 2 - - uid: 2312 + - uid: 4546 components: - type: Transform - pos: 27.5,-43.5 + rot: 3.141592653589793 rad + pos: 28.5,-27.5 parent: 2 - - uid: 4020 + - uid: 4547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-37.5 + rot: 3.141592653589793 rad + pos: 29.5,-27.5 parent: 2 - - uid: 4021 + - uid: 5655 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-37.5 + pos: 32.5,21.5 parent: 2 - - uid: 4022 + - uid: 5661 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-33.5 + pos: 32.5,20.5 parent: 2 - - uid: 4023 + - uid: 7033 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-32.5 + pos: 32.5,14.5 parent: 2 - - uid: 4024 + - uid: 7377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-32.5 + pos: -20.5,10.5 parent: 2 - - uid: 4025 + - uid: 8280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-33.5 + pos: 33.5,-39.5 parent: 2 - - uid: 4026 + - uid: 8281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-38.5 + pos: 32.5,-39.5 parent: 2 - - uid: 4027 + - uid: 8437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-38.5 + pos: 34.5,-39.5 parent: 2 - - uid: 4028 + - uid: 8587 components: - type: Transform - pos: 33.5,-38.5 + rot: 3.141592653589793 rad + pos: -2.5,54.5 parent: 2 - - uid: 4029 + - uid: 8588 components: - type: Transform - pos: 34.5,-38.5 + rot: 3.141592653589793 rad + pos: -1.5,54.5 parent: 2 - - uid: 4030 + - uid: 8589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-38.5 + rot: 3.141592653589793 rad + pos: -0.5,54.5 parent: 2 - - uid: 4041 + - uid: 8590 components: - type: Transform - pos: 34.5,-37.5 + rot: 3.141592653589793 rad + pos: 0.5,54.5 parent: 2 - - uid: 4042 + - uid: 8591 components: - type: Transform - pos: 32.5,-38.5 + rot: 3.141592653589793 rad + pos: 1.5,54.5 parent: 2 - - uid: 4046 + - uid: 8592 components: - type: Transform - pos: 46.5,-38.5 + rot: 3.141592653589793 rad + pos: 2.5,54.5 parent: 2 - - uid: 4047 + - uid: 8687 components: - type: Transform - pos: 46.5,-37.5 + rot: 3.141592653589793 rad + pos: 40.5,-22.5 parent: 2 - - uid: 4048 + - uid: 8688 components: - type: Transform - pos: 47.5,-38.5 + rot: 3.141592653589793 rad + pos: 41.5,-22.5 parent: 2 - - uid: 4075 + - uid: 8689 components: - type: Transform - pos: 44.5,-32.5 + rot: 3.141592653589793 rad + pos: 42.5,-22.5 parent: 2 - - uid: 4076 + - uid: 8691 components: - type: Transform - pos: 43.5,-32.5 + rot: 3.141592653589793 rad + pos: 44.5,-22.5 parent: 2 - - uid: 4077 + - uid: 8744 components: - type: Transform - pos: 36.5,-32.5 + pos: 48.5,-39.5 parent: 2 - - uid: 4078 + - uid: 8747 components: - type: Transform - pos: 37.5,-32.5 + pos: 45.5,10.5 parent: 2 - - uid: 4094 + - uid: 8748 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-30.5 + pos: 46.5,10.5 parent: 2 - - uid: 4095 + - uid: 8768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-30.5 + pos: 47.5,-39.5 parent: 2 - - uid: 4096 + - uid: 9248 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-30.5 + pos: 46.5,-39.5 parent: 2 - - uid: 4125 + - uid: 12915 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-31.5 + pos: 42.5,-39.5 parent: 2 - - uid: 4127 + - uid: 14724 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-31.5 + pos: 38.5,-39.5 parent: 2 - - uid: 4128 + - uid: 15408 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-31.5 + pos: -22.5,10.5 parent: 2 - - uid: 4258 + - uid: 15409 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,11.5 + pos: -23.5,14.5 parent: 2 - - uid: 4259 + - uid: 15410 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,10.5 + pos: -23.5,13.5 parent: 2 - - uid: 4361 + - uid: 15411 components: - type: Transform - pos: 37.5,-4.5 + rot: -1.5707963267948966 rad + pos: -23.5,12.5 parent: 2 - - uid: 4363 + - uid: 16627 components: - type: Transform - pos: 36.5,-3.5 + rot: 3.141592653589793 rad + pos: 14.5,33.5 parent: 2 - - uid: 4364 + - uid: 17478 components: - type: Transform - pos: 36.5,-4.5 + rot: 1.5707963267948966 rad + pos: -27.5,12.5 parent: 2 - - uid: 4365 + - uid: 17479 components: - type: Transform - pos: 36.5,-2.5 + rot: 1.5707963267948966 rad + pos: -27.5,13.5 parent: 2 - - uid: 4383 + - uid: 17480 components: - type: Transform - pos: 30.5,0.5 + rot: 1.5707963267948966 rad + pos: -27.5,14.5 parent: 2 - - uid: 4384 + - uid: 17492 components: - type: Transform - pos: 30.5,-0.5 + rot: -1.5707963267948966 rad + pos: -22.5,-15.5 parent: 2 - - uid: 4385 + - uid: 17493 components: - type: Transform - pos: 30.5,-1.5 + rot: -1.5707963267948966 rad + pos: -22.5,-14.5 parent: 2 - - uid: 4386 + - uid: 17494 components: - type: Transform - pos: 30.5,-2.5 + rot: -1.5707963267948966 rad + pos: -22.5,-13.5 parent: 2 - - uid: 4521 + - uid: 17495 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,-24.5 + pos: -22.5,-12.5 parent: 2 - - uid: 4522 + - uid: 17496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-24.5 + pos: -16.5,-28.5 parent: 2 - - uid: 4523 + - uid: 17497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-26.5 + pos: -15.5,-28.5 parent: 2 - - uid: 4525 + - uid: 17498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-25.5 + pos: -17.5,-28.5 parent: 2 - - uid: 4526 + - uid: 17502 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,-24.5 + pos: 0.5,24.5 parent: 2 - - uid: 4527 + - uid: 17503 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,-27.5 + pos: 0.5,23.5 parent: 2 - - uid: 4533 + - uid: 17512 components: - type: Transform - pos: -56.5,-26.5 + rot: -1.5707963267948966 rad + pos: 24.5,14.5 parent: 2 - - uid: 4534 + - uid: 17514 components: - type: Transform - pos: -55.5,-26.5 + rot: -1.5707963267948966 rad + pos: 24.5,13.5 parent: 2 - - uid: 4535 + - uid: 17515 components: - type: Transform - pos: -54.5,-26.5 + rot: -1.5707963267948966 rad + pos: 24.5,12.5 parent: 2 - - uid: 4536 + - uid: 17521 components: - type: Transform - pos: -55.5,-29.5 + pos: 57.5,-15.5 parent: 2 - - uid: 4537 + - uid: 17522 components: - type: Transform - pos: -54.5,-29.5 + pos: 58.5,-15.5 parent: 2 - - uid: 4759 + - uid: 17523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,23.5 + pos: 59.5,-15.5 parent: 2 - - uid: 4760 + - uid: 17524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,24.5 + pos: 60.5,-15.5 parent: 2 - - uid: 4958 + - uid: 19928 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,25.5 + pos: 32.5,15.5 parent: 2 - - uid: 4959 + - uid: 20807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,26.5 + pos: -0.5,-28.5 parent: 2 - - uid: 5428 + - uid: 20827 components: - type: Transform - pos: 24.5,13.5 + pos: 0.5,-28.5 parent: 2 - - uid: 5429 + - uid: 21746 components: - type: Transform - pos: 24.5,14.5 + pos: -21.5,10.5 parent: 2 - - uid: 5456 + - uid: 22199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,14.5 + rot: 3.141592653589793 rad + pos: 19.5,-71.5 parent: 2 - - uid: 5457 + - uid: 22860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,13.5 + rot: -1.5707963267948966 rad + pos: 24.5,15.5 parent: 2 - - uid: 5527 + - uid: 22861 components: - type: Transform - pos: 75.5,-15.5 + rot: -1.5707963267948966 rad + pos: 32.5,19.5 parent: 2 - - uid: 5540 + - uid: 22862 components: - type: Transform - pos: 32.5,20.5 + rot: -1.5707963267948966 rad + pos: 0.5,25.5 parent: 2 - - uid: 5621 +- proto: ShuttersRadiationOpen + entities: + - uid: 2069 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,17.5 + pos: 2.5,-10.5 parent: 2 - - uid: 5622 + - uid: 2070 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,18.5 + pos: 1.5,-10.5 parent: 2 - - uid: 5623 + - uid: 2071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,19.5 + pos: 0.5,-10.5 parent: 2 - - uid: 5716 + - uid: 2072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,22.5 + pos: -0.5,-10.5 parent: 2 - - uid: 5717 + - uid: 2073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,22.5 + pos: -1.5,-10.5 parent: 2 - - uid: 5910 + - uid: 20350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-35.5 + pos: -0.5,-18.5 parent: 2 - - uid: 5911 + - uid: 20351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-35.5 + pos: 0.5,-18.5 parent: 2 - - uid: 6016 + - uid: 20352 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,10.5 + pos: 1.5,-18.5 parent: 2 - - uid: 6018 +- proto: ShuttersWindowOpen + entities: + - uid: 4616 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,10.5 + pos: 35.5,-39.5 parent: 2 - - uid: 6582 + - uid: 4617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-7.5 + pos: 36.5,-39.5 parent: 2 - - uid: 6584 + - uid: 4618 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-4.5 + pos: 37.5,-39.5 parent: 2 - - uid: 6585 + - uid: 4620 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-1.5 + pos: 39.5,-39.5 parent: 2 - - uid: 6586 + - uid: 4621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-1.5 + pos: 40.5,-39.5 parent: 2 - - uid: 6588 + - uid: 4622 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-7.5 + pos: 41.5,-39.5 parent: 2 - - uid: 6596 + - uid: 4624 components: - type: Transform - pos: 63.5,4.5 + pos: 43.5,-39.5 parent: 2 - - uid: 6604 + - uid: 4625 components: - type: Transform - pos: 63.5,0.5 + pos: 44.5,-39.5 parent: 2 - - uid: 6606 + - uid: 4626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-2.5 + pos: 45.5,-39.5 parent: 2 - - uid: 6607 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 21318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-3.5 - parent: 2 - - uid: 6608 + pos: 7.516014,2.0782585 + parent: 21128 +- proto: ShuttleWindow + entities: + - uid: 21176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-5.5 - parent: 2 - - uid: 6903 + pos: 0.5,-0.5 + parent: 21128 + - uid: 21177 components: - type: Transform - pos: 61.5,17.5 - parent: 2 - - uid: 6904 + pos: 0.5,0.5 + parent: 21128 + - uid: 21178 components: - type: Transform - pos: 61.5,16.5 - parent: 2 - - uid: 6906 + pos: 1.5,0.5 + parent: 21128 + - uid: 21179 components: - type: Transform - pos: 60.5,17.5 - parent: 2 - - uid: 6909 + pos: 3.5,0.5 + parent: 21128 + - uid: 21180 components: - type: Transform - pos: 61.5,15.5 - parent: 2 - - uid: 7044 + pos: 7.5,3.5 + parent: 21128 + - uid: 21181 components: - type: Transform - pos: 57.5,-6.5 + pos: 7.5,4.5 + parent: 21128 + - uid: 21182 + components: + - type: Transform + pos: 9.5,3.5 + parent: 21128 + - uid: 21183 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 21128 + - uid: 21193 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 21128 + - uid: 21194 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 21128 +- proto: SignAi + entities: + - uid: 21407 + components: + - type: Transform + pos: 17.5,-41.5 parent: 2 - - uid: 7053 + - uid: 22196 components: - type: Transform - pos: 61.5,-3.5 + pos: 18.5,-61.5 parent: 2 - - uid: 7097 +- proto: SignAiUpload + entities: + - uid: 21887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-15.5 + pos: 20.5,-41.5 parent: 2 - - uid: 7098 + - uid: 22186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-15.5 + pos: 21.5,-53.5 parent: 2 - - uid: 7099 +- proto: SignalButton + entities: + - uid: 2074 components: + - type: MetaData + name: Radiation shutters button - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,-15.5 + pos: 3.5,-11.5 parent: 2 - - uid: 7143 + - type: DeviceLinkSource + linkedPorts: + 2069: + - Pressed: Toggle + 2070: + - Pressed: Toggle + 2071: + - Pressed: Toggle + 2072: + - Pressed: Toggle + 2073: + - Pressed: Toggle + - uid: 2075 components: + - type: MetaData + name: secure supply button - type: Transform - pos: 57.5,-11.5 + rot: -1.5707963267948966 rad + pos: 3.5,-12.5 parent: 2 - - uid: 7144 + - type: DeviceLinkSource + linkedPorts: + 160: + - Pressed: Toggle + 159: + - Pressed: Toggle + - uid: 2076 components: + - type: MetaData + name: Blast chamber doors button - type: Transform - pos: 58.5,-11.5 + rot: 3.141592653589793 rad + pos: 29.5,-14.5 parent: 2 - - uid: 7145 + - type: DeviceLinkSource + linkedPorts: + 158: + - Pressed: Toggle + 157: + - Pressed: Toggle + 16939: + - Pressed: Toggle + - uid: 2077 components: + - type: MetaData + name: Door bolt button - type: Transform - pos: 59.5,-11.5 + rot: 3.141592653589793 rad + pos: -35.5,-11.5 parent: 2 - - uid: 7166 + - type: DeviceLinkSource + linkedPorts: + 6: + - Pressed: DoorBolt + - uid: 2079 components: + - type: MetaData + name: Door bolt button - type: Transform - pos: 65.5,-26.5 + rot: 3.141592653589793 rad + pos: -27.5,-11.5 parent: 2 - - uid: 7172 + - type: DeviceLinkSource + linkedPorts: + 7: + - Pressed: DoorBolt + - uid: 15610 components: + - type: MetaData + name: Lights off button - type: Transform - pos: 66.5,-26.5 + rot: 1.5707963267948966 rad + pos: 34.5,-25.5 parent: 2 - - uid: 7220 + - type: DeviceLinkSource + linkedPorts: + 12667: + - Pressed: Toggle + - uid: 20353 components: + - type: MetaData + name: Radiation shutters button - type: Transform - pos: 67.5,-13.5 + rot: 3.141592653589793 rad + pos: 1.5,-24.5 parent: 2 - - uid: 7221 + - type: DeviceLinkSource + linkedPorts: + 20352: + - Pressed: Toggle + 20351: + - Pressed: Toggle + 20350: + - Pressed: Toggle + - uid: 21867 components: + - type: MetaData + name: Medical exit button - type: Transform - pos: 67.5,-14.5 + rot: 3.141592653589793 rad + pos: 50.5,-2.5 parent: 2 - - uid: 7222 + - type: DeviceLinkSource + linkedPorts: + 6514: + - Pressed: Open + 6515: + - Pressed: Open + 6516: + - Pressed: Open +- proto: SignalButtonDirectional + entities: + - uid: 2018 components: + - type: MetaData + name: Blast doors button - type: Transform - pos: 71.5,-13.5 + rot: -1.5707963267948966 rad + pos: -9.5,-37.5 parent: 2 - - uid: 7223 + - type: DeviceLinkSource + linkedPorts: + 16684: + - Pressed: Toggle + - uid: 2100 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 71.5,-14.5 + rot: -1.5707963267948966 rad + pos: 48.5,12.5 parent: 2 - - uid: 7256 + - type: DeviceLinkSource + linkedPorts: + 8747: + - Pressed: Toggle + 8748: + - Pressed: Toggle + 2693: + - Pressed: Toggle + 2694: + - Pressed: Toggle + - uid: 4520 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 71.5,-8.5 + rot: -1.5707963267948966 rad + pos: -42.5,-16.5 parent: 2 - - uid: 7257 + - type: DeviceLinkSource + linkedPorts: + 4425: + - Pressed: Toggle + 4424: + - Pressed: Toggle + 4423: + - Pressed: Toggle + - uid: 4548 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 71.5,-7.5 + rot: -1.5707963267948966 rad + pos: 30.5,-31.5 parent: 2 - - uid: 7427 + - type: DeviceLinkSource + linkedPorts: + 4547: + - Pressed: Toggle + 4546: + - Pressed: Toggle + 4545: + - Pressed: Toggle + 4544: + - Pressed: Toggle + 4543: + - Pressed: Toggle + 4542: + - Pressed: Toggle + 4540: + - Pressed: Toggle + - uid: 5653 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 44.5,16.5 + rot: -1.5707963267948966 rad + pos: 37.5,21.5 parent: 2 - - uid: 7616 + - type: DeviceLinkSource + linkedPorts: + 5655: + - Pressed: Toggle + 5661: + - Pressed: Toggle + 22861: + - Pressed: Toggle + - uid: 5757 components: + - type: MetaData + name: Secure storage doors button - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-38.5 + rot: 3.141592653589793 rad + pos: 27.5,5.5 parent: 2 - - uid: 7617 + - type: DeviceLinkSource + linkedPorts: + 5465: + - Pressed: Toggle + 5466: + - Pressed: Toggle + 5464: + - Pressed: Toggle + - uid: 6961 components: + - type: MetaData + name: containment button - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-38.5 + pos: 56.5,16.5 parent: 2 - - uid: 7709 + - type: DeviceLinkSource + linkedPorts: + 6960: + - Pressed: Toggle + 6905: + - Pressed: DoorBolt + - uid: 7032 components: + - type: MetaData + name: Lights off button - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-41.5 + rot: 3.141592653589793 rad + pos: 37.5,11.5 parent: 2 - - uid: 7710 + - type: DeviceLinkSource + linkedPorts: + 14224: + - Pressed: Toggle + - uid: 7039 components: + - type: MetaData + name: Lights off button - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-41.5 + rot: -1.5707963267948966 rad + pos: 72.5,-22.5 parent: 2 - - uid: 7711 + - type: DeviceLinkSource + linkedPorts: + 16058: + - Pressed: Toggle + - uid: 7054 components: + - type: MetaData + name: Lights off button - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-46.5 + rot: 3.141592653589793 rad + pos: 45.5,-31.5 parent: 2 - - uid: 7712 + - uid: 8185 components: + - type: MetaData + name: Shutters button - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-46.5 + rot: 3.141592653589793 rad + pos: 44.5,-26.5 parent: 2 - - uid: 7777 + - type: DeviceLinkSource + linkedPorts: + 8691: + - Pressed: Toggle + 8689: + - Pressed: Toggle + 8688: + - Pressed: Toggle + 8687: + - Pressed: Toggle + - uid: 8530 components: + - type: MetaData + name: Door bolt button - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-40.5 + pos: 17.5,26.5 parent: 2 - - uid: 7779 + - type: DeviceLinkSource + linkedPorts: + 8242: + - Pressed: DoorBolt + - uid: 8532 components: + - type: MetaData + name: Door bolt button - type: Transform - pos: 10.5,-37.5 + pos: 17.5,24.5 parent: 2 - - uid: 7996 + - type: DeviceLinkSource + linkedPorts: + 8243: + - Pressed: DoorBolt + - uid: 12911 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 9.5,-37.5 + rot: 3.141592653589793 rad + pos: -13.5,-1.5 parent: 2 - - uid: 8000 + - type: DeviceLinkSource + linkedPorts: + 2064: + - Pressed: Toggle + 2065: + - Pressed: Toggle + 2066: + - Pressed: Toggle + 2067: + - Pressed: Toggle + 2068: + - Pressed: Toggle + - uid: 12913 components: + - type: MetaData + name: Blast doors button - type: Transform - pos: 8.5,-37.5 + pos: 27.5,24.5 parent: 2 - - uid: 8135 + - type: DeviceLinkSource + linkedPorts: + 5517: + - Pressed: Toggle + 5516: + - Pressed: Toggle + - uid: 12914 components: + - type: MetaData + name: Blast doors button - type: Transform - pos: 11.5,-37.5 + rot: -1.5707963267948966 rad + pos: 78.5,-12.5 parent: 2 - - uid: 8139 + - type: DeviceLinkSource + linkedPorts: + 7332: + - Pressed: Toggle + 7333: + - Pressed: Toggle + 7334: + - Pressed: Toggle + - uid: 12916 components: + - type: MetaData + name: Blast doors button - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-40.5 + pos: 78.5,-16.5 parent: 2 - - uid: 8554 + - type: DeviceLinkSource + linkedPorts: + 7335: + - Pressed: Toggle + 7336: + - Pressed: Toggle + 7337: + - Pressed: Toggle + - uid: 14403 components: + - type: MetaData + name: Janitorial service light button - type: Transform - pos: 75.5,-11.5 + pos: 2.9529366,23.045258 parent: 2 - - uid: 8753 + - type: DeviceLinkSource + linkedPorts: + 20777: + - Pressed: Toggle + - uid: 14879 components: + - type: MetaData + name: Lights off button - type: Transform rot: 3.141592653589793 rad - pos: 45.5,12.5 - parent: 2 - - uid: 15813 - components: - - type: Transform - pos: -27.5,38.5 + pos: -37.5,-11.5 parent: 2 - - uid: 15842 + - type: DeviceLinkSource + linkedPorts: + 1686: + - Pressed: Toggle + - uid: 15913 components: + - type: MetaData + name: Shutters button - type: Transform - pos: -28.5,38.5 + rot: 1.5707963267948966 rad + pos: -23.5,15.5 parent: 2 - - uid: 16119 + - type: DeviceLinkSource + linkedPorts: + 15410: + - Pressed: Toggle + 15409: + - Pressed: Toggle + 15411: + - Pressed: Toggle + 15408: + - Pressed: Toggle + 21746: + - Pressed: Toggle + 7377: + - Pressed: Toggle + - uid: 16121 components: + - type: MetaData + name: Lights off button - type: Transform - pos: -30.5,14.5 + rot: 3.141592653589793 rad + pos: -29.5,-11.5 parent: 2 - - uid: 16259 + - type: DeviceLinkSource + linkedPorts: + 1688: + - Pressed: Toggle + - uid: 16148 components: - type: Transform - pos: -31.5,14.5 + pos: 57.5,28.5 parent: 2 - - uid: 16576 + - type: DeviceLinkSource + linkedPorts: + 16147: + - Pressed: Toggle + - uid: 16149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,12.5 + pos: 61.5,28.5 parent: 2 - - uid: 17596 + - type: DeviceLinkSource + linkedPorts: + 16146: + - Pressed: Toggle + - uid: 16628 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,13.5 + pos: 12.5,31.5 parent: 2 - - uid: 18460 + - type: DeviceLinkSource + linkedPorts: + 16627: + - Pressed: Toggle + - uid: 16704 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 57.5,-7.5 + rot: -1.5707963267948966 rad + pos: 50.5,-36.5 parent: 2 - - uid: 20250 + - type: DeviceLinkSource + linkedPorts: + 12915: + - Pressed: Toggle + 14724: + - Pressed: Toggle + 8437: + - Pressed: Toggle + 4626: + - Pressed: Toggle + 4625: + - Pressed: Toggle + 4624: + - Pressed: Toggle + 8281: + - Pressed: Toggle + 4622: + - Pressed: Toggle + 4621: + - Pressed: Toggle + 4620: + - Pressed: Toggle + 8280: + - Pressed: Toggle + 4618: + - Pressed: Toggle + 4617: + - Pressed: Toggle + 4616: + - Pressed: Toggle + 8744: + - Pressed: Toggle + 8768: + - Pressed: Toggle + 9248: + - Pressed: Toggle + - uid: 17461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-48.5 + rot: -1.5707963267948966 rad + pos: 1.5,-27.5 parent: 2 - - uid: 20606 + - type: DeviceLinkSource + linkedPorts: + 20807: + - Pressed: Toggle + 20827: + - Pressed: Toggle + - uid: 17491 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 43.5,16.5 + rot: 3.141592653589793 rad + pos: -20.5,-16.5 parent: 2 - - uid: 20995 + - type: DeviceLinkSource + linkedPorts: + 17492: + - Pressed: Toggle + 17493: + - Pressed: Toggle + 17494: + - Pressed: Toggle + 17495: + - Pressed: Toggle + - uid: 17499 components: + - type: MetaData + name: Shutters button - type: Transform rot: 3.141592653589793 rad - pos: 91.5,-20.5 + pos: -18.5,-28.5 parent: 2 - - uid: 20996 + - type: DeviceLinkSource + linkedPorts: + 17498: + - Pressed: Toggle + 17496: + - Pressed: Toggle + 17497: + - Pressed: Toggle + - uid: 17505 components: + - type: MetaData + name: Shutters button - type: Transform rot: 3.141592653589793 rad - pos: 90.5,-20.5 + pos: 2.5,22.5 parent: 2 - - uid: 21056 + - type: DeviceLinkSource + linkedPorts: + 17503: + - Pressed: Toggle + 17502: + - Pressed: Toggle + 22862: + - Pressed: Toggle + - uid: 17507 components: + - type: MetaData + name: Shutters button - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-43.5 + rot: 1.5707963267948966 rad + pos: -3.5,53.5 parent: 2 - - uid: 21057 + - type: DeviceLinkSource + linkedPorts: + 8587: + - Pressed: Toggle + 8588: + - Pressed: Toggle + 8589: + - Pressed: Toggle + 8590: + - Pressed: Toggle + 8591: + - Pressed: Toggle + 8592: + - Pressed: Toggle + - uid: 17516 components: + - type: MetaData + name: Shutters button - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-44.5 + rot: 3.141592653589793 rad + pos: 28.5,9.5 parent: 2 - - uid: 21245 + - type: DeviceLinkSource + linkedPorts: + 17515: + - Pressed: Toggle + 17514: + - Pressed: Toggle + 17512: + - Pressed: Toggle + 22860: + - Pressed: Toggle + - uid: 17517 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 7.5,2.5 - parent: 21128 - - uid: 21246 + pos: 46.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6547: + - Pressed: Toggle + 6546: + - Pressed: Toggle + - uid: 17518 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 7.5,1.5 - parent: 21128 - - uid: 21247 + pos: 46.5,-2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6550: + - Pressed: Toggle + 6551: + - Pressed: Toggle + - uid: 17519 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 9.5,2.5 - parent: 21128 - - uid: 21248 + pos: 46.5,0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6548: + - Pressed: Toggle + 6549: + - Pressed: Toggle + - uid: 17520 components: + - type: MetaData + name: Shutters button - type: Transform - pos: 9.5,1.5 - parent: 21128 - - uid: 21455 + pos: 61.5,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17524: + - Pressed: Toggle + 17523: + - Pressed: Toggle + 17522: + - Pressed: Toggle + 17521: + - Pressed: Toggle + - uid: 17526 components: + - type: MetaData + name: Lockdown button - type: Transform - pos: 8.5,-48.5 + rot: 1.5707963267948966 rad + pos: 64.5,-51.5 parent: 2 - - uid: 21550 + - type: DeviceLinkSource + linkedPorts: + 17259: + - Pressed: DoorBolt + 2908: + - Pressed: Toggle + - uid: 18465 components: + - type: MetaData + name: Shutters button - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-65.5 + pos: 35.5,16.5 parent: 2 - - uid: 21552 + - type: DeviceLinkSource + linkedPorts: + 7033: + - Pressed: Toggle + 19928: + - Pressed: Toggle + - uid: 20319 components: + - type: MetaData + name: Blast doors button - type: Transform - pos: 27.5,-44.5 + pos: 61.5,-21.5 parent: 2 -- proto: TableReinforcedGlass - entities: - - uid: 6925 + - type: DeviceLinkSource + linkedPorts: + 7121: + - Pressed: Toggle + 7123: + - Pressed: Toggle + - uid: 20781 components: + - type: MetaData + name: Janitorial service light button - type: Transform - pos: 58.5,18.5 + pos: -5.5,-24.5 parent: 2 -- proto: TableStone - entities: - - uid: 2266 + - type: DeviceLinkSource + linkedPorts: + 20783: + - Pressed: Toggle + - uid: 20784 components: + - type: MetaData + name: Janitorial service light button - type: Transform - pos: -34.5,-20.5 + rot: 1.5707963267948966 rad + pos: 24.5,11.5 parent: 2 - - uid: 2267 + - type: DeviceLinkSource + linkedPorts: + 20778: + - Pressed: Toggle + - uid: 20785 components: + - type: MetaData + name: Janitorial service light button - type: Transform - pos: -34.5,-19.5 + rot: -1.5707963267948966 rad + pos: 47.5,2.5 parent: 2 -- proto: TableWood - entities: - - uid: 2269 + - type: DeviceLinkSource + linkedPorts: + 20779: + - Pressed: Toggle + - uid: 20786 components: + - type: MetaData + name: Janitorial service light button - type: Transform - pos: -13.5,3.5 + rot: 1.5707963267948966 rad + pos: 62.5,-16.5 parent: 2 - - uid: 2271 + - type: DeviceLinkSource + linkedPorts: + 20780: + - Pressed: Toggle + - uid: 21235 components: - type: Transform - pos: -13.5,0.5 - parent: 2 - - uid: 2272 + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 21128 + - type: DeviceLinkSource + linkedPorts: + 21191: + - Pressed: Toggle + 21192: + - Pressed: Toggle + - uid: 21451 components: + - type: MetaData + name: lockdown button - type: Transform - pos: -13.5,2.5 + rot: 1.5707963267948966 rad + pos: 56.47196,16.864159 parent: 2 - - uid: 2273 + - type: DeviceLinkSource + linkedPorts: + 6727: + - Pressed: DoorBolt + - Pressed: Close + - Pressed: AutoClose + - uid: 21844 components: + - type: MetaData + name: Shutters button - type: Transform - pos: -13.5,-0.5 + rot: 3.141592653589793 rad + pos: -31.5,10.5 parent: 2 - - uid: 2274 + - type: DeviceLinkSource + linkedPorts: + 17478: + - Pressed: Toggle + 17480: + - Pressed: Toggle + 17479: + - Pressed: Toggle + - uid: 21873 components: + - type: MetaData + name: Lights off button - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,7.5 + rot: 1.5707963267948966 rad + pos: 57.5,11.5 parent: 2 - - uid: 2277 + - type: DeviceLinkSource + linkedPorts: + 21874: + - Pressed: Toggle + - uid: 21875 components: + - type: MetaData + name: Lights off button - type: Transform - pos: -17.5,-13.5 + rot: 1.5707963267948966 rad + pos: -18.5,32.5 parent: 2 - - uid: 2278 + - type: DeviceLinkSource + linkedPorts: + 14851: + - Pressed: Toggle + - uid: 21876 components: + - type: MetaData + name: Lights off button - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-8.5 + rot: -1.5707963267948966 rad + pos: 4.5,-26.5 parent: 2 - - uid: 2279 + - type: DeviceLinkSource + linkedPorts: + 21877: + - Pressed: Toggle +- proto: SignAnomaly + entities: + - uid: 8366 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-8.5 + pos: 72.5,-15.5 parent: 2 - - uid: 2281 +- proto: SignAnomaly2 + entities: + - uid: 7214 components: - type: Transform - pos: -17.5,-17.5 + pos: 66.5,-11.5 parent: 2 - - uid: 2282 +- proto: SignArcade + entities: + - uid: 2145 components: - type: Transform - pos: -17.5,-18.5 + pos: -44.5,8.5 parent: 2 - - uid: 2283 + - uid: 3123 components: - type: Transform - pos: -19.5,-19.5 + pos: -50.5,8.5 parent: 2 - - uid: 2284 +- proto: SignArmory + entities: + - uid: 4749 components: - type: Transform - pos: -19.5,-20.5 + rot: -1.5707963267948966 rad + pos: 0.5,29.5 parent: 2 - - uid: 2285 +- proto: SignAtmos + entities: + - uid: 2080 components: - type: Transform - pos: -17.5,-23.5 + pos: 22.5,-23.5 parent: 2 - - uid: 2286 + - uid: 4791 components: - type: Transform - pos: -18.5,-23.5 + pos: 15.5,-10.5 parent: 2 - - uid: 2287 + - uid: 8347 components: - type: Transform - pos: -21.5,-23.5 + pos: 14.5,-19.5 parent: 2 - - uid: 2288 +- proto: SignBar + entities: + - uid: 6812 components: - type: Transform - pos: -20.5,-23.5 + pos: -18.5,4.5 parent: 2 - - uid: 2289 +- proto: SignBio + entities: + - uid: 6811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-2.5 + pos: 52.5,15.5 parent: 2 - - uid: 2290 +- proto: SignBiohazardMed + entities: + - uid: 21893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-1.5 + pos: 47.5,10.5 parent: 2 - - uid: 2291 +- proto: SignBridge + entities: + - uid: 6813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-1.5 + pos: 46.5,-21.5 parent: 2 - - uid: 2292 +- proto: SignCargo + entities: + - uid: 6814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-2.5 + pos: 22.5,9.5 parent: 2 - - uid: 2293 +- proto: SignCargoDock + entities: + - uid: 21894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-3.5 + pos: 30.5,24.5 parent: 2 - - uid: 2294 + - uid: 21895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-3.5 + pos: 24.5,24.5 parent: 2 - - uid: 2301 +- proto: SignChapel + entities: + - uid: 2082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-2.5 + pos: -25.5,-32.5 parent: 2 - - uid: 2302 +- proto: SignChem + entities: + - uid: 5964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-1.5 + pos: 41.5,10.5 parent: 2 - - uid: 2303 + - uid: 8369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-1.5 + pos: 42.5,16.5 parent: 2 - - uid: 2304 +- proto: SignConference + entities: + - uid: 2699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-3.5 + pos: 30.5,-28.5 parent: 2 - - uid: 2305 +- proto: SignCryogenicsMed + entities: + - uid: 7038 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-3.5 + pos: 53.5,-2.5 parent: 2 - - uid: 2306 +- proto: SignDangerMed + entities: + - uid: 17068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-2.5 + pos: 30.5,-52.5 parent: 2 - - uid: 2309 + - uid: 20805 components: - type: Transform - pos: -35.5,-8.5 + pos: 27.5,-57.5 parent: 2 - - uid: 2310 + - uid: 21077 components: - type: Transform - pos: -35.5,-9.5 + pos: 55.5,-43.5 parent: 2 - - uid: 2311 + - uid: 21125 components: - type: Transform - pos: -35.5,-10.5 + pos: 50.5,-43.5 parent: 2 - - uid: 2314 + - uid: 22095 components: - type: Transform - pos: -29.5,-9.5 + pos: 11.5,-52.5 parent: 2 - - uid: 2315 + - uid: 22500 components: - type: Transform - pos: -29.5,-8.5 + rot: 1.5707963267948966 rad + pos: 66.5,-35.5 parent: 2 - - uid: 2316 +- proto: SignDirectionalBar + entities: + - uid: 13599 components: - type: Transform - pos: -30.5,-37.5 + rot: 1.5707963267948966 rad + pos: -51.5,-5.5 parent: 2 - - uid: 2317 + - uid: 13600 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-38.5 + pos: -43.5,-32.5 parent: 2 - - uid: 2318 + - uid: 13601 components: - type: Transform - pos: -26.5,-36.5 + rot: 3.141592653589793 rad + pos: -22.5,-11.5 parent: 2 - - uid: 2319 + - uid: 13602 components: - type: Transform - pos: -31.5,-37.5 + pos: 18.5,-25.5 parent: 2 - - uid: 3880 + - uid: 13603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-21.5 + rot: 3.141592653589793 rad + pos: 18.5,9.5 parent: 2 - - uid: 3881 + - uid: 13604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-21.5 + rot: -1.5707963267948966 rad + pos: -10.5,18.5 parent: 2 - - uid: 3882 + - uid: 21869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-21.5 + rot: -1.5707963267948966 rad + pos: 9.509625,-34.787674 parent: 2 - - uid: 3883 +- proto: SignDirectionalBrig + entities: + - uid: 13605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-22.5 + rot: -1.5707963267948966 rad + pos: -3.5,26.5 parent: 2 - - uid: 3884 +- proto: SignDirectionalChapel + entities: + - uid: 13606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-22.5 + pos: -22.495113,-11.233777 parent: 2 - - uid: 3885 + - uid: 13607 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,-22.5 + pos: -43.491245,-32.232563 parent: 2 - - uid: 3886 +- proto: SignDirectionalChemistry + entities: + - uid: 13608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-22.5 + rot: 3.141592653589793 rad + pos: 45.5,6.5 parent: 2 - - uid: 3887 +- proto: SignDirectionalCryo + entities: + - uid: 13609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-21.5 + pos: 52.5,9.5 parent: 2 - - uid: 3888 +- proto: SignDirectionalDorms + entities: + - uid: 13610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-22.5 + pos: -27.5,8.5 parent: 2 - - uid: 3889 + - uid: 13611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-21.5 + rot: 3.141592653589793 rad + pos: -21.5,-32.5 parent: 2 - - uid: 3890 +- proto: SignDirectionalEng + entities: + - uid: 13612 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-21.5 + pos: -21.511724,-32.217175 parent: 2 - - uid: 3891 + - uid: 20489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-22.5 + pos: -25.510857,-5.767983 parent: 2 - - uid: 4933 + - uid: 20864 components: - type: Transform - pos: -26.5,28.5 + pos: 16.5,1.5 parent: 2 - - uid: 5032 +- proto: SignDirectionalEvac + entities: + - uid: 13613 components: - type: Transform - pos: -11.5,32.5 + rot: -1.5707963267948966 rad + pos: -21.4961,-32.779675 parent: 2 - - uid: 5033 + - uid: 13614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,32.5 + rot: -1.5707963267948966 rad + pos: -27.494131,8.773048 parent: 2 - - uid: 5038 + - uid: 13615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,33.5 + rot: -1.5707963267948966 rad + pos: 14.5,18.5 parent: 2 - - uid: 5039 + - uid: 13616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,32.5 + rot: -1.5707963267948966 rad + pos: 30.5,1.5 parent: 2 - - uid: 5696 + - uid: 13617 components: - type: Transform - pos: 33.5,15.5 + rot: -1.5707963267948966 rad + pos: 44.5,-17.5 parent: 2 - - uid: 5697 + - uid: 13618 components: - type: Transform - pos: 33.5,14.5 + rot: -1.5707963267948966 rad + pos: 9.5,-34.5 parent: 2 - - uid: 6393 + - uid: 17454 components: - type: Transform - pos: -38.5,-60.5 + rot: 3.141592653589793 rad + pos: -22.502985,-24.238998 parent: 2 - - uid: 6396 +- proto: SignDirectionalFood + entities: + - uid: 13619 components: - type: Transform - pos: -56.5,-60.5 + rot: 3.141592653589793 rad + pos: -20.5,-32.5 parent: 2 - - uid: 6397 + - uid: 13620 components: - type: Transform - pos: -57.5,-60.5 + rot: -1.5707963267948966 rad + pos: 14.499298,18.229422 parent: 2 - - uid: 6398 +- proto: SignDirectionalGravity + entities: + - uid: 13621 components: - type: Transform - pos: -57.5,-61.5 + pos: 44.51204,-17.745241 parent: 2 - - uid: 6399 +- proto: SignDirectionalHop + entities: + - uid: 13622 components: - type: Transform - pos: -56.5,-61.5 + pos: 18.493233,9.222223 parent: 2 - - uid: 6400 + - uid: 13623 components: - type: Transform - pos: -57.5,-62.5 + pos: -25.5,-7.5 parent: 2 - - uid: 6401 +- proto: SignDirectionalJanitor + entities: + - uid: 13624 components: - type: Transform - pos: -56.5,-62.5 + pos: -25.505726,-7.2018347 parent: 2 - - uid: 6402 + - uid: 13625 components: - type: Transform - pos: -37.5,-60.5 + rot: -1.5707963267948966 rad + pos: -10.482073,18.78723 parent: 2 - - uid: 6403 + - uid: 13626 components: - type: Transform - pos: -38.5,-61.5 + rot: -1.5707963267948966 rad + pos: 44.543232,-17.25335 parent: 2 - - uid: 6404 +- proto: SignDirectionalLibrary + entities: + - uid: 13627 components: - type: Transform - pos: -37.5,-61.5 + rot: 3.141592653589793 rad + pos: -20.480328,-32.243916 parent: 2 - - uid: 6405 + - uid: 13628 components: - type: Transform - pos: -38.5,-62.5 + pos: -27.506214,8.259279 parent: 2 - - uid: 6406 + - uid: 13629 components: - type: Transform - pos: -37.5,-62.5 + rot: -1.5707963267948966 rad + pos: -9.5,18.5 parent: 2 - - uid: 6738 +- proto: SignDirectionalMed + entities: + - uid: 17449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,11.5 + rot: 1.5707963267948966 rad + pos: -51.470295,-5.772457 parent: 2 - - uid: 6739 + - uid: 20486 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,10.5 + pos: -25.5,-5.5 parent: 2 - - uid: 7417 + - uid: 20487 components: - type: Transform - pos: 70.5,-20.5 + rot: 1.5707963267948966 rad + pos: -23.499676,16.214537 parent: 2 - - uid: 7418 + - uid: 20490 components: - type: Transform - pos: 71.5,-20.5 + rot: 1.5707963267948966 rad + pos: 16.495012,18.771885 parent: 2 - - uid: 9159 + - uid: 20491 components: - type: Transform - pos: -25.5,28.5 + rot: 1.5707963267948966 rad + pos: 18.508957,-25.217173 parent: 2 - - uid: 13487 + - uid: 21908 components: - type: Transform - pos: 40.5,-30.5 + rot: 3.141592653589793 rad + pos: 51.512268,-21.218489 parent: 2 - - uid: 14062 + - uid: 21910 components: - type: Transform - pos: -35.5,-15.5 + rot: 1.5707963267948966 rad + pos: -43.47832,-32.75125 parent: 2 - - uid: 14784 +- proto: SignDirectionalSalvage + entities: + - uid: 13630 components: - type: Transform - pos: -30.5,-15.5 + rot: 1.5707963267948966 rad + pos: 32.51097,17.851742 parent: 2 - - uid: 14991 +- proto: SignDirectionalSci + entities: + - uid: 7179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,23.5 + rot: 1.5707963267948966 rad + pos: 51.5,-21.5 parent: 2 - - uid: 14994 + - uid: 13631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,28.5 + rot: 1.5707963267948966 rad + pos: 30.482822,1.7950348 parent: 2 - - uid: 14995 + - uid: 13632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,22.5 + rot: 1.5707963267948966 rad + pos: 45.5,-17.5 parent: 2 - - uid: 14996 + - uid: 13633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,23.5 + rot: 1.5707963267948966 rad + pos: 18.500166,-25.753792 parent: 2 - - uid: 14997 + - uid: 13634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,28.5 + pos: -25.51464,-7.7475777 parent: 2 - - uid: 14998 + - uid: 13647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,23.5 + rot: 1.5707963267948966 rad + pos: -22.51245,-24.757616 parent: 2 - - uid: 14999 +- proto: SignDirectionalSec + entities: + - uid: 13635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,23.5 + rot: 1.5707963267948966 rad + pos: -23.5,16.5 parent: 2 - - uid: 15020 + - uid: 13636 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,21.5 + pos: -51.51479,-5.215695 parent: 2 - - uid: 15921 + - uid: 13637 components: - type: Transform - pos: -15.5,41.5 + rot: 3.141592653589793 rad + pos: -22.5,-24.5 parent: 2 - - uid: 15922 + - uid: 13638 components: - type: Transform - pos: -12.5,41.5 + rot: 3.141592653589793 rad + pos: 45.51868,-17.241924 parent: 2 - - uid: 16232 + - uid: 13639 components: - type: Transform - pos: 81.5,-22.5 + rot: -1.5707963267948966 rad + pos: 30.507929,1.2496392 parent: 2 - - uid: 16233 +- proto: SignDirectionalSupply + entities: + - uid: 13640 components: - type: Transform - pos: 81.5,-23.5 + rot: 3.141592653589793 rad + pos: 45.46845,-17.784672 parent: 2 - - uid: 16444 + - uid: 13641 components: - type: Transform - pos: -30.5,-45.5 + rot: 3.141592653589793 rad + pos: -20.479525,-32.753902 parent: 2 - - uid: 16500 + - uid: 13642 components: - type: Transform - pos: -66.5,-24.5 + rot: 1.5707963267948966 rad + pos: 9.510996,-34.195675 parent: 2 - - uid: 17257 + - uid: 13643 components: - type: Transform - pos: 65.5,-52.5 + rot: 1.5707963267948966 rad + pos: -23.50406,16.777948 parent: 2 - - uid: 20418 + - uid: 13644 components: - type: Transform - pos: 81.5,-35.5 + rot: 1.5707963267948966 rad + pos: 14.515841,18.759907 parent: 2 -- proto: TargetClown - entities: - - uid: 16841 + - uid: 20488 components: - type: Transform - pos: 9.5,39.5 + rot: 3.141592653589793 rad + pos: -25.510857,-5.235952 parent: 2 -- proto: TargetDarts +- proto: SignDirectionalWash entities: - - uid: 21576 + - uid: 13645 components: - type: Transform - pos: -36.5,27.5 + rot: 3.141592653589793 rad + pos: 16.5,18.5 parent: 2 -- proto: TargetSyndicate - entities: - - uid: 21066 + - uid: 13646 components: - type: Transform - pos: -36.5,-43.5 + rot: 1.5707963267948966 rad + pos: -9.4859295,18.77162 parent: 2 -- proto: TelecomServer +- proto: SignDisposalSpace entities: - - uid: 7431 + - uid: 7904 components: - type: Transform - pos: 68.5,-29.5 + rot: 1.5707963267948966 rad + pos: -8.5,-37.5 parent: 2 -- proto: TelecomServerFilledCargo +- proto: SignDoors entities: - - uid: 14231 + - uid: 6816 components: - type: Transform - pos: 24.5,-43.5 + pos: 37.5,19.5 parent: 2 -- proto: TelecomServerFilledCommand - entities: - - uid: 14232 + - uid: 8119 components: - type: Transform - pos: 58.5,-32.5 + pos: -54.5,-59.5 parent: 2 - - uid: 14239 + - uid: 8349 components: - type: Transform - pos: 24.5,-44.5 + pos: -40.5,-59.5 parent: 2 -- proto: TelecomServerFilledCommon - entities: - - uid: 14234 + - uid: 8351 components: - type: Transform - pos: 25.5,-41.5 + pos: -40.5,-64.5 parent: 2 -- proto: TelecomServerFilledEngineering - entities: - - uid: 14237 + - uid: 8352 components: - type: Transform - pos: 25.5,-46.5 + pos: -54.5,-64.5 parent: 2 -- proto: TelecomServerFilledMedical +- proto: SignElectricalMed entities: - - uid: 14233 + - uid: 6817 components: - type: Transform - pos: 24.5,-46.5 + pos: -10.5,-17.5 parent: 2 -- proto: TelecomServerFilledScience - entities: - - uid: 14238 + - uid: 6818 components: - type: Transform - pos: 25.5,-43.5 + pos: 13.5,-23.5 parent: 2 -- proto: TelecomServerFilledSecurity - entities: - - uid: 14236 + - uid: 7864 components: - type: Transform - pos: 25.5,-44.5 + pos: 13.5,-78.5 parent: 2 -- proto: TelecomServerFilledService - entities: - - uid: 14235 + - uid: 8356 components: - type: Transform - pos: 24.5,-41.5 + pos: -52.5,8.5 parent: 2 -- proto: Thruster - entities: - - uid: 15142 + - uid: 8357 components: - type: Transform - pos: -33.5,34.5 + pos: 40.5,-14.5 parent: 2 - - uid: 15143 + - uid: 8358 components: - type: Transform - pos: -33.5,35.5 + pos: 37.5,8.5 parent: 2 - - uid: 15144 + - uid: 8359 components: - type: Transform - pos: -32.5,34.5 + pos: 0.5,13.5 parent: 2 - - uid: 15145 + - uid: 8360 components: - type: Transform - pos: -32.5,35.5 + pos: -5.5,13.5 parent: 2 - - uid: 21205 + - uid: 9268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-5.5 - parent: 21128 - - uid: 21206 + pos: -12.5,-12.5 + parent: 2 + - uid: 9348 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-7.5 - parent: 21128 -- proto: TintedWindow - entities: - - uid: 6887 + pos: -2.5,-37.5 + parent: 2 + - uid: 17335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,0.5 + pos: -2.5,16.5 parent: 2 - - uid: 6888 + - uid: 17506 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,4.5 + pos: 5.5,55.5 parent: 2 -- proto: ToiletEmpty - entities: - - uid: 2320 + - uid: 17508 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-22.5 + pos: -5.5,55.5 parent: 2 - - uid: 5006 + - uid: 17509 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,40.5 + pos: -9.5,51.5 parent: 2 - - uid: 5286 + - uid: 17510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,40.5 + rot: 1.5707963267948966 rad + pos: 6.5,43.5 parent: 2 - - uid: 8225 + - uid: 17511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,23.5 + rot: 1.5707963267948966 rad + pos: -10.5,42.5 parent: 2 - - uid: 8235 + - uid: 20349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,25.5 + pos: -0.5,-38.5 parent: 2 -- proto: ToiletGoldenDirtyWater - entities: - - uid: 4593 + - uid: 21111 components: - type: Transform - pos: 45.5,-27.5 + rot: 3.141592653589793 rad + pos: 53.5,-37.5 parent: 2 -- proto: ToolboxArtisticFilled - entities: - - uid: 5117 + - uid: 22016 components: - type: Transform - pos: -34.515057,-20.462738 + pos: 27.5,-66.5 parent: 2 -- proto: ToolboxElectricalFilled - entities: - - uid: 4370 + - uid: 22018 components: - type: Transform - pos: 36.492764,-3.2268338 + pos: 11.5,-66.5 parent: 2 - - uid: 16124 + - uid: 22019 components: - type: Transform - pos: 1.5326661,-19.32547 + pos: 25.5,-78.5 parent: 2 - - uid: 22353 + - uid: 22029 components: - type: Transform - pos: 17.546753,-62.23559 + pos: 22.5,-63.5 parent: 2 -- proto: ToolboxEmergencyFilled - entities: - - uid: 2322 + - uid: 22434 components: - type: Transform - pos: 1.4969568,-19.241749 + pos: 14.5,-37.5 parent: 2 - - uid: 4369 + - uid: 22435 components: - type: Transform - pos: 36.51111,-2.9332993 + pos: 52.5,-30.5 parent: 2 -- proto: ToolboxGoldFilled - entities: - - uid: 5914 + - uid: 22436 components: - type: Transform - pos: 54.499077,-35.417862 + pos: -37.5,-36.5 parent: 2 -- proto: ToolboxMechanical - entities: - - uid: 22354 + - uid: 22440 components: - type: Transform - pos: 17.546753,-62.492435 + pos: -22.5,33.5 parent: 2 -- proto: ToolboxMechanicalFilled - entities: - - uid: 2323 + - uid: 22441 components: - type: Transform - pos: 1.5282068,-19.507374 + pos: -61.5,-21.5 parent: 2 - - uid: 4371 + - uid: 22442 components: - type: Transform - pos: 36.51111,-3.538714 + pos: 63.5,-29.5 parent: 2 - - uid: 5747 + - uid: 22443 components: - type: Transform - pos: 28.502048,12.539796 + pos: 88.5,-21.5 parent: 2 -- proto: ToyFigurineClown - entities: - - uid: 2324 + - uid: 22444 components: - type: Transform - pos: -20.040586,-13.42651 + pos: 62.5,10.5 parent: 2 -- proto: ToyFigurineFootsoldier +- proto: SignEngine entities: - - uid: 21063 + - uid: 6819 components: - type: Transform - pos: -34.32448,-43.488884 + pos: 15.5,-23.5 parent: 2 -- proto: ToyFigurineNukieCommander +- proto: SignEngineering entities: - - uid: 5942 + - uid: 2083 components: - type: Transform - pos: 38.483326,-38.004993 + pos: -4.5,-28.5 parent: 2 -- proto: ToyFigurineNukieElite - entities: - - uid: 21061 + - uid: 15951 components: - type: Transform - pos: -34.63432,-43.333965 + pos: 15.5,0.5 parent: 2 -- proto: ToyFigurinePassenger +- proto: SignEscapePods entities: - - uid: 2325 + - uid: 15261 components: - type: Transform - pos: -20.274961,-14.23901 + pos: 66.5,4.5 parent: 2 -- proto: ToyFigurineSpaceDragon - entities: - - uid: 2326 + - uid: 15262 components: - type: Transform - pos: -19.618711,-14.223385 + pos: 66.5,0.5 parent: 2 -- proto: ToyNuke - entities: - - uid: 2327 + - uid: 15263 components: - type: Transform - pos: -19.44582,-13.477165 + pos: 66.5,-3.5 parent: 2 -- proto: ToyRubberDuck - entities: - - uid: 1971 + - uid: 16026 components: - type: Transform - pos: 45.5,-30.5 + pos: -21.5,-45.5 parent: 2 - - uid: 5256 + - uid: 17016 components: - type: Transform - pos: 0.7634096,47.159733 + pos: -19.5,-45.5 parent: 2 -- proto: ToySpawner +- proto: SignEVA entities: - - uid: 14225 + - uid: 7704 components: - type: Transform - pos: 55.5,-25.5 + rot: -1.5707963267948966 rad + pos: 21.5,-34.5 parent: 2 -- proto: TrainingBomb +- proto: SignExamroom entities: - - uid: 2135 + - uid: 6810 components: - type: Transform - pos: -5.5,32.5 + pos: 48.5,0.5 parent: 2 -- proto: TrashBag +- proto: SignFire entities: - - uid: 5273 + - uid: 8361 components: - type: Transform - pos: -4.987312,48.64716 + pos: 15.5,-14.5 parent: 2 -- proto: TrashBakedBananaPeel +- proto: SignFlammableMed entities: - - uid: 16479 + - uid: 8362 components: - type: Transform - pos: -59.62266,-35.23038 + pos: 32.5,-9.5 parent: 2 - - uid: 16480 + - uid: 8363 components: - type: Transform - pos: -59.42697,-35.426067 + pos: 32.5,-14.5 parent: 2 -- proto: TrashBananaPeel +- proto: SignGravity entities: - - uid: 2328 + - uid: 19808 components: - type: Transform - pos: -27.617392,-17.536655 + pos: 51.5,-37.5 parent: 2 -- proto: trayScanner +- proto: SignHead entities: - - uid: 21861 + - uid: 2084 components: - type: Transform - pos: 58.334652,-7.458692 + pos: 45.5,-22.5 parent: 2 -- proto: TwoWayLever +- proto: SignHydro1 entities: - - uid: 5553 + - uid: 2085 components: - type: Transform - pos: 30.5,23.5 + rot: 3.141592653589793 rad + pos: -27.5,15.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5554: - - Left: Forward - - Right: Reverse - - Middle: Off - 5510: - - Left: Forward - - Right: Reverse - - Middle: Off - 7406: - - Left: Forward - - Right: Reverse - - Middle: Off - 5478: - - Left: Forward - - Right: Reverse - - Middle: Off - 5475: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 7940 +- proto: SignInterrogation + entities: + - uid: 4822 components: - type: Transform - pos: -10.5,-39.5 + rot: 1.5707963267948966 rad + pos: -16.5,29.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7915: - - Left: Forward - - Right: Reverse - - Middle: Off - 2696: - - Left: Forward - - Right: Reverse - - Middle: Off - 9233: - - Left: Forward - - Right: Reverse - - Middle: Off - 20107: - - Left: Forward - - Right: Reverse - - Middle: Off - 7905: - - Left: Forward - - Right: Reverse - - Middle: Off - 16910: - - Left: Reverse - - Right: Forward - - Middle: Off - - uid: 15603 +- proto: SignJanitor + entities: + - uid: 6821 components: - type: Transform - pos: 24.5,23.5 + pos: -14.5,-28.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8553: - - Left: Forward - - Right: Reverse - - Middle: Off - 17528: - - Left: Forward - - Right: Reverse - - Middle: Off - 17529: - - Left: Forward - - Right: Reverse - - Middle: Off - 17530: - - Left: Forward - - Right: Reverse - - Middle: Off - 17531: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 17334 +- proto: SignLawyer + entities: + - uid: 6823 components: - type: Transform - pos: 33.5,19.5 + pos: -46.5,-18.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5714: - - Left: Reverse - - Right: Forward - - Middle: Off - 8321: - - Left: Reverse - - Right: Forward - - Middle: Off - 5732: - - Left: Reverse - - Right: Forward - - Middle: Off - - uid: 20106 +- proto: SignLibrary + entities: + - uid: 6822 components: - type: Transform - pos: -11.5,-39.5 + pos: -22.5,-16.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 7916: - - Left: Forward - - Right: Reverse - - Middle: Off - 7913: - - Left: Forward - - Right: Reverse - - Middle: Off - 8665: - - Left: Forward - - Right: Reverse - - Middle: Off - 7912: - - Left: Forward - - Right: Reverse - - Middle: Off - 7911: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: UnfinishedMachineFrame +- proto: SignMagneticsMed entities: - - uid: 15086 + - uid: 22501 components: - type: Transform - pos: -3.5,-38.5 + rot: 1.5707963267948966 rad + pos: 66.5,-33.5 parent: 2 - - uid: 16136 +- proto: SignMail + entities: + - uid: 6815 components: - type: Transform - pos: 60.5,26.5 + pos: 22.5,16.5 parent: 2 - - uid: 21199 +- proto: SignMaterials + entities: + - uid: 4375 components: - type: Transform - pos: 2.5,-8.5 - parent: 21128 - - uid: 21200 + pos: 31.5,1.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 6824 components: - type: Transform - pos: 8.5,-7.5 - parent: 21128 - - uid: 21201 + pos: 44.5,0.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 6665 components: - type: Transform - pos: 10.5,4.5 - parent: 21128 - - uid: 21202 + pos: 50.5,-8.5 + parent: 2 + - uid: 14213 components: - type: Transform - pos: 8.5,3.5 - parent: 21128 -- proto: UniformPrinter + pos: 47.5,-11.5 + parent: 2 +- proto: SignNanotrasen1 entities: - - uid: 2329 + - uid: 19752 components: - type: Transform - pos: 40.5,-25.5 + pos: 34.5,-21.5 parent: 2 -- proto: UniformShortsRedWithTop +- proto: SignNanotrasen2 entities: - - uid: 21032 + - uid: 19751 components: - type: Transform - pos: -30.471287,-24.425285 + pos: 35.5,-21.5 parent: 2 -- proto: Vaccinator +- proto: SignNanotrasen3 entities: - - uid: 6913 + - uid: 19750 components: - type: Transform - pos: 58.5,17.5 + pos: 36.5,-21.5 parent: 2 -- proto: VendingBarDrobe +- proto: SignNanotrasen4 entities: - - uid: 2331 + - uid: 19749 components: - type: Transform - pos: -17.5,7.5 + pos: 37.5,-21.5 parent: 2 -- proto: VendingMachineAtmosDrobe +- proto: SignNanotrasen5 entities: - - uid: 2332 + - uid: 19748 components: - type: Transform - pos: 14.5,-18.5 + pos: 38.5,-21.5 parent: 2 -- proto: VendingMachineBooze +- proto: SignNews entities: - - uid: 14972 + - uid: 3096 components: - type: Transform - pos: -37.5,21.5 + pos: -52.5,-27.5 parent: 2 - - uid: 20296 +- proto: SignNTMine + entities: + - uid: 7084 components: - type: Transform - pos: -15.5,-0.5 + pos: 32.5,17.5 parent: 2 -- proto: VendingMachineCargoDrobe +- proto: SignPrison entities: - - uid: 16906 + - uid: 5110 components: - type: Transform - pos: 23.5,22.5 + pos: -2.5,35.5 parent: 2 -- proto: VendingMachineCart +- proto: SignRadiationMed entities: - - uid: 2333 + - uid: 2091 components: - type: Transform - pos: 39.5,-25.5 + pos: -2.5,-15.5 parent: 2 -- proto: VendingMachineChapel +- proto: SignReception entities: - - uid: 2334 + - uid: 854 components: - type: Transform - pos: -30.5,-36.5 + pos: 24.5,15.5 parent: 2 -- proto: VendingMachineChefDrobe - entities: - - uid: 2335 + - uid: 21597 components: - type: Transform - pos: -18.5,14.5 + pos: 57.5,-15.5 parent: 2 -- proto: VendingMachineChefvend - entities: - - uid: 2336 + - uid: 21598 components: - type: Transform - pos: -18.5,13.5 + pos: 44.5,-22.5 parent: 2 -- proto: VendingMachineChemDrobe - entities: - - uid: 5996 + - uid: 21599 components: - type: Transform - pos: 41.5,12.5 + pos: 0.5,25.5 parent: 2 -- proto: VendingMachineChemicals +- proto: SignRedOne entities: - - uid: 711 + - uid: 21619 components: - type: Transform - pos: 41.5,13.5 + rot: 3.141592653589793 rad + pos: -35.497345,-11.735416 parent: 2 -- proto: VendingMachineCigs +- proto: SignRedTwo entities: - - uid: 2337 + - uid: 21620 components: - type: Transform - pos: -39.5,-24.5 + rot: 3.141592653589793 rad + pos: -27.505127,-11.735416 parent: 2 - - uid: 4170 +- proto: SignRestroom + entities: + - uid: 20295 components: - type: Transform - pos: 24.5,-33.5 + pos: 15.5,22.5 parent: 2 - - uid: 4960 +- proto: SignRND + entities: + - uid: 21928 components: - type: Transform - pos: 5.5,28.5 + pos: 61.5,-15.5 parent: 2 - - uid: 8214 +- proto: SignRobo + entities: + - uid: 7162 components: - type: Transform - pos: 41.5,-6.5 + pos: 60.5,-21.5 parent: 2 - - uid: 16144 +- proto: SignSalvage + entities: + - uid: 855 components: - type: Transform - pos: 13.5,-33.5 + pos: 32.5,19.5 parent: 2 - - uid: 20607 +- proto: SignScience + entities: + - uid: 7158 components: - type: Transform - pos: -21.5,-4.5 + pos: 62.5,-18.5 parent: 2 -- proto: VendingMachineClothing +- proto: SignSecureMed entities: - - uid: 1593 + - uid: 1969 components: - type: Transform - pos: 38.5,0.5 + pos: -29.5,-1.5 parent: 2 - - uid: 2340 + - uid: 6827 components: - type: Transform - pos: -38.5,-13.5 + pos: 21.5,-19.5 parent: 2 - - uid: 20610 + - uid: 15635 components: - type: Transform - pos: -21.5,-3.5 + pos: -41.5,22.5 parent: 2 -- proto: VendingMachineCoffee - entities: - - uid: 2341 + - uid: 15929 components: - type: Transform - pos: -17.5,-15.5 + pos: -45.5,22.5 parent: 2 - - uid: 2342 + - uid: 16658 components: - type: Transform - pos: -28.5,-24.5 + pos: -41.5,24.5 parent: 2 - - uid: 4167 + - uid: 16659 components: - type: Transform - pos: 23.5,-33.5 + pos: -45.5,24.5 parent: 2 -- proto: VendingMachineCondiments - entities: - - uid: 2343 + - uid: 17248 components: - type: Transform - pos: -23.5,14.5 + pos: 49.5,-56.5 parent: 2 -- proto: VendingMachineCuraDrobe - entities: - - uid: 1555 + - uid: 17249 components: - type: Transform - pos: -20.5,-10.5 + pos: 43.5,-57.5 parent: 2 -- proto: VendingMachineDetDrobe - entities: - - uid: 9177 + - uid: 17250 components: - type: Transform - pos: -26.5,25.5 + pos: 39.5,-52.5 parent: 2 -- proto: VendingMachineDinnerware - entities: - - uid: 2344 + - uid: 17251 components: - type: Transform - pos: -18.5,12.5 + pos: 55.5,-48.5 parent: 2 -- proto: VendingMachineEngiDrobe - entities: - - uid: 2345 + - uid: 17252 components: - type: Transform - pos: -9.5,-23.5 + pos: 61.5,-56.5 parent: 2 -- proto: VendingMachineEngivend - entities: - - uid: 2346 + - uid: 17253 components: - type: Transform - pos: -8.5,-23.5 + pos: 64.5,-48.5 parent: 2 -- proto: VendingMachineGames - entities: - - uid: 2347 + - uid: 21950 components: - type: Transform - pos: -17.5,-12.5 + pos: 53.5,-35.5 parent: 2 - - uid: 5167 + - uid: 22024 components: - type: Transform - pos: -6.5,45.5 + pos: 15.5,-67.5 parent: 2 -- proto: VendingMachineHydrobe - entities: - - uid: 14630 + - uid: 22025 components: - type: Transform - pos: -38.5,11.5 + pos: 15.5,-74.5 parent: 2 -- proto: VendingMachineJaniDrobe - entities: - - uid: 2349 + - uid: 22026 components: - type: Transform - pos: -18.5,-25.5 + pos: 23.5,-74.5 parent: 2 -- proto: VendingMachineLawDrobe - entities: - - uid: 4501 + - uid: 22027 components: - type: Transform - pos: -44.5,-13.5 + pos: 23.5,-67.5 parent: 2 -- proto: VendingMachineMedical +- proto: SignSecureMedRed entities: - - uid: 6690 - components: - - type: Transform - pos: 50.5,-4.5 - parent: 2 - - uid: 6691 + - uid: 6826 components: - type: Transform - pos: 48.5,5.5 + pos: 25.5,-5.5 parent: 2 -- proto: VendingMachineMediDrobe +- proto: SignSecurity entities: - - uid: 6692 + - uid: 5111 components: - type: Transform - pos: 54.5,4.5 + pos: 0.5,22.5 parent: 2 -- proto: VendingMachineNutri +- proto: SignServer entities: - - uid: 16120 + - uid: 21937 components: - type: Transform - pos: -29.5,17.5 + pos: 71.5,-24.5 parent: 2 -- proto: VendingMachineRoboDrobe +- proto: SignShipDock entities: - - uid: 7102 + - uid: 8354 components: - type: Transform - pos: 60.5,-26.5 + pos: -55.5,-0.5 parent: 2 -- proto: VendingMachineRobotics - entities: - - uid: 7161 + - uid: 8355 components: - type: Transform - pos: 60.5,-25.5 + pos: -55.5,3.5 parent: 2 -- proto: VendingMachineSalvage +- proto: SignSmoking entities: - - uid: 5705 + - uid: 6825 components: - type: Transform - pos: 33.5,22.5 + pos: 27.5,-14.5 parent: 2 -- proto: VendingMachineSciDrobe +- proto: SignSpace entities: - - uid: 4277 + - uid: 3616 components: - type: Transform - pos: 67.5,-10.5 + rot: -1.5707963267948966 rad + pos: -55.5,-2.5 parent: 2 -- proto: VendingMachineSec - entities: - - uid: 5051 + - uid: 3617 components: - type: Transform - pos: -4.5,34.5 + rot: -1.5707963267948966 rad + pos: -55.5,5.5 parent: 2 -- proto: VendingMachineSecDrobe - entities: - - uid: 5052 + - uid: 5726 components: - type: Transform - pos: -4.5,33.5 + rot: 3.141592653589793 rad + pos: 37.5,17.5 parent: 2 -- proto: VendingMachineSeeds - entities: - - uid: 15399 + - uid: 6828 components: - type: Transform - pos: -30.5,17.5 + pos: -5.5,-12.5 parent: 2 -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 5210 + - uid: 21938 components: - type: Transform - pos: -3.5,52.5 + pos: -10.5,40.5 parent: 2 - - uid: 16332 + - uid: 21948 components: - type: Transform - pos: 80.5,-7.5 + pos: 71.5,-33.5 parent: 2 -- proto: VendingMachineSustenance - entities: - - uid: 5168 + - uid: 21951 components: - type: Transform - pos: -6.5,46.5 + pos: -23.5,38.5 parent: 2 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 2353 + - uid: 21953 components: - type: Transform - pos: 23.5,-20.5 + pos: -57.5,-20.5 parent: 2 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 7615 + - uid: 21954 components: - type: Transform - pos: 19.5,-38.5 + pos: 68.5,20.5 parent: 2 - - uid: 8982 + - uid: 21991 components: - type: Transform - pos: 36.5,22.5 + rot: 3.141592653589793 rad + pos: -68.5,-31.5 parent: 2 - - uid: 15147 + - uid: 22185 components: - type: Transform - pos: -31.5,35.5 + pos: 20.5,-61.5 parent: 2 - - uid: 20608 +- proto: SignSurgery + entities: + - uid: 6886 components: - type: Transform - pos: -9.5,-25.5 + rot: 1.5707963267948966 rad + pos: 58.5,3.5 parent: 2 -- proto: VendingMachineTheater +- proto: SignTelecomms entities: - - uid: 2354 + - uid: 7586 components: - type: Transform - pos: -38.5,-12.5 + rot: -1.5707963267948966 rad + pos: 30.5,-35.5 parent: 2 - - uid: 2355 + - uid: 7591 components: - type: Transform - pos: -36.5,7.5 + rot: -1.5707963267948966 rad + pos: 27.5,-35.5 parent: 2 - - uid: 4356 +- proto: SignToolStorage + entities: + - uid: 4404 components: - type: Transform - pos: 39.5,-0.5 + pos: 40.5,0.5 parent: 2 -- proto: VendingMachineVendomat +- proto: SignVault entities: - - uid: 1352 + - uid: 21949 components: - type: Transform - pos: -3.5,-23.5 + pos: 53.5,-34.5 parent: 2 - - uid: 2890 +- proto: SignVirology + entities: + - uid: 6829 components: - type: Transform - pos: 37.5,0.5 + pos: 56.5,15.5 parent: 2 -- proto: VendingMachineViroDrobe +- proto: SignVox entities: - - uid: 6912 + - uid: 21377 components: - type: Transform - pos: 61.5,14.5 + pos: -34.5,-1.5 parent: 2 -- proto: VendingMachineWinter +- proto: SingularityGenerator entities: - - uid: 2358 + - uid: 2092 components: - type: Transform - pos: -38.5,-14.5 + pos: 4.5,-11.5 parent: 2 - - uid: 4357 + - uid: 3104 components: - type: Transform - pos: 39.5,-1.5 + pos: 0.5,0.5 parent: 2 -- proto: VendingMachineYouTool +- proto: Sink entities: - - uid: 2359 + - uid: 5948 components: - type: Transform - pos: -7.5,-23.5 + rot: -1.5707963267948966 rad + pos: 45.5,-29.5 parent: 2 - - uid: 4354 + - uid: 13488 components: - type: Transform - pos: 36.5,0.5 + pos: 36.5,-22.5 parent: 2 -- proto: WallmountTelevision +- proto: SinkWide entities: - - uid: 545 + - uid: 5258 components: - type: Transform - pos: 5.5,22.5 + rot: 3.141592653589793 rad + pos: 0.5,45.5 parent: 2 - - uid: 8920 + - uid: 6755 components: - type: Transform - pos: -19.5,22.5 + pos: -20.5,12.5 parent: 2 - - uid: 8921 + - uid: 8239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,5.5 + pos: 13.5,26.5 parent: 2 - - uid: 8922 + - uid: 8240 components: - type: Transform - pos: -34.5,-23.5 + pos: 15.5,26.5 parent: 2 - - uid: 21745 + - uid: 9024 components: - type: Transform - pos: -10.5,-32.5 + rot: 1.5707963267948966 rad + pos: 43.5,14.5 parent: 2 -- proto: WallPlastic - entities: - - uid: 2360 + - uid: 14218 components: - type: Transform - pos: -30.5,-16.5 + rot: -1.5707963267948966 rad + pos: -33.5,14.5 parent: 2 - - uid: 2361 + - uid: 16795 components: - type: Transform - pos: -27.5,-16.5 + rot: 3.141592653589793 rad + pos: -15.5,5.5 parent: 2 - - uid: 2362 +- proto: Skub + entities: + - uid: 17542 components: - type: Transform - pos: -29.5,-16.5 + pos: 85.054985,-7.3956304 parent: 2 - - uid: 2363 +- proto: SmartFridge + entities: + - uid: 5992 components: - type: Transform - pos: -30.5,-17.5 + pos: 44.5,10.5 parent: 2 - - uid: 2364 + - uid: 16772 components: - type: Transform - pos: -30.5,-18.5 + pos: -19.5,10.5 parent: 2 - - uid: 2365 +- proto: SMESBasic + entities: + - uid: 2095 components: + - type: MetaData + name: Singularity SMES - type: Transform - pos: -30.5,-19.5 + pos: 1.5,-17.5 parent: 2 - - uid: 2366 + - uid: 2096 components: + - type: MetaData + name: Main SMES - type: Transform - pos: -30.5,-20.5 + pos: -12.5,-17.5 parent: 2 -- proto: WallReinforced - entities: - - uid: 48 + - uid: 2097 components: + - type: MetaData + name: Main SMES - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-49.5 + pos: -12.5,-14.5 parent: 2 - - uid: 103 + - uid: 2098 components: + - type: MetaData + name: Main SMES - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-43.5 + pos: -12.5,-15.5 + parent: 2 + - uid: 2099 + components: + - type: MetaData + name: Main SMES + - type: Transform + pos: -12.5,-16.5 parent: 2 - - uid: 851 + - uid: 8097 components: + - type: MetaData + name: South Solars SMES - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-50.5 + pos: -1.5,-37.5 parent: 2 - - uid: 1084 + - uid: 8098 components: + - type: MetaData + name: South Solars SMES - type: Transform - pos: -38.5,-43.5 + pos: -0.5,-37.5 parent: 2 - - uid: 1447 + - uid: 10575 components: + - type: MetaData + name: Secure Command SMES - type: Transform - pos: -62.5,-21.5 + pos: 54.5,-40.5 parent: 2 - - uid: 2002 + - uid: 15809 components: + - type: MetaData + name: North Solars SMES - type: Transform - pos: 50.5,-42.5 + pos: -28.5,34.5 parent: 2 - - uid: 2012 + - uid: 15810 components: + - type: MetaData + name: North Solars SMES - type: Transform - pos: 37.5,-31.5 + pos: -28.5,35.5 parent: 2 - - uid: 2035 + - uid: 20944 components: + - type: MetaData + name: Rage Cage SMES - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,5.5 + pos: 88.5,-22.5 parent: 2 - - uid: 2037 + - uid: 22070 components: + - type: MetaData + name: AI Core SMES - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-0.5 + pos: 23.5,-63.5 parent: 2 - - uid: 2106 +- proto: SodaDispenser + entities: + - uid: 2102 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-43.5 + pos: -13.5,2.5 parent: 2 - - uid: 2367 + - uid: 2103 components: - type: Transform - pos: -8.5,11.5 + rot: -1.5707963267948966 rad + pos: -13.5,0.5 parent: 2 - - uid: 2369 + - uid: 16595 components: - type: Transform - pos: -9.5,11.5 + rot: 1.5707963267948966 rad + pos: 5.5,40.5 parent: 2 - - uid: 2371 +- proto: SolarPanel + entities: + - uid: 3207 components: - type: Transform - pos: -6.5,11.5 + pos: 3.5,-52.5 parent: 2 - - uid: 2373 + - uid: 3279 components: - type: Transform - pos: -4.5,11.5 + pos: 2.5,-48.5 parent: 2 - - uid: 2375 + - uid: 3281 components: - type: Transform - pos: -3.5,11.5 + pos: 3.5,-48.5 parent: 2 - - uid: 2377 + - uid: 3295 components: - type: Transform - pos: -1.5,11.5 + pos: 2.5,-52.5 parent: 2 - - uid: 2378 + - uid: 3297 components: - type: Transform - pos: 0.5,11.5 + pos: 3.5,-50.5 parent: 2 - - uid: 2380 + - uid: 3323 components: - type: Transform - pos: 2.5,11.5 + pos: 2.5,-50.5 parent: 2 - - uid: 2381 + - uid: 3324 components: - type: Transform - pos: 3.5,11.5 + pos: -0.5,-50.5 parent: 2 - - uid: 2382 + - uid: 3669 components: - type: Transform - pos: 4.5,11.5 + pos: -0.5,-48.5 parent: 2 - - uid: 2383 + - uid: 4999 components: - type: Transform - pos: 7.5,11.5 + pos: -1.5,-48.5 parent: 2 - - uid: 2386 + - uid: 5000 components: - type: Transform - pos: 9.5,11.5 + pos: -1.5,-50.5 parent: 2 - - uid: 2388 + - uid: 15083 components: - type: Transform - pos: 10.5,11.5 + pos: -2.5,-48.5 parent: 2 - - uid: 2389 + - uid: 15474 components: - type: Transform - pos: 6.5,11.5 + pos: -2.5,-50.5 parent: 2 - - uid: 2391 + - uid: 15475 components: - type: Transform - pos: 11.5,10.5 + pos: -3.5,-48.5 parent: 2 - - uid: 2393 + - uid: 15476 components: - type: Transform - pos: 11.5,8.5 + pos: -3.5,-50.5 parent: 2 - - uid: 2395 + - uid: 15477 components: - type: Transform - pos: 11.5,6.5 + pos: -4.5,-50.5 parent: 2 - - uid: 2396 + - uid: 15478 components: - type: Transform - pos: 11.5,5.5 + pos: -5.5,-50.5 parent: 2 - - uid: 2398 + - uid: 15479 components: - type: Transform - pos: 11.5,3.5 + pos: -6.5,-50.5 parent: 2 - - uid: 2400 + - uid: 15480 components: - type: Transform - pos: 11.5,1.5 + pos: -6.5,-48.5 parent: 2 - - uid: 2401 + - uid: 15481 components: - type: Transform - pos: 11.5,0.5 + pos: -5.5,-48.5 parent: 2 - - uid: 2403 + - uid: 15482 components: - type: Transform - pos: 11.5,-1.5 + pos: -4.5,-48.5 parent: 2 - - uid: 2405 + - uid: 15483 components: - type: Transform - pos: 11.5,-3.5 + pos: -6.5,-46.5 parent: 2 - - uid: 2406 + - uid: 15484 components: - type: Transform - pos: 11.5,-4.5 + pos: -4.5,-46.5 parent: 2 - - uid: 2408 + - uid: 15485 components: - type: Transform - pos: 11.5,-6.5 + pos: -5.5,-46.5 parent: 2 - - uid: 2409 + - uid: 15486 components: - type: Transform - pos: 11.5,-7.5 + pos: -3.5,-46.5 parent: 2 - - uid: 2411 + - uid: 15487 components: - type: Transform - pos: 11.5,-9.5 + pos: -2.5,-46.5 parent: 2 - - uid: 2414 + - uid: 15488 components: - type: Transform - pos: 9.5,-10.5 + pos: -1.5,-46.5 parent: 2 - - uid: 2415 + - uid: 15489 components: - type: Transform - pos: 8.5,-10.5 + pos: -0.5,-46.5 parent: 2 - - uid: 2417 + - uid: 15490 components: - type: Transform - pos: 6.5,-10.5 + pos: -1.5,-44.5 parent: 2 - - uid: 2419 + - uid: 15491 components: - type: Transform - pos: 4.5,-10.5 + pos: -0.5,-44.5 parent: 2 - - uid: 2421 + - uid: 15492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-11.5 + pos: -3.5,-44.5 parent: 2 - - uid: 2422 + - uid: 15493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-11.5 + pos: -2.5,-44.5 parent: 2 - - uid: 2423 + - uid: 15494 components: - type: Transform - pos: -2.5,-10.5 + pos: -4.5,-44.5 parent: 2 - - uid: 2425 + - uid: 15495 components: - type: Transform - pos: -4.5,-10.5 + pos: -5.5,-44.5 parent: 2 - - uid: 2428 + - uid: 15496 components: - type: Transform - pos: -5.5,-12.5 + pos: -6.5,-44.5 parent: 2 - - uid: 2431 + - uid: 15497 components: - type: Transform - pos: -10.5,-10.5 + pos: -6.5,-52.5 parent: 2 - - uid: 2432 + - uid: 15498 components: - type: Transform - pos: -10.5,-8.5 + pos: -4.5,-52.5 parent: 2 - - uid: 2434 + - uid: 15499 components: - type: Transform - pos: -10.5,-5.5 + pos: -5.5,-52.5 parent: 2 - - uid: 2438 + - uid: 15500 components: - type: Transform - pos: -10.5,-3.5 + pos: -3.5,-52.5 parent: 2 - - uid: 2441 + - uid: 15501 components: - type: Transform - pos: -10.5,5.5 + pos: -1.5,-52.5 parent: 2 - - uid: 2444 + - uid: 15502 components: - type: Transform - pos: -10.5,8.5 + pos: -2.5,-52.5 parent: 2 - - uid: 2445 + - uid: 15503 components: - type: Transform - pos: -10.5,10.5 + pos: -0.5,-52.5 parent: 2 - - uid: 2446 + - uid: 15504 components: - type: Transform - pos: -10.5,6.5 + pos: -0.5,-54.5 parent: 2 - - uid: 2447 + - uid: 15505 components: - type: Transform - pos: 8.5,-12.5 + pos: -1.5,-54.5 parent: 2 - - uid: 2451 + - uid: 15506 components: - type: Transform - pos: -2.5,-16.5 + pos: -2.5,-54.5 parent: 2 - - uid: 2453 + - uid: 15507 components: - type: Transform - pos: 3.5,-16.5 + pos: -3.5,-54.5 parent: 2 - - uid: 2454 + - uid: 15508 components: - type: Transform - pos: -2.5,-18.5 + pos: -5.5,-54.5 parent: 2 - - uid: 2455 + - uid: 15509 components: - type: Transform - pos: -1.5,-18.5 + pos: -6.5,-54.5 parent: 2 - - uid: 2456 + - uid: 15510 components: - type: Transform - pos: 3.5,-17.5 + pos: -4.5,-54.5 parent: 2 - - uid: 2460 + - uid: 15533 components: - type: Transform - pos: 7.5,-12.5 + pos: 2.5,-46.5 parent: 2 - - uid: 2462 + - uid: 15534 components: - type: Transform - pos: 7.5,-14.5 + pos: 2.5,-44.5 parent: 2 - - uid: 2464 + - uid: 15570 components: - type: Transform - pos: 7.5,-16.5 + pos: 2.5,-54.5 parent: 2 - - uid: 2465 + - uid: 15571 components: - type: Transform - pos: 6.5,-16.5 + pos: 3.5,-54.5 parent: 2 - - uid: 2469 + - uid: 15693 components: - type: Transform - pos: 10.5,-12.5 + pos: -23.5,42.5 parent: 2 - - uid: 2470 + - uid: 15703 components: - type: Transform - pos: 11.5,-12.5 + pos: -28.5,48.5 parent: 2 - - uid: 2471 + - uid: 15704 components: - type: Transform - pos: 12.5,-12.5 + pos: -27.5,48.5 parent: 2 - - uid: 2475 + - uid: 15705 components: - type: Transform - pos: 13.5,-9.5 + pos: -25.5,48.5 parent: 2 - - uid: 2477 + - uid: 15706 components: - type: Transform - pos: 13.5,-7.5 + pos: -26.5,48.5 parent: 2 - - uid: 2478 + - uid: 15707 components: - type: Transform - pos: 13.5,-6.5 + pos: -24.5,48.5 parent: 2 - - uid: 2480 + - uid: 15708 components: - type: Transform - pos: 13.5,-4.5 + pos: -23.5,48.5 parent: 2 - - uid: 2482 + - uid: 15709 components: - type: Transform - pos: 13.5,-1.5 + pos: -20.5,48.5 parent: 2 - - uid: 2484 + - uid: 15710 components: - type: Transform - pos: 13.5,1.5 + pos: -19.5,48.5 parent: 2 - - uid: 2486 + - uid: 15711 components: - type: Transform - pos: 13.5,0.5 + pos: -19.5,46.5 parent: 2 - - uid: 2487 + - uid: 15712 components: - type: Transform - pos: 13.5,-2.5 + pos: -20.5,46.5 parent: 2 - - uid: 2488 + - uid: 15713 components: - type: Transform - pos: 13.5,3.5 + pos: -20.5,44.5 parent: 2 - - uid: 2490 + - uid: 15714 components: - type: Transform - pos: 13.5,6.5 + pos: -19.5,44.5 parent: 2 - - uid: 2491 + - uid: 15715 components: - type: Transform - pos: 13.5,4.5 + pos: -19.5,42.5 parent: 2 - - uid: 2493 + - uid: 15716 components: - type: Transform - pos: 13.5,9.5 + pos: -20.5,42.5 parent: 2 - - uid: 2494 + - uid: 15717 components: - type: Transform - pos: 13.5,10.5 + pos: -24.5,42.5 parent: 2 - - uid: 2497 + - uid: 15718 components: - type: Transform - pos: 13.5,8.5 + pos: -25.5,42.5 parent: 2 - - uid: 2498 + - uid: 15719 components: - type: Transform - pos: 13.5,12.5 + pos: -26.5,42.5 parent: 2 - - uid: 2499 + - uid: 15720 components: - type: Transform - pos: 12.5,13.5 + pos: -28.5,42.5 parent: 2 - - uid: 2501 + - uid: 15721 components: - type: Transform - pos: 10.5,13.5 + pos: -28.5,44.5 parent: 2 - - uid: 2502 + - uid: 15722 components: - type: Transform - pos: 9.5,13.5 + pos: -27.5,44.5 parent: 2 - - uid: 2504 + - uid: 15723 components: - type: Transform - pos: 7.5,13.5 + pos: -26.5,44.5 parent: 2 - - uid: 2506 + - uid: 15724 components: - type: Transform - pos: 5.5,13.5 + pos: -25.5,44.5 parent: 2 - - uid: 2507 + - uid: 15725 components: - type: Transform - pos: 4.5,13.5 + pos: -24.5,44.5 parent: 2 - - uid: 2509 + - uid: 15726 components: - type: Transform - pos: 2.5,13.5 + pos: -23.5,44.5 parent: 2 - - uid: 2511 + - uid: 15727 components: - type: Transform - pos: -0.5,13.5 + pos: -27.5,42.5 parent: 2 - - uid: 2513 + - uid: 15729 components: - type: Transform - pos: -3.5,13.5 + pos: -28.5,50.5 parent: 2 - - uid: 2514 + - uid: 15730 components: - type: Transform - pos: 0.5,13.5 + pos: -27.5,50.5 parent: 2 - - uid: 2515 + - uid: 15731 components: - type: Transform - pos: -2.5,13.5 + pos: -26.5,50.5 parent: 2 - - uid: 2517 + - uid: 15732 components: - type: Transform - pos: -5.5,13.5 + pos: -25.5,50.5 parent: 2 - - uid: 2519 + - uid: 15733 components: - type: Transform - pos: -7.5,13.5 + pos: -24.5,50.5 parent: 2 - - uid: 2520 + - uid: 15734 components: - type: Transform - pos: -8.5,13.5 + pos: -23.5,50.5 parent: 2 - - uid: 2522 + - uid: 15735 components: - type: Transform - pos: -10.5,13.5 + pos: -23.5,52.5 parent: 2 - - uid: 2523 + - uid: 15736 components: - type: Transform - pos: -11.5,13.5 + pos: -24.5,52.5 parent: 2 - - uid: 2525 + - uid: 15737 components: - type: Transform - pos: -12.5,12.5 + pos: -25.5,52.5 parent: 2 - - uid: 2526 + - uid: 15738 components: - type: Transform - pos: -12.5,11.5 + pos: -27.5,52.5 parent: 2 - - uid: 2528 + - uid: 15739 components: - type: Transform - pos: -12.5,9.5 + pos: -28.5,52.5 parent: 2 - - uid: 2530 + - uid: 15796 components: - type: Transform - pos: -12.5,7.5 + pos: -23.5,46.5 parent: 2 - - uid: 2532 + - uid: 15797 components: - type: Transform - pos: -12.5,5.5 + pos: -24.5,46.5 parent: 2 - - uid: 2536 + - uid: 15798 components: - type: Transform - pos: -11.5,3.5 + pos: -26.5,46.5 parent: 2 - - uid: 2537 + - uid: 15799 components: - type: Transform - pos: -12.5,-2.5 + pos: -25.5,46.5 parent: 2 - - uid: 2539 + - uid: 15800 components: - type: Transform - pos: -12.5,-4.5 + pos: -27.5,46.5 parent: 2 - - uid: 2541 + - uid: 15801 components: - type: Transform - pos: -12.5,-6.5 + pos: -28.5,46.5 parent: 2 - - uid: 2543 + - uid: 15802 components: - type: Transform - pos: -12.5,-8.5 + pos: -26.5,52.5 parent: 2 - - uid: 2544 + - uid: 15803 components: - type: Transform - pos: -12.5,-10.5 + pos: -20.5,52.5 parent: 2 - - uid: 2547 + - uid: 15804 components: - type: Transform - pos: -11.5,-12.5 + pos: -19.5,52.5 parent: 2 - - uid: 2550 + - uid: 15806 components: - type: Transform - pos: -9.5,-12.5 + pos: -19.5,50.5 parent: 2 - - uid: 2552 + - uid: 15807 components: - type: Transform - pos: -7.5,-10.5 + pos: -20.5,50.5 parent: 2 - - uid: 2558 +- proto: SolarTracker + entities: + - uid: 15468 components: - type: Transform - pos: -13.5,-12.5 + pos: 1.5,-58.5 parent: 2 - - uid: 2561 + - uid: 15702 components: - type: Transform - pos: -14.5,-14.5 + pos: -22.5,55.5 parent: 2 - - uid: 2563 +- proto: SolidSecretDoor + entities: + - uid: 2339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-18.5 + pos: -35.5,-42.5 parent: 2 - - uid: 2564 +- proto: SpaceCash100 + entities: + - uid: 2104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-18.5 + pos: -19.177664,-3.0928874 parent: 2 - - uid: 2566 + - uid: 2105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-16.5 + pos: -19.19601,-3.3864217 parent: 2 - - uid: 2567 + - uid: 16651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-14.5 - parent: 2 - - uid: 2570 + parent: 16650 + - type: Stack + count: 500 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpaceHeater + entities: + - uid: 21477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-19.5 + pos: 21.5,-17.5 parent: 2 - - uid: 2573 + - uid: 21478 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-20.5 + pos: 21.5,-16.5 parent: 2 - - uid: 2574 +- proto: SpacemenFigureSpawner + entities: + - uid: 15870 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-20.5 + pos: -17.5,-8.5 parent: 2 - - uid: 2576 +- proto: SpawnMechRipley + entities: + - uid: 22481 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-20.5 + pos: 27.5,8.5 parent: 2 - - uid: 2577 +- proto: SpawnMobAlexander + entities: + - uid: 21078 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-20.5 + pos: -21.5,13.5 parent: 2 - - uid: 2578 +- proto: SpawnMobButterfly + entities: + - uid: 13099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-24.5 + pos: -47.5,-6.5 parent: 2 - - uid: 2579 + - uid: 13740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-24.5 + pos: -49.5,-6.5 parent: 2 - - uid: 2580 + - uid: 13742 components: - type: Transform - pos: -10.5,-22.5 + pos: -45.5,-8.5 parent: 2 - - uid: 2584 + - uid: 14411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-24.5 + pos: -48.5,-8.5 parent: 2 - - uid: 2585 + - uid: 16201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-24.5 + pos: -46.5,-7.5 parent: 2 - - uid: 2588 +- proto: SpawnMobCatException + entities: + - uid: 6742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-24.5 + pos: 59.5,10.5 parent: 2 - - uid: 2592 +- proto: SpawnMobCatSpace + entities: + - uid: 17293 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-27.5 + pos: 67.5,-53.5 parent: 2 - - uid: 2594 +- proto: SpawnMobCorgi + entities: + - uid: 2107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-27.5 + pos: 44.5,-25.5 parent: 2 - - uid: 2596 +- proto: SpawnMobCrabAtmos + entities: + - uid: 14868 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-25.5 + pos: 19.5,-11.5 parent: 2 - - uid: 2598 +- proto: SpawnMobFoxRenault + entities: + - uid: 4579 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-27.5 + pos: 41.5,-30.5 parent: 2 - - uid: 2600 +- proto: SpawnMobMcGriff + entities: + - uid: 4990 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-28.5 + pos: 1.5,23.5 parent: 2 - - uid: 2602 +- proto: SpawnMobMedibot + entities: + - uid: 6049 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-24.5 + pos: 42.5,8.5 parent: 2 - - uid: 2605 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 12921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-25.5 + rot: 1.5707963267948966 rad + pos: -16.5,6.5 parent: 2 - - uid: 2607 +- proto: SpawnMobPossumMorty + entities: + - uid: 12918 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-27.5 + pos: 52.5,-10.5 parent: 2 - - uid: 2608 +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 5733 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-28.5 + pos: 37.5,15.5 parent: 2 - - uid: 2610 +- proto: SpawnMobShiva + entities: + - uid: 5701 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-27.5 + pos: -12.5,34.5 parent: 2 - - uid: 2613 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 2109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-28.5 + pos: -19.5,-18.5 parent: 2 - - uid: 2616 +- proto: SpawnMobSmile + entities: + - uid: 7422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-19.5 + pos: 68.5,-22.5 parent: 2 - - uid: 2619 +- proto: SpawnPointAtmos + entities: + - uid: 2110 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-23.5 + pos: 10.5,-17.5 parent: 2 - - uid: 2620 + - uid: 2111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 + pos: 11.5,-16.5 parent: 2 - - uid: 2621 + - uid: 2112 components: - type: Transform - pos: 10.5,-25.5 + pos: 12.5,-17.5 parent: 2 - - uid: 2623 +- proto: SpawnPointBartender + entities: + - uid: 2113 components: - type: Transform - pos: 10.5,-27.5 + pos: -14.5,7.5 parent: 2 - - uid: 2626 + - uid: 2114 components: - type: Transform - pos: 11.5,-19.5 + pos: -14.5,6.5 parent: 2 - - uid: 2628 +- proto: SpawnPointBorg + entities: + - uid: 13722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-23.5 + pos: 63.5,-23.5 parent: 2 - - uid: 2629 + - uid: 13723 components: - type: Transform - pos: 9.5,-17.5 + pos: 64.5,-23.5 parent: 2 - - uid: 2633 + - uid: 13724 components: - type: Transform - pos: 9.5,-15.5 + pos: 65.5,-23.5 parent: 2 - - uid: 2634 + - uid: 13725 components: - type: Transform - pos: 16.5,-14.5 + pos: 65.5,-24.5 parent: 2 - - uid: 2636 + - uid: 13726 components: - type: Transform - pos: 5.5,-25.5 + pos: 64.5,-24.5 parent: 2 - - uid: 2637 + - uid: 13727 components: - type: Transform - pos: 8.5,-25.5 + pos: 63.5,-24.5 parent: 2 - - uid: 2641 +- proto: SpawnPointBotanist + entities: + - uid: 14252 components: - type: Transform - pos: 14.5,-19.5 + pos: -37.5,12.5 parent: 2 - - uid: 2643 + - uid: 14255 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-23.5 + pos: -37.5,13.5 parent: 2 - - uid: 2644 +- proto: SpawnPointBoxer + entities: + - uid: 2117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-29.5 + pos: -32.5,-33.5 parent: 2 - - uid: 2646 + - uid: 2118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-26.5 + pos: -33.5,-33.5 parent: 2 - - uid: 2648 + - uid: 3911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-28.5 + pos: -35.5,-27.5 parent: 2 - - uid: 2650 + - uid: 3912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-29.5 + pos: -32.5,-30.5 parent: 2 - - uid: 2653 +- proto: SpawnPointCaptain + entities: + - uid: 4578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-23.5 + pos: 41.5,-28.5 parent: 2 - - uid: 2654 +- proto: SpawnPointCargoTechnician + entities: + - uid: 5736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-24.5 + pos: 28.5,18.5 parent: 2 - - uid: 2657 + - uid: 5737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-30.5 + pos: 26.5,18.5 parent: 2 - - uid: 2659 + - uid: 5738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-23.5 + pos: 25.5,18.5 parent: 2 - - uid: 2660 + - uid: 5740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-22.5 + pos: 29.5,18.5 parent: 2 - - uid: 2664 +- proto: SpawnPointChaplain + entities: + - uid: 15872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-19.5 + pos: -31.5,-35.5 parent: 2 - - uid: 2665 +- proto: SpawnPointChef + entities: + - uid: 16118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-10.5 + pos: -20.5,12.5 parent: 2 - - uid: 2666 +- proto: SpawnPointChemist + entities: + - uid: 6047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-14.5 + pos: 42.5,12.5 parent: 2 - - uid: 2669 + - uid: 6048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-14.5 + pos: 46.5,12.5 parent: 2 - - uid: 2671 +- proto: SpawnPointChiefEngineer + entities: + - uid: 2120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-14.5 + pos: 3.5,-26.5 parent: 2 - - uid: 2674 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 6723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-12.5 + pos: 55.5,11.5 parent: 2 - - uid: 2675 +- proto: SpawnPointClown + entities: + - uid: 3910 components: - type: Transform - pos: 15.5,-7.5 + pos: -28.5,-19.5 parent: 2 - - uid: 2677 +- proto: SpawnPointDetective + entities: + - uid: 10272 components: - type: Transform - pos: 15.5,-5.5 + pos: -29.5,26.5 parent: 2 - - uid: 2680 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 2121 components: - type: Transform - pos: 15.5,-2.5 + pos: 36.5,-25.5 parent: 2 - - uid: 2726 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 5674 components: - type: Transform - pos: 17.5,-19.5 + pos: -17.5,32.5 parent: 2 - - uid: 2730 +- proto: SpawnPointJanitor + entities: + - uid: 2122 components: - type: Transform - pos: 19.5,-19.5 + pos: -17.5,-26.5 parent: 2 - - uid: 2731 + - uid: 2123 components: - type: Transform - pos: 21.5,-19.5 + pos: -16.5,-26.5 parent: 2 - - uid: 2732 + - uid: 22467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-28.5 + pos: -18.5,-26.5 parent: 2 - - uid: 2736 +- proto: SpawnPointLatejoin + entities: + - uid: 5022 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,16.5 + pos: -47.5,-46.5 parent: 2 - - uid: 2738 +- proto: SpawnPointLawyer + entities: + - uid: 5968 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,15.5 + pos: -48.5,-14.5 parent: 2 - - uid: 2740 +- proto: SpawnPointLibrarian + entities: + - uid: 15871 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,16.5 + pos: -18.5,-9.5 parent: 2 - - uid: 2741 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 6720 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,16.5 + pos: 55.5,3.5 parent: 2 - - uid: 2759 + - uid: 6721 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-1.5 + pos: 56.5,3.5 parent: 2 - - uid: 2761 + - uid: 6722 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-1.5 + pos: 57.5,3.5 parent: 2 - - uid: 2766 +- proto: SpawnPointMedicalIntern + entities: + - uid: 6724 components: - type: Transform - pos: 24.5,-19.5 + pos: 56.5,2.5 parent: 2 - - uid: 2767 + - uid: 6725 components: - type: Transform - pos: 25.5,-19.5 + pos: 57.5,2.5 parent: 2 - - uid: 2770 +- proto: SpawnPointMime + entities: + - uid: 3909 components: - type: Transform - pos: 26.5,-17.5 + pos: -33.5,-19.5 parent: 2 - - uid: 2772 + - uid: 3913 components: - type: Transform - pos: 26.5,-14.5 + pos: -33.5,6.5 parent: 2 - - uid: 2774 +- proto: SpawnPointMusician + entities: + - uid: 2124 components: - type: Transform - pos: 24.5,-23.5 + pos: -24.5,1.5 parent: 2 - - uid: 2777 + - uid: 3908 components: - type: Transform - pos: 24.5,-20.5 + pos: -38.5,-19.5 parent: 2 - - uid: 2779 +- proto: SpawnPointObserver + entities: + - uid: 21965 components: - type: Transform - pos: 28.5,-9.5 + pos: -33.5,0.5 parent: 2 - - uid: 2780 +- proto: SpawnPointParamedic + entities: + - uid: 6718 components: - type: Transform - pos: 28.5,-7.5 + pos: 55.5,7.5 parent: 2 - - uid: 2781 + - uid: 6719 components: - type: Transform - pos: 30.5,-9.5 + pos: 56.5,7.5 parent: 2 - - uid: 2784 +- proto: SpawnPointPassenger + entities: + - uid: 15639 components: - type: Transform - pos: 29.5,-14.5 + pos: -36.5,-9.5 parent: 2 - - uid: 2786 + - uid: 15641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-4.5 + pos: -28.5,-9.5 parent: 2 - - uid: 2788 + - uid: 15642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 + pos: -35.5,-13.5 parent: 2 - - uid: 2790 + - uid: 15643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-1.5 + pos: -35.5,-14.5 parent: 2 - - uid: 2791 + - uid: 15644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-1.5 + pos: -32.5,-13.5 parent: 2 - - uid: 2792 + - uid: 15645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-1.5 + pos: -32.5,-14.5 parent: 2 - - uid: 2793 + - uid: 15646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-2.5 + pos: -29.5,-13.5 parent: 2 - - uid: 2795 + - uid: 15647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-4.5 + pos: -29.5,-14.5 parent: 2 - - uid: 2798 +- proto: SpawnPointQuartermaster + entities: + - uid: 5693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-1.5 + pos: 37.5,13.5 parent: 2 - - uid: 2800 +- proto: SpawnPointReporter + entities: + - uid: 5966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-3.5 + pos: -55.5,-28.5 parent: 2 - - uid: 2802 + - uid: 5967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-5.5 + pos: -54.5,-28.5 parent: 2 - - uid: 2804 +- proto: SpawnPointResearchAssistant + entities: + - uid: 23342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-1.5 + pos: 69.5,-12.5 parent: 2 - - uid: 2807 +- proto: SpawnPointResearchDirector + entities: + - uid: 7450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-4.5 + pos: 71.5,-22.5 parent: 2 - - uid: 2812 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 5704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-3.5 + pos: 35.5,19.5 parent: 2 - - uid: 2814 + - uid: 5715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-5.5 + pos: 35.5,20.5 parent: 2 - - uid: 2816 + - uid: 5735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-1.5 + pos: 35.5,21.5 parent: 2 - - uid: 2819 +- proto: SpawnPointScientist + entities: + - uid: 7447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-4.5 + pos: 69.5,-13.5 parent: 2 - - uid: 2822 + - uid: 7449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-17.5 + pos: 68.5,-13.5 parent: 2 - - uid: 2823 + - uid: 20553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-17.5 + pos: 70.5,-13.5 parent: 2 - - uid: 2838 +- proto: SpawnPointSecurityCadet + entities: + - uid: 5675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-5.5 + pos: -6.5,33.5 parent: 2 - - uid: 2839 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 5676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-5.5 + pos: -9.5,33.5 parent: 2 - - uid: 2842 + - uid: 5677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-5.5 + pos: -8.5,33.5 parent: 2 - - uid: 2844 + - uid: 5678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-7.5 + pos: -7.5,33.5 parent: 2 - - uid: 2846 +- proto: SpawnPointServiceWorker + entities: + - uid: 2126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-9.5 + pos: -32.5,0.5 parent: 2 - - uid: 2847 + - uid: 2127 components: - type: Transform - pos: 22.5,-32.5 + pos: -34.5,0.5 parent: 2 - - uid: 2849 + - uid: 2128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-17.5 + pos: -36.5,0.5 parent: 2 - - uid: 2851 + - uid: 2129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-17.5 + pos: -30.5,0.5 parent: 2 - - uid: 2852 +- proto: SpawnPointStationEngineer + entities: + - uid: 2130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-14.5 + pos: -9.5,-18.5 parent: 2 - - uid: 2853 + - uid: 2131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-14.5 + pos: -8.5,-18.5 parent: 2 - - uid: 2854 + - uid: 2132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-13.5 + pos: -7.5,-18.5 parent: 2 - - uid: 2856 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 2133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-11.5 + pos: 1.5,-22.5 parent: 2 - - uid: 2859 + - uid: 2134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-9.5 + pos: 1.5,-23.5 parent: 2 - - uid: 2862 +- proto: SpawnPointWarden + entities: + - uid: 5673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-17.5 + pos: 2.5,24.5 parent: 2 - - uid: 2864 +- proto: Spear + entities: + - uid: 20997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-16.5 + pos: 91.5888,-20.49667 parent: 2 - - uid: 2866 + - uid: 20998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-8.5 + pos: 91.44817,-20.40292 parent: 2 - - uid: 2932 +- proto: SpiderWeb + entities: + - uid: 2136 components: - type: Transform - pos: 37.5,-17.5 + rot: 3.141592653589793 rad + pos: -15.5,14.5 parent: 2 - - uid: 2933 +- proto: SprayBottle + entities: + - uid: 8194 components: - type: Transform - pos: 38.5,-17.5 + pos: -13.281918,-24.159872 parent: 2 - - uid: 2935 + - uid: 8430 components: - type: Transform - pos: 40.5,-17.5 + pos: -13.465376,-24.172104 parent: 2 - - uid: 2936 +- proto: SprayBottleWater + entities: + - uid: 6926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-22.5 + pos: 58.459965,18.571264 parent: 2 - - uid: 2938 +- proto: StairDark + entities: + - uid: 3105 components: - type: Transform - pos: 37.5,-21.5 + pos: 26.5,4.5 parent: 2 - - uid: 2940 + - uid: 3106 components: - type: Transform - pos: 35.5,-21.5 + pos: 25.5,4.5 parent: 2 - - uid: 2942 + - uid: 3107 components: - type: Transform - pos: 30.5,-21.5 + pos: 24.5,4.5 parent: 2 - - uid: 2946 +- proto: Stairs + entities: + - uid: 2682 components: - type: Transform - pos: 30.5,-25.5 + pos: -46.5,-45.5 parent: 2 - - uid: 2948 + - uid: 2684 components: - type: Transform - pos: 30.5,-27.5 + pos: -47.5,-45.5 parent: 2 - - uid: 2950 + - uid: 2687 components: - type: Transform - pos: 22.5,-28.5 + pos: -48.5,-45.5 parent: 2 - - uid: 2953 + - uid: 3741 components: - type: Transform - pos: 22.5,-31.5 + rot: 1.5707963267948966 rad + pos: -40.5,2.5 parent: 2 - - uid: 2955 + - uid: 3742 components: - type: Transform - pos: 22.5,-34.5 + rot: 1.5707963267948966 rad + pos: -40.5,1.5 parent: 2 - - uid: 2956 + - uid: 3743 components: - type: Transform - pos: 18.5,-35.5 + rot: 1.5707963267948966 rad + pos: -40.5,0.5 parent: 2 - - uid: 2975 + - uid: 3829 components: - type: Transform - pos: 3.5,-32.5 + rot: -1.5707963267948966 rad + pos: -42.5,-28.5 parent: 2 - - uid: 2976 + - uid: 3830 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-38.5 + rot: -1.5707963267948966 rad + pos: -42.5,-27.5 parent: 2 - - uid: 2979 + - uid: 5932 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-38.5 + pos: 41.5,-17.5 parent: 2 - - uid: 2980 + - uid: 5933 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-33.5 + pos: 42.5,-17.5 parent: 2 - - uid: 2992 + - uid: 5934 components: - type: Transform - pos: 31.5,-22.5 + rot: 3.141592653589793 rad + pos: 43.5,-17.5 parent: 2 - - uid: 2994 + - uid: 5935 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-23.5 + pos: 4.5,21.5 parent: 2 - - uid: 2995 + - uid: 5936 components: - type: Transform - pos: 34.5,-26.5 + rot: 1.5707963267948966 rad + pos: 4.5,20.5 parent: 2 - - uid: 3000 + - uid: 5937 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-23.5 + pos: 4.5,19.5 parent: 2 - - uid: 3001 + - uid: 5938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-23.5 + rot: -1.5707963267948966 rad + pos: -9.5,21.5 parent: 2 - - uid: 3003 + - uid: 5939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-27.5 + rot: -1.5707963267948966 rad + pos: -9.5,20.5 parent: 2 - - uid: 3004 + - uid: 5940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-27.5 + rot: -1.5707963267948966 rad + pos: -9.5,19.5 parent: 2 - - uid: 3006 + - uid: 5941 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-27.5 + pos: 30.5,3.5 parent: 2 - - uid: 3009 + - uid: 5943 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-23.5 + pos: 30.5,4.5 parent: 2 - - uid: 3016 + - uid: 5944 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-26.5 + pos: 30.5,2.5 parent: 2 - - uid: 3018 + - uid: 7119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-26.5 + rot: -1.5707963267948966 rad + pos: 59.5,-22.5 parent: 2 - - uid: 3020 + - uid: 7120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-26.5 + rot: -1.5707963267948966 rad + pos: 59.5,-23.5 parent: 2 - - uid: 3022 + - uid: 8464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-26.5 + rot: 3.141592653589793 rad + pos: 33.5,-21.5 parent: 2 - - uid: 3028 + - uid: 21884 components: - type: Transform - pos: 50.5,-21.5 + rot: 3.141592653589793 rad + pos: 32.5,-21.5 parent: 2 - - uid: 3033 + - uid: 21885 components: - type: Transform - pos: 50.5,-25.5 + rot: 3.141592653589793 rad + pos: 47.5,-21.5 parent: 2 - - uid: 3047 + - uid: 21886 components: - type: Transform - pos: 4.5,-39.5 + rot: 3.141592653589793 rad + pos: 48.5,-21.5 parent: 2 - - uid: 3055 +- proto: StairStage + entities: + - uid: 2150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-13.5 + rot: 1.5707963267948966 rad + pos: -29.5,4.5 parent: 2 - - uid: 3059 + - uid: 2151 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,-13.5 + pos: -37.5,4.5 parent: 2 - - uid: 3103 +- proto: StairWood + entities: + - uid: 8154 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-28.5 - parent: 2 - - uid: 3114 - components: - - type: Transform - pos: -22.5,-32.5 + pos: -20.5,-20.5 parent: 2 - - uid: 3155 + - uid: 8963 components: - type: Transform - pos: -19.5,22.5 + rot: -1.5707963267948966 rad + pos: -20.5,-0.5 parent: 2 - - uid: 3162 + - uid: 13333 components: - type: Transform - pos: -12.5,22.5 + rot: -1.5707963267948966 rad + pos: -20.5,0.5 parent: 2 - - uid: 3176 + - uid: 14396 components: - type: Transform - pos: 5.5,22.5 + rot: -1.5707963267948966 rad + pos: -20.5,3.5 parent: 2 - - uid: 3179 + - uid: 14397 components: - type: Transform - pos: 2.5,22.5 + rot: -1.5707963267948966 rad + pos: -20.5,2.5 parent: 2 - - uid: 3181 + - uid: 15046 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,22.5 + pos: -20.5,1.5 parent: 2 - - uid: 3185 + - uid: 21558 components: - type: Transform - pos: -4.5,24.5 + rot: 3.141592653589793 rad + pos: -18.5,-20.5 parent: 2 - - uid: 3189 +- proto: StasisBed + entities: + - uid: 6583 components: - type: Transform - pos: -8.5,22.5 + pos: 55.5,-0.5 parent: 2 - - uid: 3249 +- proto: StationAiUploadComputer + entities: + - uid: 20815 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,15.5 + rot: -1.5707963267948966 rad + pos: 23.5,-53.5 parent: 2 - - uid: 3250 +- proto: StationAnchor + entities: + - uid: 14912 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,16.5 + pos: 62.5,-35.5 parent: 2 - - uid: 3251 +- proto: StationBeaconPart + entities: + - uid: 21365 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,16.5 + pos: 30.702707,-1.6835423 parent: 2 - - uid: 3287 + - uid: 21366 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,19.5 + pos: 30.441788,-1.871078 parent: 2 - - uid: 3309 + - uid: 21367 components: - type: Transform - pos: -55.5,-5.5 + pos: 30.572248,-1.7732333 parent: 2 - - uid: 3310 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 21076 components: - type: Transform - pos: 29.5,-0.5 + pos: 14.458807,-65.50417 parent: 2 - - uid: 3453 +- proto: StationMap + entities: + - uid: 7556 components: - type: Transform - pos: -36.5,-37.5 + pos: 48.5,-17.5 parent: 2 - - uid: 3564 + - uid: 13592 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,7.5 + pos: -26.5,-23.5 parent: 2 - - uid: 3572 + - uid: 13593 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,8.5 + pos: -17.5,18.5 parent: 2 - - uid: 3575 + - uid: 13594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-4.5 + pos: 41.5,6.5 parent: 2 - - uid: 3591 + - uid: 13595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,3.5 + rot: 3.141592653589793 rad + pos: 8.5,-34.5 parent: 2 - - uid: 3600 + - uid: 20200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-48.5 + parent: 2 + - uid: 20438 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-2.5 + pos: 3.5,-19.5 parent: 2 - - uid: 3615 + - uid: 20439 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,8.5 + pos: 50.5,-28.5 parent: 2 - - uid: 3656 + - uid: 20440 components: - type: Transform - pos: -55.5,9.5 + rot: -1.5707963267948966 rad + pos: 66.5,-14.5 parent: 2 - - uid: 3658 + - uid: 20441 components: - type: Transform - pos: -55.5,11.5 + rot: 1.5707963267948966 rad + pos: 48.5,14.5 parent: 2 - - uid: 3659 + - uid: 20442 components: - type: Transform - pos: -54.5,11.5 + rot: -1.5707963267948966 rad + pos: 0.5,32.5 parent: 2 - - uid: 3663 + - uid: 20443 components: - type: Transform - pos: -51.5,10.5 + rot: 1.5707963267948966 rad + pos: 29.5,9.5 parent: 2 - - uid: 3665 + - uid: 21889 components: - type: Transform - pos: -51.5,12.5 + rot: 3.141592653589793 rad + pos: -52.5,-48.5 parent: 2 - - uid: 3666 + - uid: 22399 components: - type: Transform - pos: -51.5,13.5 + rot: 1.5707963267948966 rad + pos: 17.5,-53.5 parent: 2 - - uid: 3747 +- proto: StoolBar + entities: + - uid: 2152 components: - type: Transform - pos: -55.5,-7.5 + rot: 1.5707963267948966 rad + pos: -17.5,3.5 parent: 2 - - uid: 3748 + - uid: 2153 components: - type: Transform - pos: -55.5,-8.5 + rot: 1.5707963267948966 rad + pos: -17.5,2.5 parent: 2 - - uid: 3760 + - uid: 2154 components: - type: Transform - pos: -55.5,-10.5 + rot: 1.5707963267948966 rad + pos: -17.5,1.5 parent: 2 - - uid: 3761 + - uid: 2155 components: - type: Transform - pos: -55.5,-11.5 + rot: 1.5707963267948966 rad + pos: -17.5,0.5 parent: 2 - - uid: 3763 + - uid: 2156 components: - type: Transform - pos: -55.5,-13.5 + rot: 1.5707963267948966 rad + pos: -17.5,-0.5 parent: 2 - - uid: 3790 + - uid: 14965 components: - type: Transform - pos: -55.5,-14.5 + pos: -35.5,24.5 parent: 2 - - uid: 3793 + - uid: 14966 components: - type: Transform - pos: -55.5,-17.5 + pos: -36.5,24.5 parent: 2 - - uid: 3907 + - uid: 15024 components: - type: Transform - pos: 41.5,6.5 + pos: -34.5,24.5 parent: 2 - - uid: 3917 + - uid: 16635 components: - type: Transform - pos: 34.5,-28.5 + rot: 3.141592653589793 rad + pos: 14.5,34.5 parent: 2 - - uid: 3919 + - uid: 16636 components: - type: Transform - pos: 34.5,-30.5 + rot: 3.141592653589793 rad + pos: 15.5,34.5 parent: 2 - - uid: 3921 + - uid: 16637 components: - type: Transform - pos: 35.5,-31.5 + rot: 3.141592653589793 rad + pos: 16.5,34.5 parent: 2 - - uid: 3925 + - uid: 16918 components: - type: Transform - pos: 39.5,-31.5 + pos: -37.5,24.5 parent: 2 - - uid: 3929 +- proto: StorageCanister + entities: + - uid: 2157 components: - type: Transform - pos: 46.5,-27.5 + pos: -1.5,-19.5 parent: 2 - - uid: 3930 + - uid: 2158 components: - type: Transform - pos: 46.5,-28.5 + pos: -0.5,-19.5 parent: 2 - - uid: 3933 + - uid: 2159 components: - type: Transform - pos: 46.5,-31.5 + pos: -0.5,-20.5 parent: 2 - - uid: 3935 + - uid: 2160 components: - type: Transform - pos: 44.5,-31.5 + pos: -1.5,-20.5 parent: 2 - - uid: 3939 + - uid: 2161 components: - type: Transform - pos: 41.5,-31.5 + pos: 26.5,-2.5 parent: 2 - - uid: 3940 + - uid: 2162 components: - type: Transform - pos: 50.5,-28.5 + pos: 25.5,-17.5 parent: 2 - - uid: 3945 + - uid: 2163 components: - type: Transform - pos: 50.5,-33.5 + pos: 25.5,-16.5 parent: 2 - - uid: 3946 + - uid: 2164 components: - type: Transform - pos: 50.5,-34.5 + pos: 25.5,-18.5 parent: 2 - - uid: 3948 + - uid: 7394 components: - type: Transform - pos: 50.5,-36.5 + pos: 73.5,-11.5 parent: 2 - - uid: 3950 + - uid: 7395 components: - type: Transform - pos: 30.5,-28.5 + pos: 73.5,-12.5 parent: 2 - - uid: 3953 + - uid: 14854 components: - type: Transform - pos: 30.5,-31.5 + pos: -16.5,17.5 parent: 2 - - uid: 3955 +- proto: SubstationBasic + entities: + - uid: 2165 components: + - type: MetaData + name: Singularity substation - type: Transform - pos: 30.5,-33.5 + pos: 2.5,-17.5 parent: 2 - - uid: 3957 + - uid: 2166 components: + - type: MetaData + name: Central Substation - type: Transform - pos: 30.5,-35.5 + pos: -3.5,15.5 parent: 2 - - uid: 3959 + - uid: 2167 components: + - type: MetaData + name: East Substation - type: Transform - pos: 21.5,-53.5 + pos: 37.5,-14.5 parent: 2 - - uid: 3965 + - uid: 3700 components: + - type: MetaData + name: Evacuation Substation - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-38.5 + pos: -52.5,10.5 parent: 2 - - uid: 3968 + - uid: 5971 components: + - type: MetaData + name: Cargo Substation - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-38.5 + pos: 38.5,6.5 parent: 2 - - uid: 3970 + - uid: 6135 components: + - type: MetaData + name: Command Substation - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-38.5 + pos: 51.5,-28.5 parent: 2 - - uid: 3971 + - uid: 6983 components: + - type: MetaData + name: South-West Substation - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-38.5 + pos: -37.5,-37.5 parent: 2 - - uid: 4040 + - uid: 8524 components: + - type: MetaData + name: Arrivals Substation - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-20.5 + pos: -36.5,-53.5 parent: 2 - - uid: 4137 + - uid: 9108 components: + - type: MetaData + name: Science Substation - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-34.5 + pos: 61.5,-32.5 parent: 2 - - uid: 4139 + - uid: 9117 components: + - type: MetaData + name: Medical Substation - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-34.5 + pos: 65.5,10.5 parent: 2 - - uid: 4140 + - uid: 9196 components: + - type: MetaData + name: Security Substation - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-34.5 + pos: -22.5,35.5 parent: 2 - - uid: 4142 + - uid: 9203 components: + - type: MetaData + name: South Substation - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-34.5 + pos: 14.5,-38.5 parent: 2 - - uid: 4184 + - uid: 9212 components: + - type: MetaData + name: West Substation - type: Transform - pos: 22.5,21.5 + pos: -61.5,-20.5 parent: 2 - - uid: 4186 + - uid: 9275 components: + - type: MetaData + name: Engineering substation - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,6.5 + pos: -0.5,-17.5 parent: 2 - - uid: 4188 + - uid: 10576 components: + - type: MetaData + name: Secure Command Substation - type: Transform - pos: 22.5,18.5 + pos: 54.5,-41.5 parent: 2 - - uid: 4189 + - uid: 17231 components: + - type: MetaData + name: Outpost Substation - type: Transform - pos: 22.5,17.5 + pos: 66.5,-49.5 parent: 2 - - uid: 4190 + - uid: 20937 components: + - type: MetaData + name: Rage Cage Substation - type: Transform - pos: 22.5,16.5 + pos: 89.5,-22.5 parent: 2 - - uid: 4198 + - uid: 22069 components: + - type: MetaData + name: AI Core substation - type: Transform - pos: 22.5,7.5 + pos: 24.5,-63.5 parent: 2 - - uid: 4199 +- proto: SubstationMachineCircuitboard + entities: + - uid: 5879 components: - type: Transform - pos: 22.5,5.5 + pos: 54.525455,-38.59651 parent: 2 - - uid: 4200 +- proto: SuitStorageAtmos + entities: + - uid: 2168 components: - type: Transform - pos: 22.5,9.5 + pos: 10.5,-15.5 parent: 2 - - uid: 4213 + - uid: 2169 components: - type: Transform - pos: 29.5,0.5 + pos: 11.5,-15.5 parent: 2 - - uid: 4214 + - uid: 2170 components: - type: Transform - pos: 29.5,1.5 + pos: 12.5,-15.5 parent: 2 - - uid: 4215 +- proto: SuitStorageCaptain + entities: + - uid: 12703 components: - type: Transform - pos: 30.5,1.5 + pos: 43.5,-27.5 parent: 2 - - uid: 4216 +- proto: SuitStorageCE + entities: + - uid: 2171 components: - type: Transform - pos: 31.5,1.5 + pos: 0.5,-25.5 parent: 2 - - uid: 4245 +- proto: SuitStorageCMO + entities: + - uid: 6736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-50.5 + pos: 56.5,12.5 parent: 2 - - uid: 4247 +- proto: SuitStorageEngi + entities: + - uid: 2172 components: - type: Transform - pos: 44.5,-5.5 + pos: -4.5,-19.5 parent: 2 - - uid: 4250 + - uid: 2173 components: - type: Transform - pos: 44.5,-2.5 + pos: -5.5,-19.5 parent: 2 - - uid: 4253 + - uid: 2174 components: - type: Transform - pos: 44.5,0.5 + pos: -3.5,-19.5 parent: 2 - - uid: 4265 + - uid: 8113 components: - type: Transform - pos: 35.5,5.5 + pos: -5.5,-33.5 parent: 2 - - uid: 4267 + - uid: 8114 components: - type: Transform - pos: 33.5,5.5 + pos: -4.5,-33.5 parent: 2 - - uid: 4268 +- proto: SuitStorageEVA + entities: + - uid: 7606 components: - type: Transform - pos: 32.5,5.5 + pos: 25.5,-35.5 parent: 2 - - uid: 4271 + - uid: 7607 components: - type: Transform - pos: 30.5,5.5 + pos: 23.5,-35.5 parent: 2 - - uid: 4272 + - uid: 7608 components: - type: Transform - pos: 29.5,5.5 + pos: 24.5,-35.5 parent: 2 - - uid: 4274 + - uid: 7609 components: - type: Transform - pos: 27.5,5.5 + pos: 23.5,-38.5 parent: 2 - - uid: 4278 + - uid: 7610 components: - type: Transform - pos: 23.5,5.5 + pos: 24.5,-38.5 parent: 2 - - uid: 4280 + - uid: 7611 components: - type: Transform - pos: 29.5,-1.5 + pos: 25.5,-38.5 parent: 2 - - uid: 4281 +- proto: SuitStorageEVAEmergency + entities: + - uid: 7081 components: - type: Transform - pos: 29.5,-2.5 + pos: 57.5,-0.5 parent: 2 - - uid: 4282 + - 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: SuitStorageEVAPrisoner + entities: + - uid: 8190 components: - type: Transform - pos: 29.5,-3.5 + pos: -2.5,40.5 parent: 2 - - uid: 4283 + - uid: 8191 components: - type: Transform - pos: 30.5,-3.5 + pos: -0.5,40.5 parent: 2 - - uid: 4284 +- proto: SuitStorageHOS + entities: + - uid: 5034 components: - type: Transform - pos: 31.5,-3.5 + pos: -11.5,34.5 parent: 2 - - uid: 4285 +- proto: SuitStorageRD + entities: + - uid: 7425 components: - type: Transform - pos: 32.5,-3.5 + pos: 71.5,-25.5 parent: 2 - - uid: 4286 +- proto: SuitStorageSec + entities: + - uid: 1966 components: - type: Transform - pos: 33.5,-3.5 + pos: 5.5,31.5 parent: 2 - - uid: 4287 + - uid: 1967 components: - type: Transform - pos: 34.5,-3.5 + pos: 4.5,31.5 parent: 2 - - uid: 4288 + - uid: 5041 components: - type: Transform - pos: 35.5,-3.5 + pos: 7.5,32.5 parent: 2 - - uid: 4291 + - uid: 5042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,9.5 + pos: 7.5,31.5 parent: 2 - - uid: 4302 +- proto: SuitStorageWarden + entities: + - uid: 4956 components: - type: Transform - pos: 35.5,1.5 + pos: 5.5,23.5 parent: 2 - - uid: 4345 +- proto: SurveillanceCameraCommand + entities: + - uid: 5889 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-28.5 + rot: 1.5707963267948966 rad + pos: 54.5,-39.5 parent: 2 - - uid: 4352 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Gravity + - uid: 8964 components: - type: Transform - pos: 47.5,5.5 + rot: -1.5707963267948966 rad + pos: 19.5,-37.5 parent: 2 - - uid: 4444 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: EVA storage + - uid: 8965 components: - type: Transform - pos: 35.5,-2.5 + rot: 1.5707963267948966 rad + pos: 29.5,-43.5 parent: 2 - - uid: 4445 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Telecommunications + - uid: 8968 components: - type: Transform - pos: 35.5,-1.5 + rot: 1.5707963267948966 rad + pos: 21.5,-44.5 parent: 2 - - uid: 4446 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: High security mainframe + - uid: 8969 components: - type: Transform - pos: 35.5,-0.5 + rot: -1.5707963267948966 rad + pos: 11.5,-46.5 parent: 2 - - uid: 4447 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Camera routers + - uid: 8970 components: - type: Transform - pos: 35.5,0.5 + rot: 1.5707963267948966 rad + pos: 29.5,-38.5 parent: 2 - - uid: 4461 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Connective hallway + - uid: 8971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,3.5 + rot: -1.5707963267948966 rad + pos: 31.5,-34.5 parent: 2 - - uid: 4475 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: West bridge + - uid: 8972 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,-28.5 + pos: 49.5,-34.5 parent: 2 - - uid: 4477 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: East bridge + - uid: 8975 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,-27.5 + pos: 33.5,-23.5 parent: 2 - - uid: 4484 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: West bridge entrance + - uid: 8976 components: - type: Transform - pos: -37.5,-39.5 + rot: -1.5707963267948966 rad + pos: 47.5,-23.5 parent: 2 - - uid: 4488 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: East bridge entrance + - uid: 8977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-21.5 + pos: 41.5,-25.5 parent: 2 - - uid: 4558 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Head of Personel's office + - uid: 8979 components: - type: Transform - pos: 44.5,-27.5 + rot: -1.5707963267948966 rad + pos: 47.5,-29.5 parent: 2 - - uid: 4629 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: North east bridge + - uid: 8980 components: - type: Transform - pos: 50.5,-40.5 + rot: 1.5707963267948966 rad + pos: 33.5,-28.5 parent: 2 - - uid: 4662 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: North west bridge + - uid: 8981 components: - type: Transform - pos: -4.5,23.5 + pos: 25.5,-33.5 parent: 2 - - uid: 4667 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conference room + - uid: 8984 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,34.5 + pos: 55.5,-32.5 parent: 2 - - uid: 4678 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Vault + - uid: 15592 components: - type: Transform - pos: -8.5,24.5 + rot: 3.141592653589793 rad + pos: 7.5,-46.5 parent: 2 - - uid: 4681 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Secure board room + - uid: 16967 components: - type: Transform - pos: 1.5,26.5 + rot: -1.5707963267948966 rad + pos: 51.5,-32.5 parent: 2 - - uid: 4685 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: High security + - uid: 22356 components: - type: Transform - pos: -12.5,24.5 + rot: 1.5707963267948966 rad + pos: 20.5,-51.5 parent: 2 - - uid: 4688 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core entrance + - uid: 22358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,31.5 + pos: 22.5,-53.5 parent: 2 - - uid: 4689 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI upload room + - uid: 22359 components: - type: Transform - pos: -16.5,26.5 + pos: 18.5,-65.5 parent: 2 - - uid: 4693 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core lobby + - uid: 22360 components: - type: Transform - pos: -16.5,23.5 + pos: 19.5,-73.5 parent: 2 - - uid: 4705 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core mainframe + - uid: 22361 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,34.5 + pos: 22.5,-74.5 parent: 2 - - uid: 4716 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: East AI core mainframe + - uid: 22362 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,36.5 + pos: 16.5,-74.5 parent: 2 - - uid: 4721 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: West AI core mainframe + - uid: 22363 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,28.5 + pos: 19.5,-48.5 parent: 2 - - uid: 4723 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: High security mainframe hallway + - uid: 22364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,26.5 + pos: 14.5,-65.5 parent: 2 - - uid: 4725 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core break room + - uid: 22365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,23.5 + pos: 23.5,-65.5 parent: 2 - - uid: 4726 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core power generation + - uid: 22382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,25.5 + rot: 3.141592653589793 rad + pos: 40.5,-32.5 parent: 2 - - uid: 4727 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: North bridge + - uid: 22473 components: - type: Transform - pos: 8.5,32.5 + pos: 18.5,-60.5 parent: 2 - - uid: 4728 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: External AI core +- proto: SurveillanceCameraEngineering + entities: + - uid: 6780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,33.5 + rot: 3.141592653589793 rad + pos: 52.5,-28.5 parent: 2 - - uid: 4730 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Command substation + - uid: 8010 components: - type: Transform - pos: 8.5,33.5 + rot: -1.5707963267948966 rad + pos: -9.5,4.5 parent: 2 - - uid: 4738 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North west outer singularity + - uid: 8945 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,2.5 + pos: -11.5,-13.5 parent: 2 - - uid: 4739 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: SMES + - uid: 8946 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,29.5 + pos: -3.5,-18.5 parent: 2 - - uid: 4742 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Locker bay + - uid: 8947 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,27.5 + pos: -1.5,-12.5 parent: 2 - - uid: 4747 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Particle accelerator + - uid: 8948 components: - type: Transform - pos: 0.5,29.5 + rot: 1.5707963267948966 rad + pos: 6.5,-13.5 parent: 2 - - uid: 4768 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Singularity storage + - uid: 8949 components: - type: Transform - pos: -4.5,35.5 + rot: -1.5707963267948966 rad + pos: 4.5,-20.5 parent: 2 - - uid: 4770 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Break room + - uid: 8950 components: - type: Transform - pos: 46.5,6.5 + pos: -4.5,-23.5 parent: 2 - - uid: 4772 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Central hallway + - uid: 8952 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,1.5 + pos: -5.5,-25.5 parent: 2 - - uid: 4776 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Front desk + - uid: 8953 components: - type: Transform - pos: -13.5,30.5 + rot: 1.5707963267948966 rad + pos: 0.5,-25.5 parent: 2 - - uid: 4779 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Chief Engineer's office + - uid: 8954 components: - type: Transform - pos: -10.5,30.5 + rot: 3.141592653589793 rad + pos: 2.5,-25.5 parent: 2 - - uid: 4782 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Chief Engineer's room + - uid: 8955 components: - type: Transform - pos: -4.5,30.5 + pos: 13.5,-22.5 parent: 2 - - uid: 4785 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos-Engineering connection + - uid: 8956 components: - type: Transform - pos: -16.5,30.5 + rot: 1.5707963267948966 rad + pos: 17.5,-25.5 parent: 2 - - uid: 4788 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Antimatter engine + - uid: 8958 components: - type: Transform - pos: -16.5,27.5 + rot: -1.5707963267948966 rad + pos: 10.5,-16.5 parent: 2 - - uid: 4802 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospherics supply bay + - uid: 8959 components: - type: Transform - pos: -10.5,33.5 + rot: 1.5707963267948966 rad + pos: 27.5,-9.5 parent: 2 - - uid: 4812 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: East atmospherics + - uid: 8960 components: - type: Transform - pos: -28.5,24.5 + rot: -1.5707963267948966 rad + pos: -5.5,-34.5 parent: 2 - - uid: 4813 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Spare storage + - uid: 8961 components: - type: Transform - pos: -27.5,24.5 + pos: 2.5,-37.5 parent: 2 - - uid: 4819 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South solars + - uid: 8962 components: - type: Transform - pos: -21.5,24.5 + rot: -1.5707963267948966 rad + pos: 8.5,-39.5 parent: 2 - - uid: 4820 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Board room + - uid: 8994 components: - type: Transform - pos: -20.5,24.5 + rot: -1.5707963267948966 rad + pos: 37.5,-15.5 parent: 2 - - uid: 4824 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: East substation + - uid: 8995 components: - type: Transform - pos: -17.5,30.5 + rot: 1.5707963267948966 rad + pos: 38.5,7.5 parent: 2 - - uid: 4825 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Cargo substation + - uid: 8996 components: - type: Transform - pos: -19.5,30.5 + pos: -2.5,14.5 parent: 2 - - uid: 4828 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Central substation + - uid: 8997 components: - type: Transform - pos: -21.5,29.5 + rot: 3.141592653589793 rad + pos: -53.5,10.5 parent: 2 - - uid: 4829 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Evacuation substation + - uid: 9036 components: - type: Transform - pos: -21.5,28.5 + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 parent: 2 - - uid: 4833 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Drone room + - uid: 10655 components: - type: Transform - pos: -17.5,24.5 + rot: 1.5707963267948966 rad + pos: 10.5,4.5 parent: 2 - - uid: 4838 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North east outer singularity + - uid: 10657 components: - type: Transform - pos: -23.5,30.5 + rot: 3.141592653589793 rad + pos: 0.5,6.5 parent: 2 - - uid: 4841 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North inner singularity + - uid: 10659 components: - type: Transform - pos: -7.5,35.5 + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 parent: 2 - - uid: 4843 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South west outer singularity + - uid: 10660 components: - type: Transform - pos: -9.5,35.5 + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 parent: 2 - - uid: 4845 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South east outer singularity + - uid: 18066 components: - type: Transform - pos: -11.5,35.5 + rot: -1.5707963267948966 rad + pos: -9.5,-22.5 parent: 2 - - uid: 4848 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: West central hallway + - uid: 18068 components: - type: Transform - pos: -15.5,31.5 + pos: 18.5,-22.5 parent: 2 - - uid: 4851 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospheric's front desk + - uid: 19436 components: - type: Transform - pos: -14.5,35.5 + pos: 15.5,-38.5 parent: 2 - - uid: 4853 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South substation + - uid: 20205 components: - type: Transform - pos: -15.5,35.5 + pos: -38.5,-37.5 parent: 2 - - uid: 4855 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South west substation + - uid: 20206 components: - type: Transform - pos: -9.5,30.5 + rot: -1.5707963267948966 rad + pos: -37.5,-53.5 parent: 2 - - uid: 4862 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Arrivals Substation + - uid: 20207 components: - type: Transform - pos: -18.5,33.5 + rot: 1.5707963267948966 rad + pos: 63.5,-31.5 parent: 2 - - uid: 4865 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Science substation + - uid: 20208 components: - type: Transform - pos: -16.5,34.5 + rot: 3.141592653589793 rad + pos: 64.5,10.5 parent: 2 - - uid: 4877 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Medical substation + - uid: 20209 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,25.5 - parent: 2 - - uid: 4884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,36.5 + pos: -21.5,34.5 parent: 2 - - uid: 4887 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Security substation + - uid: 20210 components: - type: Transform - pos: -63.5,-20.5 + pos: -26.5,34.5 parent: 2 - - uid: 4894 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North solars + - uid: 20211 components: - type: Transform - pos: 1.5,33.5 + rot: -1.5707963267948966 rad + pos: -61.5,-19.5 parent: 2 - - uid: 4906 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: West substation + - uid: 22374 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,34.5 + pos: -5.5,0.5 parent: 2 - - uid: 4907 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: West inner singularity + - uid: 22375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,34.5 + pos: 0.5,-5.5 parent: 2 - - uid: 4918 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South inner singularity + - uid: 22376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,38.5 + rot: 1.5707963267948966 rad + pos: 6.5,0.5 parent: 2 - - uid: 4928 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: East inner singularity + - uid: 22377 components: - type: Transform - pos: -29.5,33.5 + pos: 34.5,-16.5 parent: 2 - - uid: 4929 + - uid: 22378 components: - type: Transform - pos: -25.5,24.5 + pos: 18.5,-18.5 parent: 2 - - uid: 4934 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: South atmospherics + - uid: 22379 components: - type: Transform - pos: -0.5,35.5 + rot: -1.5707963267948966 rad + pos: 16.5,-9.5 parent: 2 - - uid: 4935 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: West atmospherics + - uid: 22380 components: - type: Transform - pos: -2.5,35.5 + rot: 3.141592653589793 rad + pos: 21.5,-8.5 parent: 2 - - uid: 4940 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: North atmospherics + - uid: 22381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,36.5 + rot: 1.5707963267948966 rad + pos: 35.5,-11.5 parent: 2 - - uid: 4942 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmospherics blast chamber + - uid: 22405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,36.5 + rot: 3.141592653589793 rad + pos: -31.5,38.5 parent: 2 - - uid: 4945 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Shuttle preperations room + - uid: 22497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,36.5 + pos: 65.5,-36.5 parent: 2 - - uid: 4954 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Station anchor +- proto: SurveillanceCameraGeneral + entities: + - uid: 8420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,27.5 + rot: 3.141592653589793 rad + pos: -56.5,-56.5 parent: 2 - - uid: 4969 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South west arrivals + - uid: 9037 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,29.5 + pos: 13.5,25.5 parent: 2 - - uid: 4970 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bathroom + - uid: 9038 components: - type: Transform - pos: 3.5,29.5 + pos: 38.5,-4.5 parent: 2 - - uid: 4977 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Tool room + - uid: 9039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,35.5 + rot: 3.141592653589793 rad + pos: 6.5,-26.5 parent: 2 - - uid: 4985 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Engineering front + - uid: 9044 components: - type: Transform - pos: 1.5,39.5 + pos: -30.5,-15.5 parent: 2 - - uid: 4986 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms hallway + - uid: 9047 components: - type: Transform - pos: 3.5,39.5 + rot: 1.5707963267948966 rad + pos: -43.5,-20.5 parent: 2 - - uid: 5001 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North lounge + - uid: 9048 components: - type: Transform - pos: -10.5,37.5 + pos: -44.5,-31.5 parent: 2 - - uid: 5003 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South lounge + - uid: 9049 components: - type: Transform - pos: -8.5,37.5 + rot: -1.5707963267948966 rad + pos: -51.5,-27.5 parent: 2 - - uid: 5009 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West lounge + - uid: 9050 components: - type: Transform - pos: -0.5,39.5 + rot: 1.5707963267948966 rad + pos: -46.5,-42.5 parent: 2 - - uid: 5013 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals connective hallway + - uid: 9051 components: - type: Transform - pos: -7.5,38.5 + rot: 1.5707963267948966 rad + pos: -39.5,-50.5 parent: 2 - - uid: 5014 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: East arrivals + - uid: 9052 components: - type: Transform - pos: 4.5,39.5 + rot: -1.5707963267948966 rad + pos: -55.5,-50.5 parent: 2 - - uid: 5098 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West arrivals + - uid: 9053 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,0.5 + pos: -38.5,-56.5 parent: 2 - - uid: 5114 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South east arrivals + - uid: 9055 components: - type: Transform - pos: -3.5,44.5 + pos: -56.5,-65.5 parent: 2 - - uid: 5124 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South west arrivals 2 + - uid: 9056 components: - type: Transform - pos: 4.5,44.5 + pos: -42.5,-47.5 parent: 2 - - uid: 5127 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North arrivals + - uid: 9057 components: - type: Transform - pos: 4.5,41.5 + pos: -33.5,-33.5 parent: 2 - - uid: 5134 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South boxing arena + - uid: 9058 components: - type: Transform - pos: -7.5,41.5 + pos: -35.5,-4.5 parent: 2 - - uid: 5135 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Front cafeteria + - uid: 9059 components: - type: Transform - pos: -7.5,42.5 + pos: -28.5,-4.5 parent: 2 - - uid: 5139 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Back cafeteria + - uid: 9060 components: - type: Transform - pos: -7.5,45.5 + rot: 3.141592653589793 rad + pos: -23.5,9.5 parent: 2 - - uid: 5141 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Kitchen exterior + - uid: 9061 components: - type: Transform - pos: -7.5,47.5 + rot: 1.5707963267948966 rad + pos: -22.5,-7.5 parent: 2 - - uid: 5144 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms-cafeteria hallway + - uid: 9062 components: - type: Transform - pos: 4.5,46.5 + rot: -1.5707963267948966 rad + pos: -39.5,-0.5 parent: 2 - - uid: 5146 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cafeteria entrance + - uid: 9063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,52.5 + rot: 3.141592653589793 rad + pos: -51.5,6.5 parent: 2 - - uid: 5153 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North evacuation + - uid: 9064 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,0.5 + pos: -43.5,6.5 parent: 2 - - uid: 5179 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North evacuation 2 + - uid: 9065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,49.5 + pos: -51.5,-3.5 parent: 2 - - uid: 5185 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South evacuation + - uid: 9066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,51.5 + pos: -43.5,-3.5 parent: 2 - - uid: 5189 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South evacuation 2 + - uid: 9067 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,53.5 + pos: -26.5,20.5 parent: 2 - - uid: 5190 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Small cafeteria + - uid: 9068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,54.5 + rot: 3.141592653589793 rad + pos: -12.5,21.5 parent: 2 - - uid: 5193 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Security hallway + - uid: 9069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,51.5 + rot: 3.141592653589793 rad + pos: 0.5,21.5 parent: 2 - - uid: 5196 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Security front + - uid: 9070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,48.5 + rot: 3.141592653589793 rad + pos: 9.5,21.5 parent: 2 - - uid: 5279 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: East security hallway + - uid: 9071 components: - type: Transform - pos: -7.5,40.5 + rot: 1.5707963267948966 rad + pos: 21.5,18.5 parent: 2 - - uid: 5283 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior loading bay + - uid: 9072 components: - type: Transform - pos: -6.5,39.5 + rot: -1.5707963267948966 rad + pos: 19.5,9.5 parent: 2 - - uid: 5285 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cargo hallway + - uid: 9073 components: - type: Transform - pos: -4.5,39.5 + rot: 3.141592653589793 rad + pos: 22.5,4.5 parent: 2 - - uid: 5296 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South cargo hallway + - uid: 9074 components: - type: Transform - pos: 10.5,29.5 + pos: 27.5,2.5 parent: 2 - - uid: 5298 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior secure storage + - uid: 9075 components: - type: Transform - pos: 10.5,31.5 + rot: 3.141592653589793 rad + pos: 35.5,4.5 parent: 2 - - uid: 5326 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Medical-cargo hallway + - uid: 9076 components: - type: Transform - pos: 10.5,32.5 + rot: -1.5707963267948966 rad + pos: 41.5,-4.5 parent: 2 - - uid: 5424 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior tool room + - uid: 9077 components: - type: Transform - pos: 24.5,16.5 + rot: 1.5707963267948966 rad + pos: 46.5,4.5 parent: 2 - - uid: 5427 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Medical front + - uid: 9079 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,11.5 + pos: 41.5,-16.5 parent: 2 - - uid: 5431 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North exterior bridge + - uid: 9080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,9.5 + rot: 3.141592653589793 rad + pos: 48.5,-18.5 parent: 2 - - uid: 5432 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: East exterior bridge + - uid: 9081 components: - type: Transform - pos: 10.5,34.5 + rot: 3.141592653589793 rad + pos: 36.5,-18.5 parent: 2 - - uid: 5434 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West exterior bridge + - uid: 9082 components: - type: Transform - pos: 10.5,36.5 + pos: 60.5,-20.5 parent: 2 - - uid: 5479 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Science front + - uid: 9083 components: - type: Transform - pos: 35.5,11.5 + pos: 54.5,-23.5 parent: 2 - - uid: 5483 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior science + - uid: 9084 components: - type: Transform - pos: 33.5,16.5 + rot: 1.5707963267948966 rad + pos: 29.5,-21.5 parent: 2 - - uid: 5484 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Atmos-bridge hallway + - uid: 9085 components: - type: Transform - pos: 35.5,16.5 + rot: 3.141592653589793 rad + pos: 24.5,-24.5 parent: 2 - - uid: 5486 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Atmospherics front + - uid: 9086 components: - type: Transform - pos: 35.5,10.5 + rot: 1.5707963267948966 rad + pos: 21.5,-29.5 parent: 2 - - uid: 5488 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: EVA-atmos hallway + - uid: 9087 components: - type: Transform - pos: 35.5,8.5 + rot: 3.141592653589793 rad + pos: 17.5,-31.5 parent: 2 - - uid: 5489 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior antimatter engine + - uid: 9088 components: - type: Transform - pos: 35.5,6.5 + pos: 8.5,-33.5 parent: 2 - - uid: 5495 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: External engineering hallway + - uid: 9090 components: - type: Transform - pos: 33.5,11.5 + pos: -2.5,-31.5 parent: 2 - - uid: 5499 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South solars exterior + - uid: 9091 components: - type: Transform - pos: 37.5,16.5 + pos: -10.5,-31.5 parent: 2 - - uid: 5500 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Engineering-janitorial hallway + - uid: 9092 components: - type: Transform - pos: 37.5,17.5 + rot: 3.141592653589793 rad + pos: -18.5,-29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Exterior janitorials + - uid: 9093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South west hallway + - uid: 9094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-16.5 parent: 2 - - uid: 5502 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms exterior + - uid: 12807 components: - type: Transform - pos: 37.5,19.5 + pos: -38.5,-65.5 parent: 2 - - uid: 5503 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South east arrivals 2 + - uid: 18921 components: - type: Transform - pos: 37.5,20.5 + rot: 1.5707963267948966 rad + pos: 43.5,-10.5 parent: 2 - - uid: 5505 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bridge-medical hallway + - uid: 19758 components: - type: Transform - pos: 37.5,22.5 + pos: -47.5,-8.5 parent: 2 - - uid: 5507 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Memorial room + - uid: 22393 components: - type: Transform - pos: 22.5,23.5 + rot: 3.141592653589793 rad + pos: -20.5,21.5 parent: 2 - - uid: 5509 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dining area + - uid: 22394 components: - type: Transform - pos: 23.5,24.5 + pos: -52.5,-21.5 parent: 2 - - uid: 5511 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North west lounge + - uid: 22395 components: - type: Transform - pos: 32.5,24.5 + rot: -1.5707963267948966 rad + pos: -54.5,-9.5 parent: 2 - - uid: 5512 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evacuation-lounge hallway + - uid: 22404 components: - type: Transform - pos: 31.5,24.5 + pos: 10.5,23.5 parent: 2 - - uid: 5532 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West bathroom + - uid: 22469 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,9.5 + pos: -32.5,-4.5 parent: 2 - - uid: 5559 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Vox box +- proto: SurveillanceCameraMedical + entities: + - uid: 9023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,9.5 + pos: 41.5,7.5 parent: 2 - - uid: 5569 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Lobby + - uid: 9025 components: - type: Transform - pos: 29.5,6.5 + rot: 1.5707963267948966 rad + pos: 51.5,12.5 parent: 2 - - uid: 5570 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: North hallway + - uid: 9026 components: - type: Transform - pos: 29.5,8.5 + rot: 1.5707963267948966 rad + pos: 51.5,6.5 parent: 2 - - uid: 5616 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Central hallway + - uid: 9027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,27.5 + rot: -1.5707963267948966 rad + pos: 48.5,-5.5 parent: 2 - - uid: 5628 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination bay + - uid: 9028 components: - type: Transform - pos: 38.5,16.5 + pos: 52.5,-14.5 parent: 2 - - uid: 5629 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Morgue + - uid: 9029 components: - type: Transform - pos: 38.5,15.5 + rot: 3.141592653589793 rad + pos: 57.5,-3.5 parent: 2 - - uid: 5632 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cryogenics + - uid: 9030 components: - type: Transform - pos: 38.5,12.5 + rot: 1.5707963267948966 rad + pos: 60.5,2.5 parent: 2 - - uid: 5634 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery rooms + - uid: 9031 components: - type: Transform - pos: 37.5,11.5 + rot: 1.5707963267948966 rad + pos: 57.5,3.5 parent: 2 - - uid: 5659 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Medical doctor supplies + - uid: 9032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,0.5 + pos: 55.5,6.5 parent: 2 - - uid: 5723 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Paramedic's office + - uid: 9033 components: - type: Transform - pos: 40.5,18.5 + rot: 3.141592653589793 rad + pos: 55.5,12.5 parent: 2 - - uid: 5743 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chief Medical Officer's office + - uid: 9035 components: - type: Transform - pos: 44.5,19.5 + pos: 59.5,14.5 parent: 2 - - uid: 5762 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology + - uid: 14256 components: - type: Transform - pos: -27.5,-45.5 + rot: 3.141592653589793 rad + pos: 45.5,16.5 parent: 2 - - uid: 5774 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + - uid: 22383 components: - type: Transform - pos: 45.5,6.5 + pos: 45.5,-4.5 parent: 2 - - uid: 5775 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination room 2 + - uid: 22384 components: - type: Transform - pos: 47.5,4.5 + pos: 45.5,-1.5 parent: 2 - - uid: 5778 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination room 1 + - uid: 22385 components: - type: Transform - pos: 40.5,6.5 + pos: 45.5,-7.5 parent: 2 - - uid: 5779 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination room 3 + - uid: 22386 components: - type: Transform - pos: 27.5,-57.5 + pos: 55.5,-1.5 parent: 2 - - uid: 5780 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination room 4 + - uid: 22387 components: - type: Transform - pos: -34.5,-46.5 + pos: 55.5,-7.5 parent: 2 - - uid: 5787 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Examination room 5 + - uid: 22388 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-42.5 + pos: 62.5,4.5 parent: 2 - - uid: 5788 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery room 1 + - uid: 22389 components: - type: Transform - pos: 0.5,40.5 + pos: 62.5,0.5 parent: 2 - - uid: 5802 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Surgery room 2 + - uid: 22390 components: - type: Transform - pos: -3.5,40.5 + pos: 54.5,14.5 parent: 2 - - uid: 5810 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology connective hallway +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 7976 components: - type: Transform - pos: 55.5,-39.5 + pos: 11.5,-44.5 parent: 2 - - uid: 5814 +- proto: SurveillanceCameraRouterConstructed + entities: + - uid: 7749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-34.5 + pos: 11.5,-49.5 parent: 2 - - uid: 5817 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 7957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-31.5 + pos: 13.5,-48.5 parent: 2 - - uid: 5820 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 7953 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-36.5 + pos: 16.5,-48.5 parent: 2 - - uid: 5821 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 7958 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-36.5 + pos: 13.5,-49.5 parent: 2 - - uid: 5823 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 7956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-36.5 + pos: 14.5,-48.5 parent: 2 - - uid: 5824 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 7977 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-36.5 + pos: 14.5,-44.5 parent: 2 - - uid: 5826 +- proto: SurveillanceCameraRouterService + entities: + - uid: 7954 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-35.5 + pos: 16.5,-49.5 parent: 2 - - uid: 5827 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 7955 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-34.5 + pos: 14.5,-49.5 parent: 2 - - uid: 5829 +- proto: SurveillanceCameraScience + entities: + - uid: 8985 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,-32.5 + pos: 62.5,-22.5 parent: 2 - - uid: 5832 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics + - uid: 8986 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-30.5 + rot: 1.5707963267948966 rad + pos: 71.5,-26.5 parent: 2 - - uid: 5834 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Server room + - uid: 8988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-30.5 + pos: 70.5,-18.5 parent: 2 - - uid: 5837 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Connective hallway + - uid: 8989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-31.5 + rot: -1.5707963267948966 rad + pos: 73.5,-14.5 parent: 2 - - uid: 5839 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Xenoarchaeology labs + - uid: 8990 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-31.5 + pos: 70.5,-7.5 parent: 2 - - uid: 5840 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Anomaly centre + - uid: 8991 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-31.5 + pos: 60.5,-11.5 parent: 2 - - uid: 5841 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Reception desk + - uid: 8992 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-31.5 + rot: 1.5707963267948966 rad + pos: 65.5,-14.5 parent: 2 - - uid: 5842 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Central hallway +- proto: SurveillanceCameraSecurity + entities: + - uid: 8998 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-30.5 + pos: -13.5,29.5 parent: 2 - - uid: 5844 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: West hallway + - uid: 8999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-32.5 + rot: 1.5707963267948966 rad + pos: -0.5,29.5 parent: 2 - - uid: 5848 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Main hallway + - uid: 9000 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-36.5 + pos: -5.5,34.5 parent: 2 - - uid: 5849 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Officer supply room + - uid: 9001 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-37.5 + pos: -13.5,34.5 parent: 2 - - uid: 5851 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Head of Security's office + - uid: 9003 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,-37.5 + pos: -19.5,29.5 parent: 2 - - uid: 5853 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Interrogation room + - uid: 9004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-37.5 + rot: -1.5707963267948966 rad + pos: -7.5,24.5 parent: 2 - - uid: 5856 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prison 1 + - uid: 9005 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-37.5 + rot: -1.5707963267948966 rad + pos: -11.5,24.5 parent: 2 - - uid: 5858 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prison 2 + - uid: 9006 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-37.5 + rot: -1.5707963267948966 rad + pos: -15.5,24.5 parent: 2 - - uid: 5859 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prison 3 + - uid: 9007 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-26.5 + pos: -0.5,25.5 parent: 2 - - uid: 5861 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security lobby + - uid: 9008 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-24.5 + pos: 3.5,28.5 parent: 2 - - uid: 5863 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Warden's office + - uid: 9009 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-24.5 + pos: 6.5,30.5 parent: 2 - - uid: 5865 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + - uid: 9010 components: - type: Transform - pos: 56.5,-24.5 + rot: 3.141592653589793 rad + pos: 1.5,48.5 parent: 2 - - uid: 5866 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Central perma + - uid: 9011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-40.5 + rot: 1.5707963267948966 rad + pos: 2.5,53.5 parent: 2 - - uid: 5869 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma hydroponics + - uid: 9012 components: - type: Transform - pos: 59.5,-25.5 + rot: 1.5707963267948966 rad + pos: -4.5,42.5 parent: 2 - - uid: 5874 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma room 2 + - uid: 9013 components: - type: Transform - pos: 53.5,-42.5 + rot: -1.5707963267948966 rad + pos: 1.5,42.5 parent: 2 - - uid: 5877 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma room 1 + - uid: 9045 components: - type: Transform - pos: 52.5,-42.5 + rot: 3.141592653589793 rad + pos: -48.5,-12.5 parent: 2 - - uid: 5880 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lawyer office + - uid: 9046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-41.5 + rot: 3.141592653589793 rad + pos: -45.5,-13.5 parent: 2 - - uid: 5884 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lawyer conference room + - uid: 12808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-52.5 + rot: 3.141592653589793 rad + pos: -0.5,38.5 parent: 2 - - uid: 5891 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security-perma hallway + - uid: 12809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-43.5 + rot: 1.5707963267948966 rad + pos: -0.5,43.5 parent: 2 - - uid: 5902 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Perma entrance + - uid: 20212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-42.5 + rot: 1.5707963267948966 rad + pos: -24.5,29.5 parent: 2 - - uid: 5952 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective's office +- proto: SurveillanceCameraService + entities: + - uid: 8924 components: - type: Transform - pos: 39.5,7.5 + rot: 3.141592653589793 rad + pos: -18.5,3.5 parent: 2 - - uid: 5954 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar + - uid: 8925 components: - type: Transform - pos: 39.5,9.5 + rot: 1.5707963267948966 rad + pos: -13.5,-3.5 parent: 2 - - uid: 5955 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Bar lounge + - uid: 8929 components: - type: Transform - pos: 40.5,9.5 + rot: 3.141592653589793 rad + pos: -31.5,7.5 parent: 2 - - uid: 5959 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Theatre + - uid: 8930 components: - type: Transform - pos: 40.5,13.5 + rot: 3.141592653589793 rad + pos: -19.5,-12.5 parent: 2 - - uid: 5963 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Game room + - uid: 8932 components: - type: Transform - pos: 41.5,14.5 + rot: 3.141592653589793 rad + pos: -19.5,-17.5 parent: 2 - - uid: 6000 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Library + - uid: 8933 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,17.5 + pos: -13.5,-26.5 parent: 2 - - uid: 6003 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Janitorial closet + - uid: 8936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,17.5 + rot: -1.5707963267948966 rad + pos: -50.5,11.5 parent: 2 - - uid: 6006 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Arcade + - uid: 8938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,15.5 + rot: 3.141592653589793 rad + pos: -37.5,14.5 parent: 2 - - uid: 6010 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany closet + - uid: 8939 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,11.5 + pos: -53.5,-28.5 parent: 2 - - uid: 6043 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Reporter office + - uid: 8940 components: - type: Transform - pos: 50.5,16.5 + rot: 3.141592653589793 rad + pos: -60.5,-24.5 parent: 2 - - uid: 6046 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: News room + - uid: 8941 components: - type: Transform - pos: 49.5,16.5 + pos: -29.5,11.5 parent: 2 - - uid: 6060 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany + - uid: 8942 components: - type: Transform - pos: -57.5,-19.5 + rot: 3.141592653589793 rad + pos: -22.5,15.5 parent: 2 - - uid: 6063 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kitchen + - uid: 8943 components: - type: Transform - pos: -18.5,37.5 + rot: 1.5707963267948966 rad + pos: -15.5,14.5 parent: 2 - - uid: 6075 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Freezer + - uid: 8944 components: - type: Transform - pos: -45.5,-37.5 + rot: 1.5707963267948966 rad + pos: -19.5,5.5 parent: 2 - - uid: 6077 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Music corner + - uid: 9040 components: - type: Transform - pos: 37.5,6.5 + rot: 3.141592653589793 rad + pos: -35.5,-24.5 parent: 2 - - uid: 6086 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: North boxing arena + - uid: 21412 components: - type: Transform - pos: -51.5,-37.5 + pos: -22.5,-39.5 parent: 2 - - uid: 6087 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Chapel + - uid: 22392 components: - type: Transform - pos: 79.5,-36.5 + rot: 1.5707963267948966 rad + pos: -42.5,12.5 parent: 2 - - uid: 6096 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Arcade reception +- proto: SurveillanceCameraSupply + entities: + - uid: 3557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-54.5 + pos: 38.5,20.5 parent: 2 - - uid: 6100 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: External salvage + - uid: 9014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-49.5 + pos: 25.5,10.5 parent: 2 - - uid: 6107 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Front desk + - uid: 9015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-42.5 + rot: 3.141592653589793 rad + pos: 22.5,15.5 parent: 2 - - uid: 6145 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo front + - uid: 9018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-42.5 + rot: 1.5707963267948966 rad + pos: 34.5,6.5 parent: 2 - - uid: 6150 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Break room + - uid: 9019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-42.5 + pos: 23.5,6.5 parent: 2 - - uid: 6152 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Secure storage + - uid: 9021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-37.5 + rot: 1.5707963267948966 rad + pos: 36.5,22.5 parent: 2 - - uid: 6160 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage supply + - uid: 20086 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-45.5 + pos: 30.5,13.5 parent: 2 - - uid: 6161 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Hallway + - uid: 22391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-46.5 + rot: 3.141592653589793 rad + pos: 27.5,23.5 parent: 2 - - uid: 6165 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Storage bay +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 7959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-47.5 + pos: 11.5,-48.5 parent: 2 - - uid: 6166 +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 2175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-46.5 + rot: 3.141592653589793 rad + pos: -21.5,5.5 parent: 2 - - uid: 6167 + - uid: 4519 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,-45.5 + pos: -58.5,-26.5 parent: 2 - - uid: 6170 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: News channel +- proto: SurveillanceWirelessCameraMovableConstructed + entities: + - uid: 4531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-55.5 + pos: -56.5,-23.5 parent: 2 - - uid: 6173 + - uid: 4532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-48.5 + pos: -55.5,-23.5 parent: 2 - - uid: 6174 +- proto: SyndieFlag + entities: + - uid: 21058 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-49.5 + pos: -36.5,-42.5 parent: 2 - - uid: 6212 +- proto: SyndieHandyFlag + entities: + - uid: 21059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-55.5 + pos: -34.495705,-44.393948 parent: 2 - - uid: 6214 +- proto: SynthesizerInstrument + entities: + - uid: 21334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-50.5 + pos: 47.788773,21.30058 parent: 2 - - uid: 6215 +- proto: Syringe + entities: + - uid: 8193 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-51.5 + pos: 61.51553,-3.394734 parent: 2 - - uid: 6218 + - uid: 16540 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-51.5 + pos: 15.512184,29.873684 parent: 2 - - uid: 6219 + - uid: 16966 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-52.5 + pos: 61.425484,17.165861 parent: 2 - - uid: 6221 +- proto: Table + entities: + - uid: 153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-54.5 + rot: 3.141592653589793 rad + pos: -32.5,-8.5 parent: 2 - - uid: 6222 + - uid: 1413 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,-54.5 + pos: 53.5,-9.5 parent: 2 - - uid: 6223 + - uid: 2177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-57.5 + rot: 1.5707963267948966 rad + pos: -4.5,-16.5 parent: 2 - - uid: 6224 + - uid: 2178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-55.5 + rot: 1.5707963267948966 rad + pos: -4.5,-17.5 parent: 2 - - uid: 6225 + - uid: 2179 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-49.5 - parent: 2 - - uid: 6227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-44.5 - parent: 2 - - uid: 6228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-44.5 + pos: -8.5,-21.5 parent: 2 - - uid: 6241 + - uid: 2180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-56.5 + pos: -5.5,-23.5 parent: 2 - - uid: 6246 + - uid: 2181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-54.5 + pos: -4.5,-23.5 parent: 2 - - uid: 6247 + - uid: 2182 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-56.5 + pos: 1.5,-19.5 parent: 2 - - uid: 6251 + - uid: 2183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-57.5 + pos: 2.5,-19.5 parent: 2 - - uid: 6254 + - uid: 2184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-57.5 + pos: -4.5,-26.5 parent: 2 - - uid: 6255 + - uid: 2185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-57.5 + pos: 5.5,-19.5 parent: 2 - - uid: 6258 + - uid: 2186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-59.5 + pos: 6.5,-19.5 parent: 2 - - uid: 6259 + - uid: 2187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-59.5 + pos: 6.5,-23.5 parent: 2 - - uid: 6261 + - uid: 2188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-59.5 + pos: 5.5,-23.5 parent: 2 - - uid: 6265 + - uid: 2189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-64.5 + rot: 1.5707963267948966 rad + pos: 11.5,-27.5 parent: 2 - - uid: 6267 + - uid: 2190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-64.5 + rot: 1.5707963267948966 rad + pos: 17.5,-27.5 parent: 2 - - uid: 6268 + - uid: 2191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-64.5 + rot: 1.5707963267948966 rad + pos: 17.5,-17.5 parent: 2 - - uid: 6287 + - uid: 2192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-66.5 + rot: 1.5707963267948966 rad + pos: 18.5,-17.5 parent: 2 - - uid: 6289 + - uid: 2193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-66.5 + rot: 1.5707963267948966 rad + pos: 17.5,-18.5 parent: 2 - - uid: 6295 + - uid: 2194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-54.5 + rot: 1.5707963267948966 rad + pos: 18.5,-18.5 parent: 2 - - uid: 6298 + - uid: 2195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-66.5 + pos: 24.5,-26.5 parent: 2 - - uid: 6300 + - uid: 2196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-66.5 + pos: 27.5,-26.5 parent: 2 - - uid: 6303 + - uid: 2197 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-64.5 + pos: -23.5,13.5 parent: 2 - - uid: 6305 + - uid: 2198 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-62.5 + pos: -23.5,14.5 parent: 2 - - uid: 6307 + - uid: 2201 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-59.5 + pos: -21.5,15.5 parent: 2 - - uid: 6309 + - uid: 2202 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-60.5 + pos: -20.5,15.5 parent: 2 - - uid: 6310 + - uid: 2203 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-58.5 + pos: -19.5,15.5 parent: 2 - - uid: 6311 + - uid: 2204 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-60.5 + pos: -18.5,15.5 parent: 2 - - uid: 6312 + - uid: 2205 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-61.5 + pos: -19.5,17.5 parent: 2 - - uid: 6315 + - uid: 2206 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-63.5 + pos: -19.5,21.5 parent: 2 - - uid: 6316 + - uid: 2207 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-64.5 + pos: -22.5,21.5 parent: 2 - - uid: 6319 + - uid: 2208 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-66.5 + pos: -22.5,17.5 parent: 2 - - uid: 6322 + - uid: 2209 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-66.5 + pos: 38.5,-16.5 parent: 2 - - uid: 6323 + - uid: 2210 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-66.5 + pos: 37.5,-16.5 parent: 2 - - uid: 6325 + - uid: 2211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-51.5 + rot: 3.141592653589793 rad + pos: -27.5,13.5 parent: 2 - - uid: 6486 + - uid: 2212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-8.5 + rot: 3.141592653589793 rad + pos: -27.5,14.5 parent: 2 - - uid: 6490 + - uid: 2213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-8.5 + pos: -29.5,-17.5 parent: 2 - - uid: 6494 + - uid: 2214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-8.5 + pos: -27.5,-17.5 parent: 2 - - uid: 6503 + - uid: 2215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-8.5 + pos: -27.5,-33.5 parent: 2 - - uid: 6507 + - uid: 2216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,0.5 + pos: -28.5,-33.5 parent: 2 - - uid: 6511 + - uid: 2217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-8.5 + pos: -29.5,-33.5 parent: 2 - - uid: 6512 + - uid: 3237 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-8.5 + pos: -33.5,-8.5 parent: 2 - - uid: 6513 + - uid: 3705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-8.5 + rot: 1.5707963267948966 rad + pos: -54.5,10.5 parent: 2 - - uid: 6518 + - uid: 3706 components: - type: Transform - pos: 38.5,5.5 + rot: 1.5707963267948966 rad + pos: -54.5,9.5 parent: 2 - - uid: 6531 + - uid: 4063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-1.5 + pos: 49.5,-24.5 parent: 2 - - uid: 6532 + - uid: 4064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-2.5 + pos: 31.5,-24.5 parent: 2 - - uid: 6564 + - uid: 4254 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,-2.5 + pos: 44.5,1.5 parent: 2 - - uid: 6622 + - uid: 4270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,5.5 + pos: -18.5,27.5 parent: 2 - - uid: 6629 + - uid: 4307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,0.5 + rot: -1.5707963267948966 rad + pos: 33.5,8.5 parent: 2 - - uid: 6630 + - uid: 4504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,6.5 + pos: -50.5,-13.5 parent: 2 - - uid: 6632 + - uid: 4505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,8.5 + pos: -50.5,-12.5 parent: 2 - - uid: 6634 + - uid: 4794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,9.5 + pos: -9.5,23.5 parent: 2 - - uid: 6637 + - uid: 4871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,9.5 + pos: -5.5,23.5 parent: 2 - - uid: 6640 + - uid: 4874 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,12.5 + pos: -13.5,23.5 parent: 2 - - uid: 6642 + - uid: 5048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,13.5 + pos: -8.5,31.5 parent: 2 - - uid: 6644 + - uid: 5049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,13.5 + pos: -9.5,31.5 parent: 2 - - uid: 6645 + - uid: 5057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,13.5 + rot: 3.141592653589793 rad + pos: -9.5,29.5 parent: 2 - - uid: 6646 + - uid: 5058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,9.5 + rot: 3.141592653589793 rad + pos: -10.5,29.5 parent: 2 - - uid: 6649 + - uid: 5166 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,10.5 + pos: -6.5,47.5 parent: 2 - - uid: 6651 + - uid: 5169 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,12.5 + pos: -6.5,48.5 parent: 2 - - uid: 6654 + - uid: 5170 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,13.5 + pos: 1.5,46.5 parent: 2 - - uid: 6656 + - uid: 5171 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,16.5 + pos: 1.5,47.5 parent: 2 - - uid: 6658 + - uid: 5172 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,16.5 + pos: 0.5,47.5 parent: 2 - - uid: 6659 + - uid: 5173 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,15.5 + pos: 0.5,46.5 parent: 2 - - uid: 6670 + - uid: 5174 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-12.5 + pos: -5.5,48.5 parent: 2 - - uid: 6674 + - uid: 5175 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-15.5 + pos: -4.5,48.5 parent: 2 - - uid: 6676 + - uid: 5228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-15.5 + rot: -1.5707963267948966 rad + pos: 3.5,52.5 parent: 2 - - uid: 6678 + - uid: 5229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-15.5 + rot: -1.5707963267948966 rad + pos: 3.5,51.5 parent: 2 - - uid: 6679 + - uid: 5245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-15.5 + rot: 3.141592653589793 rad + pos: -4.5,43.5 parent: 2 - - uid: 6681 + - uid: 5246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-9.5 + rot: 3.141592653589793 rad + pos: 1.5,43.5 parent: 2 - - uid: 6748 + - uid: 5515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-2.5 + pos: -19.5,27.5 parent: 2 - - uid: 6774 + - uid: 5562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-27.5 + rot: -1.5707963267948966 rad + pos: 32.5,7.5 parent: 2 - - uid: 6777 + - uid: 5563 components: - type: Transform - pos: 51.5,-23.5 + rot: -1.5707963267948966 rad + pos: 32.5,8.5 parent: 2 - - uid: 6779 + - uid: 5572 components: - type: Transform - pos: 52.5,-30.5 + rot: -1.5707963267948966 rad + pos: 33.5,7.5 parent: 2 - - uid: 6785 + - uid: 5669 components: - type: Transform - pos: 54.5,-14.5 + pos: -20.5,27.5 parent: 2 - - uid: 6787 + - uid: 5770 components: - type: Transform - pos: 54.5,-12.5 + rot: -1.5707963267948966 rad + pos: 44.5,2.5 parent: 2 - - uid: 6789 + - uid: 5771 components: - type: Transform - pos: 54.5,-10.5 + rot: -1.5707963267948966 rad + pos: 44.5,3.5 parent: 2 - - uid: 6790 + - uid: 5772 components: - type: Transform - pos: 54.5,-9.5 + rot: -1.5707963267948966 rad + pos: 45.5,3.5 parent: 2 - - uid: 6805 + - uid: 6137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-2.5 + rot: 3.141592653589793 rad + pos: 52.5,-28.5 parent: 2 - - uid: 6839 + - uid: 6331 components: - type: Transform - pos: 56.5,18.5 + rot: -1.5707963267948966 rad + pos: -53.5,-60.5 parent: 2 - - uid: 6841 + - uid: 6332 components: - type: Transform - pos: 56.5,20.5 + rot: -1.5707963267948966 rad + pos: -53.5,-61.5 parent: 2 - - uid: 6843 + - uid: 6333 components: - type: Transform - pos: -15.5,-39.5 + rot: -1.5707963267948966 rad + pos: -53.5,-62.5 parent: 2 - - uid: 6845 + - uid: 6334 components: - type: Transform - pos: 63.5,-10.5 + rot: -1.5707963267948966 rad + pos: -53.5,-63.5 parent: 2 - - uid: 6848 + - uid: 6335 components: - type: Transform - pos: 62.5,18.5 + rot: -1.5707963267948966 rad + pos: -41.5,-60.5 parent: 2 - - uid: 6849 + - uid: 6336 components: - type: Transform - pos: 61.5,20.5 + rot: -1.5707963267948966 rad + pos: -41.5,-61.5 parent: 2 - - uid: 6851 + - uid: 6337 components: - type: Transform - pos: 62.5,16.5 + rot: -1.5707963267948966 rad + pos: -41.5,-62.5 parent: 2 - - uid: 6853 + - uid: 6338 components: - type: Transform - pos: 62.5,14.5 + rot: -1.5707963267948966 rad + pos: -41.5,-63.5 parent: 2 - - uid: 6855 + - uid: 6382 components: - type: Transform - pos: 61.5,13.5 + pos: -55.5,-45.5 parent: 2 - - uid: 6857 + - uid: 6383 components: - type: Transform - pos: 58.5,-0.5 + pos: -39.5,-45.5 parent: 2 - - uid: 6859 + - uid: 6587 components: - type: Transform - pos: 59.5,5.5 + rot: 3.141592653589793 rad + pos: -31.5,-8.5 parent: 2 - - uid: 6861 + - uid: 6684 components: - type: Transform - pos: 61.5,5.5 + rot: 1.5707963267948966 rad + pos: 53.5,1.5 parent: 2 - - uid: 6863 + - uid: 6685 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,2.5 + pos: 54.5,1.5 parent: 2 - - uid: 6869 + - uid: 6686 components: - type: Transform - pos: 61.5,-0.5 + rot: 1.5707963267948966 rad + pos: 55.5,1.5 parent: 2 - - uid: 6873 + - uid: 6708 components: - type: Transform - pos: 64.5,0.5 + pos: 48.5,4.5 parent: 2 - - uid: 6874 + - uid: 6715 components: - type: Transform - pos: 64.5,1.5 + rot: -1.5707963267948966 rad + pos: 54.5,8.5 parent: 2 - - uid: 6875 + - uid: 6716 components: - type: Transform - pos: 64.5,2.5 + rot: -1.5707963267948966 rad + pos: 53.5,8.5 parent: 2 - - uid: 6876 + - uid: 7268 components: - type: Transform - pos: 64.5,3.5 + pos: 64.5,-11.5 parent: 2 - - uid: 6878 + - uid: 7277 components: - type: Transform - pos: 64.5,5.5 + rot: 3.141592653589793 rad + pos: 63.5,-15.5 parent: 2 - - uid: 6879 + - uid: 8115 components: - type: Transform - pos: 63.5,5.5 + rot: 3.141592653589793 rad + pos: -4.5,-36.5 parent: 2 - - uid: 6880 + - uid: 8213 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,2.5 + pos: 41.5,-7.5 parent: 2 - - uid: 6932 + - uid: 8267 components: - type: Transform - pos: 57.5,22.5 + pos: -4.5,21.5 parent: 2 - - uid: 6933 + - uid: 9179 components: - type: Transform - pos: 61.5,22.5 + rot: 1.5707963267948966 rad + pos: -25.5,25.5 parent: 2 - - uid: 6942 + - uid: 9180 components: - type: Transform - pos: -40.5,-37.5 + rot: 1.5707963267948966 rad + pos: -24.5,25.5 parent: 2 - - uid: 6952 + - uid: 9197 components: - type: Transform - pos: -3.5,42.5 + rot: 3.141592653589793 rad + pos: -21.5,35.5 parent: 2 - - uid: 6953 + - uid: 14240 components: - type: Transform - pos: 0.5,42.5 + pos: -21.5,10.5 parent: 2 - - uid: 6955 + - uid: 14738 components: - type: Transform - pos: 0.5,44.5 + rot: 1.5707963267948966 rad + pos: -17.5,35.5 parent: 2 - - uid: 6962 + - uid: 14753 components: - type: Transform - pos: -15.5,-41.5 + pos: -20.5,10.5 parent: 2 - - uid: 6970 + - uid: 15092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-38.5 + pos: -3.5,-41.5 parent: 2 - - uid: 6977 + - uid: 15093 components: - type: Transform - pos: 58.5,-10.5 + pos: -3.5,-40.5 parent: 2 - - uid: 6978 + - uid: 15148 components: - type: Transform - pos: 57.5,-10.5 + pos: -32.5,38.5 parent: 2 - - uid: 6980 + - uid: 15149 components: - type: Transform - pos: 56.5,-11.5 + pos: -33.5,38.5 parent: 2 - - uid: 6982 + - uid: 15620 components: - type: Transform - pos: 56.5,-13.5 + pos: 69.5,-3.5 parent: 2 - - uid: 6996 + - uid: 15952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,7.5 + pos: -42.5,17.5 parent: 2 - - uid: 6998 + - uid: 16110 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,7.5 + pos: 58.5,26.5 parent: 2 - - uid: 7009 + - uid: 16138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,11.5 + pos: 60.5,25.5 parent: 2 - - uid: 7020 + - uid: 16191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,22.5 + pos: 56.5,-27.5 parent: 2 - - uid: 7021 + - uid: 16203 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,23.5 + pos: 55.5,-27.5 parent: 2 - - uid: 7022 + - uid: 16327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,24.5 + rot: 1.5707963267948966 rad + pos: 78.5,-5.5 parent: 2 - - uid: 7028 + - uid: 16328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-8.5 + rot: 1.5707963267948966 rad + pos: 79.5,-5.5 parent: 2 - - uid: 7029 + - uid: 16394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-8.5 + pos: 50.5,22.5 parent: 2 - - uid: 7066 + - uid: 16395 components: - type: Transform - pos: 61.5,-10.5 + pos: 51.5,22.5 parent: 2 - - uid: 7073 + - uid: 16396 components: - type: Transform - pos: 65.5,-9.5 + pos: 52.5,22.5 parent: 2 - - uid: 7074 + - uid: 16422 components: - type: Transform - pos: 65.5,-8.5 + pos: 63.5,8.5 parent: 2 - - uid: 7089 + - uid: 16463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-21.5 + pos: -54.5,-35.5 parent: 2 - - uid: 7091 + - uid: 16464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-18.5 + pos: -54.5,-36.5 parent: 2 - - uid: 7094 + - uid: 16467 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-15.5 + pos: -59.5,-35.5 parent: 2 - - uid: 7095 + - uid: 16468 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-15.5 + pos: -59.5,-36.5 parent: 2 - - uid: 7101 + - uid: 16529 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,-11.5 + pos: 13.5,32.5 parent: 2 - - uid: 7110 + - uid: 16530 components: - type: Transform - pos: 66.5,-19.5 + rot: -1.5707963267948966 rad + pos: 15.5,31.5 parent: 2 - - uid: 7113 + - uid: 16531 components: - type: Transform - pos: 67.5,-23.5 + rot: -1.5707963267948966 rad + pos: 15.5,30.5 parent: 2 - - uid: 7116 + - uid: 16532 components: - type: Transform - pos: 67.5,-26.5 + rot: -1.5707963267948966 rad + pos: 15.5,29.5 parent: 2 - - uid: 7117 + - uid: 16578 components: - type: Transform - pos: 67.5,-27.5 + rot: 1.5707963267948966 rad + pos: 5.5,40.5 parent: 2 - - uid: 7128 + - uid: 16597 components: - type: Transform - pos: 60.5,-27.5 + rot: 1.5707963267948966 rad + pos: 8.5,42.5 parent: 2 - - uid: 7129 + - uid: 16598 components: - type: Transform - pos: 61.5,-27.5 + rot: 1.5707963267948966 rad + pos: 9.5,42.5 parent: 2 - - uid: 7131 + - uid: 16599 components: - type: Transform - pos: 64.5,-27.5 + rot: 1.5707963267948966 rad + pos: 9.5,41.5 parent: 2 - - uid: 7133 + - uid: 16600 components: - type: Transform - pos: 65.5,-27.5 + rot: 1.5707963267948966 rad + pos: 9.5,40.5 parent: 2 - - uid: 7136 + - uid: 17379 components: - type: Transform - pos: 66.5,-11.5 + rot: 3.141592653589793 rad + pos: -30.5,-3.5 parent: 2 - - uid: 7137 + - uid: 20792 components: - type: Transform - pos: 66.5,-10.5 + rot: 3.141592653589793 rad + pos: 8.5,16.5 parent: 2 - - uid: 7165 + - uid: 21186 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-21.5 + pos: -30.5,-4.5 parent: 2 - - uid: 7182 + - uid: 21330 components: - type: Transform - pos: 60.5,-29.5 + rot: 1.5707963267948966 rad + pos: 63.5,-32.5 parent: 2 - - uid: 7185 +- proto: TableCarpet + entities: + - uid: 2218 components: - type: Transform - pos: 63.5,-29.5 + pos: -19.5,-2.5 parent: 2 - - uid: 7187 + - uid: 2219 components: - type: Transform - pos: 68.5,-15.5 + pos: -18.5,-3.5 parent: 2 - - uid: 7189 + - uid: 2220 components: - type: Transform - pos: 70.5,-15.5 + pos: -19.5,-3.5 parent: 2 - - uid: 7191 + - uid: 2221 components: - type: Transform - pos: 72.5,-15.5 + pos: -18.5,-2.5 parent: 2 - - uid: 7195 + - uid: 2222 components: - type: Transform - pos: 72.5,-11.5 + rot: 1.5707963267948966 rad + pos: -20.5,-14.5 parent: 2 - - uid: 7197 + - uid: 2223 components: - type: Transform - pos: 74.5,-10.5 + pos: -19.5,-13.5 parent: 2 - - uid: 7200 + - uid: 2224 components: - type: Transform - pos: 75.5,-9.5 + pos: -20.5,-13.5 parent: 2 - - uid: 7202 + - uid: 2225 components: - type: Transform - pos: 75.5,-7.5 + rot: 1.5707963267948966 rad + pos: -19.5,-14.5 parent: 2 - - uid: 7204 + - uid: 16631 components: - type: Transform - pos: 74.5,-6.5 + rot: 1.5707963267948966 rad + pos: 14.5,36.5 parent: 2 - - uid: 7206 + - uid: 16632 components: - type: Transform - pos: 72.5,-6.5 + rot: 1.5707963267948966 rad + pos: 14.5,35.5 parent: 2 - - uid: 7209 + - uid: 16633 components: - type: Transform - pos: 69.5,-6.5 + rot: 1.5707963267948966 rad + pos: 15.5,35.5 parent: 2 - - uid: 7212 + - uid: 16634 components: - type: Transform - pos: 66.5,-6.5 + rot: 1.5707963267948966 rad + pos: 16.5,35.5 parent: 2 - - uid: 7269 +- proto: TableCounterWood + entities: + - uid: 2226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-19.5 + pos: -16.5,-0.5 parent: 2 - - uid: 7271 + - uid: 2227 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-19.5 + pos: -16.5,3.5 parent: 2 - - uid: 7281 + - uid: 2228 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,-20.5 + pos: -16.5,0.5 parent: 2 - - uid: 7284 + - uid: 2229 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,-23.5 - parent: 2 - - uid: 7285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-24.5 - parent: 2 - - uid: 7287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-24.5 + pos: -16.5,1.5 parent: 2 - - uid: 7293 + - uid: 2230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-27.5 + rot: 3.141592653589793 rad + pos: -16.5,2.5 parent: 2 - - uid: 7294 + - uid: 2231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-28.5 + pos: -15.5,3.5 parent: 2 - - uid: 7296 + - uid: 2237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-30.5 + pos: -37.5,-20.5 parent: 2 - - uid: 7297 + - uid: 2238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-30.5 + pos: -36.5,-20.5 parent: 2 - - uid: 7299 + - uid: 3730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-30.5 + pos: -44.5,11.5 parent: 2 - - uid: 7300 + - uid: 3731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-30.5 + pos: -44.5,12.5 parent: 2 - - uid: 7304 + - uid: 3732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-19.5 + pos: -44.5,13.5 parent: 2 - - uid: 7307 + - uid: 4407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-19.5 + rot: 1.5707963267948966 rad + pos: -49.5,-15.5 parent: 2 - - uid: 7309 + - uid: 4410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-19.5 + rot: 1.5707963267948966 rad + pos: -48.5,-15.5 parent: 2 - - uid: 7312 + - uid: 4414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-15.5 + rot: 1.5707963267948966 rad + pos: -44.5,-16.5 parent: 2 - - uid: 7317 + - uid: 4415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-11.5 + rot: 1.5707963267948966 rad + pos: -44.5,-17.5 parent: 2 - - uid: 7319 + - uid: 4418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-10.5 + pos: -44.5,-15.5 parent: 2 - - uid: 7321 + - uid: 4427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-15.5 + rot: 1.5707963267948966 rad + pos: -50.5,-15.5 parent: 2 - - uid: 7322 + - uid: 4567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-15.5 + rot: 3.141592653589793 rad + pos: 39.5,-28.5 parent: 2 - - uid: 7323 + - uid: 12701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-15.5 + rot: 3.141592653589793 rad + pos: 39.5,-27.5 parent: 2 - - uid: 7324 + - uid: 12702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-15.5 + rot: 3.141592653589793 rad + pos: 40.5,-27.5 parent: 2 - - uid: 7326 + - uid: 16197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-11.5 + rot: 1.5707963267948966 rad + pos: 77.5,-24.5 parent: 2 - - uid: 7329 + - uid: 16199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-19.5 + rot: 1.5707963267948966 rad + pos: 79.5,-24.5 parent: 2 - - uid: 7331 + - uid: 16200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-19.5 + rot: 1.5707963267948966 rad + pos: 76.5,-24.5 parent: 2 - - uid: 7338 +- proto: TableFancyBlack + entities: + - uid: 3109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-11.5 + pos: -36.5,5.5 parent: 2 - - uid: 7339 + - uid: 3110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-15.5 + pos: -30.5,5.5 parent: 2 - - uid: 7340 + - uid: 3111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-15.5 + pos: -36.5,6.5 parent: 2 - - uid: 7342 + - uid: 3112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-11.5 + pos: -30.5,7.5 parent: 2 - - uid: 7350 + - uid: 3121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-19.5 + pos: -30.5,6.5 parent: 2 - - uid: 7460 +- proto: TableFancyRed + entities: + - uid: 3124 components: - type: Transform - pos: 73.5,-4.5 + pos: -20.5,7.5 parent: 2 - - uid: 7463 + - uid: 3490 components: - type: Transform - pos: 76.5,-4.5 + pos: -21.5,7.5 parent: 2 - - uid: 7478 +- proto: TableFrame + entities: + - uid: 16498 components: - type: Transform - pos: 86.5,-9.5 + pos: -66.5,-23.5 parent: 2 - - uid: 7504 +- proto: TableReinforced + entities: + - uid: 182 components: - type: Transform - pos: 73.5,-33.5 + rot: -1.5707963267948966 rad + pos: 14.5,-64.5 parent: 2 - - uid: 7516 + - uid: 758 components: - type: Transform - pos: 66.5,-28.5 + pos: 9.5,-48.5 parent: 2 - - uid: 7517 + - uid: 880 components: - type: Transform - pos: 66.5,-29.5 + pos: -32.5,14.5 parent: 2 - - uid: 7518 + - uid: 2243 components: - type: Transform - pos: 66.5,-30.5 + rot: 3.141592653589793 rad + pos: -6.5,-28.5 parent: 2 - - uid: 7520 + - uid: 2244 components: - type: Transform - pos: 67.5,-31.5 + rot: 3.141592653589793 rad + pos: -5.5,-28.5 parent: 2 - - uid: 7522 + - uid: 2245 components: - type: Transform - pos: 69.5,-31.5 + rot: 3.141592653589793 rad + pos: 0.5,-27.5 parent: 2 - - uid: 7523 + - uid: 2246 components: - type: Transform - pos: 70.5,-31.5 + rot: 3.141592653589793 rad + pos: -0.5,-27.5 parent: 2 - - uid: 7524 + - uid: 2247 components: - type: Transform - pos: 71.5,-31.5 + pos: 20.5,-23.5 parent: 2 - - uid: 7526 + - uid: 2248 components: - type: Transform - pos: 73.5,-31.5 + pos: 21.5,-23.5 parent: 2 - - uid: 7528 + - uid: 2249 components: - type: Transform - pos: 73.5,-29.5 + pos: 14.5,-15.5 parent: 2 - - uid: 7532 + - uid: 2250 components: - type: Transform - pos: 73.5,-25.5 + pos: 13.5,-15.5 parent: 2 - - uid: 7534 + - uid: 2251 components: - type: Transform - pos: 73.5,-23.5 + pos: 17.5,-22.5 parent: 2 - - uid: 7544 + - uid: 2252 components: - type: Transform - pos: 64.5,-31.5 + pos: 17.5,-21.5 parent: 2 - - uid: 7562 + - uid: 2253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-23.5 + pos: 17.5,-20.5 parent: 2 - - uid: 7565 + - uid: 2254 components: - type: Transform - pos: 64.5,19.5 + pos: 43.5,-22.5 parent: 2 - - uid: 7568 + - uid: 2255 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,18.5 + pos: 41.5,-23.5 parent: 2 - - uid: 7574 + - uid: 2256 components: - type: Transform - pos: 56.5,-15.5 + rot: 1.5707963267948966 rad + pos: 40.5,-23.5 parent: 2 - - uid: 7577 + - uid: 2257 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-34.5 + pos: 44.5,-23.5 parent: 2 - - uid: 7578 + - uid: 2258 components: - type: Transform - pos: 18.5,-36.5 + rot: 1.5707963267948966 rad + pos: 45.5,-23.5 parent: 2 - - uid: 7579 + - uid: 2259 components: - type: Transform - pos: 18.5,-37.5 + rot: -1.5707963267948966 rad + pos: -15.5,-28.5 parent: 2 - - uid: 7588 + - uid: 2260 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-40.5 + pos: -16.5,-28.5 parent: 2 - - uid: 7589 + - uid: 2261 components: - type: Transform - pos: 27.5,-38.5 + rot: 3.141592653589793 rad + pos: -13.5,-24.5 parent: 2 - - uid: 7594 + - uid: 2262 components: - type: Transform - pos: 26.5,-39.5 + rot: 3.141592653589793 rad + pos: -13.5,-25.5 parent: 2 - - uid: 7597 + - uid: 2263 components: - type: Transform - pos: 23.5,-39.5 + rot: 3.141592653589793 rad + pos: -13.5,-23.5 parent: 2 - - uid: 7602 + - uid: 2312 components: - type: Transform - pos: 18.5,-39.5 + pos: 27.5,-43.5 parent: 2 - - uid: 7628 + - uid: 4020 components: - type: Transform - pos: 27.5,-40.5 + rot: -1.5707963267948966 rad + pos: 38.5,-37.5 parent: 2 - - uid: 7630 + - uid: 4021 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-40.5 + pos: 42.5,-37.5 parent: 2 - - uid: 7633 + - uid: 4022 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-49.5 + pos: 35.5,-33.5 parent: 2 - - uid: 7634 + - uid: 4023 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-40.5 + pos: 45.5,-32.5 parent: 2 - - uid: 7635 + - uid: 4024 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-40.5 + pos: 35.5,-32.5 parent: 2 - - uid: 7638 + - uid: 4025 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-41.5 + pos: 45.5,-33.5 parent: 2 - - uid: 7640 + - uid: 4026 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-43.5 + pos: 38.5,-38.5 parent: 2 - - uid: 7642 + - uid: 4027 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-42.5 + pos: 42.5,-38.5 parent: 2 - - uid: 7643 + - uid: 4028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-43.5 + pos: 33.5,-38.5 parent: 2 - - uid: 7644 + - uid: 4029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-44.5 + pos: 34.5,-38.5 parent: 2 - - uid: 7646 + - uid: 4030 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-43.5 + pos: 48.5,-38.5 parent: 2 - - uid: 7647 + - uid: 4041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-40.5 + pos: 34.5,-37.5 parent: 2 - - uid: 7650 + - uid: 4042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-45.5 + pos: 32.5,-38.5 parent: 2 - - uid: 7652 + - uid: 4046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-46.5 + pos: 46.5,-38.5 parent: 2 - - uid: 7656 + - uid: 4047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-42.5 + pos: 46.5,-37.5 parent: 2 - - uid: 7657 + - uid: 4048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-43.5 + pos: 47.5,-38.5 parent: 2 - - uid: 7659 + - uid: 4075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-44.5 + pos: 44.5,-32.5 parent: 2 - - uid: 7663 + - uid: 4076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-46.5 + pos: 43.5,-32.5 parent: 2 - - uid: 7665 + - uid: 4077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-47.5 + pos: 36.5,-32.5 parent: 2 - - uid: 7674 + - uid: 4078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-47.5 + pos: 37.5,-32.5 parent: 2 - - uid: 7679 + - uid: 4094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-47.5 + rot: 3.141592653589793 rad + pos: 27.5,-30.5 parent: 2 - - uid: 7725 + - uid: 4095 components: - type: Transform - pos: 29.5,-49.5 + rot: 3.141592653589793 rad + pos: 25.5,-30.5 parent: 2 - - uid: 7728 + - uid: 4096 components: - type: Transform - pos: 31.5,-48.5 + rot: 3.141592653589793 rad + pos: 26.5,-30.5 parent: 2 - - uid: 7729 + - uid: 4125 components: - type: Transform - pos: 30.5,-48.5 + rot: 3.141592653589793 rad + pos: 26.5,-31.5 parent: 2 - - uid: 7731 + - uid: 4127 components: - type: Transform - pos: 22.5,-48.5 + rot: 3.141592653589793 rad + pos: 27.5,-31.5 parent: 2 - - uid: 7734 + - uid: 4128 components: - type: Transform - pos: 24.5,-48.5 + rot: 3.141592653589793 rad + pos: 25.5,-31.5 parent: 2 - - uid: 7740 + - uid: 4258 components: - type: Transform - pos: 17.5,-41.5 + rot: -1.5707963267948966 rad + pos: 28.5,11.5 parent: 2 - - uid: 7743 + - uid: 4259 components: - type: Transform - pos: 20.5,-41.5 + rot: -1.5707963267948966 rad + pos: 28.5,10.5 parent: 2 - - uid: 7752 + - uid: 4361 components: - type: Transform - pos: 13.5,-38.5 + pos: 37.5,-4.5 parent: 2 - - uid: 7753 + - uid: 4363 components: - type: Transform - pos: 16.5,-45.5 + pos: 36.5,-3.5 parent: 2 - - uid: 7754 + - uid: 4364 components: - type: Transform - pos: 20.5,-46.5 + pos: 36.5,-4.5 parent: 2 - - uid: 7761 + - uid: 4365 components: - type: Transform - pos: 17.5,-45.5 + pos: 36.5,-2.5 parent: 2 - - uid: 7765 + - uid: 4383 components: - type: Transform - pos: 4.5,-35.5 + pos: 30.5,0.5 parent: 2 - - uid: 7768 + - uid: 4384 components: - type: Transform - pos: 4.5,-33.5 + pos: 30.5,-0.5 parent: 2 - - uid: 7769 + - uid: 4385 components: - type: Transform - pos: 13.5,-37.5 + pos: 30.5,-1.5 parent: 2 - - uid: 7773 + - uid: 4386 components: - type: Transform - pos: -6.5,-33.5 + pos: 30.5,-2.5 parent: 2 - - uid: 7775 + - uid: 4521 components: - type: Transform - pos: 7.5,-37.5 + rot: -1.5707963267948966 rad + pos: -59.5,-24.5 parent: 2 - - uid: 7780 + - uid: 4522 components: - type: Transform - pos: -8.5,-41.5 + rot: -1.5707963267948966 rad + pos: -60.5,-24.5 parent: 2 - - uid: 7786 + - uid: 4523 components: - type: Transform - pos: 4.5,-37.5 + rot: -1.5707963267948966 rad + pos: -59.5,-26.5 parent: 2 - - uid: 7793 + - uid: 4525 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-48.5 + pos: -59.5,-25.5 parent: 2 - - uid: 7796 + - uid: 4526 components: - type: Transform - pos: 15.5,-45.5 + rot: -1.5707963267948966 rad + pos: -61.5,-24.5 parent: 2 - - uid: 7800 + - uid: 4527 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-63.5 + pos: -59.5,-27.5 parent: 2 - - uid: 7801 + - uid: 4533 components: - type: Transform - pos: 15.5,-43.5 + pos: -56.5,-26.5 parent: 2 - - uid: 7803 + - uid: 4534 components: - type: Transform - pos: 15.5,-42.5 + pos: -55.5,-26.5 parent: 2 - - uid: 7805 + - uid: 4535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-62.5 + pos: -54.5,-26.5 parent: 2 - - uid: 7811 + - uid: 4536 components: - type: Transform - pos: 26.5,-78.5 + pos: -55.5,-29.5 parent: 2 - - uid: 7815 + - uid: 4537 components: - type: Transform - pos: 27.5,-65.5 + pos: -54.5,-29.5 parent: 2 - - uid: 7821 + - uid: 4759 components: - type: Transform - pos: 15.5,-50.5 + rot: 1.5707963267948966 rad + pos: 0.5,23.5 parent: 2 - - uid: 7823 + - uid: 4760 components: - type: Transform - pos: 24.5,-62.5 + rot: 1.5707963267948966 rad + pos: 0.5,24.5 parent: 2 - - uid: 7825 + - uid: 4958 components: - type: Transform - pos: 13.5,-62.5 + rot: -1.5707963267948966 rad + pos: 5.5,25.5 parent: 2 - - uid: 7829 + - uid: 4959 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-53.5 + pos: 5.5,26.5 parent: 2 - - uid: 7838 + - uid: 5428 components: - type: Transform - pos: 13.5,-78.5 + pos: 24.5,13.5 parent: 2 - - uid: 7841 + - uid: 5429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-66.5 + pos: 24.5,14.5 parent: 2 - - uid: 7842 + - uid: 5456 components: - type: Transform - pos: 25.5,-79.5 + rot: 1.5707963267948966 rad + pos: 22.5,14.5 parent: 2 - - uid: 7843 + - uid: 5457 components: - type: Transform - pos: 11.5,-64.5 + rot: 1.5707963267948966 rad + pos: 22.5,13.5 parent: 2 - - uid: 7844 + - uid: 5527 components: - type: Transform - pos: 24.5,-66.5 + pos: 75.5,-15.5 parent: 2 - - uid: 7847 + - uid: 5540 components: - type: Transform - pos: 12.5,-66.5 + pos: 32.5,20.5 parent: 2 - - uid: 7850 + - uid: 5621 components: - type: Transform - pos: 17.5,-55.5 + rot: 3.141592653589793 rad + pos: 23.5,17.5 parent: 2 - - uid: 7851 + - uid: 5622 components: - type: Transform - pos: 13.5,-50.5 + rot: 3.141592653589793 rad + pos: 23.5,18.5 parent: 2 - - uid: 7852 + - uid: 5623 components: - type: Transform - pos: 24.5,-50.5 + rot: 3.141592653589793 rad + pos: 23.5,19.5 parent: 2 - - uid: 7853 + - uid: 5716 components: - type: Transform - pos: 17.5,-77.5 + rot: -1.5707963267948966 rad + pos: 34.5,22.5 parent: 2 - - uid: 7854 + - uid: 5717 components: - type: Transform - pos: 15.5,-77.5 + rot: -1.5707963267948966 rad + pos: 35.5,22.5 parent: 2 - - uid: 7857 + - uid: 5910 components: - type: Transform - pos: 21.5,-54.5 + rot: -1.5707963267948966 rad + pos: 55.5,-35.5 parent: 2 - - uid: 7860 + - uid: 5911 components: - type: Transform - pos: 24.5,-53.5 + rot: -1.5707963267948966 rad + pos: 54.5,-35.5 parent: 2 - - uid: 7863 + - uid: 6016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-66.5 + rot: 3.141592653589793 rad + pos: 42.5,10.5 parent: 2 - - uid: 7865 + - uid: 6018 components: - type: Transform - pos: 23.5,-54.5 + rot: 3.141592653589793 rad + pos: 46.5,10.5 parent: 2 - - uid: 7879 + - uid: 6582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-65.5 + rot: 3.141592653589793 rad + pos: 45.5,-7.5 parent: 2 - - uid: 7880 + - uid: 6584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-66.5 + rot: 3.141592653589793 rad + pos: 45.5,-4.5 parent: 2 - - uid: 7882 + - uid: 6585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-62.5 + rot: 3.141592653589793 rad + pos: 45.5,-1.5 parent: 2 - - uid: 7884 + - uid: 6586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-52.5 + rot: 3.141592653589793 rad + pos: 55.5,-1.5 parent: 2 - - uid: 7885 + - uid: 6588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-61.5 + rot: 3.141592653589793 rad + pos: 55.5,-7.5 parent: 2 - - uid: 7886 + - uid: 6596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-61.5 + pos: 63.5,4.5 parent: 2 - - uid: 7889 + - uid: 6604 components: - type: Transform - pos: 14.5,-61.5 + pos: 63.5,0.5 parent: 2 - - uid: 7891 + - uid: 6606 components: - type: Transform - pos: 22.5,-49.5 + rot: 1.5707963267948966 rad + pos: 50.5,-2.5 parent: 2 - - uid: 7892 + - uid: 6607 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-39.5 + rot: 1.5707963267948966 rad + pos: 50.5,-3.5 parent: 2 - - uid: 7895 + - uid: 6608 components: - type: Transform - pos: 10.5,-41.5 + rot: 1.5707963267948966 rad + pos: 50.5,-5.5 parent: 2 - - uid: 7897 + - uid: 6903 components: - type: Transform - pos: 12.5,-41.5 + pos: 61.5,17.5 parent: 2 - - uid: 7900 + - uid: 6904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-41.5 + pos: 61.5,16.5 parent: 2 - - uid: 7903 + - uid: 6906 components: - type: Transform - pos: 13.5,-40.5 + pos: 60.5,17.5 parent: 2 - - uid: 7947 + - uid: 6909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,17.5 + pos: 61.5,15.5 parent: 2 - - uid: 7963 + - uid: 7044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-47.5 + pos: 57.5,-6.5 parent: 2 - - uid: 7964 + - uid: 7053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-48.5 + pos: 61.5,-3.5 parent: 2 - - uid: 7967 + - uid: 7097 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-50.5 + pos: 59.5,-15.5 parent: 2 - - uid: 7969 + - uid: 7098 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-44.5 + pos: 58.5,-15.5 parent: 2 - - uid: 7970 + - uid: 7099 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-43.5 + pos: 60.5,-15.5 parent: 2 - - uid: 7971 + - uid: 7143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-43.5 + pos: 57.5,-11.5 parent: 2 - - uid: 7990 + - uid: 7144 components: - type: Transform - pos: 24.5,-61.5 + pos: 58.5,-11.5 parent: 2 - - uid: 7997 + - uid: 7145 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-33.5 + pos: 59.5,-11.5 parent: 2 - - uid: 8004 + - uid: 7166 components: - type: Transform - pos: -2.5,-37.5 + pos: 65.5,-26.5 parent: 2 - - uid: 8007 + - uid: 7172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-41.5 + pos: 66.5,-26.5 parent: 2 - - uid: 8012 + - uid: 7220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-55.5 + pos: 67.5,-13.5 parent: 2 - - uid: 8013 + - uid: 7221 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-33.5 + pos: 67.5,-14.5 parent: 2 - - uid: 8015 + - uid: 7222 components: - type: Transform - pos: 25.5,-62.5 + pos: 71.5,-13.5 parent: 2 - - uid: 8018 + - uid: 7223 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-38.5 + pos: 71.5,-14.5 parent: 2 - - uid: 8019 + - uid: 7256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-38.5 + pos: 71.5,-8.5 parent: 2 - - uid: 8022 + - uid: 7257 components: - type: Transform - pos: 27.5,-66.5 + pos: 71.5,-7.5 parent: 2 - - uid: 8040 + - uid: 7427 components: - type: Transform - pos: 15.5,-69.5 + pos: 44.5,16.5 parent: 2 - - uid: 8049 + - uid: 7616 components: - type: Transform - pos: 15.5,-67.5 + rot: 1.5707963267948966 rad + pos: 20.5,-38.5 parent: 2 - - uid: 8050 + - uid: 7617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-60.5 + rot: 1.5707963267948966 rad + pos: 21.5,-38.5 parent: 2 - - uid: 8051 + - uid: 7709 components: - type: Transform - pos: 24.5,-68.5 + rot: 1.5707963267948966 rad + pos: 26.5,-41.5 parent: 2 - - uid: 8052 + - uid: 7710 components: - type: Transform - pos: 24.5,-70.5 + rot: 1.5707963267948966 rad + pos: 27.5,-41.5 parent: 2 - - uid: 8058 + - uid: 7711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-66.5 + rot: 1.5707963267948966 rad + pos: 26.5,-46.5 parent: 2 - - uid: 8064 + - uid: 7712 components: - type: Transform - pos: 23.5,-74.5 + rot: 1.5707963267948966 rad + pos: 27.5,-46.5 parent: 2 - - uid: 8088 + - uid: 7777 components: - type: Transform - pos: -4.5,-37.5 + rot: -1.5707963267948966 rad + pos: 11.5,-40.5 parent: 2 - - uid: 8093 + - uid: 7779 components: - type: Transform - pos: -5.5,-37.5 + pos: 10.5,-37.5 parent: 2 - - uid: 8122 + - uid: 7996 components: - type: Transform - pos: 4.5,-43.5 + pos: 9.5,-37.5 parent: 2 - - uid: 8125 + - uid: 8000 components: - type: Transform - pos: 7.5,-43.5 + pos: 8.5,-37.5 parent: 2 - - uid: 8129 + - uid: 8135 components: - type: Transform - pos: 12.5,-36.5 + pos: 11.5,-37.5 parent: 2 - - uid: 8131 + - uid: 8139 components: - type: Transform - pos: 10.5,-36.5 + rot: -1.5707963267948966 rad + pos: 12.5,-40.5 parent: 2 - - uid: 8132 + - uid: 8554 components: - type: Transform - pos: 8.5,-36.5 + pos: 75.5,-11.5 parent: 2 - - uid: 8140 + - uid: 8753 components: - type: Transform - pos: 5.5,-44.5 + rot: 3.141592653589793 rad + pos: 45.5,12.5 parent: 2 - - uid: 8141 + - uid: 15813 components: - type: Transform - pos: 6.5,-44.5 + pos: -27.5,38.5 parent: 2 - - uid: 8144 + - uid: 15842 components: - type: Transform - pos: 6.5,-46.5 + pos: -28.5,38.5 parent: 2 - - uid: 8146 + - uid: 16259 components: - type: Transform - pos: 5.5,-47.5 + pos: -31.5,14.5 parent: 2 - - uid: 8155 + - uid: 16576 components: - type: Transform - pos: 5.5,-45.5 + rot: 3.141592653589793 rad + pos: 43.5,12.5 parent: 2 - - uid: 8156 + - uid: 17596 components: - type: Transform - pos: 14.5,-39.5 + rot: 1.5707963267948966 rad + pos: -20.5,13.5 parent: 2 - - uid: 8174 + - uid: 18460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,9.5 + pos: 57.5,-7.5 parent: 2 - - uid: 8202 + - uid: 20250 components: - type: Transform - pos: -2.5,-40.5 + rot: 3.141592653589793 rad + pos: 7.5,-48.5 parent: 2 - - uid: 8203 + - uid: 20606 components: - type: Transform - pos: -3.5,-42.5 + pos: 43.5,16.5 parent: 2 - - uid: 8342 + - uid: 20995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-41.5 + rot: 3.141592653589793 rad + pos: 91.5,-20.5 parent: 2 - - uid: 8491 + - uid: 20996 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-41.5 + pos: 90.5,-20.5 parent: 2 - - uid: 8519 + - uid: 21056 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-51.5 + pos: -34.5,-43.5 parent: 2 - - uid: 8523 + - uid: 21057 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-53.5 + pos: -34.5,-44.5 parent: 2 - - uid: 8707 + - uid: 21245 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-27.5 - parent: 2 - - uid: 9095 + pos: 7.5,2.5 + parent: 21128 + - uid: 21246 components: - type: Transform - pos: 14.5,-67.5 - parent: 2 - - uid: 9098 + pos: 7.5,1.5 + parent: 21128 + - uid: 21247 components: - type: Transform - pos: 14.5,-74.5 - parent: 2 - - uid: 9100 + pos: 9.5,2.5 + parent: 21128 + - uid: 21248 components: - type: Transform - pos: 21.5,-77.5 + pos: 9.5,1.5 + parent: 21128 + - uid: 21455 + components: + - type: Transform + pos: 8.5,-48.5 parent: 2 - - uid: 9101 + - uid: 21550 components: - type: Transform - pos: 13.5,-67.5 + rot: -1.5707963267948966 rad + pos: 14.5,-65.5 parent: 2 - - uid: 9106 + - uid: 21552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-33.5 + pos: 27.5,-44.5 parent: 2 - - uid: 9107 +- proto: TableReinforcedGlass + entities: + - uid: 6925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-33.5 + pos: 58.5,18.5 parent: 2 - - uid: 9113 +- proto: TableStone + entities: + - uid: 2266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,11.5 + pos: -34.5,-20.5 parent: 2 - - uid: 9116 + - uid: 2267 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,8.5 + pos: -34.5,-19.5 parent: 2 - - uid: 9123 +- proto: TableWood + entities: + - uid: 2269 components: - type: Transform - pos: -30.5,24.5 + pos: -13.5,3.5 parent: 2 - - uid: 9126 + - uid: 2271 components: - type: Transform - pos: -30.5,27.5 + pos: -13.5,0.5 parent: 2 - - uid: 9129 + - uid: 2272 components: - type: Transform - pos: -28.5,28.5 + pos: -13.5,2.5 parent: 2 - - uid: 9130 + - uid: 2273 components: - type: Transform - pos: -27.5,28.5 + pos: -13.5,-0.5 parent: 2 - - uid: 9132 + - uid: 2274 components: - type: Transform - pos: -27.5,30.5 + rot: 3.141592653589793 rad + pos: -16.5,7.5 parent: 2 - - uid: 9134 + - uid: 2277 components: - type: Transform - pos: -26.5,31.5 + pos: -17.5,-13.5 parent: 2 - - uid: 9136 + - uid: 2278 components: - type: Transform - pos: -24.5,31.5 + rot: 3.141592653589793 rad + pos: -19.5,-8.5 parent: 2 - - uid: 9138 + - uid: 2279 components: - type: Transform - pos: -27.5,25.5 + rot: 3.141592653589793 rad + pos: -20.5,-8.5 parent: 2 - - uid: 9141 + - uid: 2281 components: - type: Transform - pos: -30.5,30.5 + pos: -17.5,-17.5 parent: 2 - - uid: 9142 + - uid: 2282 components: - type: Transform - pos: -31.5,30.5 + pos: -17.5,-18.5 parent: 2 - - uid: 9145 + - uid: 2283 components: - type: Transform - pos: 84.5,-8.5 + pos: -19.5,-19.5 parent: 2 - - uid: 9152 + - uid: 2284 components: - type: Transform - pos: -27.5,33.5 + pos: -19.5,-20.5 parent: 2 - - uid: 9155 + - uid: 2285 components: - type: Transform - pos: -24.5,33.5 + pos: -17.5,-23.5 parent: 2 - - uid: 9191 + - uid: 2286 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,36.5 + pos: -18.5,-23.5 parent: 2 - - uid: 9195 + - uid: 2287 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,34.5 + pos: -21.5,-23.5 parent: 2 - - uid: 9206 + - uid: 2288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-19.5 + pos: -20.5,-23.5 parent: 2 - - uid: 9209 + - uid: 2289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-18.5 + rot: -1.5707963267948966 rad + pos: -37.5,-2.5 parent: 2 - - uid: 9210 + - uid: 2290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-18.5 + rot: -1.5707963267948966 rad + pos: -36.5,-1.5 parent: 2 - - uid: 9215 + - uid: 2291 components: - type: Transform - pos: -39.5,-37.5 + rot: -1.5707963267948966 rad + pos: -37.5,-1.5 parent: 2 - - uid: 10638 + - uid: 2292 components: - type: Transform - pos: 15.5,-68.5 + rot: -1.5707963267948966 rad + pos: -36.5,-2.5 parent: 2 - - uid: 10640 + - uid: 2293 components: - type: Transform - pos: 22.5,-77.5 + rot: -1.5707963267948966 rad + pos: -36.5,-3.5 parent: 2 - - uid: 10641 + - uid: 2294 components: - type: Transform - pos: 23.5,-67.5 + rot: -1.5707963267948966 rad + pos: -37.5,-3.5 parent: 2 - - uid: 10643 + - uid: 2301 components: - type: Transform - pos: 14.5,-76.5 + rot: -1.5707963267948966 rad + pos: -26.5,-2.5 parent: 2 - - uid: 10644 + - uid: 2302 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-55.5 + pos: -26.5,-1.5 parent: 2 - - uid: 10645 + - uid: 2303 components: - type: Transform - pos: 23.5,-71.5 + rot: -1.5707963267948966 rad + pos: -27.5,-1.5 parent: 2 - - uid: 10647 + - uid: 2304 components: - type: Transform - pos: 14.5,-66.5 + rot: -1.5707963267948966 rad + pos: -27.5,-3.5 parent: 2 - - uid: 10649 + - uid: 2305 components: - type: Transform - pos: 14.5,-70.5 + rot: -1.5707963267948966 rad + pos: -26.5,-3.5 parent: 2 - - uid: 10652 + - uid: 2306 components: - type: Transform - pos: 25.5,-66.5 + rot: -1.5707963267948966 rad + pos: -27.5,-2.5 parent: 2 - - uid: 11665 + - uid: 2309 components: - type: Transform - pos: 76.5,-32.5 + pos: -35.5,-8.5 parent: 2 - - uid: 12255 + - uid: 2310 components: - type: Transform - pos: 43.5,19.5 + pos: -35.5,-9.5 parent: 2 - - uid: 12462 + - uid: 2311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-28.5 + pos: -35.5,-10.5 parent: 2 - - uid: 12832 + - uid: 2314 components: - type: Transform - pos: 11.5,-52.5 + pos: -29.5,-9.5 parent: 2 - - uid: 12833 + - uid: 2315 components: - type: Transform - pos: 17.5,-76.5 + pos: -29.5,-8.5 parent: 2 - - uid: 12835 + - uid: 2316 components: - type: Transform - pos: 15.5,-74.5 + pos: -30.5,-37.5 parent: 2 - - uid: 12836 + - uid: 2317 components: - type: Transform - pos: 15.5,-72.5 + rot: 1.5707963267948966 rad + pos: -26.5,-38.5 parent: 2 - - uid: 12839 + - uid: 2318 components: - type: Transform - pos: 20.5,-76.5 + pos: -26.5,-36.5 parent: 2 - - uid: 13730 + - uid: 2319 components: - type: Transform - pos: 77.5,-32.5 + pos: -31.5,-37.5 parent: 2 - - uid: 14199 + - uid: 3880 components: - type: Transform - pos: 63.5,27.5 + rot: 1.5707963267948966 rad + pos: -48.5,-21.5 parent: 2 - - uid: 14632 + - uid: 3881 components: - type: Transform - pos: -37.5,-42.5 + rot: 1.5707963267948966 rad + pos: -49.5,-21.5 parent: 2 - - uid: 14672 + - uid: 3882 components: - type: Transform - pos: -61.5,-33.5 + rot: 1.5707963267948966 rad + pos: -50.5,-21.5 parent: 2 - - uid: 14956 + - uid: 3883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,30.5 + rot: 1.5707963267948966 rad + pos: -50.5,-22.5 parent: 2 - - uid: 14959 + - uid: 3884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,30.5 + rot: 1.5707963267948966 rad + pos: -49.5,-22.5 parent: 2 - - uid: 14960 + - uid: 3885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,30.5 + rot: 1.5707963267948966 rad + pos: -48.5,-22.5 parent: 2 - - uid: 15010 + - uid: 3886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,23.5 + rot: 1.5707963267948966 rad + pos: -45.5,-22.5 parent: 2 - - uid: 15012 + - uid: 3887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,21.5 + rot: 1.5707963267948966 rad + pos: -46.5,-21.5 parent: 2 - - uid: 15039 + - uid: 3888 components: - type: Transform - pos: -24.5,39.5 + rot: 1.5707963267948966 rad + pos: -46.5,-22.5 parent: 2 - - uid: 15044 + - uid: 3889 components: - type: Transform - pos: -29.5,39.5 + rot: 1.5707963267948966 rad + pos: -45.5,-21.5 parent: 2 - - uid: 15048 + - uid: 3890 components: - type: Transform - pos: -30.5,34.5 + rot: 1.5707963267948966 rad + pos: -44.5,-21.5 parent: 2 - - uid: 15049 + - uid: 3891 components: - type: Transform - pos: -30.5,33.5 + rot: 1.5707963267948966 rad + pos: -44.5,-22.5 parent: 2 - - uid: 15051 + - uid: 4933 components: - type: Transform - pos: -20.5,38.5 + pos: -26.5,28.5 parent: 2 - - uid: 15067 + - uid: 5032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,39.5 + pos: -11.5,32.5 parent: 2 - - uid: 15069 + - uid: 5033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,39.5 + rot: 1.5707963267948966 rad + pos: -13.5,32.5 parent: 2 - - uid: 15070 + - uid: 5038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,38.5 + rot: 1.5707963267948966 rad + pos: -13.5,33.5 parent: 2 - - uid: 15074 + - uid: 5039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,34.5 + rot: 1.5707963267948966 rad + pos: -12.5,32.5 parent: 2 - - uid: 15075 + - uid: 5696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,33.5 + pos: 33.5,15.5 parent: 2 - - uid: 15077 + - uid: 5697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,33.5 + pos: 33.5,14.5 parent: 2 - - uid: 15079 + - uid: 6393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,38.5 + pos: -38.5,-60.5 parent: 2 - - uid: 15082 + - uid: 6396 components: - type: Transform - pos: 18.5,24.5 + pos: -56.5,-60.5 parent: 2 - - uid: 15197 + - uid: 6397 components: - type: Transform - pos: 71.5,-3.5 + pos: -57.5,-60.5 parent: 2 - - uid: 15200 + - uid: 6398 components: - type: Transform - pos: 71.5,-0.5 + pos: -57.5,-61.5 parent: 2 - - uid: 15208 + - uid: 6399 components: - type: Transform - pos: 71.5,3.5 + pos: -56.5,-61.5 parent: 2 - - uid: 15217 + - uid: 6400 components: - type: Transform - pos: 70.5,7.5 + pos: -57.5,-62.5 parent: 2 - - uid: 15219 + - uid: 6401 components: - type: Transform - pos: 68.5,7.5 + pos: -56.5,-62.5 parent: 2 - - uid: 15244 + - uid: 6402 components: - type: Transform - pos: 67.5,22.5 + pos: -37.5,-60.5 parent: 2 - - uid: 15245 + - uid: 6403 components: - type: Transform - pos: 66.5,22.5 + pos: -38.5,-61.5 parent: 2 - - uid: 15397 + - uid: 6404 components: - type: Transform - pos: 21.5,-39.5 + pos: -37.5,-61.5 parent: 2 - - uid: 15590 + - uid: 6405 components: - type: Transform - pos: 7.5,-45.5 + pos: -38.5,-62.5 parent: 2 - - uid: 15599 + - uid: 6406 components: - type: Transform - pos: 43.5,17.5 + pos: -37.5,-62.5 parent: 2 - - uid: 15847 + - uid: 6738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-70.5 + rot: 3.141592653589793 rad + pos: 54.5,11.5 parent: 2 - - uid: 15848 + - uid: 6739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-69.5 + rot: 3.141592653589793 rad + pos: 54.5,10.5 parent: 2 - - uid: 15850 + - uid: 7417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-68.5 + pos: 70.5,-20.5 parent: 2 - - uid: 15859 + - uid: 7418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-67.5 + pos: 71.5,-20.5 parent: 2 - - uid: 15876 + - uid: 9159 components: - type: Transform - pos: -17.5,41.5 + pos: -25.5,28.5 parent: 2 - - uid: 15883 + - uid: 13487 components: - type: Transform - pos: -11.5,42.5 + pos: 40.5,-30.5 parent: 2 - - uid: 15885 + - uid: 14062 components: - type: Transform - pos: -10.5,41.5 + pos: -35.5,-15.5 parent: 2 - - uid: 15942 + - uid: 14784 components: - type: Transform - pos: -43.5,18.5 + pos: -30.5,-15.5 parent: 2 - - uid: 15946 + - uid: 14991 components: - type: Transform - pos: -44.5,15.5 + rot: -1.5707963267948966 rad + pos: -35.5,23.5 parent: 2 - - uid: 16002 + - uid: 14994 components: - type: Transform - pos: -21.5,-45.5 + rot: -1.5707963267948966 rad + pos: -38.5,28.5 parent: 2 - - uid: 16004 + - uid: 14995 components: - type: Transform - pos: -19.5,-45.5 + rot: -1.5707963267948966 rad + pos: -34.5,22.5 parent: 2 - - uid: 16023 + - uid: 14996 components: - type: Transform - pos: -23.5,-44.5 + rot: -1.5707963267948966 rad + pos: -34.5,23.5 parent: 2 - - uid: 16025 + - uid: 14997 components: - type: Transform - pos: -20.5,-45.5 + rot: -1.5707963267948966 rad + pos: -34.5,28.5 parent: 2 - - uid: 16090 + - uid: 14998 components: - type: Transform - pos: 63.5,28.5 + rot: -1.5707963267948966 rad + pos: -37.5,23.5 parent: 2 - - uid: 16091 + - uid: 14999 components: - type: Transform - pos: 60.5,28.5 + rot: -1.5707963267948966 rad + pos: -36.5,23.5 parent: 2 - - uid: 16095 + - uid: 15020 components: - type: Transform - pos: 58.5,28.5 + rot: 1.5707963267948966 rad + pos: -36.5,21.5 parent: 2 - - uid: 16099 + - uid: 15921 components: - type: Transform - pos: 55.5,27.5 + pos: -15.5,41.5 parent: 2 - - uid: 16154 + - uid: 15922 components: - type: Transform - pos: 71.5,-36.5 + pos: -12.5,41.5 parent: 2 - - uid: 16167 + - uid: 16232 components: - type: Transform - pos: -37.5,-46.5 + pos: 81.5,-22.5 parent: 2 - - uid: 16170 + - uid: 16233 components: - type: Transform - pos: 84.5,-31.5 + pos: 81.5,-23.5 parent: 2 - - uid: 16177 + - uid: 16444 components: - type: Transform - pos: 84.5,-24.5 + pos: -30.5,-45.5 parent: 2 - - uid: 16262 + - uid: 16500 components: - type: Transform - pos: 20.5,-39.5 + pos: -66.5,-24.5 parent: 2 - - uid: 16308 + - uid: 17257 components: - type: Transform - pos: 78.5,-4.5 + pos: 65.5,-52.5 parent: 2 - - uid: 16312 + - uid: 20418 components: - type: Transform - pos: 80.5,-4.5 + pos: 81.5,-35.5 parent: 2 - - uid: 16314 +- proto: TargetClown + entities: + - uid: 16841 components: - type: Transform - pos: 83.5,-5.5 + pos: 9.5,39.5 parent: 2 - - uid: 16316 +- proto: TargetDarts + entities: + - uid: 21576 components: - type: Transform - pos: 83.5,-7.5 + pos: -36.5,27.5 parent: 2 - - uid: 16337 +- proto: TargetSyndicate + entities: + - uid: 21066 components: - type: Transform - pos: 53.5,25.5 + pos: -36.5,-43.5 parent: 2 - - uid: 16343 +- proto: TelecomServer + entities: + - uid: 7431 components: - type: Transform - pos: 54.5,25.5 + pos: 68.5,-29.5 parent: 2 - - uid: 16346 +- proto: TelecomServerFilledCargo + entities: + - uid: 14231 components: - type: Transform - pos: 49.5,25.5 + pos: 24.5,-43.5 parent: 2 - - uid: 16390 +- proto: TelecomServerFilledCommand + entities: + - uid: 14232 components: - type: Transform - pos: 17.5,26.5 + pos: 58.5,-32.5 parent: 2 - - uid: 16423 + - uid: 14239 components: - type: Transform - pos: -26.5,-44.5 + pos: 24.5,-44.5 parent: 2 - - uid: 16429 +- proto: TelecomServerFilledCommon + entities: + - uid: 14234 components: - type: Transform - pos: 16.5,28.5 + pos: 25.5,-41.5 parent: 2 - - uid: 16430 +- proto: TelecomServerFilledEngineering + entities: + - uid: 14237 components: - type: Transform - pos: -31.5,-46.5 + pos: 25.5,-46.5 parent: 2 - - uid: 16457 +- proto: TelecomServerFilledMedical + entities: + - uid: 14233 components: - type: Transform - pos: -59.5,-37.5 + pos: 24.5,-46.5 parent: 2 - - uid: 16458 +- proto: TelecomServerFilledScience + entities: + - uid: 14238 components: - type: Transform - pos: -58.5,-37.5 + pos: 25.5,-43.5 parent: 2 - - uid: 16460 +- proto: TelecomServerFilledSecurity + entities: + - uid: 14236 components: - type: Transform - pos: -56.5,-37.5 + pos: 25.5,-44.5 parent: 2 - - uid: 16462 +- proto: TelecomServerFilledService + entities: + - uid: 14235 components: - type: Transform - pos: -54.5,-37.5 + pos: 24.5,-41.5 parent: 2 - - uid: 16488 +- proto: Thruster + entities: + - uid: 15142 components: - type: Transform - pos: -68.5,-26.5 + pos: -33.5,34.5 parent: 2 - - uid: 16490 + - uid: 15143 components: - type: Transform - pos: -68.5,-24.5 + pos: -33.5,35.5 parent: 2 - - uid: 16494 + - uid: 15144 components: - type: Transform - pos: -65.5,-22.5 + pos: -32.5,34.5 parent: 2 - - uid: 16495 + - uid: 15145 components: - type: Transform - pos: -67.5,-22.5 + pos: -32.5,35.5 parent: 2 - - uid: 16510 + - uid: 21205 components: - type: Transform - pos: 16.5,30.5 - parent: 2 - - uid: 16511 + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 21128 + - uid: 21206 components: - type: Transform - pos: 16.5,31.5 - parent: 2 - - uid: 16518 + rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 21128 +- proto: TintedWindow + entities: + - uid: 2021 components: - type: Transform - pos: 48.5,22.5 + pos: 47.5,-4.5 parent: 2 - - uid: 16520 + - uid: 2022 components: - type: Transform - pos: 46.5,22.5 + pos: 53.5,-7.5 parent: 2 - - uid: 16570 + - uid: 2023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,43.5 + pos: 47.5,-7.5 parent: 2 - - uid: 16572 + - uid: 2024 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,43.5 + pos: 47.5,-1.5 parent: 2 - - uid: 16574 + - uid: 2025 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,43.5 + pos: 53.5,-1.5 parent: 2 - - uid: 16604 + - uid: 2026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-43.5 + pos: -22.5,-41.5 parent: 2 - - uid: 16613 + - uid: 6887 components: - type: Transform - pos: 85.5,-23.5 + rot: 1.5707963267948966 rad + pos: 61.5,0.5 parent: 2 - - uid: 16622 + - uid: 6888 components: - type: Transform - pos: 17.5,37.5 + rot: 1.5707963267948966 rad + pos: 61.5,4.5 parent: 2 - - uid: 16624 +- proto: ToiletEmpty + entities: + - uid: 2320 components: - type: Transform - pos: 17.5,35.5 + rot: 1.5707963267948966 rad + pos: 35.5,-22.5 parent: 2 - - uid: 16626 + - uid: 5006 components: - type: Transform - pos: 17.5,34.5 + rot: 1.5707963267948966 rad + pos: -6.5,40.5 parent: 2 - - uid: 16713 + - uid: 5286 components: - type: Transform - pos: 22.5,-75.5 + rot: -1.5707963267948966 rad + pos: 3.5,40.5 parent: 2 - - uid: 16734 + - uid: 8225 components: - type: Transform - pos: 23.5,-70.5 + rot: -1.5707963267948966 rad + pos: 17.5,23.5 parent: 2 - - uid: 16773 + - uid: 8235 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-42.5 + pos: 17.5,25.5 parent: 2 - - uid: 16774 +- proto: ToiletGoldenDirtyWater + entities: + - uid: 4593 components: - type: Transform - pos: 55.5,-42.5 + pos: 45.5,-27.5 parent: 2 - - uid: 16775 +- proto: ToolboxArtisticFilled + entities: + - uid: 5117 components: - type: Transform - pos: 55.5,-41.5 + pos: -34.515057,-20.462738 parent: 2 - - uid: 16790 +- proto: ToolboxElectricalFilled + entities: + - uid: 4370 components: - type: Transform - pos: 62.5,-37.5 + pos: 36.492764,-3.2268338 parent: 2 - - uid: 16794 + - uid: 16124 components: - type: Transform - pos: 66.5,-37.5 + pos: 1.5326661,-19.32547 parent: 2 - - uid: 16801 + - uid: 22353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-40.5 + pos: 17.546753,-62.23559 parent: 2 - - uid: 16813 +- proto: ToolboxEmergencyFilled + entities: + - uid: 2322 components: - type: Transform - pos: 43.5,-57.5 + pos: 1.4969568,-19.241749 parent: 2 - - uid: 16822 + - uid: 4369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-26.5 + pos: 36.51111,-2.9332993 parent: 2 - - uid: 16828 +- proto: ToolboxGoldFilled + entities: + - uid: 5914 components: - type: Transform - pos: 30.5,-52.5 + pos: 54.499077,-35.417862 parent: 2 - - uid: 16852 +- proto: ToolboxMechanical + entities: + - uid: 22354 components: - type: Transform - pos: 5.5,56.5 + pos: 17.546753,-62.492435 parent: 2 - - uid: 16854 +- proto: ToolboxMechanicalFilled + entities: + - uid: 2323 components: - type: Transform - pos: 6.5,55.5 + pos: 1.5282068,-19.507374 parent: 2 - - uid: 16856 + - uid: 4371 components: - type: Transform - pos: -5.5,55.5 + pos: 36.51111,-3.538714 parent: 2 - - uid: 16859 + - uid: 5747 components: - type: Transform - pos: -9.5,51.5 + pos: 28.502048,12.539796 parent: 2 - - uid: 16862 +- proto: ToyFigurineClown + entities: + - uid: 2324 components: - type: Transform - pos: -6.5,51.5 + pos: -20.040586,-13.42651 parent: 2 - - uid: 17018 +- proto: ToyFigurineFootsoldier + entities: + - uid: 21063 components: - type: Transform - pos: 24.5,-67.5 + pos: -34.32448,-43.488884 parent: 2 - - uid: 17020 +- proto: ToyFigurineNukieCommander + entities: + - uid: 5942 components: - type: Transform - pos: 24.5,-74.5 + pos: 38.483326,-38.004993 parent: 2 - - uid: 17070 +- proto: ToyFigurineNukieElite + entities: + - uid: 21061 components: - type: Transform - pos: 39.5,-52.5 + pos: -34.63432,-43.333965 parent: 2 - - uid: 17071 +- proto: ToyFigurinePassenger + entities: + - uid: 2325 components: - type: Transform - pos: 49.5,-56.5 + pos: -20.274961,-14.23901 parent: 2 - - uid: 17072 +- proto: ToyFigurineSpaceDragon + entities: + - uid: 2326 components: - type: Transform - pos: 55.5,-48.5 + pos: -19.618711,-14.223385 parent: 2 - - uid: 17073 +- proto: ToyNuke + entities: + - uid: 2327 components: - type: Transform - pos: 61.5,-56.5 + pos: -19.44582,-13.477165 parent: 2 - - uid: 17074 +- proto: ToyRubberDuck + entities: + - uid: 1971 components: - type: Transform - pos: 64.5,-48.5 + pos: 45.5,-30.5 parent: 2 - - uid: 17197 + - uid: 5256 components: - type: Transform - pos: 66.5,-35.5 + pos: 0.7634096,47.159733 parent: 2 - - uid: 17202 +- proto: ToySpawner + entities: + - uid: 14225 components: - type: Transform - pos: 64.5,-49.5 + pos: 55.5,-25.5 parent: 2 - - uid: 17209 +- proto: TrainingBomb + entities: + - uid: 2135 components: - type: Transform - pos: 67.5,-48.5 + pos: -5.5,32.5 parent: 2 - - uid: 17210 +- proto: TrashBag + entities: + - uid: 5273 components: - type: Transform - pos: 65.5,-48.5 + pos: -4.987312,48.64716 parent: 2 - - uid: 17211 +- proto: TrashBakedBananaPeel + entities: + - uid: 16479 components: - type: Transform - pos: 66.5,-48.5 + pos: -59.62266,-35.23038 parent: 2 - - uid: 17232 + - uid: 16480 components: - type: Transform - pos: 64.5,-37.5 + pos: -59.42697,-35.426067 parent: 2 - - uid: 17247 +- proto: TrashBananaPeel + entities: + - uid: 2328 components: - type: Transform - pos: 67.5,-49.5 + pos: -27.617392,-17.536655 parent: 2 - - uid: 17327 +- proto: trayScanner + entities: + - uid: 21861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-38.5 + pos: 58.334652,-7.458692 parent: 2 - - uid: 17354 +- proto: TwoWayLever + entities: + - uid: 5553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-29.5 + pos: 30.5,23.5 parent: 2 - - uid: 18469 + - type: DeviceLinkSource + linkedPorts: + 5554: + - Left: Forward + - Right: Reverse + - Middle: Off + 5510: + - Left: Forward + - Right: Reverse + - Middle: Off + 7406: + - Left: Forward + - Right: Reverse + - Middle: Off + 5478: + - Left: Forward + - Right: Reverse + - Middle: Off + 5475: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 7940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-6.5 + pos: -10.5,-39.5 parent: 2 - - uid: 18470 + - type: DeviceLinkSource + linkedPorts: + 7915: + - Left: Forward + - Right: Reverse + - Middle: Off + 2696: + - Left: Forward + - Right: Reverse + - Middle: Off + 9233: + - Left: Forward + - Right: Reverse + - Middle: Off + 20107: + - Left: Forward + - Right: Reverse + - Middle: Off + 7905: + - Left: Forward + - Right: Reverse + - Middle: Off + 16910: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 15603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-7.5 + pos: 24.5,23.5 parent: 2 - - uid: 18475 + - type: DeviceLinkSource + linkedPorts: + 8553: + - Left: Forward + - Right: Reverse + - Middle: Off + 17528: + - Left: Forward + - Right: Reverse + - Middle: Off + 17529: + - Left: Forward + - Right: Reverse + - Middle: Off + 17530: + - Left: Forward + - Right: Reverse + - Middle: Off + 17531: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 17334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-4.5 + pos: 33.5,19.5 parent: 2 - - uid: 18579 + - type: DeviceLinkSource + linkedPorts: + 5714: + - Left: Reverse + - Right: Forward + - Middle: Off + 8321: + - Left: Reverse + - Right: Forward + - Middle: Off + 5732: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 20106 components: - type: Transform - pos: 15.5,-75.5 + pos: -11.5,-39.5 parent: 2 - - uid: 19151 + - type: DeviceLinkSource + linkedPorts: + 7916: + - Left: Forward + - Right: Reverse + - Middle: Off + 7913: + - Left: Forward + - Right: Reverse + - Middle: Off + 8665: + - Left: Forward + - Right: Reverse + - Middle: Off + 7912: + - Left: Forward + - Right: Reverse + - Middle: Off + 7911: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UnfinishedMachineFrame + entities: + - uid: 15086 components: - type: Transform - pos: 19.5,-76.5 + pos: -3.5,-38.5 parent: 2 - - uid: 20088 + - uid: 16136 components: - type: Transform - pos: 16.5,-75.5 + pos: 60.5,26.5 parent: 2 - - uid: 20089 + - uid: 21199 components: - type: Transform - pos: 23.5,-75.5 - parent: 2 - - uid: 20097 + pos: 2.5,-8.5 + parent: 21128 + - uid: 21200 components: - type: Transform - pos: 22.5,-76.5 - parent: 2 - - uid: 20201 + pos: 8.5,-7.5 + parent: 21128 + - uid: 21201 components: - type: Transform - pos: 19.5,-77.5 - parent: 2 - - uid: 20303 + pos: 10.5,4.5 + parent: 21128 + - uid: 21202 components: - type: Transform - pos: 15.5,38.5 + pos: 8.5,3.5 + parent: 21128 +- proto: UniformPrinter + entities: + - uid: 2329 + components: + - type: Transform + pos: 40.5,-25.5 parent: 2 - - uid: 20356 +- proto: UniformShortsRedWithTop + entities: + - uid: 21032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,39.5 + pos: -30.471287,-24.425285 parent: 2 - - uid: 20357 +- proto: Vaccinator + entities: + - uid: 6913 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,42.5 + pos: 58.5,17.5 parent: 2 - - uid: 20360 +- proto: VendingBarDrobe + entities: + - uid: 2331 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,43.5 + pos: -17.5,7.5 parent: 2 - - uid: 20362 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 2332 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,43.5 + pos: 14.5,-18.5 parent: 2 - - uid: 20364 +- proto: VendingMachineBooze + entities: + - uid: 14972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,42.5 + pos: -37.5,21.5 parent: 2 - - uid: 20367 + - uid: 20296 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,39.5 + pos: -15.5,-0.5 parent: 2 - - uid: 20398 +- proto: VendingMachineCargoDrobe + entities: + - uid: 16906 components: - type: Transform - pos: 83.5,-36.5 + pos: 23.5,22.5 parent: 2 - - uid: 20400 +- proto: VendingMachineCart + entities: + - uid: 2333 components: - type: Transform - pos: 84.5,-35.5 + pos: 39.5,-25.5 parent: 2 - - uid: 20402 +- proto: VendingMachineChapel + entities: + - uid: 2334 components: - type: Transform - pos: 84.5,-33.5 + pos: -30.5,-36.5 parent: 2 - - uid: 20405 +- proto: VendingMachineChefDrobe + entities: + - uid: 2335 components: - type: Transform - pos: 79.5,-34.5 + pos: -18.5,14.5 parent: 2 - - uid: 20406 +- proto: VendingMachineChefvend + entities: + - uid: 2336 components: - type: Transform - pos: 79.5,-33.5 + pos: -18.5,13.5 parent: 2 - - uid: 20529 +- proto: VendingMachineChemDrobe + entities: + - uid: 5996 components: - type: Transform - pos: -41.5,22.5 + pos: 41.5,12.5 parent: 2 - - uid: 20531 +- proto: VendingMachineChemicals + entities: + - uid: 711 components: - type: Transform - pos: -42.5,21.5 + pos: 41.5,13.5 parent: 2 - - uid: 20533 +- proto: VendingMachineCigs + entities: + - uid: 2337 components: - type: Transform - pos: -44.5,22.5 + pos: -39.5,-24.5 parent: 2 - - uid: 20536 + - uid: 4170 components: - type: Transform - pos: -44.5,24.5 + pos: 24.5,-33.5 parent: 2 - - uid: 20879 + - uid: 4960 components: - type: Transform - pos: 87.5,-10.5 + pos: 5.5,28.5 parent: 2 - - uid: 20883 + - uid: 8214 components: - type: Transform - pos: 89.5,-10.5 + pos: 41.5,-6.5 parent: 2 - - uid: 20889 + - uid: 16144 components: - type: Transform - pos: 91.5,-10.5 + pos: 13.5,-33.5 parent: 2 - - uid: 20902 + - uid: 20607 components: - type: Transform - pos: 93.5,-16.5 + pos: -21.5,-4.5 parent: 2 - - uid: 20924 +- proto: VendingMachineClothing + entities: + - uid: 1593 components: - type: Transform - rot: 3.141592653589793 rad - pos: 93.5,-21.5 + pos: 38.5,0.5 parent: 2 - - uid: 20925 + - uid: 2340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.5,-21.5 + pos: -38.5,-13.5 parent: 2 - - uid: 20930 + - uid: 20610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-21.5 + pos: -21.5,-3.5 parent: 2 - - uid: 20932 +- proto: VendingMachineCoffee + entities: + - uid: 2341 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,-23.5 + pos: -17.5,-15.5 parent: 2 - - uid: 20935 + - uid: 2342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-23.5 + pos: -28.5,-24.5 parent: 2 - - uid: 21398 + - uid: 4167 components: - type: Transform - pos: -21.5,-48.5 + pos: 23.5,-33.5 parent: 2 - - uid: 21453 +- proto: VendingMachineCondiments + entities: + - uid: 2343 components: - type: Transform - pos: -64.5,-33.5 + pos: -23.5,14.5 parent: 2 - - uid: 21460 +- proto: VendingMachineCuraDrobe + entities: + - uid: 1555 components: - type: Transform - pos: 24.5,-76.5 + pos: -20.5,-10.5 parent: 2 - - uid: 21461 +- proto: VendingMachineDetDrobe + entities: + - uid: 9177 components: - type: Transform - pos: 14.5,-71.5 + pos: -26.5,25.5 parent: 2 - - uid: 21463 +- proto: VendingMachineDinnerware + entities: + - uid: 2344 components: - type: Transform - pos: 15.5,-62.5 + pos: -18.5,12.5 parent: 2 - - uid: 21525 +- proto: VendingMachineEngiDrobe + entities: + - uid: 2345 components: - type: Transform - pos: 24.5,-72.5 + pos: -9.5,-23.5 parent: 2 - - uid: 21526 +- proto: VendingMachineEngivend + entities: + - uid: 2346 components: - type: Transform - pos: 24.5,-73.5 + pos: -8.5,-23.5 parent: 2 - - uid: 21528 +- proto: VendingMachineGames + entities: + - uid: 2347 components: - type: Transform - pos: 11.5,-66.5 + pos: -17.5,-12.5 parent: 2 - - uid: 21587 + - uid: 5167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-49.5 + pos: -6.5,45.5 parent: 2 - - uid: 21588 +- proto: VendingMachineHydrobe + entities: + - uid: 14630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-50.5 + pos: -38.5,11.5 parent: 2 - - uid: 21589 +- proto: VendingMachineJaniDrobe + entities: + - uid: 2349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-49.5 + pos: -18.5,-25.5 parent: 2 - - uid: 21671 +- proto: VendingMachineLawDrobe + entities: + - uid: 4501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,18.5 + pos: -44.5,-13.5 parent: 2 - - uid: 21748 +- proto: VendingMachineMedical + entities: + - uid: 6690 components: - type: Transform - pos: 42.5,16.5 + pos: 50.5,-4.5 parent: 2 - - uid: 22006 + - uid: 6691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-59.5 + pos: 48.5,5.5 parent: 2 - - uid: 22038 +- proto: VendingMachineMediDrobe + entities: + - uid: 6692 components: - type: Transform - pos: 20.5,-71.5 + pos: 54.5,4.5 parent: 2 - - uid: 22041 +- proto: VendingMachineNutri + entities: + - uid: 16120 components: - type: Transform - pos: 18.5,-71.5 + pos: -29.5,17.5 parent: 2 - - uid: 22042 +- proto: VendingMachineRoboDrobe + entities: + - uid: 7102 components: - type: Transform - pos: 20.5,-74.5 + pos: 60.5,-26.5 parent: 2 - - uid: 22043 +- proto: VendingMachineRobotics + entities: + - uid: 7161 components: - type: Transform - pos: 18.5,-74.5 + pos: 60.5,-25.5 parent: 2 - - uid: 22044 +- proto: VendingMachineSalvage + entities: + - uid: 5705 components: - type: Transform - pos: 19.5,-74.5 + pos: 33.5,22.5 parent: 2 - - uid: 22174 +- proto: VendingMachineSciDrobe + entities: + - uid: 4277 components: - type: Transform - pos: 18.5,-73.5 + pos: 67.5,-10.5 parent: 2 - - uid: 22177 +- proto: VendingMachineSec + entities: + - uid: 5051 components: - type: Transform - pos: 20.5,-73.5 + pos: -4.5,34.5 parent: 2 - - uid: 22448 +- proto: VendingMachineSecDrobe + entities: + - uid: 5052 components: - type: Transform - pos: -63.5,-33.5 + pos: -4.5,33.5 parent: 2 -- proto: WallReinforcedRust +- proto: VendingMachineSeeds entities: - - uid: 597 + - uid: 15399 components: - type: Transform - pos: 14.5,-73.5 + pos: -30.5,17.5 parent: 2 - - uid: 2330 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 5210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-42.5 + pos: -3.5,52.5 parent: 2 - - uid: 2368 + - uid: 16332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-42.5 + pos: 80.5,-7.5 parent: 2 - - uid: 2370 +- proto: VendingMachineSustenance + entities: + - uid: 5168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-43.5 + pos: -6.5,46.5 parent: 2 - - uid: 2372 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 2353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-41.5 + pos: 23.5,-20.5 parent: 2 - - uid: 2374 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 7615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,11.5 + pos: 19.5,-38.5 parent: 2 - - uid: 2376 + - uid: 8982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,11.5 + pos: 36.5,22.5 parent: 2 - - uid: 2379 + - uid: 15147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,11.5 + pos: -31.5,35.5 parent: 2 - - uid: 2384 + - uid: 20608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,11.5 + pos: -9.5,-25.5 parent: 2 - - uid: 2385 +- proto: VendingMachineTheater + entities: + - uid: 2354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,11.5 + pos: -38.5,-12.5 parent: 2 - - uid: 2387 + - uid: 2355 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,11.5 + pos: -36.5,7.5 parent: 2 - - uid: 2390 + - uid: 4356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,11.5 + pos: 39.5,-0.5 parent: 2 - - uid: 2392 +- proto: VendingMachineVendomat + entities: + - uid: 1352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,11.5 + pos: -3.5,-23.5 parent: 2 - - uid: 2394 + - uid: 2890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-9.5 + pos: 37.5,0.5 parent: 2 - - uid: 2397 +- proto: VendingMachineViroDrobe + entities: + - uid: 6912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,11.5 + pos: 61.5,14.5 parent: 2 - - uid: 2399 +- proto: VendingMachineWinter + entities: + - uid: 2358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,9.5 + pos: -38.5,-14.5 parent: 2 - - uid: 2402 + - uid: 4357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,7.5 + pos: 39.5,-1.5 parent: 2 - - uid: 2404 +- proto: VendingMachineYouTool + entities: + - uid: 2359 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,4.5 + pos: -7.5,-23.5 parent: 2 - - uid: 2407 + - uid: 4354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,2.5 + pos: 36.5,0.5 parent: 2 - - uid: 2410 +- proto: WallmountTelevision + entities: + - uid: 545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-0.5 + pos: 5.5,22.5 parent: 2 - - uid: 2412 + - uid: 8920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-2.5 + pos: -19.5,22.5 parent: 2 - - uid: 2413 + - uid: 8921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 + rot: -1.5707963267948966 rad + pos: -40.5,5.5 parent: 2 - - uid: 2416 + - uid: 8922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-8.5 + pos: -34.5,-23.5 parent: 2 - - uid: 2418 + - uid: 21745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-10.5 + pos: -10.5,-32.5 parent: 2 - - uid: 2420 +- proto: WallPlastic + entities: + - uid: 2360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-10.5 + pos: -30.5,-16.5 parent: 2 - - uid: 2424 + - uid: 2361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-10.5 + pos: -27.5,-16.5 parent: 2 - - uid: 2426 + - uid: 2362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-10.5 + pos: -29.5,-16.5 parent: 2 - - uid: 2427 + - uid: 2363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-10.5 + pos: -30.5,-17.5 parent: 2 - - uid: 2429 + - uid: 2364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-10.5 + pos: -30.5,-18.5 parent: 2 - - uid: 2430 + - uid: 2365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 + pos: -30.5,-19.5 parent: 2 - - uid: 2433 + - uid: 2366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-10.5 + pos: -30.5,-20.5 parent: 2 - - uid: 2435 +- proto: WallReinforced + entities: + - uid: 48 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-10.5 + rot: -1.5707963267948966 rad + pos: 5.5,-49.5 parent: 2 - - uid: 2436 + - uid: 103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-10.5 + rot: -1.5707963267948966 rad + pos: 54.5,-43.5 parent: 2 - - uid: 2437 + - uid: 851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-7.5 + rot: -1.5707963267948966 rad + pos: 6.5,-50.5 parent: 2 - - uid: 2439 + - uid: 1084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-6.5 + pos: -38.5,-43.5 parent: 2 - - uid: 2440 + - uid: 1447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-4.5 + pos: -62.5,-21.5 parent: 2 - - uid: 2442 + - uid: 2002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-2.5 + pos: 50.5,-42.5 parent: 2 - - uid: 2443 + - uid: 2012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,4.5 + pos: 37.5,-31.5 parent: 2 - - uid: 2448 + - uid: 2035 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,3.5 + pos: -55.5,5.5 parent: 2 - - uid: 2449 + - uid: 2037 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,9.5 + pos: -55.5,-0.5 parent: 2 - - uid: 2450 + - uid: 2106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,7.5 + rot: -1.5707963267948966 rad + pos: 56.5,-43.5 parent: 2 - - uid: 2452 + - uid: 2367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-12.5 + pos: -8.5,11.5 parent: 2 - - uid: 2457 + - uid: 2369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-12.5 + pos: -9.5,11.5 parent: 2 - - uid: 2458 + - uid: 2371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-15.5 + pos: -6.5,11.5 parent: 2 - - uid: 2459 + - uid: 2373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-15.5 + pos: -4.5,11.5 parent: 2 - - uid: 2461 + - uid: 2375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 + pos: -3.5,11.5 parent: 2 - - uid: 2463 + - uid: 2377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-0.5 + pos: -1.5,11.5 parent: 2 - - uid: 2466 + - uid: 2378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-11.5 + pos: 0.5,11.5 parent: 2 - - uid: 2467 + - uid: 2380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-13.5 + pos: 2.5,11.5 parent: 2 - - uid: 2468 + - uid: 2381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-15.5 + pos: 3.5,11.5 parent: 2 - - uid: 2472 + - uid: 2382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-16.5 + pos: 4.5,11.5 parent: 2 - - uid: 2473 + - uid: 2383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-16.5 + pos: 7.5,11.5 parent: 2 - - uid: 2474 + - uid: 2386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-12.5 + pos: 9.5,11.5 parent: 2 - - uid: 2476 + - uid: 2388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-12.5 + pos: 10.5,11.5 parent: 2 - - uid: 2479 + - uid: 2389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-11.5 + pos: 6.5,11.5 parent: 2 - - uid: 2481 + - uid: 2391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-10.5 + pos: 11.5,10.5 parent: 2 - - uid: 2483 + - uid: 2393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-8.5 + pos: 11.5,8.5 parent: 2 - - uid: 2485 + - uid: 2395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-5.5 + pos: 11.5,6.5 parent: 2 - - uid: 2489 + - uid: 2396 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 + pos: 11.5,5.5 parent: 2 - - uid: 2492 + - uid: 2398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-0.5 + pos: 11.5,3.5 parent: 2 - - uid: 2495 + - uid: 2400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,2.5 + pos: 11.5,1.5 parent: 2 - - uid: 2496 + - uid: 2401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,5.5 + pos: 11.5,0.5 parent: 2 - - uid: 2500 + - uid: 2403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,7.5 + pos: 11.5,-1.5 parent: 2 - - uid: 2503 + - uid: 2405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,11.5 + pos: 11.5,-3.5 parent: 2 - - uid: 2505 + - uid: 2406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,13.5 + pos: 11.5,-4.5 parent: 2 - - uid: 2508 + - uid: 2408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,13.5 + pos: 11.5,-6.5 parent: 2 - - uid: 2510 + - uid: 2409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,13.5 + pos: 11.5,-7.5 parent: 2 - - uid: 2512 + - uid: 2411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,13.5 + pos: 11.5,-9.5 parent: 2 - - uid: 2516 + - uid: 2414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,13.5 + pos: 9.5,-10.5 parent: 2 - - uid: 2518 + - uid: 2415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,13.5 + pos: 8.5,-10.5 parent: 2 - - uid: 2521 + - uid: 2417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,13.5 + pos: 6.5,-10.5 parent: 2 - - uid: 2524 + - uid: 2419 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,13.5 + pos: 4.5,-10.5 parent: 2 - - uid: 2527 + - uid: 2421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,13.5 + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 parent: 2 - - uid: 2529 + - uid: 2422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,13.5 + rot: -1.5707963267948966 rad + pos: -2.5,-11.5 parent: 2 - - uid: 2531 + - uid: 2423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,13.5 + pos: -2.5,-10.5 parent: 2 - - uid: 2533 + - uid: 2425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,10.5 + pos: -4.5,-10.5 parent: 2 - - uid: 2534 + - uid: 2428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,8.5 + pos: -5.5,-12.5 parent: 2 - - uid: 2535 + - uid: 2431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,6.5 + pos: -10.5,-10.5 parent: 2 - - uid: 2538 + - uid: 2432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,4.5 + pos: -10.5,-8.5 parent: 2 - - uid: 2540 + - uid: 2434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,3.5 + pos: -10.5,-5.5 parent: 2 - - uid: 2542 + - uid: 2438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-0.5 + pos: -10.5,-3.5 parent: 2 - - uid: 2545 + - uid: 2441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-3.5 + pos: -10.5,5.5 parent: 2 - - uid: 2546 + - uid: 2444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-5.5 + pos: -10.5,8.5 parent: 2 - - uid: 2548 + - uid: 2445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-7.5 + pos: -10.5,10.5 parent: 2 - - uid: 2549 + - uid: 2446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-11.5 + pos: -10.5,6.5 parent: 2 - - uid: 2551 + - uid: 2447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-9.5 + pos: 8.5,-12.5 parent: 2 - - uid: 2553 + - uid: 2451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-12.5 + pos: -2.5,-16.5 parent: 2 - - uid: 2554 + - uid: 2453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-12.5 + pos: 3.5,-16.5 parent: 2 - - uid: 2556 + - uid: 2454 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-12.5 + pos: -2.5,-18.5 parent: 2 - - uid: 2557 + - uid: 2455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 + pos: -1.5,-18.5 parent: 2 - - uid: 2559 + - uid: 2456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-11.5 + pos: 3.5,-17.5 parent: 2 - - uid: 2560 + - uid: 2460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-19.5 + pos: 7.5,-12.5 parent: 2 - - uid: 2562 + - uid: 2462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-19.5 + pos: 7.5,-14.5 parent: 2 - - uid: 2565 + - uid: 2464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-12.5 + pos: 7.5,-16.5 parent: 2 - - uid: 2568 + - uid: 2465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-13.5 + pos: 6.5,-16.5 parent: 2 - - uid: 2569 + - uid: 2469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-15.5 + pos: 10.5,-12.5 parent: 2 - - uid: 2571 + - uid: 2470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-17.5 + pos: 11.5,-12.5 parent: 2 - - uid: 2572 + - uid: 2471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-13.5 + pos: 12.5,-12.5 parent: 2 - - uid: 2575 + - uid: 2475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-17.5 + pos: 13.5,-9.5 parent: 2 - - uid: 2581 + - uid: 2477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-19.5 + pos: 13.5,-7.5 parent: 2 - - uid: 2582 + - uid: 2478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-17.5 + pos: 13.5,-6.5 parent: 2 - - uid: 2583 + - uid: 2480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-19.5 + pos: 13.5,-4.5 parent: 2 - - uid: 2586 + - uid: 2482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-23.5 + pos: 13.5,-1.5 parent: 2 - - uid: 2587 + - uid: 2484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-21.5 + pos: 13.5,1.5 parent: 2 - - uid: 2589 + - uid: 2486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-24.5 + pos: 13.5,0.5 parent: 2 - - uid: 2590 + - uid: 2487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-24.5 + pos: 13.5,-2.5 parent: 2 - - uid: 2591 + - uid: 2488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-24.5 + pos: 13.5,3.5 parent: 2 - - uid: 2593 + - uid: 2490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-25.5 + pos: 13.5,6.5 parent: 2 - - uid: 2595 + - uid: 2491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-25.5 + pos: 13.5,4.5 parent: 2 - - uid: 2597 + - uid: 2493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-26.5 + pos: 13.5,9.5 parent: 2 - - uid: 2599 + - uid: 2494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-28.5 + pos: 13.5,10.5 parent: 2 - - uid: 2601 + - uid: 2497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-28.5 + pos: 13.5,8.5 parent: 2 - - uid: 2603 + - uid: 2498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-26.5 + pos: 13.5,12.5 parent: 2 - - uid: 2604 + - uid: 2499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-28.5 + pos: 12.5,13.5 parent: 2 - - uid: 2606 + - uid: 2501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-24.5 + pos: 10.5,13.5 parent: 2 - - uid: 2609 + - uid: 2502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-24.5 + pos: 9.5,13.5 parent: 2 - - uid: 2611 + - uid: 2504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-24.5 + pos: 7.5,13.5 parent: 2 - - uid: 2612 + - uid: 2506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-26.5 + pos: 5.5,13.5 parent: 2 - - uid: 2617 + - uid: 2507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-25.5 + pos: 4.5,13.5 parent: 2 - - uid: 2618 + - uid: 2509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-28.5 + pos: 2.5,13.5 parent: 2 - - uid: 2622 + - uid: 2511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-28.5 + pos: -0.5,13.5 parent: 2 - - uid: 2624 + - uid: 2513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-20.5 + pos: -3.5,13.5 parent: 2 - - uid: 2625 + - uid: 2514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-22.5 + pos: 0.5,13.5 parent: 2 - - uid: 2627 + - uid: 2515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-26.5 + pos: -2.5,13.5 parent: 2 - - uid: 2630 + - uid: 2517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-18.5 + pos: -5.5,13.5 parent: 2 - - uid: 2632 + - uid: 2519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-19.5 + pos: -7.5,13.5 parent: 2 - - uid: 2635 + - uid: 2520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-20.5 + pos: -8.5,13.5 parent: 2 - - uid: 2638 + - uid: 2522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-16.5 + pos: -10.5,13.5 parent: 2 - - uid: 2639 + - uid: 2523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-19.5 + pos: -11.5,13.5 parent: 2 - - uid: 2640 + - uid: 2525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 + pos: -12.5,12.5 parent: 2 - - uid: 2642 + - uid: 2526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-25.5 + pos: -12.5,11.5 parent: 2 - - uid: 2645 + - uid: 2528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-19.5 + pos: -12.5,9.5 parent: 2 - - uid: 2647 + - uid: 2530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-28.5 + pos: -12.5,7.5 parent: 2 - - uid: 2649 + - uid: 2532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-23.5 + pos: -12.5,5.5 parent: 2 - - uid: 2651 + - uid: 2536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-25.5 + pos: -11.5,3.5 parent: 2 - - uid: 2652 + - uid: 2537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-27.5 + pos: -12.5,-2.5 parent: 2 - - uid: 2655 + - uid: 2539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-30.5 + pos: -12.5,-4.5 parent: 2 - - uid: 2656 + - uid: 2541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-23.5 + pos: -12.5,-6.5 parent: 2 - - uid: 2658 + - uid: 2543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-23.5 + pos: -12.5,-8.5 parent: 2 - - uid: 2661 + - uid: 2544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-23.5 + pos: -12.5,-10.5 parent: 2 - - uid: 2662 + - uid: 2547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-30.5 + pos: -11.5,-12.5 parent: 2 - - uid: 2663 + - uid: 2550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-30.5 + pos: -9.5,-12.5 parent: 2 - - uid: 2667 + - uid: 2552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-21.5 + pos: -7.5,-10.5 parent: 2 - - uid: 2668 + - uid: 2558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-20.5 + pos: -13.5,-12.5 parent: 2 - - uid: 2670 + - uid: 2561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-19.5 + pos: -14.5,-14.5 parent: 2 - - uid: 2672 + - uid: 2563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-14.5 + rot: -1.5707963267948966 rad + pos: -10.5,-18.5 parent: 2 - - uid: 2673 + - uid: 2564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-14.5 + rot: -1.5707963267948966 rad + pos: -14.5,-18.5 parent: 2 - - uid: 2676 + - uid: 2566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-14.5 + rot: -1.5707963267948966 rad + pos: -14.5,-16.5 parent: 2 - - uid: 2678 + - uid: 2567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-14.5 + rot: -1.5707963267948966 rad + pos: -10.5,-14.5 parent: 2 - - uid: 2679 + - uid: 2570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-9.5 + rot: -1.5707963267948966 rad + pos: -13.5,-19.5 parent: 2 - - uid: 2685 + - uid: 2573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-6.5 + rot: 3.141592653589793 rad + pos: -7.5,-20.5 parent: 2 - - uid: 2697 + - uid: 2574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-4.5 + rot: 3.141592653589793 rad + pos: -5.5,-20.5 parent: 2 - - uid: 2728 + - uid: 2576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 + rot: 3.141592653589793 rad + pos: -2.5,-20.5 parent: 2 - - uid: 2729 + - uid: 2577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-1.5 + rot: 3.141592653589793 rad + pos: -10.5,-20.5 parent: 2 - - uid: 2734 + - uid: 2578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-39.5 + rot: -1.5707963267948966 rad + pos: -9.5,-24.5 parent: 2 - - uid: 2760 + - uid: 2579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-19.5 + rot: -1.5707963267948966 rad + pos: -10.5,-24.5 parent: 2 - - uid: 2762 + - uid: 2580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-19.5 + pos: -10.5,-22.5 parent: 2 - - uid: 2763 + - uid: 2584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-28.5 + rot: -1.5707963267948966 rad + pos: -7.5,-24.5 parent: 2 - - uid: 2764 + - uid: 2585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-0.5 + rot: -1.5707963267948966 rad + pos: -5.5,-24.5 parent: 2 - - uid: 2765 + - uid: 2588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-20.5 + rot: -1.5707963267948966 rad + pos: -2.5,-24.5 parent: 2 - - uid: 2768 + - uid: 2592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-22.5 + rot: 3.141592653589793 rad + pos: -10.5,-27.5 parent: 2 - - uid: 2769 + - uid: 2594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-23.5 + rot: 3.141592653589793 rad + pos: -8.5,-27.5 parent: 2 - - uid: 2771 + - uid: 2596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-19.5 + rot: 3.141592653589793 rad + pos: -3.5,-25.5 parent: 2 - - uid: 2773 + - uid: 2598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-19.5 + rot: 3.141592653589793 rad + pos: -3.5,-27.5 parent: 2 - - uid: 2775 + - uid: 2600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-18.5 + rot: 3.141592653589793 rad + pos: -4.5,-28.5 parent: 2 - - uid: 2776 + - uid: 2602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-5.5 + rot: 3.141592653589793 rad + pos: 2.5,-24.5 parent: 2 - - uid: 2778 + - uid: 2605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-5.5 + rot: 3.141592653589793 rad + pos: 4.5,-25.5 parent: 2 - - uid: 2782 + - uid: 2607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-22.5 + rot: 3.141592653589793 rad + pos: 4.5,-27.5 parent: 2 - - uid: 2783 + - uid: 2608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-21.5 + rot: 3.141592653589793 rad + pos: 4.5,-28.5 parent: 2 - - uid: 2785 + - uid: 2610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-9.5 + rot: 3.141592653589793 rad + pos: 1.5,-27.5 parent: 2 - - uid: 2787 + - uid: 2613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-14.5 + rot: 3.141592653589793 rad + pos: 2.5,-28.5 parent: 2 - - uid: 2789 + - uid: 2616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-14.5 + rot: 3.141592653589793 rad + pos: 3.5,-19.5 parent: 2 - - uid: 2794 + - uid: 2619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-14.5 + rot: 3.141592653589793 rad + pos: 3.5,-23.5 parent: 2 - - uid: 2796 + - uid: 2620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 + rot: -1.5707963267948966 rad + pos: 10.5,-24.5 parent: 2 - - uid: 2797 + - uid: 2621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-1.5 + pos: 10.5,-25.5 parent: 2 - - uid: 2799 + - uid: 2623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 + pos: 10.5,-27.5 parent: 2 - - uid: 2801 + - uid: 2626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-5.5 + pos: 11.5,-19.5 parent: 2 - - uid: 2803 + - uid: 2628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-1.5 + rot: -1.5707963267948966 rad + pos: 17.5,-23.5 parent: 2 - - uid: 2805 + - uid: 2629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-2.5 + pos: 9.5,-17.5 parent: 2 - - uid: 2806 + - uid: 2633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-4.5 + pos: 9.5,-15.5 parent: 2 - - uid: 2808 + - uid: 2634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-1.5 + pos: 16.5,-14.5 parent: 2 - - uid: 2809 + - uid: 2636 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-2.5 + pos: 5.5,-25.5 parent: 2 - - uid: 2810 + - uid: 2637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-3.5 + pos: 8.5,-25.5 parent: 2 - - uid: 2811 + - uid: 2641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-5.5 + pos: 14.5,-19.5 parent: 2 - - uid: 2813 + - uid: 2643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 + rot: -1.5707963267948966 rad + pos: 11.5,-23.5 parent: 2 - - uid: 2815 + - uid: 2644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-1.5 + rot: -1.5707963267948966 rad + pos: 10.5,-29.5 parent: 2 - - uid: 2817 + - uid: 2646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-2.5 + rot: -1.5707963267948966 rad + pos: 18.5,-26.5 parent: 2 - - uid: 2818 + - uid: 2648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-4.5 + rot: -1.5707963267948966 rad + pos: 18.5,-28.5 parent: 2 - - uid: 2820 + - uid: 2650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-1.5 + rot: -1.5707963267948966 rad + pos: 18.5,-29.5 parent: 2 - - uid: 2824 + - uid: 2653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-2.5 + rot: -1.5707963267948966 rad + pos: 15.5,-23.5 parent: 2 - - uid: 2837 + - uid: 2654 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-3.5 + rot: -1.5707963267948966 rad + pos: 18.5,-24.5 parent: 2 - - uid: 2840 + - uid: 2657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-5.5 + rot: -1.5707963267948966 rad + pos: 10.5,-30.5 parent: 2 - - uid: 2841 + - uid: 2659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-17.5 + rot: -1.5707963267948966 rad + pos: 13.5,-23.5 parent: 2 - - uid: 2843 + - uid: 2660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-17.5 + rot: -1.5707963267948966 rad + pos: 16.5,-22.5 parent: 2 - - uid: 2845 + - uid: 2664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-5.5 + rot: -1.5707963267948966 rad + pos: 15.5,-19.5 parent: 2 - - uid: 2850 + - uid: 2665 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-5.5 + pos: 15.5,-10.5 parent: 2 - - uid: 2855 + - uid: 2666 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-6.5 + pos: 15.5,-14.5 parent: 2 - - uid: 2857 + - uid: 2669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-8.5 + rot: -1.5707963267948966 rad + pos: 11.5,-14.5 parent: 2 - - uid: 2858 + - uid: 2671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-17.5 + rot: -1.5707963267948966 rad + pos: 13.5,-14.5 parent: 2 - - uid: 2860 + - uid: 2674 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-12.5 + pos: 15.5,-12.5 parent: 2 - - uid: 2861 + - uid: 2675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-10.5 + pos: 15.5,-7.5 parent: 2 - - uid: 2863 + - uid: 2677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-9.5 + pos: 15.5,-5.5 parent: 2 - - uid: 2865 + - uid: 2680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-9.5 + pos: 15.5,-2.5 parent: 2 - - uid: 2872 + - uid: 2726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-17.5 + pos: 17.5,-19.5 parent: 2 - - uid: 2889 + - uid: 2730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-17.5 + pos: 19.5,-19.5 parent: 2 - - uid: 2934 + - uid: 2731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-15.5 + pos: 21.5,-19.5 parent: 2 - - uid: 2937 + - uid: 2732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-13.5 + rot: -1.5707963267948966 rad + pos: -2.5,-28.5 parent: 2 - - uid: 2939 + - uid: 2736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 + rot: 3.141592653589793 rad + pos: -0.5,16.5 parent: 2 - - uid: 2941 + - uid: 2738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-17.5 + rot: 3.141592653589793 rad + pos: -4.5,15.5 parent: 2 - - uid: 2943 + - uid: 2740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-21.5 + rot: 3.141592653589793 rad + pos: -3.5,16.5 parent: 2 - - uid: 2944 + - uid: 2741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-21.5 + rot: 3.141592653589793 rad + pos: -4.5,16.5 parent: 2 - - uid: 2945 + - uid: 2759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-21.5 + rot: 3.141592653589793 rad + pos: -10.5,-1.5 parent: 2 - - uid: 2947 + - uid: 2761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-22.5 + rot: 3.141592653589793 rad + pos: -12.5,-1.5 parent: 2 - - uid: 2949 + - uid: 2766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-23.5 + pos: 24.5,-19.5 parent: 2 - - uid: 2951 + - uid: 2767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-24.5 + pos: 25.5,-19.5 parent: 2 - - uid: 2952 + - uid: 2770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-26.5 + pos: 26.5,-17.5 parent: 2 - - uid: 2954 + - uid: 2772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-27.5 + pos: 26.5,-14.5 parent: 2 - - uid: 2958 + - uid: 2774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-29.5 + pos: 24.5,-23.5 parent: 2 - - uid: 2973 + - uid: 2777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-30.5 + pos: 24.5,-20.5 parent: 2 - - uid: 2981 + - uid: 2779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-33.5 + pos: 28.5,-9.5 parent: 2 - - uid: 2993 + - uid: 2780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-34.5 + pos: 28.5,-7.5 parent: 2 - - uid: 2996 + - uid: 2781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-32.5 + pos: 30.5,-9.5 parent: 2 - - uid: 2997 + - uid: 2784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-32.5 + pos: 29.5,-14.5 parent: 2 - - uid: 2998 + - uid: 2786 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-22.5 + pos: 17.5,-4.5 parent: 2 - - uid: 2999 + - uid: 2788 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-26.5 + pos: 17.5,-2.5 parent: 2 - - uid: 3002 + - uid: 2790 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-25.5 + pos: 16.5,-1.5 parent: 2 - - uid: 3005 + - uid: 2791 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-22.5 + pos: 18.5,-1.5 parent: 2 - - uid: 3007 + - uid: 2792 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-23.5 + pos: 19.5,-1.5 parent: 2 - - uid: 3008 + - uid: 2793 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-26.5 + pos: 19.5,-2.5 parent: 2 - - uid: 3010 + - uid: 2795 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-27.5 + pos: 19.5,-4.5 parent: 2 - - uid: 3011 + - uid: 2798 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-27.5 + pos: 21.5,-1.5 parent: 2 - - uid: 3012 + - uid: 2800 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-25.5 + pos: 21.5,-3.5 parent: 2 - - uid: 3013 + - uid: 2802 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-22.5 + pos: 21.5,-5.5 parent: 2 - - uid: 3014 + - uid: 2804 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-21.5 + pos: 23.5,-1.5 parent: 2 - - uid: 3015 + - uid: 2807 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-22.5 + pos: 23.5,-4.5 parent: 2 - - uid: 3017 + - uid: 2812 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-24.5 + pos: 25.5,-3.5 parent: 2 - - uid: 3019 + - uid: 2814 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-25.5 + pos: 25.5,-5.5 parent: 2 - - uid: 3021 + - uid: 2816 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-26.5 + pos: 27.5,-1.5 parent: 2 - - uid: 3029 + - uid: 2819 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-26.5 + pos: 27.5,-4.5 parent: 2 - - uid: 3030 + - uid: 2822 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-26.5 + pos: 29.5,-17.5 parent: 2 - - uid: 3031 + - uid: 2823 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-26.5 + pos: 28.5,-17.5 parent: 2 - - uid: 3032 + - uid: 2838 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-22.5 + pos: 29.5,-5.5 parent: 2 - - uid: 3034 + - uid: 2839 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-22.5 + pos: 30.5,-5.5 parent: 2 - - uid: 3035 + - uid: 2842 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-23.5 + pos: 33.5,-5.5 parent: 2 - - uid: 3048 + - uid: 2844 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-24.5 + pos: 33.5,-7.5 parent: 2 - - uid: 3049 + - uid: 2846 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-26.5 + pos: 33.5,-9.5 parent: 2 - - uid: 3054 + - uid: 2847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-26.5 + pos: 22.5,-32.5 parent: 2 - - uid: 3056 + - uid: 2849 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-40.5 + pos: 33.5,-17.5 parent: 2 - - uid: 3057 + - uid: 2851 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-32.5 + pos: 31.5,-17.5 parent: 2 - - uid: 3058 + - uid: 2852 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-16.5 + pos: 32.5,-14.5 parent: 2 - - uid: 3158 + - uid: 2853 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-14.5 + pos: 36.5,-14.5 parent: 2 - - uid: 3175 + - uid: 2854 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-13.5 + pos: 36.5,-13.5 parent: 2 - - uid: 3177 + - uid: 2856 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-13.5 + pos: 36.5,-11.5 parent: 2 - - uid: 3178 + - uid: 2859 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,22.5 + pos: 35.5,-9.5 parent: 2 - - uid: 3180 + - uid: 2862 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,22.5 + pos: 35.5,-17.5 parent: 2 - - uid: 3183 + - uid: 2864 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,22.5 + pos: 36.5,-16.5 parent: 2 - - uid: 3288 + - uid: 2866 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,22.5 + pos: 15.5,-8.5 parent: 2 - - uid: 3289 + - uid: 2932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,22.5 + pos: 37.5,-17.5 parent: 2 - - uid: 3294 + - uid: 2933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,22.5 + pos: 38.5,-17.5 parent: 2 - - uid: 3424 + - uid: 2935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,18.5 + pos: 40.5,-17.5 parent: 2 - - uid: 3452 + - uid: 2936 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,20.5 + pos: 39.5,-22.5 parent: 2 - - uid: 3454 + - uid: 2938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,18.5 + pos: 37.5,-21.5 parent: 2 - - uid: 3562 + - uid: 2940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-38.5 + pos: 35.5,-21.5 parent: 2 - - uid: 3563 + - uid: 2942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-36.5 + pos: 30.5,-21.5 parent: 2 - - uid: 3566 + - uid: 2946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,18.5 + pos: 30.5,-25.5 parent: 2 - - uid: 3576 + - uid: 2948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,7.5 + pos: 30.5,-27.5 parent: 2 - - uid: 3577 + - uid: 2950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,7.5 + pos: 22.5,-28.5 parent: 2 - - uid: 3614 + - uid: 2953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,8.5 + pos: 22.5,-31.5 parent: 2 - - uid: 3657 + - uid: 2955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-4.5 + pos: 22.5,-34.5 parent: 2 - - uid: 3660 + - uid: 2956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-4.5 + pos: 18.5,-35.5 parent: 2 - - uid: 3661 + - uid: 2975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,8.5 + pos: 3.5,-32.5 parent: 2 - - uid: 3662 + - uid: 2976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,10.5 + rot: 3.141592653589793 rad + pos: -2.5,-38.5 parent: 2 - - uid: 3664 + - uid: 2979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,11.5 + rot: 3.141592653589793 rad + pos: -1.5,-38.5 parent: 2 - - uid: 3667 + - uid: 2980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,11.5 + rot: 3.141592653589793 rad + pos: 3.5,-33.5 parent: 2 - - uid: 3668 + - uid: 2992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,11.5 + pos: 31.5,-22.5 parent: 2 - - uid: 3671 + - uid: 2994 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,9.5 + pos: 34.5,-23.5 parent: 2 - - uid: 3746 + - uid: 2995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,14.5 + pos: 34.5,-26.5 parent: 2 - - uid: 3749 + - uid: 3000 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,14.5 + pos: 37.5,-23.5 parent: 2 - - uid: 3762 + - uid: 3001 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,14.5 + pos: 35.5,-23.5 parent: 2 - - uid: 3765 + - uid: 3003 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-6.5 + pos: 38.5,-27.5 parent: 2 - - uid: 3791 + - uid: 3004 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-9.5 + pos: 36.5,-27.5 parent: 2 - - uid: 3792 + - uid: 3006 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-12.5 + pos: 35.5,-27.5 parent: 2 - - uid: 3794 + - uid: 3009 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-15.5 + pos: 46.5,-23.5 parent: 2 - - uid: 3854 + - uid: 3016 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-16.5 + pos: 45.5,-26.5 parent: 2 - - uid: 3855 + - uid: 3018 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-18.5 + pos: 43.5,-26.5 parent: 2 - - uid: 3914 + - uid: 3020 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-20.5 + pos: 41.5,-26.5 parent: 2 - - uid: 3920 + - uid: 3022 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-19.5 + pos: 39.5,-26.5 parent: 2 - - uid: 3923 + - uid: 3028 components: - type: Transform - pos: 36.5,-31.5 + pos: 50.5,-21.5 parent: 2 - - uid: 3924 + - uid: 3033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-27.5 + pos: 50.5,-25.5 parent: 2 - - uid: 3926 + - uid: 3047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-31.5 + pos: 4.5,-39.5 parent: 2 - - uid: 3928 + - uid: 3055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-31.5 + rot: -1.5707963267948966 rad + pos: 39.5,-13.5 parent: 2 - - uid: 3934 + - uid: 3059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-29.5 + rot: -1.5707963267948966 rad + pos: 37.5,-13.5 parent: 2 - - uid: 3936 + - uid: 3103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-30.5 + rot: 3.141592653589793 rad + pos: -14.5,-28.5 parent: 2 - - uid: 3937 + - uid: 3114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-31.5 + pos: -22.5,-32.5 parent: 2 - - uid: 3938 + - uid: 3155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-31.5 + pos: -19.5,22.5 parent: 2 - - uid: 3941 + - uid: 3162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-31.5 + pos: -12.5,22.5 parent: 2 - - uid: 3942 + - uid: 3176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-31.5 + pos: 5.5,22.5 parent: 2 - - uid: 3943 + - uid: 3179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-29.5 + pos: 2.5,22.5 parent: 2 - - uid: 3944 + - uid: 3181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-30.5 + rot: -1.5707963267948966 rad + pos: 0.5,22.5 parent: 2 - - uid: 3949 + - uid: 3185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-31.5 + pos: -4.5,24.5 parent: 2 - - uid: 3954 + - uid: 3189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-32.5 + pos: -8.5,22.5 parent: 2 - - uid: 3956 + - uid: 3249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-37.5 + rot: 3.141592653589793 rad + pos: -0.5,15.5 parent: 2 - - uid: 3969 + - uid: 3250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-32.5 + rot: 3.141592653589793 rad + pos: -1.5,16.5 parent: 2 - - uid: 3972 + - uid: 3251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-34.5 + rot: 3.141592653589793 rad + pos: -2.5,16.5 parent: 2 - - uid: 3973 + - uid: 3287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-39.5 + rot: 3.141592653589793 rad + pos: -37.5,19.5 parent: 2 - - uid: 4018 + - uid: 3309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-37.5 + pos: -55.5,-5.5 parent: 2 - - uid: 4019 + - uid: 3310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-39.5 + pos: 29.5,-0.5 parent: 2 - - uid: 4138 + - uid: 3453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-32.5 + pos: -36.5,-37.5 parent: 2 - - uid: 4141 + - uid: 3564 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-32.5 + pos: -55.5,7.5 parent: 2 - - uid: 4183 + - uid: 3572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-34.5 + rot: -1.5707963267948966 rad + pos: -55.5,8.5 parent: 2 - - uid: 4192 + - uid: 3575 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-34.5 + pos: -56.5,-4.5 parent: 2 - - uid: 4197 + - uid: 3591 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,22.5 + pos: -55.5,3.5 parent: 2 - - uid: 4201 + - uid: 3600 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,8.5 + pos: -55.5,-2.5 parent: 2 - - uid: 4244 + - uid: 3615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,6.5 + rot: -1.5707963267948966 rad + pos: -51.5,8.5 parent: 2 - - uid: 4266 + - uid: 3656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-8.5 + pos: -55.5,9.5 parent: 2 - - uid: 4269 + - uid: 3658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,5.5 + pos: -55.5,11.5 parent: 2 - - uid: 4273 + - uid: 3659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,5.5 + pos: -54.5,11.5 parent: 2 - - uid: 4314 + - uid: 3663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,5.5 + pos: -51.5,10.5 parent: 2 - - uid: 4315 + - uid: 3665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-21.5 + pos: -51.5,12.5 parent: 2 - - uid: 4317 + - uid: 3666 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-2.5 + pos: -51.5,13.5 parent: 2 - - uid: 4441 + - uid: 3747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-2.5 + pos: -55.5,-7.5 parent: 2 - - uid: 4450 + - uid: 3748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,5.5 + pos: -55.5,-8.5 parent: 2 - - uid: 4474 + - uid: 3760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-29.5 + pos: -55.5,-10.5 parent: 2 - - uid: 4482 + - uid: 3761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-22.5 + pos: -55.5,-11.5 parent: 2 - - uid: 4483 + - uid: 3763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-21.5 + pos: -55.5,-13.5 parent: 2 - - uid: 4486 + - uid: 3790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-21.5 + pos: -55.5,-14.5 parent: 2 - - uid: 4489 + - uid: 3793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-20.5 + pos: -55.5,-17.5 parent: 2 - - uid: 4491 + - uid: 3907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-20.5 + pos: 41.5,6.5 parent: 2 - - uid: 4660 + - uid: 3917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-46.5 + pos: 34.5,-28.5 parent: 2 - - uid: 4663 + - uid: 3919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,25.5 + pos: 34.5,-30.5 parent: 2 - - uid: 4664 + - uid: 3921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,26.5 + pos: 35.5,-31.5 parent: 2 - - uid: 4668 + - uid: 3925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,26.5 + pos: 39.5,-31.5 parent: 2 - - uid: 4670 + - uid: 3929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,32.5 + pos: 46.5,-27.5 parent: 2 - - uid: 4672 + - uid: 3930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,26.5 + pos: 46.5,-28.5 parent: 2 - - uid: 4674 + - uid: 3933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,35.5 + pos: 46.5,-31.5 parent: 2 - - uid: 4677 + - uid: 3935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,25.5 + pos: 44.5,-31.5 parent: 2 - - uid: 4679 + - uid: 3939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,23.5 + pos: 41.5,-31.5 parent: 2 - - uid: 4680 + - uid: 3940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,30.5 + pos: 50.5,-28.5 parent: 2 - - uid: 4684 + - uid: 3945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,25.5 + pos: 50.5,-33.5 parent: 2 - - uid: 4686 + - uid: 3946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,23.5 + pos: 50.5,-34.5 parent: 2 - - uid: 4691 + - uid: 3948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,25.5 + pos: 50.5,-36.5 parent: 2 - - uid: 4692 + - uid: 3950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,24.5 + pos: 30.5,-28.5 parent: 2 - - uid: 4707 + - uid: 3953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,31.5 + pos: 30.5,-31.5 parent: 2 - - uid: 4708 + - uid: 3955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,34.5 + pos: 30.5,-33.5 parent: 2 - - uid: 4713 + - uid: 3957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,36.5 + pos: 30.5,-35.5 parent: 2 - - uid: 4714 + - uid: 3959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,27.5 + pos: 21.5,-53.5 parent: 2 - - uid: 4715 + - uid: 3965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,35.5 + rot: 3.141592653589793 rad + pos: 50.5,-38.5 parent: 2 - - uid: 4722 + - uid: 3968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,27.5 + rot: 3.141592653589793 rad + pos: 49.5,-38.5 parent: 2 - - uid: 4724 + - uid: 3970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,24.5 + rot: 3.141592653589793 rad + pos: 31.5,-38.5 parent: 2 - - uid: 4741 + - uid: 3971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,28.5 + rot: 3.141592653589793 rad + pos: 30.5,-38.5 parent: 2 - - uid: 4743 + - uid: 4040 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,29.5 + pos: -56.5,-20.5 parent: 2 - - uid: 4748 + - uid: 4137 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,29.5 + pos: 24.5,-34.5 parent: 2 - - uid: 4757 + - uid: 4139 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,26.5 + pos: 26.5,-34.5 parent: 2 - - uid: 4771 + - uid: 4140 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,33.5 + pos: 27.5,-34.5 parent: 2 - - uid: 4773 + - uid: 4142 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,30.5 + pos: 29.5,-34.5 parent: 2 - - uid: 4775 + - uid: 4184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,30.5 + pos: 22.5,21.5 parent: 2 - - uid: 4786 + - uid: 4186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,29.5 + rot: 3.141592653589793 rad + pos: 47.5,6.5 parent: 2 - - uid: 4790 + - uid: 4188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,29.5 + pos: 22.5,18.5 parent: 2 - - uid: 4806 + - uid: 4189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,25.5 + pos: 22.5,17.5 parent: 2 - - uid: 4811 + - uid: 4190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,24.5 + pos: 22.5,16.5 parent: 2 - - uid: 4814 + - uid: 4198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,24.5 + pos: 22.5,7.5 parent: 2 - - uid: 4816 + - uid: 4199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,24.5 + pos: 22.5,5.5 parent: 2 - - uid: 4817 + - uid: 4200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,24.5 + pos: 22.5,9.5 parent: 2 - - uid: 4818 + - uid: 4213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,25.5 + pos: 29.5,0.5 parent: 2 - - uid: 4821 + - uid: 4214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,24.5 + pos: 29.5,1.5 parent: 2 - - uid: 4823 + - uid: 4215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,30.5 + pos: 30.5,1.5 parent: 2 - - uid: 4826 + - uid: 4216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,30.5 + pos: 31.5,1.5 parent: 2 - - uid: 4827 + - uid: 4245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,30.5 + rot: -1.5707963267948966 rad + pos: -56.5,-50.5 parent: 2 - - uid: 4830 + - uid: 4247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,27.5 + pos: 44.5,-5.5 parent: 2 - - uid: 4831 + - uid: 4250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,26.5 + pos: 44.5,-2.5 parent: 2 - - uid: 4832 + - uid: 4253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,25.5 + pos: 44.5,0.5 parent: 2 - - uid: 4837 + - uid: 4265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,29.5 + pos: 35.5,5.5 parent: 2 - - uid: 4839 + - uid: 4267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,35.5 + pos: 33.5,5.5 parent: 2 - - uid: 4840 + - uid: 4268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,35.5 + pos: 32.5,5.5 parent: 2 - - uid: 4842 + - uid: 4271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,35.5 + pos: 30.5,5.5 parent: 2 - - uid: 4844 + - uid: 4272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,35.5 + pos: 29.5,5.5 parent: 2 - - uid: 4847 + - uid: 4274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,33.5 + pos: 27.5,5.5 parent: 2 - - uid: 4850 + - uid: 4278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,35.5 + pos: 23.5,5.5 parent: 2 - - uid: 4852 + - uid: 4280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,35.5 + pos: 29.5,-1.5 parent: 2 - - uid: 4854 + - uid: 4281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,32.5 + pos: 29.5,-2.5 parent: 2 - - uid: 4858 + - uid: 4282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,31.5 + pos: 29.5,-3.5 parent: 2 - - uid: 4863 + - uid: 4283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,31.5 + pos: 30.5,-3.5 parent: 2 - - uid: 4864 + - uid: 4284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,34.5 + pos: 31.5,-3.5 parent: 2 - - uid: 4866 + - uid: 4285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,34.5 + pos: 32.5,-3.5 parent: 2 - - uid: 4867 + - uid: 4286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,34.5 + pos: 33.5,-3.5 parent: 2 - - uid: 4881 + - uid: 4287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,25.5 + pos: 34.5,-3.5 parent: 2 - - uid: 4883 + - uid: 4288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,35.5 + pos: 35.5,-3.5 parent: 2 - - uid: 4886 + - uid: 4291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-32.5 + rot: -1.5707963267948966 rad + pos: 28.5,9.5 parent: 2 - - uid: 4888 + - uid: 4302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,37.5 + pos: 35.5,1.5 parent: 2 - - uid: 4896 + - uid: 4345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,31.5 + rot: 3.141592653589793 rad + pos: 53.5,-28.5 parent: 2 - - uid: 4897 + - uid: 4352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,30.5 + pos: 47.5,5.5 parent: 2 - - uid: 4899 + - uid: 4444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,30.5 + pos: 35.5,-2.5 parent: 2 - - uid: 4908 + - uid: 4445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,34.5 + pos: 35.5,-1.5 parent: 2 - - uid: 4909 + - uid: 4446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,34.5 + pos: 35.5,-0.5 parent: 2 - - uid: 4910 + - uid: 4447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,34.5 + pos: 35.5,0.5 parent: 2 - - uid: 4911 + - uid: 4461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,34.5 + rot: 3.141592653589793 rad + pos: 47.5,3.5 parent: 2 - - uid: 4912 + - uid: 4475 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,34.5 + pos: -64.5,-28.5 parent: 2 - - uid: 4913 + - uid: 4477 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,34.5 + pos: -64.5,-27.5 parent: 2 - - uid: 4927 + - uid: 4484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,33.5 + pos: -37.5,-39.5 parent: 2 - - uid: 4937 + - uid: 4488 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,38.5 + pos: -59.5,-21.5 parent: 2 - - uid: 4939 + - uid: 4558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,36.5 + pos: 44.5,-27.5 parent: 2 - - uid: 4941 + - uid: 4629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,36.5 + pos: 50.5,-40.5 parent: 2 - - uid: 4943 + - uid: 4662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,36.5 + pos: -4.5,23.5 parent: 2 - - uid: 4944 + - uid: 4667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,36.5 + rot: 3.141592653589793 rad + pos: -20.5,34.5 parent: 2 - - uid: 4953 + - uid: 4678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,27.5 + pos: -8.5,24.5 parent: 2 - - uid: 4955 + - uid: 4681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,27.5 + pos: 1.5,26.5 parent: 2 - - uid: 4968 + - uid: 4685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,29.5 + pos: -12.5,24.5 parent: 2 - - uid: 4974 + - uid: 4688 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,32.5 + pos: -3.5,31.5 parent: 2 - - uid: 4975 + - uid: 4689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,32.5 + pos: -16.5,26.5 parent: 2 - - uid: 4976 + - uid: 4693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,34.5 + pos: -16.5,23.5 parent: 2 - - uid: 5002 + - uid: 4705 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,37.5 + pos: -3.5,34.5 parent: 2 - - uid: 5004 + - uid: 4716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,37.5 + rot: -1.5707963267948966 rad + pos: 2.5,36.5 parent: 2 - - uid: 5005 + - uid: 4721 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,40.5 + pos: 6.5,28.5 parent: 2 - - uid: 5008 + - uid: 4723 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,39.5 + pos: 6.5,26.5 parent: 2 - - uid: 5011 + - uid: 4725 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,39.5 + pos: 6.5,23.5 parent: 2 - - uid: 5012 + - uid: 4726 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,39.5 + pos: 6.5,25.5 parent: 2 - - uid: 5113 + - uid: 4727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,44.5 + pos: 8.5,32.5 parent: 2 - - uid: 5125 + - uid: 4728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,43.5 + rot: -1.5707963267948966 rad + pos: 0.5,33.5 parent: 2 - - uid: 5126 + - uid: 4730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,42.5 + pos: 8.5,33.5 parent: 2 - - uid: 5136 + - uid: 4738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,43.5 + rot: 3.141592653589793 rad + pos: 47.5,2.5 parent: 2 - - uid: 5137 + - uid: 4739 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,44.5 + pos: 8.5,29.5 parent: 2 - - uid: 5140 + - uid: 4742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,46.5 + rot: -1.5707963267948966 rad + pos: 7.5,27.5 parent: 2 - - uid: 5142 + - uid: 4747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,48.5 + pos: 0.5,29.5 parent: 2 - - uid: 5143 + - uid: 4768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,45.5 + pos: -4.5,35.5 parent: 2 - - uid: 5145 + - uid: 4770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,47.5 + pos: 46.5,6.5 parent: 2 - - uid: 5176 + - uid: 4772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,49.5 + rot: 3.141592653589793 rad + pos: 47.5,1.5 parent: 2 - - uid: 5177 + - uid: 4776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,49.5 + pos: -13.5,30.5 parent: 2 - - uid: 5178 + - uid: 4779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,49.5 + pos: -10.5,30.5 parent: 2 - - uid: 5184 + - uid: 4782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,50.5 + pos: -4.5,30.5 parent: 2 - - uid: 5186 + - uid: 4785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,52.5 + pos: -16.5,30.5 parent: 2 - - uid: 5187 + - uid: 4788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,53.5 + pos: -16.5,27.5 parent: 2 - - uid: 5188 + - uid: 4802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,54.5 + pos: -10.5,33.5 parent: 2 - - uid: 5191 + - uid: 4812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,53.5 + pos: -28.5,24.5 parent: 2 - - uid: 5192 + - uid: 4813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,53.5 + pos: -27.5,24.5 parent: 2 - - uid: 5194 + - uid: 4819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,50.5 + pos: -21.5,24.5 parent: 2 - - uid: 5195 + - uid: 4820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,49.5 + pos: -20.5,24.5 parent: 2 - - uid: 5282 + - uid: 4824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,39.5 + pos: -17.5,30.5 parent: 2 - - uid: 5284 + - uid: 4825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,39.5 + pos: -19.5,30.5 parent: 2 - - uid: 5295 + - uid: 4828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,6.5 + pos: -21.5,29.5 parent: 2 - - uid: 5378 + - uid: 4829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,33.5 + pos: -21.5,28.5 parent: 2 - - uid: 5423 + - uid: 4833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,16.5 + pos: -17.5,24.5 parent: 2 - - uid: 5433 + - uid: 4838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,35.5 + pos: -23.5,30.5 parent: 2 - - uid: 5451 + - uid: 4841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,9.5 + pos: -7.5,35.5 parent: 2 - - uid: 5455 + - uid: 4843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-37.5 + pos: -9.5,35.5 parent: 2 - - uid: 5470 + - uid: 4845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,16.5 + pos: -11.5,35.5 parent: 2 - - uid: 5477 + - uid: 4848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,23.5 + pos: -15.5,31.5 parent: 2 - - uid: 5485 + - uid: 4851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,16.5 + pos: -14.5,35.5 parent: 2 - - uid: 5490 + - uid: 4853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,7.5 + pos: -15.5,35.5 parent: 2 - - uid: 5494 + - uid: 4855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,11.5 + pos: -9.5,30.5 parent: 2 - - uid: 5496 + - uid: 4862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,11.5 + pos: -18.5,33.5 parent: 2 - - uid: 5497 + - uid: 4865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,12.5 + pos: -16.5,34.5 parent: 2 - - uid: 5498 + - uid: 4877 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,16.5 + pos: -15.5,25.5 parent: 2 - - uid: 5504 + - uid: 4884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,21.5 + rot: 3.141592653589793 rad + pos: -20.5,36.5 parent: 2 - - uid: 5506 + - uid: 4887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,23.5 + pos: -63.5,-20.5 parent: 2 - - uid: 5508 + - uid: 4894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,24.5 + pos: 1.5,33.5 parent: 2 - - uid: 5513 + - uid: 4906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-51.5 + rot: -1.5707963267948966 rad + pos: 4.5,34.5 parent: 2 - - uid: 5617 + - uid: 4907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,27.5 + rot: -1.5707963267948966 rad + pos: 2.5,34.5 parent: 2 - - uid: 5630 + - uid: 4918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,14.5 + rot: -1.5707963267948966 rad + pos: 11.5,38.5 parent: 2 - - uid: 5631 + - uid: 4928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,13.5 + pos: -29.5,33.5 parent: 2 - - uid: 5633 + - uid: 4929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,11.5 + pos: -25.5,24.5 parent: 2 - - uid: 5635 + - uid: 4934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,11.5 + pos: -0.5,35.5 parent: 2 - - uid: 5664 + - uid: 4935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,19.5 + pos: -2.5,35.5 parent: 2 - - uid: 5665 + - uid: 4940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,16.5 + rot: -1.5707963267948966 rad + pos: 4.5,36.5 parent: 2 - - uid: 5666 + - uid: 4942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,16.5 + rot: -1.5707963267948966 rad + pos: 6.5,36.5 parent: 2 - - uid: 5667 + - uid: 4945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,17.5 + rot: -1.5707963267948966 rad + pos: 8.5,36.5 parent: 2 - - uid: 5742 + - uid: 4954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,19.5 + rot: -1.5707963267948966 rad + pos: 9.5,27.5 parent: 2 - - uid: 5789 + - uid: 4969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,41.5 + rot: -1.5707963267948966 rad + pos: 5.5,29.5 parent: 2 - - uid: 5795 + - uid: 4970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-46.5 + pos: 3.5,29.5 parent: 2 - - uid: 5803 + - uid: 4977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-42.5 + rot: -1.5707963267948966 rad + pos: 0.5,35.5 parent: 2 - - uid: 5804 + - uid: 4985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-42.5 + pos: 1.5,39.5 parent: 2 - - uid: 5811 + - uid: 4986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-42.5 + pos: 3.5,39.5 parent: 2 - - uid: 5812 + - uid: 5001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-36.5 + pos: -10.5,37.5 parent: 2 - - uid: 5813 + - uid: 5003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-35.5 + pos: -8.5,37.5 parent: 2 - - uid: 5815 + - uid: 5009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-27.5 + pos: -0.5,39.5 parent: 2 - - uid: 5816 + - uid: 5013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-32.5 + pos: -7.5,38.5 parent: 2 - - uid: 5818 + - uid: 5014 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-30.5 + pos: 4.5,39.5 parent: 2 - - uid: 5819 + - uid: 5098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-44.5 + rot: 3.141592653589793 rad + pos: 47.5,0.5 parent: 2 - - uid: 5822 + - uid: 5114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-36.5 + pos: -3.5,44.5 parent: 2 - - uid: 5825 + - uid: 5124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-36.5 + pos: 4.5,44.5 parent: 2 - - uid: 5828 + - uid: 5127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-33.5 + pos: 4.5,41.5 parent: 2 - - uid: 5830 + - uid: 5134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-31.5 + pos: -7.5,41.5 parent: 2 - - uid: 5831 + - uid: 5135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-30.5 + pos: -7.5,42.5 parent: 2 - - uid: 5833 + - uid: 5139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-30.5 + pos: -7.5,45.5 parent: 2 - - uid: 5835 + - uid: 5141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-30.5 + pos: -7.5,47.5 parent: 2 - - uid: 5836 + - uid: 5144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-30.5 + pos: 4.5,46.5 parent: 2 - - uid: 5838 + - uid: 5146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-31.5 + rot: -1.5707963267948966 rad + pos: 4.5,52.5 parent: 2 - - uid: 5843 + - uid: 5153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-31.5 + rot: 3.141592653589793 rad + pos: 46.5,0.5 parent: 2 - - uid: 5845 + - uid: 5179 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,-33.5 + pos: -4.5,49.5 parent: 2 - - uid: 5846 + - uid: 5185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-34.5 + rot: -1.5707963267948966 rad + pos: -4.5,51.5 parent: 2 - - uid: 5847 + - uid: 5189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-35.5 + rot: -1.5707963267948966 rad + pos: -3.5,53.5 parent: 2 - - uid: 5850 + - uid: 5190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-37.5 + rot: -1.5707963267948966 rad + pos: 3.5,54.5 parent: 2 - - uid: 5852 + - uid: 5193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-37.5 + rot: -1.5707963267948966 rad + pos: 4.5,51.5 parent: 2 - - uid: 5854 + - uid: 5196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-37.5 + rot: -1.5707963267948966 rad + pos: 4.5,48.5 parent: 2 - - uid: 5855 + - uid: 5279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-37.5 + pos: -7.5,40.5 parent: 2 - - uid: 5860 + - uid: 5283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-25.5 + pos: -6.5,39.5 parent: 2 - - uid: 5867 + - uid: 5285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-24.5 + pos: -4.5,39.5 parent: 2 - - uid: 5868 + - uid: 5296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-24.5 + pos: 10.5,29.5 parent: 2 - - uid: 5870 + - uid: 5298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-26.5 + pos: 10.5,31.5 parent: 2 - - uid: 5871 + - uid: 5326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-27.5 + pos: 10.5,32.5 parent: 2 - - uid: 5873 + - uid: 5424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-39.5 + pos: 24.5,16.5 parent: 2 - - uid: 5876 + - uid: 5427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-41.5 + rot: -1.5707963267948966 rad + pos: 24.5,11.5 parent: 2 - - uid: 5882 + - uid: 5431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-25.5 + rot: -1.5707963267948966 rad + pos: 23.5,9.5 parent: 2 - - uid: 5887 + - uid: 5432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-53.5 + pos: 10.5,34.5 parent: 2 - - uid: 5888 + - uid: 5434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-50.5 + pos: 10.5,36.5 parent: 2 - - uid: 5892 + - uid: 5479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-43.5 + pos: 35.5,11.5 parent: 2 - - uid: 5918 + - uid: 5483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,8.5 + pos: 33.5,16.5 parent: 2 - - uid: 5951 + - uid: 5484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,10.5 + pos: 35.5,16.5 parent: 2 - - uid: 5956 + - uid: 5486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,11.5 + pos: 35.5,10.5 parent: 2 - - uid: 5957 + - uid: 5488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,12.5 + pos: 35.5,8.5 parent: 2 - - uid: 5958 + - uid: 5489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-20.5 + pos: 35.5,6.5 parent: 2 - - uid: 5961 + - uid: 5495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,14.5 + pos: 33.5,11.5 parent: 2 - - uid: 5962 + - uid: 5499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,38.5 + pos: 37.5,16.5 parent: 2 - - uid: 5972 + - uid: 5500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,10.5 + pos: 37.5,17.5 parent: 2 - - uid: 5989 + - uid: 5502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,10.5 + pos: 37.5,19.5 parent: 2 - - uid: 5995 + - uid: 5503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,10.5 + pos: 37.5,20.5 parent: 2 - - uid: 5999 + - uid: 5505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,17.5 + pos: 37.5,22.5 parent: 2 - - uid: 6001 + - uid: 5507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,17.5 + pos: 22.5,23.5 parent: 2 - - uid: 6002 + - uid: 5509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,17.5 + pos: 23.5,24.5 parent: 2 - - uid: 6004 + - uid: 5511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,16.5 + pos: 32.5,24.5 parent: 2 - - uid: 6005 + - uid: 5512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,14.5 + pos: 31.5,24.5 parent: 2 - - uid: 6007 + - uid: 5532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,12.5 + rot: 3.141592653589793 rad + pos: 27.5,9.5 parent: 2 - - uid: 6009 + - uid: 5559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,16.5 + rot: 3.141592653589793 rad + pos: 25.5,9.5 parent: 2 - - uid: 6044 + - uid: 5569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,16.5 + pos: 29.5,6.5 parent: 2 - - uid: 6051 + - uid: 5570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,15.5 + pos: 29.5,8.5 parent: 2 - - uid: 6052 + - uid: 5616 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,19.5 + pos: 30.5,27.5 parent: 2 - - uid: 6053 + - uid: 5628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-38.5 + pos: 38.5,16.5 parent: 2 - - uid: 6076 + - uid: 5629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,5.5 + pos: 38.5,15.5 parent: 2 - - uid: 6078 + - uid: 5632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-37.5 + pos: 38.5,12.5 parent: 2 - - uid: 6079 + - uid: 5634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-37.5 + pos: 37.5,11.5 parent: 2 - - uid: 6081 + - uid: 5659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-41.5 + rot: 3.141592653589793 rad + pos: 45.5,0.5 parent: 2 - - uid: 6097 + - uid: 5723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-43.5 + pos: 40.5,18.5 parent: 2 - - uid: 6108 + - uid: 5743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-43.5 + pos: 44.5,19.5 parent: 2 - - uid: 6110 + - uid: 5762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-42.5 + pos: -27.5,-45.5 parent: 2 - - uid: 6111 + - uid: 5774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-43.5 + pos: 45.5,6.5 parent: 2 - - uid: 6144 + - uid: 5775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-53.5 + pos: 47.5,4.5 parent: 2 - - uid: 6146 + - uid: 5778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-44.5 + pos: 40.5,6.5 parent: 2 - - uid: 6147 + - uid: 5779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-43.5 + pos: 27.5,-57.5 parent: 2 - - uid: 6149 + - uid: 5780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-37.5 + pos: -34.5,-46.5 parent: 2 - - uid: 6153 + - uid: 5787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,37.5 + rot: 3.141592653589793 rad + pos: -17.5,-42.5 parent: 2 - - uid: 6154 + - uid: 5788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,37.5 + pos: 0.5,40.5 parent: 2 - - uid: 6155 + - uid: 5802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-41.5 + pos: -3.5,40.5 parent: 2 - - uid: 6156 + - uid: 5810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-36.5 + pos: 55.5,-39.5 parent: 2 - - uid: 6157 + - uid: 5814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-36.5 + rot: 3.141592653589793 rad + pos: 53.5,-34.5 parent: 2 - - uid: 6159 + - uid: 5817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-47.5 + rot: 3.141592653589793 rad + pos: 53.5,-31.5 parent: 2 - - uid: 6162 + - uid: 5820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-48.5 + rot: 3.141592653589793 rad + pos: 54.5,-36.5 parent: 2 - - uid: 6163 + - uid: 5821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-48.5 + rot: 3.141592653589793 rad + pos: 55.5,-36.5 parent: 2 - - uid: 6164 + - uid: 5823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-55.5 + rot: 3.141592653589793 rad + pos: 57.5,-36.5 parent: 2 - - uid: 6168 + - uid: 5824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-57.5 + rot: 3.141592653589793 rad + pos: 58.5,-36.5 parent: 2 - - uid: 6169 + - uid: 5826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-54.5 + rot: 3.141592653589793 rad + pos: 59.5,-35.5 parent: 2 - - uid: 6171 + - uid: 5827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-48.5 + rot: 3.141592653589793 rad + pos: 59.5,-34.5 parent: 2 - - uid: 6172 + - uid: 5829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-49.5 + rot: 3.141592653589793 rad + pos: 59.5,-32.5 parent: 2 - - uid: 6175 + - uid: 5832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-49.5 + rot: 3.141592653589793 rad + pos: 58.5,-30.5 parent: 2 - - uid: 6176 + - uid: 5834 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-49.5 + rot: 3.141592653589793 rad + pos: 56.5,-30.5 parent: 2 - - uid: 6177 + - uid: 5837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-50.5 + rot: 3.141592653589793 rad + pos: 58.5,-31.5 parent: 2 - - uid: 6202 + - uid: 5839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-55.5 + rot: 3.141592653589793 rad + pos: 56.5,-31.5 parent: 2 - - uid: 6210 + - uid: 5840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-54.5 + rot: 3.141592653589793 rad + pos: 55.5,-31.5 parent: 2 - - uid: 6211 + - uid: 5841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-54.5 + rot: 3.141592653589793 rad + pos: 54.5,-31.5 parent: 2 - - uid: 6213 + - uid: 5842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-52.5 + rot: 3.141592653589793 rad + pos: 60.5,-30.5 parent: 2 - - uid: 6216 + - uid: 5844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-53.5 + rot: 3.141592653589793 rad + pos: 60.5,-32.5 parent: 2 - - uid: 6217 + - uid: 5848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-53.5 + rot: 3.141592653589793 rad + pos: 60.5,-36.5 parent: 2 - - uid: 6220 + - uid: 5849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-44.5 + rot: 3.141592653589793 rad + pos: 60.5,-37.5 parent: 2 - - uid: 6226 + - uid: 5851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-44.5 + rot: 3.141592653589793 rad + pos: 58.5,-37.5 parent: 2 - - uid: 6229 + - uid: 5853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-51.5 + rot: 3.141592653589793 rad + pos: 56.5,-37.5 parent: 2 - - uid: 6239 + - uid: 5856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-54.5 + rot: 3.141592653589793 rad + pos: 53.5,-37.5 parent: 2 - - uid: 6240 + - uid: 5858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-57.5 + rot: 3.141592653589793 rad + pos: 51.5,-37.5 parent: 2 - - uid: 6242 + - uid: 5859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-54.5 + rot: 3.141592653589793 rad + pos: 53.5,-26.5 parent: 2 - - uid: 6243 + - uid: 5861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-54.5 + rot: 3.141592653589793 rad + pos: 53.5,-24.5 parent: 2 - - uid: 6244 + - uid: 5863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-54.5 + rot: 3.141592653589793 rad + pos: 55.5,-24.5 parent: 2 - - uid: 6245 + - uid: 5865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-55.5 + pos: 56.5,-24.5 parent: 2 - - uid: 6248 + - uid: 5866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-54.5 + rot: -1.5707963267948966 rad + pos: 56.5,-40.5 parent: 2 - - uid: 6249 + - uid: 5869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-56.5 + pos: 59.5,-25.5 parent: 2 - - uid: 6250 + - uid: 5874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-57.5 + pos: 53.5,-42.5 parent: 2 - - uid: 6252 + - uid: 5877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-59.5 + pos: 52.5,-42.5 parent: 2 - - uid: 6253 + - uid: 5880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-56.5 + rot: -1.5707963267948966 rad + pos: 49.5,-41.5 parent: 2 - - uid: 6256 + - uid: 5884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-57.5 + rot: -1.5707963267948966 rad + pos: -56.5,-52.5 parent: 2 - - uid: 6257 + - uid: 5891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-59.5 + rot: -1.5707963267948966 rad + pos: 51.5,-43.5 parent: 2 - - uid: 6260 + - uid: 5902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-59.5 + rot: -1.5707963267948966 rad + pos: 49.5,-42.5 parent: 2 - - uid: 6262 + - uid: 5952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-64.5 + pos: 39.5,7.5 parent: 2 - - uid: 6263 + - uid: 5954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-64.5 + pos: 39.5,9.5 parent: 2 - - uid: 6264 + - uid: 5955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-64.5 + pos: 40.5,9.5 parent: 2 - - uid: 6266 + - uid: 5959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-66.5 + pos: 40.5,13.5 parent: 2 - - uid: 6285 + - uid: 5963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-66.5 + pos: 41.5,14.5 parent: 2 - - uid: 6286 + - uid: 6000 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-66.5 + pos: 44.5,17.5 parent: 2 - - uid: 6288 + - uid: 6003 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-66.5 + pos: 47.5,17.5 parent: 2 - - uid: 6290 + - uid: 6006 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-66.5 + pos: 48.5,15.5 parent: 2 - - uid: 6296 + - uid: 6010 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-66.5 + pos: 48.5,11.5 parent: 2 - - uid: 6297 + - uid: 6043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-66.5 + pos: 50.5,16.5 parent: 2 - - uid: 6299 + - uid: 6046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-66.5 + pos: 49.5,16.5 parent: 2 - - uid: 6301 + - uid: 6060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-65.5 + pos: -57.5,-19.5 parent: 2 - - uid: 6302 + - uid: 6063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-63.5 + pos: -18.5,37.5 parent: 2 - - uid: 6304 + - uid: 6075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-61.5 + pos: -45.5,-37.5 parent: 2 - - uid: 6306 + - uid: 6077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-58.5 + pos: 37.5,6.5 parent: 2 - - uid: 6308 + - uid: 6086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-62.5 + pos: -51.5,-37.5 parent: 2 - - uid: 6313 + - uid: 6087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-59.5 + pos: 79.5,-36.5 parent: 2 - - uid: 6314 + - uid: 6096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-65.5 + rot: -1.5707963267948966 rad + pos: -38.5,-54.5 parent: 2 - - uid: 6317 + - uid: 6100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-66.5 + rot: -1.5707963267948966 rad + pos: -56.5,-49.5 parent: 2 - - uid: 6318 + - uid: 6107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-66.5 + rot: -1.5707963267948966 rad + pos: -45.5,-42.5 parent: 2 - - uid: 6320 + - uid: 6145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-66.5 + rot: -1.5707963267948966 rad + pos: -55.5,-42.5 parent: 2 - - uid: 6321 + - uid: 6150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-8.5 + rot: -1.5707963267948966 rad + pos: -39.5,-42.5 parent: 2 - - uid: 6324 + - uid: 6152 components: - type: Transform - pos: 21.5,-51.5 + rot: -1.5707963267948966 rad + pos: -43.5,-37.5 parent: 2 - - uid: 6371 + - uid: 6160 components: - type: Transform - pos: 23.5,-72.5 + rot: -1.5707963267948966 rad + pos: -38.5,-45.5 parent: 2 - - uid: 6487 + - uid: 6161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-8.5 + rot: -1.5707963267948966 rad + pos: -38.5,-46.5 parent: 2 - - uid: 6488 + - uid: 6165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-8.5 + rot: -1.5707963267948966 rad + pos: -56.5,-47.5 parent: 2 - - uid: 6495 + - uid: 6166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-8.5 + rot: -1.5707963267948966 rad + pos: -56.5,-46.5 parent: 2 - - uid: 6502 + - uid: 6167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-8.5 + rot: -1.5707963267948966 rad + pos: -56.5,-45.5 parent: 2 - - uid: 6510 + - uid: 6170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,0.5 + rot: -1.5707963267948966 rad + pos: -42.5,-55.5 parent: 2 - - uid: 6524 + - uid: 6173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,12.5 + rot: -1.5707963267948966 rad + pos: -52.5,-48.5 parent: 2 - - uid: 6527 + - uid: 6174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,10.5 + rot: -1.5707963267948966 rad + pos: -42.5,-49.5 parent: 2 - - uid: 6528 + - uid: 6212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-15.5 + rot: -1.5707963267948966 rad + pos: -52.5,-55.5 parent: 2 - - uid: 6529 + - uid: 6214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-0.5 + rot: 3.141592653589793 rad + pos: -52.5,-50.5 parent: 2 - - uid: 6542 + - uid: 6215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,13.5 + rot: 3.141592653589793 rad + pos: -52.5,-51.5 parent: 2 - - uid: 6563 + - uid: 6218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,5.5 + rot: 3.141592653589793 rad + pos: -42.5,-51.5 parent: 2 - - uid: 6623 + - uid: 6219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,0.5 + rot: 3.141592653589793 rad + pos: -42.5,-52.5 parent: 2 - - uid: 6628 + - uid: 6221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,7.5 + rot: -1.5707963267948966 rad + pos: -57.5,-54.5 parent: 2 - - uid: 6631 + - uid: 6222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,9.5 + rot: -1.5707963267948966 rad + pos: -59.5,-54.5 parent: 2 - - uid: 6633 + - uid: 6223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,11.5 + rot: -1.5707963267948966 rad + pos: -60.5,-57.5 parent: 2 - - uid: 6639 + - uid: 6224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,13.5 + rot: -1.5707963267948966 rad + pos: -60.5,-55.5 parent: 2 - - uid: 6641 + - uid: 6225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,13.5 + rot: -1.5707963267948966 rad + pos: -38.5,-49.5 parent: 2 - - uid: 6643 + - uid: 6227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,9.5 + rot: 3.141592653589793 rad + pos: -39.5,-44.5 parent: 2 - - uid: 6647 + - uid: 6228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,9.5 + rot: 3.141592653589793 rad + pos: -49.5,-44.5 parent: 2 - - uid: 6648 + - uid: 6241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,11.5 + rot: -1.5707963267948966 rad + pos: -52.5,-56.5 parent: 2 - - uid: 6650 + - uid: 6246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,13.5 + rot: -1.5707963267948966 rad + pos: -35.5,-54.5 parent: 2 - - uid: 6652 + - uid: 6247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,13.5 + rot: -1.5707963267948966 rad + pos: -34.5,-56.5 parent: 2 - - uid: 6653 + - uid: 6251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,16.5 + rot: -1.5707963267948966 rad + pos: -42.5,-57.5 parent: 2 - - uid: 6655 + - uid: 6254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,16.5 + rot: -1.5707963267948966 rad + pos: -40.5,-57.5 parent: 2 - - uid: 6657 + - uid: 6255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-11.5 + rot: -1.5707963267948966 rad + pos: -54.5,-57.5 parent: 2 - - uid: 6667 + - uid: 6258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-13.5 + rot: -1.5707963267948966 rad + pos: -40.5,-59.5 parent: 2 - - uid: 6669 + - uid: 6259 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-14.5 + rot: -1.5707963267948966 rad + pos: -41.5,-59.5 parent: 2 - - uid: 6671 + - uid: 6261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-15.5 + rot: -1.5707963267948966 rad + pos: -53.5,-59.5 parent: 2 - - uid: 6672 + - uid: 6265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-15.5 + rot: -1.5707963267948966 rad + pos: -40.5,-64.5 parent: 2 - - uid: 6673 + - uid: 6267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-15.5 + rot: -1.5707963267948966 rad + pos: -53.5,-64.5 parent: 2 - - uid: 6675 + - uid: 6268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-40.5 + rot: -1.5707963267948966 rad + pos: -54.5,-64.5 parent: 2 - - uid: 6677 + - uid: 6287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-24.5 + rot: -1.5707963267948966 rad + pos: -54.5,-66.5 parent: 2 - - uid: 6728 + - uid: 6289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-22.5 + rot: -1.5707963267948966 rad + pos: -41.5,-66.5 parent: 2 - - uid: 6759 + - uid: 6295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-24.5 + rot: -1.5707963267948966 rad + pos: 16.5,-54.5 parent: 2 - - uid: 6776 + - uid: 6298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-13.5 + rot: -1.5707963267948966 rad + pos: -57.5,-66.5 parent: 2 - - uid: 6778 + - uid: 6300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-11.5 + rot: -1.5707963267948966 rad + pos: -59.5,-66.5 parent: 2 - - uid: 6786 + - uid: 6303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,17.5 + rot: -1.5707963267948966 rad + pos: -60.5,-64.5 parent: 2 - - uid: 6788 + - uid: 6305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,19.5 + rot: -1.5707963267948966 rad + pos: -60.5,-62.5 parent: 2 - - uid: 6830 + - uid: 6307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,20.5 + rot: -1.5707963267948966 rad + pos: -60.5,-59.5 parent: 2 - - uid: 6838 + - uid: 6309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,20.5 + rot: -1.5707963267948966 rad + pos: -60.5,-60.5 parent: 2 - - uid: 6840 + - uid: 6310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,19.5 + rot: -1.5707963267948966 rad + pos: -34.5,-58.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-60.5 parent: 2 - - uid: 6842 + - uid: 6312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,17.5 + rot: -1.5707963267948966 rad + pos: -34.5,-61.5 parent: 2 - - uid: 6844 + - uid: 6315 components: - type: Transform - pos: 9.5,-45.5 + rot: -1.5707963267948966 rad + pos: -34.5,-63.5 parent: 2 - - uid: 6846 + - uid: 6316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,15.5 + rot: -1.5707963267948966 rad + pos: -34.5,-64.5 parent: 2 - - uid: 6847 + - uid: 6319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,13.5 + rot: -1.5707963267948966 rad + pos: -35.5,-66.5 parent: 2 - - uid: 6850 + - uid: 6322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-0.5 + rot: -1.5707963267948966 rad + pos: -38.5,-66.5 parent: 2 - - uid: 6852 + - uid: 6323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,5.5 + rot: -1.5707963267948966 rad + pos: -39.5,-66.5 parent: 2 - - uid: 6854 + - uid: 6325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,5.5 + rot: -1.5707963267948966 rad + pos: 16.5,-51.5 parent: 2 - - uid: 6858 + - uid: 6486 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,2.5 + pos: 45.5,-8.5 parent: 2 - - uid: 6860 + - uid: 6490 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-0.5 + pos: 52.5,-8.5 parent: 2 - - uid: 6862 + - uid: 6494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-0.5 + rot: -1.5707963267948966 rad + pos: 55.5,-8.5 parent: 2 - - uid: 6864 + - uid: 6503 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,-0.5 + pos: 53.5,-8.5 parent: 2 - - uid: 6868 + - uid: 6507 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,4.5 + pos: 48.5,0.5 parent: 2 - - uid: 6871 + - uid: 6511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-2.5 + rot: -1.5707963267948966 rad + pos: 57.5,-8.5 parent: 2 - - uid: 6872 + - uid: 6512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,21.5 + rot: 3.141592653589793 rad + pos: 48.5,-8.5 parent: 2 - - uid: 6877 + - uid: 6513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,21.5 + rot: 3.141592653589793 rad + pos: 47.5,-8.5 parent: 2 - - uid: 6902 + - uid: 6518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-37.5 + pos: 38.5,5.5 parent: 2 - - uid: 6934 + - uid: 6531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,41.5 + rot: -1.5707963267948966 rad + pos: 56.5,-1.5 parent: 2 - - uid: 6935 + - uid: 6532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,43.5 + rot: -1.5707963267948966 rad + pos: 56.5,-2.5 parent: 2 - - uid: 6941 + - uid: 6564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,43.5 + rot: -1.5707963267948966 rad + pos: 60.5,-2.5 parent: 2 - - uid: 6950 + - uid: 6622 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,7.5 + pos: 57.5,5.5 parent: 2 - - uid: 6954 + - uid: 6629 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,8.5 + pos: 57.5,0.5 parent: 2 - - uid: 6956 + - uid: 6630 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-10.5 + pos: 57.5,6.5 parent: 2 - - uid: 6963 + - uid: 6632 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-12.5 + pos: 57.5,8.5 parent: 2 - - uid: 6964 + - uid: 6634 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-14.5 + pos: 56.5,9.5 parent: 2 - - uid: 6979 + - uid: 6637 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,7.5 + pos: 55.5,9.5 parent: 2 - - uid: 6981 + - uid: 6640 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,7.5 + pos: 57.5,12.5 parent: 2 - - uid: 6984 + - uid: 6642 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,7.5 + pos: 55.5,13.5 parent: 2 - - uid: 6999 + - uid: 6644 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,8.5 + pos: 53.5,13.5 parent: 2 - - uid: 7000 + - uid: 6645 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,11.5 + pos: 56.5,13.5 parent: 2 - - uid: 7001 + - uid: 6646 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,11.5 + pos: 58.5,9.5 parent: 2 - - uid: 7006 + - uid: 6649 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,12.5 + pos: 60.5,10.5 parent: 2 - - uid: 7010 + - uid: 6651 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,18.5 + pos: 60.5,12.5 parent: 2 - - uid: 7012 + - uid: 6654 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,22.5 + pos: 58.5,13.5 parent: 2 - - uid: 7016 + - uid: 6656 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-8.5 + pos: 54.5,16.5 parent: 2 - - uid: 7030 + - uid: 6658 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,-10.5 + pos: 56.5,16.5 parent: 2 - - uid: 7031 + - uid: 6659 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,-10.5 + pos: 56.5,15.5 parent: 2 - - uid: 7034 + - uid: 6670 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-10.5 + pos: 47.5,-12.5 parent: 2 - - uid: 7068 + - uid: 6674 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,-10.5 + pos: 48.5,-15.5 parent: 2 - - uid: 7069 + - uid: 6676 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,-10.5 + pos: 50.5,-15.5 parent: 2 - - uid: 7070 + - uid: 6678 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,-7.5 + pos: 52.5,-15.5 parent: 2 - - uid: 7071 + - uid: 6679 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,-6.5 + pos: 53.5,-15.5 parent: 2 - - uid: 7072 + - uid: 6681 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,-37.5 + pos: 47.5,-9.5 parent: 2 - - uid: 7075 + - uid: 6748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-20.5 + rot: -1.5707963267948966 rad + pos: 62.5,-2.5 parent: 2 - - uid: 7076 + - uid: 6774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-21.5 + rot: 3.141592653589793 rad + pos: 51.5,-27.5 parent: 2 - - uid: 7078 + - uid: 6777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-21.5 + pos: 51.5,-23.5 parent: 2 - - uid: 7083 + - uid: 6779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-14.5 + pos: 52.5,-30.5 parent: 2 - - uid: 7085 + - uid: 6785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-14.5 + pos: 54.5,-14.5 parent: 2 - - uid: 7087 + - uid: 6787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-16.5 + pos: 54.5,-12.5 parent: 2 - - uid: 7088 + - uid: 6789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-21.5 + pos: 54.5,-10.5 parent: 2 - - uid: 7090 + - uid: 6790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-21.5 + pos: 54.5,-9.5 parent: 2 - - uid: 7093 + - uid: 6805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-22.5 + rot: -1.5707963267948966 rad + pos: 58.5,-2.5 parent: 2 - - uid: 7107 + - uid: 6839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-24.5 + pos: 56.5,18.5 parent: 2 - - uid: 7108 + - uid: 6841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-25.5 + pos: 56.5,20.5 parent: 2 - - uid: 7112 + - uid: 6843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-15.5 + pos: -15.5,-39.5 parent: 2 - - uid: 7114 + - uid: 6845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-27.5 + pos: 63.5,-10.5 parent: 2 - - uid: 7115 + - uid: 6848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-27.5 + pos: 62.5,18.5 parent: 2 - - uid: 7127 + - uid: 6849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-29.5 + pos: 61.5,20.5 parent: 2 - - uid: 7132 + - uid: 6851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-15.5 + pos: 62.5,16.5 parent: 2 - - uid: 7134 + - uid: 6853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-15.5 + pos: 62.5,14.5 parent: 2 - - uid: 7181 + - uid: 6855 components: - type: Transform - pos: 2.5,39.5 + pos: 61.5,13.5 parent: 2 - - uid: 7183 + - uid: 6857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-15.5 + pos: 58.5,-0.5 parent: 2 - - uid: 7186 + - uid: 6859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-14.5 + pos: 59.5,5.5 parent: 2 - - uid: 7188 + - uid: 6861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-10.5 + pos: 61.5,5.5 parent: 2 - - uid: 7190 + - uid: 6863 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,-10.5 + pos: 63.5,2.5 parent: 2 - - uid: 7192 + - uid: 6869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-10.5 + pos: 61.5,-0.5 parent: 2 - - uid: 7196 + - uid: 6873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-8.5 + pos: 64.5,0.5 parent: 2 - - uid: 7198 + - uid: 6874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-6.5 + pos: 64.5,1.5 parent: 2 - - uid: 7199 + - uid: 6875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-6.5 + pos: 64.5,2.5 parent: 2 - - uid: 7201 + - uid: 6876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-6.5 + pos: 64.5,3.5 parent: 2 - - uid: 7203 + - uid: 6878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-6.5 + pos: 64.5,5.5 parent: 2 - - uid: 7205 + - uid: 6879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-6.5 + pos: 63.5,5.5 parent: 2 - - uid: 7207 + - uid: 6880 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-19.5 + pos: 61.5,2.5 parent: 2 - - uid: 7208 + - uid: 6932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-19.5 + pos: 57.5,22.5 parent: 2 - - uid: 7211 + - uid: 6933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-19.5 + pos: 61.5,22.5 parent: 2 - - uid: 7270 + - uid: 6942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-19.5 + pos: -40.5,-37.5 parent: 2 - - uid: 7278 + - uid: 6952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-21.5 + pos: -3.5,42.5 parent: 2 - - uid: 7279 + - uid: 6953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-22.5 + pos: 0.5,42.5 parent: 2 - - uid: 7280 + - uid: 6955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-24.5 + pos: 0.5,44.5 parent: 2 - - uid: 7282 + - uid: 6962 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-24.5 + pos: -15.5,-41.5 parent: 2 - - uid: 7283 + - uid: 6970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-25.5 + rot: -1.5707963267948966 rad + pos: -49.5,-38.5 parent: 2 - - uid: 7286 + - uid: 6977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-26.5 + pos: 58.5,-10.5 parent: 2 - - uid: 7290 + - uid: 6978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-29.5 + pos: 57.5,-10.5 parent: 2 - - uid: 7291 + - uid: 6980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-30.5 + pos: 56.5,-11.5 parent: 2 - - uid: 7292 + - uid: 6982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-28.5 + pos: 56.5,-13.5 parent: 2 - - uid: 7295 + - uid: 6996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-29.5 + rot: -1.5707963267948966 rad + pos: 66.5,7.5 parent: 2 - - uid: 7298 + - uid: 6998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-30.5 + rot: -1.5707963267948966 rad + pos: 65.5,7.5 parent: 2 - - uid: 7301 + - uid: 7009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-19.5 + rot: -1.5707963267948966 rad + pos: 63.5,11.5 parent: 2 - - uid: 7302 + - uid: 7020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-19.5 + rot: -1.5707963267948966 rad + pos: 63.5,22.5 parent: 2 - - uid: 7303 + - uid: 7021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-10.5 + rot: -1.5707963267948966 rad + pos: 63.5,23.5 parent: 2 - - uid: 7306 + - uid: 7022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-10.5 + rot: -1.5707963267948966 rad + pos: 63.5,24.5 parent: 2 - - uid: 7308 + - uid: 7028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-11.5 + rot: -1.5707963267948966 rad + pos: 60.5,-8.5 parent: 2 - - uid: 7318 + - uid: 7029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-11.5 + rot: -1.5707963267948966 rad + pos: 61.5,-8.5 parent: 2 - - uid: 7320 + - uid: 7066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-19.5 + pos: 61.5,-10.5 parent: 2 - - uid: 7325 + - uid: 7073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-19.5 + pos: 65.5,-9.5 parent: 2 - - uid: 7327 + - uid: 7074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-11.5 + pos: 65.5,-8.5 parent: 2 - - uid: 7328 + - uid: 7089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-19.5 + rot: -1.5707963267948966 rad + pos: 60.5,-21.5 parent: 2 - - uid: 7330 + - uid: 7091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,27.5 + rot: 3.141592653589793 rad + pos: 62.5,-18.5 parent: 2 - - uid: 7341 + - uid: 7094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-4.5 + rot: 3.141592653589793 rad + pos: 62.5,-15.5 parent: 2 - - uid: 7349 + - uid: 7095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-4.5 + rot: 3.141592653589793 rad + pos: 61.5,-15.5 parent: 2 - - uid: 7378 + - uid: 7101 components: - type: Transform - pos: 42.5,14.5 + rot: -1.5707963267948966 rad + pos: 62.5,-11.5 parent: 2 - - uid: 7390 + - uid: 7110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-4.5 + pos: 66.5,-19.5 parent: 2 - - uid: 7416 + - uid: 7113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-50.5 + pos: 67.5,-23.5 parent: 2 - - uid: 7445 + - uid: 7116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-10.5 + pos: 67.5,-26.5 parent: 2 - - uid: 7446 + - uid: 7117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-33.5 + pos: 67.5,-27.5 parent: 2 - - uid: 7461 + - uid: 7128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-33.5 + pos: 60.5,-27.5 parent: 2 - - uid: 7462 + - uid: 7129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-32.5 + pos: 61.5,-27.5 parent: 2 - - uid: 7464 + - uid: 7131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-31.5 + pos: 64.5,-27.5 parent: 2 - - uid: 7479 + - uid: 7133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-31.5 + pos: 65.5,-27.5 parent: 2 - - uid: 7503 + - uid: 7136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-31.5 + pos: 66.5,-11.5 parent: 2 - - uid: 7513 + - uid: 7137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-30.5 + pos: 66.5,-10.5 parent: 2 - - uid: 7514 + - uid: 7165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-28.5 + rot: 3.141592653589793 rad + pos: 55.5,-21.5 parent: 2 - - uid: 7519 + - uid: 7182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-27.5 + pos: 60.5,-29.5 parent: 2 - - uid: 7521 + - uid: 7185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-26.5 + pos: 63.5,-29.5 parent: 2 - - uid: 7525 + - uid: 7187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-24.5 + pos: 68.5,-15.5 parent: 2 - - uid: 7527 + - uid: 7189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-33.5 + pos: 70.5,-15.5 parent: 2 - - uid: 7529 + - uid: 7191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-33.5 + pos: 72.5,-15.5 parent: 2 - - uid: 7530 + - uid: 7195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-33.5 + pos: 72.5,-11.5 parent: 2 - - uid: 7531 + - uid: 7197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-30.5 + pos: 74.5,-10.5 parent: 2 - - uid: 7533 + - uid: 7200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-29.5 + pos: 75.5,-9.5 parent: 2 - - uid: 7540 + - uid: 7202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-32.5 + pos: 75.5,-7.5 parent: 2 - - uid: 7542 + - uid: 7204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-38.5 + pos: 74.5,-6.5 parent: 2 - - uid: 7543 + - uid: 7206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-39.5 + pos: 72.5,-6.5 parent: 2 - - uid: 7545 + - uid: 7209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-37.5 + pos: 69.5,-6.5 parent: 2 - - uid: 7546 + - uid: 7212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-35.5 + pos: 66.5,-6.5 parent: 2 - - uid: 7547 + - uid: 7269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-39.5 + rot: 3.141592653589793 rad + pos: 68.5,-19.5 parent: 2 - - uid: 7553 + - uid: 7271 components: - type: Transform - pos: 54.5,-24.5 + rot: 3.141592653589793 rad + pos: 69.5,-19.5 parent: 2 - - uid: 7567 + - uid: 7281 components: - type: Transform - pos: 64.5,21.5 + rot: 3.141592653589793 rad + pos: 72.5,-20.5 parent: 2 - - uid: 7580 + - uid: 7284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-39.5 + rot: 3.141592653589793 rad + pos: 72.5,-23.5 parent: 2 - - uid: 7587 + - uid: 7285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-39.5 + rot: -1.5707963267948966 rad + pos: 71.5,-24.5 parent: 2 - - uid: 7590 + - uid: 7287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-39.5 + rot: -1.5707963267948966 rad + pos: 70.5,-24.5 parent: 2 - - uid: 7593 + - uid: 7293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-39.5 + rot: -1.5707963267948966 rad + pos: 72.5,-27.5 parent: 2 - - uid: 7595 + - uid: 7294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-40.5 + rot: -1.5707963267948966 rad + pos: 72.5,-28.5 parent: 2 - - uid: 7596 + - uid: 7296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-41.5 + rot: -1.5707963267948966 rad + pos: 72.5,-30.5 parent: 2 - - uid: 7598 + - uid: 7297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-40.5 + rot: -1.5707963267948966 rad + pos: 71.5,-30.5 parent: 2 - - uid: 7599 + - uid: 7299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-42.5 + rot: -1.5707963267948966 rad + pos: 69.5,-30.5 parent: 2 - - uid: 7601 + - uid: 7300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-41.5 + rot: -1.5707963267948966 rad + pos: 68.5,-30.5 parent: 2 - - uid: 7631 + - uid: 7304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-42.5 + rot: -1.5707963267948966 rad + pos: 73.5,-19.5 parent: 2 - - uid: 7632 + - uid: 7307 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-50.5 + pos: 76.5,-19.5 parent: 2 - - uid: 7636 + - uid: 7309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-41.5 + rot: -1.5707963267948966 rad + pos: 78.5,-19.5 parent: 2 - - uid: 7637 + - uid: 7312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-44.5 + rot: -1.5707963267948966 rad + pos: 78.5,-15.5 parent: 2 - - uid: 7639 + - uid: 7317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-45.5 + rot: -1.5707963267948966 rad + pos: 78.5,-11.5 parent: 2 - - uid: 7641 + - uid: 7319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-46.5 + rot: -1.5707963267948966 rad + pos: 77.5,-10.5 parent: 2 - - uid: 7645 + - uid: 7321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-47.5 + rot: -1.5707963267948966 rad + pos: 79.5,-15.5 parent: 2 - - uid: 7648 + - uid: 7322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-47.5 + rot: -1.5707963267948966 rad + pos: 80.5,-15.5 parent: 2 - - uid: 7649 + - uid: 7323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-44.5 + rot: -1.5707963267948966 rad + pos: 81.5,-15.5 parent: 2 - - uid: 7651 + - uid: 7324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-45.5 + rot: -1.5707963267948966 rad + pos: 82.5,-15.5 parent: 2 - - uid: 7653 + - uid: 7326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-45.5 + rot: -1.5707963267948966 rad + pos: 80.5,-11.5 parent: 2 - - uid: 7654 + - uid: 7329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-46.5 + rot: -1.5707963267948966 rad + pos: 80.5,-19.5 parent: 2 - - uid: 7655 + - uid: 7331 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-47.5 + rot: -1.5707963267948966 rad + pos: 82.5,-19.5 parent: 2 - - uid: 7658 + - uid: 7338 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-49.5 + rot: -1.5707963267948966 rad + pos: 82.5,-11.5 parent: 2 - - uid: 7660 + - uid: 7339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-48.5 + rot: -1.5707963267948966 rad + pos: 83.5,-15.5 parent: 2 - - uid: 7661 + - uid: 7340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-49.5 + rot: -1.5707963267948966 rad + pos: 84.5,-15.5 parent: 2 - - uid: 7662 + - uid: 7342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-48.5 + rot: -1.5707963267948966 rad + pos: 84.5,-11.5 parent: 2 - - uid: 7664 + - uid: 7350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-49.5 + rot: -1.5707963267948966 rad + pos: 83.5,-19.5 parent: 2 - - uid: 7726 + - uid: 7460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-41.5 + pos: 73.5,-4.5 parent: 2 - - uid: 7730 + - uid: 7463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-41.5 + pos: 76.5,-4.5 parent: 2 - - uid: 7733 + - uid: 7478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-49.5 + pos: 86.5,-9.5 parent: 2 - - uid: 7735 + - uid: 7504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-41.5 + pos: 73.5,-33.5 parent: 2 - - uid: 7736 + - uid: 7516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-45.5 + pos: 66.5,-28.5 parent: 2 - - uid: 7741 + - uid: 7517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-45.5 + pos: 66.5,-29.5 parent: 2 - - uid: 7744 + - uid: 7518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-36.5 + pos: 66.5,-30.5 parent: 2 - - uid: 7746 + - uid: 7520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-50.5 + pos: 67.5,-31.5 parent: 2 - - uid: 7756 + - uid: 7522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-34.5 + pos: 69.5,-31.5 parent: 2 - - uid: 7757 + - uid: 7523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-36.5 + pos: 70.5,-31.5 parent: 2 - - uid: 7758 + - uid: 7524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-37.5 + pos: 71.5,-31.5 parent: 2 - - uid: 7762 + - uid: 7526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-34.5 + pos: 73.5,-31.5 parent: 2 - - uid: 7763 + - uid: 7528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-47.5 + pos: 73.5,-29.5 parent: 2 - - uid: 7764 + - uid: 7532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-49.5 + pos: 73.5,-25.5 parent: 2 - - uid: 7767 + - uid: 7534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-44.5 + pos: 73.5,-23.5 parent: 2 - - uid: 7770 + - uid: 7544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-50.5 + pos: 64.5,-31.5 parent: 2 - - uid: 7772 + - uid: 7562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-50.5 + rot: 3.141592653589793 rad + pos: 55.5,-23.5 parent: 2 - - uid: 7782 + - uid: 7565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-42.5 + pos: 64.5,19.5 parent: 2 - - uid: 7783 + - uid: 7568 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-42.5 + pos: 65.5,18.5 parent: 2 - - uid: 7794 + - uid: 7574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-50.5 + pos: 56.5,-15.5 parent: 2 - - uid: 7804 + - uid: 7577 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-50.5 + pos: 21.5,-34.5 parent: 2 - - uid: 7806 + - uid: 7578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-50.5 + pos: 18.5,-36.5 parent: 2 - - uid: 7816 + - uid: 7579 components: - type: Transform - pos: 18.5,-55.5 + pos: 18.5,-37.5 parent: 2 - - uid: 7817 + - uid: 7588 components: - type: Transform - pos: 18.5,-61.5 + rot: -1.5707963267948966 rad + pos: 31.5,-40.5 parent: 2 - - uid: 7818 + - uid: 7589 components: - type: Transform - pos: 22.5,-66.5 + pos: 27.5,-38.5 parent: 2 - - uid: 7819 + - uid: 7594 components: - type: Transform - pos: 23.5,-61.5 + pos: 26.5,-39.5 parent: 2 - - uid: 7820 + - uid: 7597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-50.5 + pos: 23.5,-39.5 parent: 2 - - uid: 7822 + - uid: 7602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-50.5 + pos: 18.5,-39.5 parent: 2 - - uid: 7824 + - uid: 7628 components: - type: Transform - pos: 25.5,-67.5 + pos: 27.5,-40.5 parent: 2 - - uid: 7826 + - uid: 7630 components: - type: Transform - pos: 14.5,-62.5 + rot: -1.5707963267948966 rad + pos: 30.5,-40.5 parent: 2 - - uid: 7827 + - uid: 7633 components: - type: Transform - pos: 17.5,-51.5 + rot: -1.5707963267948966 rad + pos: 6.5,-49.5 parent: 2 - - uid: 7828 + - uid: 7634 components: - type: Transform - pos: 17.5,-54.5 + rot: -1.5707963267948966 rad + pos: 25.5,-40.5 parent: 2 - - uid: 7831 + - uid: 7635 components: - type: Transform - pos: 13.5,-66.5 + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 parent: 2 - - uid: 7833 + - uid: 7638 components: - type: Transform - pos: 21.5,-55.5 + rot: -1.5707963267948966 rad + pos: 23.5,-41.5 parent: 2 - - uid: 7834 + - uid: 7640 components: - type: Transform - pos: 20.5,-55.5 + rot: -1.5707963267948966 rad + pos: 23.5,-43.5 parent: 2 - - uid: 7835 + - uid: 7642 components: - type: Transform - pos: 18.5,-66.5 + rot: -1.5707963267948966 rad + pos: 30.5,-42.5 parent: 2 - - uid: 7845 + - uid: 7643 components: - type: Transform - pos: 12.5,-78.5 + rot: -1.5707963267948966 rad + pos: 30.5,-43.5 parent: 2 - - uid: 7846 + - uid: 7644 components: - type: Transform - pos: 11.5,-65.5 + rot: -1.5707963267948966 rad + pos: 30.5,-44.5 parent: 2 - - uid: 7848 + - uid: 7646 components: - type: Transform - pos: 15.5,-61.5 + rot: -1.5707963267948966 rad + pos: 31.5,-43.5 parent: 2 - - uid: 7849 + - uid: 7647 components: - type: Transform - pos: 17.5,-61.5 + rot: -1.5707963267948966 rad + pos: 22.5,-40.5 parent: 2 - - uid: 7855 + - uid: 7650 components: - type: Transform - pos: 16.5,-52.5 + rot: -1.5707963267948966 rad + pos: 31.5,-45.5 parent: 2 - - uid: 7856 + - uid: 7652 components: - type: Transform - pos: 16.5,-53.5 + rot: -1.5707963267948966 rad + pos: 30.5,-46.5 parent: 2 - - uid: 7858 + - uid: 7656 components: - type: Transform - pos: 25.5,-61.5 + rot: -1.5707963267948966 rad + pos: 22.5,-42.5 parent: 2 - - uid: 7859 + - uid: 7657 components: - type: Transform - pos: 23.5,-62.5 + rot: -1.5707963267948966 rad + pos: 22.5,-43.5 parent: 2 - - uid: 7861 + - uid: 7659 components: - type: Transform - pos: 16.5,-63.5 + rot: -1.5707963267948966 rad + pos: 23.5,-44.5 parent: 2 - - uid: 7862 + - uid: 7663 components: - type: Transform - pos: 24.5,-54.5 + rot: -1.5707963267948966 rad + pos: 22.5,-46.5 parent: 2 - - uid: 7866 + - uid: 7665 components: - type: Transform - pos: 22.5,-54.5 + rot: -1.5707963267948966 rad + pos: 23.5,-47.5 parent: 2 - - uid: 7869 + - uid: 7674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-38.5 + rot: -1.5707963267948966 rad + pos: 24.5,-47.5 parent: 2 - - uid: 7871 + - uid: 7679 components: - type: Transform - pos: 23.5,-76.5 + rot: -1.5707963267948966 rad + pos: 29.5,-47.5 parent: 2 - - uid: 7872 + - uid: 7725 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-40.5 + pos: 29.5,-49.5 parent: 2 - - uid: 7873 + - uid: 7728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-41.5 + pos: 31.5,-48.5 parent: 2 - - uid: 7874 + - uid: 7729 components: - type: Transform - pos: 22.5,-61.5 + pos: 30.5,-48.5 parent: 2 - - uid: 7875 + - uid: 7731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-41.5 + pos: 22.5,-48.5 parent: 2 - - uid: 7878 + - uid: 7734 components: - type: Transform - pos: 16.5,-65.5 + pos: 24.5,-48.5 parent: 2 - - uid: 7881 + - uid: 7740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-41.5 + pos: 17.5,-41.5 parent: 2 - - uid: 7883 + - uid: 7743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-50.5 + pos: 20.5,-41.5 parent: 2 - - uid: 7888 + - uid: 7752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-45.5 + pos: 13.5,-38.5 parent: 2 - - uid: 7893 + - uid: 7753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-46.5 + pos: 16.5,-45.5 parent: 2 - - uid: 7894 + - uid: 7754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-49.5 + pos: 20.5,-46.5 parent: 2 - - uid: 7896 + - uid: 7761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-50.5 + pos: 17.5,-45.5 parent: 2 - - uid: 7898 + - uid: 7765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-43.5 + pos: 4.5,-35.5 parent: 2 - - uid: 7907 + - uid: 7768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-43.5 + pos: 4.5,-33.5 parent: 2 - - uid: 7914 + - uid: 7769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-43.5 + pos: 13.5,-37.5 parent: 2 - - uid: 7962 + - uid: 7773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-34.5 + pos: -6.5,-33.5 parent: 2 - - uid: 7965 + - uid: 7775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-36.5 + pos: 7.5,-37.5 parent: 2 - - uid: 7966 + - uid: 7780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-39.5 + pos: -8.5,-41.5 parent: 2 - - uid: 7968 + - uid: 7786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-41.5 + pos: 4.5,-37.5 parent: 2 - - uid: 7972 + - uid: 7793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-33.5 + rot: -1.5707963267948966 rad + pos: 20.5,-48.5 parent: 2 - - uid: 7973 + - uid: 7796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-33.5 + pos: 15.5,-45.5 parent: 2 - - uid: 7995 + - uid: 7800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-32.5 + rot: -1.5707963267948966 rad + pos: 22.5,-63.5 parent: 2 - - uid: 7998 + - uid: 7801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-38.5 + pos: 15.5,-43.5 parent: 2 - - uid: 8001 + - uid: 7803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-38.5 + pos: 15.5,-42.5 parent: 2 - - uid: 8023 + - uid: 7805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-37.5 + rot: -1.5707963267948966 rad + pos: 22.5,-62.5 parent: 2 - - uid: 8024 + - uid: 7811 components: - type: Transform - pos: 26.5,-66.5 + pos: 26.5,-78.5 parent: 2 - - uid: 8025 + - uid: 7815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-41.5 + pos: 27.5,-65.5 parent: 2 - - uid: 8026 + - uid: 7821 components: - type: Transform - pos: 25.5,-78.5 + pos: 15.5,-50.5 parent: 2 - - uid: 8027 + - uid: 7823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-42.5 + pos: 24.5,-62.5 parent: 2 - - uid: 8030 + - uid: 7825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-43.5 + pos: 13.5,-62.5 parent: 2 - - uid: 8031 + - uid: 7829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-43.5 + rot: -1.5707963267948966 rad + pos: 17.5,-53.5 parent: 2 - - uid: 8035 + - uid: 7838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-43.5 + pos: 13.5,-78.5 parent: 2 - - uid: 8036 + - uid: 7841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-36.5 + rot: -1.5707963267948966 rad + pos: 20.5,-66.5 parent: 2 - - uid: 8039 + - uid: 7842 components: - type: Transform - pos: 24.5,-71.5 + pos: 25.5,-79.5 parent: 2 - - uid: 8047 + - uid: 7843 components: - type: Transform - pos: 24.5,-51.5 + pos: 11.5,-64.5 parent: 2 - - uid: 8048 + - uid: 7844 components: - type: Transform - pos: 14.5,-69.5 + pos: 24.5,-66.5 parent: 2 - - uid: 8053 + - uid: 7847 components: - type: Transform - pos: 15.5,-70.5 + pos: 12.5,-66.5 parent: 2 - - uid: 8059 + - uid: 7850 components: - type: Transform - pos: 24.5,-52.5 + pos: 17.5,-55.5 parent: 2 - - uid: 8065 + - uid: 7851 components: - type: Transform - pos: 18.5,-76.5 + pos: 13.5,-50.5 parent: 2 - - uid: 8079 + - uid: 7852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-36.5 + pos: 24.5,-50.5 parent: 2 - - uid: 8120 + - uid: 7853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-36.5 + pos: 17.5,-77.5 parent: 2 - - uid: 8121 + - uid: 7854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-36.5 + pos: 15.5,-77.5 parent: 2 - - uid: 8123 + - uid: 7857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-45.5 + pos: 21.5,-54.5 parent: 2 - - uid: 8124 + - uid: 7860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-46.5 + pos: 24.5,-53.5 parent: 2 - - uid: 8126 + - uid: 7863 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-49.5 + pos: 16.5,-66.5 parent: 2 - - uid: 8127 + - uid: 7865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-47.5 + pos: 23.5,-54.5 parent: 2 - - uid: 8128 + - uid: 7879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-48.5 + rot: -1.5707963267948966 rad + pos: 22.5,-65.5 parent: 2 - - uid: 8142 + - uid: 7880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-39.5 + rot: -1.5707963267948966 rad + pos: 21.5,-66.5 parent: 2 - - uid: 8143 + - uid: 7882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,9.5 + rot: -1.5707963267948966 rad + pos: 16.5,-62.5 parent: 2 - - uid: 8145 + - uid: 7884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,9.5 + rot: -1.5707963267948966 rad + pos: 17.5,-52.5 parent: 2 - - uid: 8147 + - uid: 7885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-42.5 + rot: -1.5707963267948966 rad + pos: 16.5,-61.5 parent: 2 - - uid: 8149 + - uid: 7886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-41.5 + rot: -1.5707963267948966 rad + pos: 20.5,-61.5 parent: 2 - - uid: 8151 + - uid: 7889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-42.5 + pos: 14.5,-61.5 parent: 2 - - uid: 8152 + - uid: 7891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-42.5 + pos: 22.5,-49.5 parent: 2 - - uid: 8157 + - uid: 7892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-51.5 + rot: 3.141592653589793 rad + pos: 7.5,-39.5 parent: 2 - - uid: 8182 + - uid: 7895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-51.5 + pos: 10.5,-41.5 parent: 2 - - uid: 8183 + - uid: 7897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-52.5 + pos: 12.5,-41.5 parent: 2 - - uid: 8200 + - uid: 7900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-33.5 + rot: 3.141592653589793 rad + pos: 7.5,-41.5 parent: 2 - - uid: 8201 + - uid: 7903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,11.5 + pos: 13.5,-40.5 parent: 2 - - uid: 8207 + - uid: 7947 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,10.5 + pos: 64.5,17.5 parent: 2 - - uid: 8208 + - uid: 7963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,9.5 + rot: -1.5707963267948966 rad + pos: 10.5,-47.5 parent: 2 - - uid: 8520 + - uid: 7964 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,25.5 + rot: -1.5707963267948966 rad + pos: 10.5,-48.5 parent: 2 - - uid: 8521 + - uid: 7967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,26.5 + rot: -1.5707963267948966 rad + pos: 11.5,-50.5 parent: 2 - - uid: 8522 + - uid: 7969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,28.5 + rot: -1.5707963267948966 rad + pos: 10.5,-44.5 parent: 2 - - uid: 8884 + - uid: 7970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,18.5 + rot: -1.5707963267948966 rad + pos: 11.5,-43.5 parent: 2 - - uid: 8974 + - uid: 7971 components: - type: Transform - pos: 44.5,-30.5 + rot: -1.5707963267948966 rad + pos: 12.5,-43.5 parent: 2 - - uid: 9096 + - uid: 7990 components: - type: Transform - pos: 23.5,-73.5 + pos: 24.5,-61.5 parent: 2 - - uid: 9097 + - uid: 7997 components: - type: Transform - pos: 24.5,-75.5 + rot: 3.141592653589793 rad + pos: -2.5,-33.5 parent: 2 - - uid: 9105 + - uid: 8004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,28.5 + pos: -2.5,-37.5 parent: 2 - - uid: 9112 + - uid: 8007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,29.5 + rot: 3.141592653589793 rad + pos: -0.5,-41.5 parent: 2 - - uid: 9114 + - uid: 8012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,31.5 + rot: -1.5707963267948966 rad + pos: 22.5,-55.5 parent: 2 - - uid: 9115 + - uid: 8013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,31.5 + rot: 3.141592653589793 rad + pos: -0.5,-33.5 parent: 2 - - uid: 9124 + - uid: 8015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,27.5 + pos: 25.5,-62.5 parent: 2 - - uid: 9125 + - uid: 8018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,30.5 + rot: 3.141592653589793 rad + pos: 4.5,-38.5 parent: 2 - - uid: 9127 + - uid: 8019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,30.5 + rot: 3.141592653589793 rad + pos: 3.5,-38.5 parent: 2 - - uid: 9128 + - uid: 8022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-8.5 + pos: 27.5,-66.5 parent: 2 - - uid: 9131 + - uid: 8040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-8.5 + pos: 15.5,-69.5 parent: 2 - - uid: 9133 + - uid: 8049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-8.5 + pos: 15.5,-67.5 parent: 2 - - uid: 9135 + - uid: 8050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,33.5 + rot: 3.141592653589793 rad + pos: 22.5,-60.5 parent: 2 - - uid: 9137 + - uid: 8051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,33.5 + pos: 24.5,-68.5 parent: 2 - - uid: 9139 + - uid: 8052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,33.5 + pos: 24.5,-70.5 parent: 2 - - uid: 9143 + - uid: 8058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,36.5 + rot: -1.5707963267948966 rad + pos: 17.5,-66.5 parent: 2 - - uid: 9144 + - uid: 8064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,36.5 + pos: 23.5,-74.5 parent: 2 - - uid: 9146 + - uid: 8088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,35.5 + pos: -4.5,-37.5 parent: 2 - - uid: 9148 + - uid: 8093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-37.5 + pos: -5.5,-37.5 parent: 2 - - uid: 9153 + - uid: 8122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-37.5 + pos: 4.5,-43.5 parent: 2 - - uid: 9156 + - uid: 8125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-38.5 + pos: 7.5,-43.5 parent: 2 - - uid: 9157 + - uid: 8129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-20.5 + pos: 12.5,-36.5 parent: 2 - - uid: 9192 + - uid: 8131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-18.5 + pos: 10.5,-36.5 parent: 2 - - uid: 9193 + - uid: 8132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-18.5 + pos: 8.5,-36.5 parent: 2 - - uid: 9194 + - uid: 8140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-19.5 + pos: 5.5,-44.5 parent: 2 - - uid: 9199 + - uid: 8141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-38.5 + pos: 6.5,-44.5 parent: 2 - - uid: 9201 + - uid: 8144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-38.5 + pos: 6.5,-46.5 parent: 2 - - uid: 9202 + - uid: 8146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-38.5 + pos: 5.5,-47.5 parent: 2 - - uid: 9205 + - uid: 8155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-32.5 + pos: 5.5,-45.5 parent: 2 - - uid: 9207 + - uid: 8156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-38.5 + pos: 14.5,-39.5 parent: 2 - - uid: 9208 + - uid: 8174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,22.5 + rot: 3.141592653589793 rad + pos: 52.5,9.5 parent: 2 - - uid: 9211 + - uid: 8202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-32.5 + pos: -2.5,-40.5 parent: 2 - - uid: 9216 + - uid: 8203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,39.5 + pos: -3.5,-42.5 parent: 2 - - uid: 9217 + - uid: 8342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,30.5 + rot: -1.5707963267948966 rad + pos: -49.5,-41.5 parent: 2 - - uid: 9218 + - uid: 8491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,22.5 + rot: 3.141592653589793 rad + pos: -12.5,-41.5 parent: 2 - - uid: 10288 + - uid: 8519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,20.5 + rot: -1.5707963267948966 rad + pos: -37.5,-51.5 parent: 2 - - uid: 10499 + - uid: 8523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-30.5 + rot: -1.5707963267948966 rad + pos: -35.5,-53.5 parent: 2 - - uid: 10633 + - uid: 8707 components: - type: Transform - pos: 13.5,-79.5 + rot: 3.141592653589793 rad + pos: 52.5,-27.5 parent: 2 - - uid: 10636 + - uid: 9095 components: - type: Transform - pos: 13.5,-61.5 + pos: 14.5,-67.5 parent: 2 - - uid: 10637 + - uid: 9098 components: - type: Transform - pos: 16.5,-77.5 + pos: 14.5,-74.5 parent: 2 - - uid: 10646 + - uid: 9100 components: - type: Transform - pos: 15.5,-71.5 + pos: 21.5,-77.5 parent: 2 - - uid: 10653 + - uid: 9101 components: - type: Transform - pos: 14.5,-75.5 + pos: 13.5,-67.5 parent: 2 - - uid: 11666 + - uid: 9106 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,39.5 + pos: 62.5,-33.5 parent: 2 - - uid: 12466 + - uid: 9107 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,35.5 - parent: 2 - - uid: 12670 - components: - - type: Transform - pos: 44.5,-28.5 - parent: 2 - - uid: 12811 - components: - - type: Transform - pos: 23.5,-69.5 + pos: 61.5,-33.5 parent: 2 - - uid: 12812 + - uid: 9113 components: - type: Transform - pos: 27.5,-64.5 + rot: 3.141592653589793 rad + pos: 66.5,11.5 parent: 2 - - uid: 12813 + - uid: 9116 components: - type: Transform - pos: 20.5,-60.5 + rot: 3.141592653589793 rad + pos: 66.5,8.5 parent: 2 - - uid: 12834 + - uid: 9123 components: - type: Transform - pos: 23.5,-77.5 + pos: -30.5,24.5 parent: 2 - - uid: 12837 + - uid: 9126 components: - type: Transform - pos: 20.5,-77.5 + pos: -30.5,27.5 parent: 2 - - uid: 12838 + - uid: 9129 components: - type: Transform - pos: 16.5,-76.5 + pos: -28.5,28.5 parent: 2 - - uid: 14192 + - uid: 9130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,39.5 + pos: -27.5,28.5 parent: 2 - - uid: 14660 + - uid: 9132 components: - type: Transform - pos: -62.5,-33.5 + pos: -27.5,30.5 parent: 2 - - uid: 14674 + - uid: 9134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,38.5 + pos: -26.5,31.5 parent: 2 - - uid: 14814 + - uid: 9136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,26.5 + pos: -24.5,31.5 parent: 2 - - uid: 14954 + - uid: 9138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,23.5 + pos: -27.5,25.5 parent: 2 - - uid: 15011 + - uid: 9141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,39.5 + pos: -30.5,30.5 parent: 2 - - uid: 15013 + - uid: 9142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,39.5 + pos: -31.5,30.5 parent: 2 - - uid: 15045 + - uid: 9145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,25.5 + pos: 84.5,-8.5 parent: 2 - - uid: 15047 + - uid: 9152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,35.5 + pos: -27.5,33.5 parent: 2 - - uid: 15052 + - uid: 9155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,33.5 + pos: -24.5,33.5 parent: 2 - - uid: 15056 + - uid: 9191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,33.5 + rot: 3.141592653589793 rad + pos: -21.5,36.5 parent: 2 - - uid: 15060 + - uid: 9195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,36.5 + rot: 3.141592653589793 rad + pos: -23.5,34.5 parent: 2 - - uid: 15062 + - uid: 9206 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,0.5 + pos: -62.5,-19.5 parent: 2 - - uid: 15066 + - uid: 9209 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,6.5 + pos: -60.5,-18.5 parent: 2 - - uid: 15068 + - uid: 9210 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,7.5 + pos: -59.5,-18.5 parent: 2 - - uid: 15072 + - uid: 9215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,7.5 + pos: -39.5,-37.5 parent: 2 - - uid: 15073 + - uid: 10638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,7.5 + pos: 15.5,-68.5 parent: 2 - - uid: 15076 + - uid: 10640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-3.5 + pos: 22.5,-77.5 parent: 2 - - uid: 15078 + - uid: 10641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-3.5 + pos: 23.5,-67.5 parent: 2 - - uid: 15158 + - uid: 10643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,22.5 + pos: 14.5,-76.5 parent: 2 - - uid: 15205 + - uid: 10644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,2.5 + rot: -1.5707963267948966 rad + pos: 16.5,-55.5 parent: 2 - - uid: 15207 + - uid: 10645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-1.5 + pos: 23.5,-71.5 parent: 2 - - uid: 15216 + - uid: 10647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,4.5 + pos: 14.5,-66.5 parent: 2 - - uid: 15218 + - uid: 10649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-67.5 + pos: 14.5,-70.5 parent: 2 - - uid: 15220 + - uid: 10652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-70.5 + pos: 25.5,-66.5 parent: 2 - - uid: 15223 + - uid: 11665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-69.5 + pos: 76.5,-32.5 parent: 2 - - uid: 15224 + - uid: 12255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-68.5 + pos: 43.5,19.5 parent: 2 - - uid: 15246 + - uid: 12462 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,38.5 + pos: 54.5,-28.5 parent: 2 - - uid: 15247 + - uid: 12832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,42.5 + pos: 11.5,-52.5 parent: 2 - - uid: 15248 + - uid: 12833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,42.5 + pos: 17.5,-76.5 parent: 2 - - uid: 15249 + - uid: 12835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,42.5 + pos: 15.5,-74.5 parent: 2 - - uid: 15591 + - uid: 12836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,40.5 + pos: 15.5,-72.5 parent: 2 - - uid: 15623 + - uid: 12839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,38.5 + pos: 20.5,-76.5 parent: 2 - - uid: 15624 + - uid: 13730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,18.5 + pos: 77.5,-32.5 parent: 2 - - uid: 15846 + - uid: 14199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,18.5 + pos: 63.5,27.5 parent: 2 - - uid: 15849 + - uid: 14632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,17.5 + pos: -37.5,-42.5 parent: 2 - - uid: 15851 + - uid: 14672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,16.5 + pos: -61.5,-33.5 parent: 2 - - uid: 15858 + - uid: 14956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-45.5 + rot: -1.5707963267948966 rad + pos: -36.5,30.5 parent: 2 - - uid: 15874 + - uid: 14959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-44.5 + rot: -1.5707963267948966 rad + pos: -39.5,30.5 parent: 2 - - uid: 15877 + - uid: 14960 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-44.5 + rot: -1.5707963267948966 rad + pos: -40.5,30.5 parent: 2 - - uid: 15878 + - uid: 15010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,22.5 + rot: -1.5707963267948966 rad + pos: -38.5,23.5 parent: 2 - - uid: 15888 + - uid: 15012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,28.5 + rot: -1.5707963267948966 rad + pos: -38.5,21.5 parent: 2 - - uid: 15941 + - uid: 15039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,28.5 + pos: -24.5,39.5 parent: 2 - - uid: 15944 + - uid: 15044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,26.5 + pos: -29.5,39.5 parent: 2 - - uid: 15945 + - uid: 15048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,25.5 + pos: -30.5,34.5 parent: 2 - - uid: 15995 + - uid: 15049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,28.5 + pos: -30.5,33.5 parent: 2 - - uid: 16024 + - uid: 15051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,28.5 + pos: -20.5,38.5 parent: 2 - - uid: 16027 + - uid: 15067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,26.5 + rot: -1.5707963267948966 rad + pos: -32.5,39.5 parent: 2 - - uid: 16056 + - uid: 15069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,25.5 + rot: -1.5707963267948966 rad + pos: -34.5,39.5 parent: 2 - - uid: 16060 + - uid: 15070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-36.5 + rot: -1.5707963267948966 rad + pos: -34.5,38.5 parent: 2 - - uid: 16061 + - uid: 15074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-32.5 + rot: -1.5707963267948966 rad + pos: -34.5,34.5 parent: 2 - - uid: 16073 + - uid: 15075 components: - type: Transform - pos: 55.5,-22.5 + rot: -1.5707963267948966 rad + pos: -34.5,33.5 parent: 2 - - uid: 16087 + - uid: 15077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-32.5 + rot: -1.5707963267948966 rad + pos: -32.5,33.5 parent: 2 - - uid: 16088 + - uid: 15079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-30.5 + rot: -1.5707963267948966 rad + pos: -30.5,38.5 parent: 2 - - uid: 16092 + - uid: 15082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-23.5 + pos: 18.5,24.5 parent: 2 - - uid: 16093 + - uid: 15197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-43.5 + pos: 71.5,-3.5 parent: 2 - - uid: 16094 + - uid: 15200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-4.5 + pos: 71.5,-0.5 parent: 2 - - uid: 16096 + - uid: 15208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-4.5 + pos: 71.5,3.5 parent: 2 - - uid: 16098 + - uid: 15217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-6.5 + pos: 70.5,7.5 parent: 2 - - uid: 16100 + - uid: 15219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,25.5 + pos: 68.5,7.5 parent: 2 - - uid: 16101 + - uid: 15244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,25.5 + pos: 67.5,22.5 parent: 2 - - uid: 16153 + - uid: 15245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,25.5 + pos: 66.5,22.5 parent: 2 - - uid: 16160 + - uid: 15397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,22.5 + pos: 21.5,-39.5 parent: 2 - - uid: 16165 + - uid: 15590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,27.5 + pos: 7.5,-45.5 parent: 2 - - uid: 16169 + - uid: 15599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,26.5 + pos: 43.5,17.5 parent: 2 - - uid: 16171 + - uid: 15847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-46.5 + rot: -1.5707963267948966 rad + pos: -52.5,-70.5 parent: 2 - - uid: 16178 + - uid: 15848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-46.5 + rot: -1.5707963267948966 rad + pos: -42.5,-69.5 parent: 2 - - uid: 16179 + - uid: 15850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-46.5 + rot: -1.5707963267948966 rad + pos: -52.5,-68.5 parent: 2 - - uid: 16309 + - uid: 15859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-46.5 + rot: -1.5707963267948966 rad + pos: -42.5,-67.5 parent: 2 - - uid: 16347 + - uid: 15876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-33.5 + pos: -17.5,41.5 parent: 2 - - uid: 16348 + - uid: 15883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-36.5 + pos: -11.5,42.5 parent: 2 - - uid: 16351 + - uid: 15885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-37.5 + pos: -10.5,41.5 parent: 2 - - uid: 16374 + - uid: 15942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-37.5 + pos: -43.5,18.5 parent: 2 - - uid: 16389 + - uid: 15946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-37.5 + pos: -44.5,15.5 parent: 2 - - uid: 16427 + - uid: 16002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-27.5 + pos: -21.5,-45.5 parent: 2 - - uid: 16431 + - uid: 16004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-25.5 + pos: -19.5,-45.5 parent: 2 - - uid: 16432 + - uid: 16023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-23.5 + pos: -23.5,-44.5 parent: 2 - - uid: 16433 + - uid: 16025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-22.5 + pos: -20.5,-45.5 parent: 2 - - uid: 16434 + - uid: 16090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-22.5 + pos: 63.5,28.5 parent: 2 - - uid: 16435 + - uid: 16091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,29.5 + pos: 60.5,28.5 parent: 2 - - uid: 16452 + - uid: 16095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,32.5 + pos: 58.5,28.5 parent: 2 - - uid: 16455 + - uid: 16099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,33.5 + pos: 55.5,27.5 parent: 2 - - uid: 16456 + - uid: 16154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-18.5 + pos: 71.5,-36.5 parent: 2 - - uid: 16459 + - uid: 16167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,22.5 + pos: -37.5,-46.5 parent: 2 - - uid: 16461 + - uid: 16170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,22.5 + pos: 84.5,-31.5 parent: 2 - - uid: 16484 + - uid: 16177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,21.5 + pos: 84.5,-24.5 parent: 2 - - uid: 16485 + - uid: 16262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,20.5 + pos: 20.5,-39.5 parent: 2 - - uid: 16487 + - uid: 16308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-33.5 + pos: 78.5,-4.5 parent: 2 - - uid: 16489 + - uid: 16312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,39.5 + pos: 80.5,-4.5 parent: 2 - - uid: 16491 + - uid: 16314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,42.5 + pos: 83.5,-5.5 parent: 2 - - uid: 16492 + - uid: 16316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,43.5 + pos: 83.5,-7.5 parent: 2 - - uid: 16493 + - uid: 16337 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,43.5 + pos: 53.5,25.5 parent: 2 - - uid: 16509 + - uid: 16343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,43.5 + pos: 54.5,25.5 parent: 2 - - uid: 16512 + - uid: 16346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-23.5 + pos: 49.5,25.5 parent: 2 - - uid: 16513 + - uid: 16390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,38.5 + pos: 17.5,26.5 parent: 2 - - uid: 16517 + - uid: 16423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,36.5 + pos: -26.5,-44.5 parent: 2 - - uid: 16519 + - uid: 16429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,33.5 + pos: 16.5,28.5 parent: 2 - - uid: 16521 + - uid: 16430 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-11.5 + pos: -31.5,-46.5 parent: 2 - - uid: 16522 + - uid: 16457 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-10.5 + pos: -59.5,-37.5 parent: 2 - - uid: 16523 + - uid: 16458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-40.5 + pos: -58.5,-37.5 parent: 2 - - uid: 16552 + - uid: 16460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,55.5 + pos: -56.5,-37.5 parent: 2 - - uid: 16566 + - uid: 16462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,56.5 + pos: -54.5,-37.5 parent: 2 - - uid: 16569 + - uid: 16488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,55.5 + pos: -68.5,-26.5 parent: 2 - - uid: 16571 + - uid: 16490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,51.5 + pos: -68.5,-24.5 parent: 2 - - uid: 16573 + - uid: 16494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,50.5 + pos: -65.5,-22.5 parent: 2 - - uid: 16575 + - uid: 16495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,51.5 + pos: -67.5,-22.5 parent: 2 - - uid: 16614 + - uid: 16510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,24.5 + pos: 16.5,30.5 parent: 2 - - uid: 16621 + - uid: 16511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-34.5 + pos: 16.5,31.5 parent: 2 - - uid: 16623 + - uid: 16518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-29.5 + pos: 48.5,22.5 parent: 2 - - uid: 16625 + - uid: 16520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-27.5 + pos: 46.5,22.5 parent: 2 - - uid: 16660 + - uid: 16570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-43.5 + rot: 3.141592653589793 rad + pos: 10.5,43.5 parent: 2 - - uid: 16730 + - uid: 16572 components: - type: Transform - pos: 15.5,-66.5 + rot: 3.141592653589793 rad + pos: 8.5,43.5 parent: 2 - - uid: 16754 + - uid: 16574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,38.5 + rot: 3.141592653589793 rad + pos: 6.5,43.5 parent: 2 - - uid: 16755 + - uid: 16604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,38.5 + rot: -1.5707963267948966 rad + pos: 50.5,-43.5 parent: 2 - - uid: 16782 + - uid: 16613 components: - type: Transform - pos: 63.5,-37.5 + pos: 85.5,-23.5 parent: 2 - - uid: 16787 + - uid: 16622 components: - type: Transform - pos: 61.5,-37.5 + pos: 17.5,37.5 parent: 2 - - uid: 16827 + - uid: 16624 components: - type: Transform - pos: 15.5,-76.5 + pos: 17.5,35.5 parent: 2 - - uid: 16834 + - uid: 16626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,43.5 + pos: 17.5,34.5 parent: 2 - - uid: 16847 + - uid: 16713 components: - type: Transform - pos: 65.5,-37.5 + pos: 22.5,-75.5 parent: 2 - - uid: 16853 + - uid: 16734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,43.5 + pos: 23.5,-70.5 parent: 2 - - uid: 16855 + - uid: 16773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,43.5 + rot: -1.5707963267948966 rad + pos: 56.5,-42.5 parent: 2 - - uid: 16857 + - uid: 16774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,43.5 + pos: 55.5,-42.5 parent: 2 - - uid: 16858 + - uid: 16775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,40.5 + pos: 55.5,-41.5 parent: 2 - - uid: 16860 + - uid: 16790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,41.5 + pos: 62.5,-37.5 parent: 2 - - uid: 16861 + - uid: 16794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-36.5 + pos: 66.5,-37.5 parent: 2 - - uid: 16913 + - uid: 16801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-34.5 + rot: -1.5707963267948966 rad + pos: 49.5,-40.5 parent: 2 - - uid: 17238 + - uid: 16813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-35.5 + pos: 43.5,-57.5 parent: 2 - - uid: 17328 + - uid: 16822 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,-36.5 + pos: 54.5,-26.5 parent: 2 - - uid: 17362 + - uid: 16828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,18.5 + pos: 30.5,-52.5 parent: 2 - - uid: 17434 + - uid: 16852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-48.5 + pos: 5.5,56.5 parent: 2 - - uid: 17558 + - uid: 16854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-3.5 + pos: 6.5,55.5 parent: 2 - - uid: 18472 + - uid: 16856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-5.5 + pos: -5.5,55.5 parent: 2 - - uid: 18473 + - uid: 16859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-6.5 + pos: -9.5,51.5 parent: 2 - - uid: 19807 + - uid: 16862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,22.5 + pos: -6.5,51.5 parent: 2 - - uid: 19809 + - uid: 17018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,21.5 + pos: 24.5,-67.5 parent: 2 - - uid: 20302 + - uid: 17020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,22.5 + pos: 24.5,-74.5 parent: 2 - - uid: 20304 + - uid: 17070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,24.5 + pos: 39.5,-52.5 parent: 2 - - uid: 20309 + - uid: 17071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,25.5 + pos: 49.5,-56.5 parent: 2 - - uid: 20310 + - uid: 17072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,25.5 + pos: 55.5,-48.5 parent: 2 - - uid: 20331 + - uid: 17073 components: - type: Transform - pos: 14.5,-72.5 + pos: 61.5,-56.5 parent: 2 - - uid: 20358 + - uid: 17074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,24.5 + pos: 64.5,-48.5 parent: 2 - - uid: 20359 + - uid: 17197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,24.5 + pos: 66.5,-35.5 parent: 2 - - uid: 20361 + - uid: 17202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-45.5 + pos: 64.5,-49.5 parent: 2 - - uid: 20363 + - uid: 17209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-10.5 + pos: 67.5,-48.5 parent: 2 - - uid: 20365 + - uid: 17210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-10.5 + pos: 65.5,-48.5 parent: 2 - - uid: 20366 + - uid: 17211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 92.5,-10.5 + pos: 66.5,-48.5 parent: 2 - - uid: 20399 + - uid: 17232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-17.5 + pos: 64.5,-37.5 parent: 2 - - uid: 20401 + - uid: 17247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-18.5 + pos: 67.5,-49.5 parent: 2 - - uid: 20404 + - uid: 17327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-19.5 + rot: -1.5707963267948966 rad + pos: 56.5,-38.5 parent: 2 - - uid: 20414 + - uid: 17354 components: - type: Transform rot: 1.5707963267948966 rad - pos: 93.5,-20.5 + pos: 54.5,-29.5 parent: 2 - - uid: 20530 + - uid: 18469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 92.5,-21.5 + rot: -1.5707963267948966 rad + pos: 63.5,-6.5 parent: 2 - - uid: 20532 + - uid: 18470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-21.5 + rot: -1.5707963267948966 rad + pos: 62.5,-7.5 parent: 2 - - uid: 20534 + - uid: 18475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-21.5 + rot: -1.5707963267948966 rad + pos: 62.5,-4.5 parent: 2 - - uid: 20535 + - uid: 18579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-22.5 + pos: 15.5,-75.5 parent: 2 - - uid: 20537 + - uid: 19151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,-23.5 + pos: 19.5,-76.5 parent: 2 - - uid: 20538 + - uid: 20088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-23.5 + pos: 16.5,-75.5 parent: 2 - - uid: 20539 + - uid: 20089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-39.5 + pos: 23.5,-75.5 parent: 2 - - uid: 20540 + - uid: 20097 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-44.5 + pos: 22.5,-76.5 parent: 2 - - uid: 20795 + - uid: 20201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-48.5 + pos: 19.5,-77.5 parent: 2 - - uid: 20804 + - uid: 20303 components: - type: Transform - pos: 14.5,-68.5 + pos: 15.5,38.5 parent: 2 - - uid: 20880 + - uid: 20356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-48.5 + rot: 3.141592653589793 rad + pos: 12.5,39.5 parent: 2 - - uid: 20882 + - uid: 20357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-48.5 + rot: 3.141592653589793 rad + pos: 12.5,42.5 parent: 2 - - uid: 20908 + - uid: 20360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-39.5 + rot: 3.141592653589793 rad + pos: 14.5,43.5 parent: 2 - - uid: 20909 + - uid: 20362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,7.5 + rot: 3.141592653589793 rad + pos: 16.5,43.5 parent: 2 - - uid: 21401 + - uid: 20364 components: - type: Transform - pos: 15.5,-73.5 + rot: 3.141592653589793 rad + pos: 17.5,42.5 parent: 2 - - uid: 21462 + - uid: 20367 components: - type: Transform - pos: 24.5,-69.5 + rot: 3.141592653589793 rad + pos: 17.5,39.5 parent: 2 - - uid: 21523 + - uid: 20398 components: - type: Transform - pos: 21.5,-76.5 + pos: 83.5,-36.5 parent: 2 - - uid: 21524 + - uid: 20400 components: - type: Transform - pos: 18.5,-77.5 + pos: 84.5,-35.5 parent: 2 - - uid: 21527 + - uid: 20402 components: - type: Transform - pos: 23.5,-68.5 + pos: 84.5,-33.5 parent: 2 - - uid: 21647 + - uid: 20405 components: - type: Transform - pos: 42.5,17.5 + pos: 79.5,-34.5 parent: 2 - - uid: 21969 + - uid: 20406 components: - type: Transform - pos: -68.5,-33.5 + pos: 79.5,-33.5 parent: 2 - - uid: 21981 + - uid: 20529 components: - type: Transform - pos: -68.5,-29.5 + pos: -41.5,22.5 parent: 2 - - uid: 22007 + - uid: 20531 components: - type: Transform - pos: 22.5,-59.5 + pos: -42.5,21.5 parent: 2 - - uid: 22017 + - uid: 20533 components: - type: Transform - pos: 23.5,-66.5 + pos: -44.5,22.5 parent: 2 -- proto: WallShuttle - entities: - - uid: 21142 + - uid: 20536 components: - type: Transform - pos: 6.5,3.5 - parent: 21128 - - uid: 21143 + pos: -44.5,24.5 + parent: 2 + - uid: 20879 components: - type: Transform - pos: 6.5,2.5 - parent: 21128 - - uid: 21144 + pos: 87.5,-10.5 + parent: 2 + - uid: 20883 components: - type: Transform - pos: 6.5,1.5 - parent: 21128 - - uid: 21145 + pos: 89.5,-10.5 + parent: 2 + - uid: 20889 components: - type: Transform - pos: 6.5,0.5 - parent: 21128 - - uid: 21146 + pos: 91.5,-10.5 + parent: 2 + - uid: 20902 components: - type: Transform - pos: 6.5,-0.5 - parent: 21128 - - uid: 21147 + pos: 93.5,-16.5 + parent: 2 + - uid: 20924 components: - type: Transform - pos: 6.5,-1.5 - parent: 21128 - - uid: 21148 + rot: 3.141592653589793 rad + pos: 93.5,-21.5 + parent: 2 + - uid: 20925 components: - type: Transform - pos: 6.5,-2.5 - parent: 21128 - - uid: 21149 + rot: 3.141592653589793 rad + pos: 91.5,-21.5 + parent: 2 + - uid: 20930 components: - type: Transform - pos: 6.5,-4.5 - parent: 21128 - - uid: 21150 + rot: 3.141592653589793 rad + pos: 87.5,-21.5 + parent: 2 + - uid: 20932 components: - type: Transform - pos: 8.5,-6.5 - parent: 21128 - - uid: 21151 + rot: 3.141592653589793 rad + pos: 90.5,-23.5 + parent: 2 + - uid: 20935 components: - type: Transform - pos: 9.5,-6.5 - parent: 21128 - - uid: 21152 + rot: 3.141592653589793 rad + pos: 87.5,-23.5 + parent: 2 + - uid: 21398 components: - type: Transform - pos: 10.5,-6.5 - parent: 21128 - - uid: 21153 + pos: -21.5,-48.5 + parent: 2 + - uid: 21453 components: - type: Transform - pos: 10.5,-5.5 - parent: 21128 - - uid: 21154 + pos: -64.5,-33.5 + parent: 2 + - uid: 21460 components: - type: Transform - pos: 7.5,-0.5 - parent: 21128 - - uid: 21155 + pos: 24.5,-76.5 + parent: 2 + - uid: 21461 components: - type: Transform - pos: 4.5,-0.5 - parent: 21128 - - uid: 21156 + pos: 14.5,-71.5 + parent: 2 + - uid: 21463 components: - type: Transform - pos: 4.5,-2.5 - parent: 21128 - - uid: 21157 + pos: 15.5,-62.5 + parent: 2 + - uid: 21525 components: - type: Transform - pos: 4.5,-4.5 - parent: 21128 - - uid: 21158 + pos: 24.5,-72.5 + parent: 2 + - uid: 21526 components: - type: Transform - pos: 4.5,-5.5 - parent: 21128 - - uid: 21159 + pos: 24.5,-73.5 + parent: 2 + - uid: 21528 components: - type: Transform - pos: 4.5,-6.5 - parent: 21128 - - uid: 21160 + pos: 11.5,-66.5 + parent: 2 + - uid: 21587 components: - type: Transform - pos: 4.5,-7.5 - parent: 21128 - - uid: 21161 + rot: -1.5707963267948966 rad + pos: 7.5,-49.5 + parent: 2 + - uid: 21588 components: - type: Transform - pos: 4.5,-8.5 - parent: 21128 - - uid: 21162 + rot: -1.5707963267948966 rad + pos: 8.5,-50.5 + parent: 2 + - uid: 21589 components: - type: Transform - pos: 3.5,-8.5 - parent: 21128 - - uid: 21163 + rot: -1.5707963267948966 rad + pos: 9.5,-49.5 + parent: 2 + - uid: 21671 components: - type: Transform - pos: 3.5,-9.5 - parent: 21128 - - uid: 21164 + rot: 1.5707963267948966 rad + pos: 66.5,18.5 + parent: 2 + - uid: 21748 components: - type: Transform - pos: 2.5,-9.5 - parent: 21128 - - uid: 21165 + pos: 42.5,16.5 + parent: 2 + - uid: 22006 components: - type: Transform - pos: 1.5,-9.5 - parent: 21128 - - uid: 21166 + rot: 3.141592653589793 rad + pos: 20.5,-59.5 + parent: 2 + - uid: 22038 components: - type: Transform - pos: 0.5,-9.5 - parent: 21128 - - uid: 21167 + pos: 20.5,-71.5 + parent: 2 + - uid: 22041 components: - type: Transform - pos: 0.5,-8.5 - parent: 21128 - - uid: 21168 + pos: 18.5,-71.5 + parent: 2 + - uid: 22042 components: - type: Transform - pos: -0.5,-8.5 - parent: 21128 - - uid: 21169 + pos: 20.5,-74.5 + parent: 2 + - uid: 22043 components: - type: Transform - pos: -0.5,-7.5 - parent: 21128 - - uid: 21170 + pos: 18.5,-74.5 + parent: 2 + - uid: 22044 components: - type: Transform - pos: -0.5,-6.5 - parent: 21128 - - uid: 21171 + pos: 19.5,-74.5 + parent: 2 + - uid: 22174 components: - type: Transform - pos: -0.5,-5.5 - parent: 21128 - - uid: 21172 + pos: 18.5,-73.5 + parent: 2 + - uid: 22177 components: - type: Transform - pos: -0.5,-1.5 - parent: 21128 - - uid: 21173 + pos: 20.5,-73.5 + parent: 2 + - uid: 22448 components: - type: Transform - pos: -0.5,-0.5 - parent: 21128 - - uid: 21174 + pos: -63.5,-33.5 + parent: 2 +- proto: WallReinforcedRust + entities: + - uid: 597 components: - type: Transform - pos: 10.5,3.5 - parent: 21128 - - uid: 21175 + pos: 14.5,-73.5 + parent: 2 + - uid: 2330 components: - type: Transform - pos: 10.5,1.5 - parent: 21128 -- proto: WallSolid - entities: - - uid: 2702 + rot: 1.5707963267948966 rad + pos: -38.5,-42.5 + parent: 2 + - uid: 2368 components: - type: Transform - pos: -41.5,3.5 + rot: 1.5707963267948966 rad + pos: 51.5,-42.5 parent: 2 - - uid: 2703 + - uid: 2370 components: - type: Transform - pos: 16.5,17.5 + rot: 1.5707963267948966 rad + pos: 55.5,-43.5 parent: 2 - - uid: 2705 + - uid: 2372 components: - type: Transform - pos: -18.5,10.5 + rot: 1.5707963267948966 rad + pos: 50.5,-41.5 parent: 2 - - uid: 2707 + - uid: 2374 components: - type: Transform - pos: 15.5,-0.5 + rot: 1.5707963267948966 rad + pos: -10.5,11.5 parent: 2 - - uid: 2711 + - uid: 2376 components: - type: Transform - pos: 16.5,6.5 + rot: 1.5707963267948966 rad + pos: -7.5,11.5 parent: 2 - - uid: 2712 + - uid: 2379 components: - type: Transform - pos: 16.5,8.5 + rot: 1.5707963267948966 rad + pos: -5.5,11.5 parent: 2 - - uid: 2713 + - uid: 2384 components: - type: Transform - pos: 16.5,4.5 + rot: 1.5707963267948966 rad + pos: -0.5,11.5 parent: 2 - - uid: 2715 + - uid: 2385 components: - type: Transform - pos: 16.5,9.5 + rot: 1.5707963267948966 rad + pos: -2.5,11.5 parent: 2 - - uid: 2716 + - uid: 2387 components: - type: Transform - pos: 16.5,11.5 + rot: 1.5707963267948966 rad + pos: 1.5,11.5 parent: 2 - - uid: 2718 + - uid: 2390 components: - type: Transform - pos: 15.5,12.5 + rot: 1.5707963267948966 rad + pos: 5.5,11.5 parent: 2 - - uid: 2719 + - uid: 2392 components: - type: Transform - pos: 16.5,10.5 + rot: 1.5707963267948966 rad + pos: 8.5,11.5 parent: 2 - - uid: 2722 + - uid: 2394 components: - type: Transform - pos: 14.5,15.5 + rot: 1.5707963267948966 rad + pos: -10.5,-9.5 parent: 2 - - uid: 2724 + - uid: 2397 components: - type: Transform - pos: 12.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,11.5 parent: 2 - - uid: 2725 + - uid: 2399 components: - type: Transform - pos: 11.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,9.5 parent: 2 - - uid: 2733 + - uid: 2402 components: - type: Transform - pos: 9.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,7.5 parent: 2 - - uid: 2743 + - uid: 2404 components: - type: Transform - pos: 3.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,4.5 parent: 2 - - uid: 2744 + - uid: 2407 components: - type: Transform - pos: 2.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,2.5 parent: 2 - - uid: 2746 + - uid: 2410 components: - type: Transform - pos: 0.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-0.5 parent: 2 - - uid: 2747 + - uid: 2412 components: - type: Transform - pos: -5.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-2.5 parent: 2 - - uid: 2748 + - uid: 2413 components: - type: Transform - pos: -6.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-5.5 parent: 2 - - uid: 2750 + - uid: 2416 components: - type: Transform - pos: -8.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 parent: 2 - - uid: 2751 + - uid: 2418 components: - type: Transform - pos: -10.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-10.5 parent: 2 - - uid: 2752 + - uid: 2420 components: - type: Transform - pos: -11.5,15.5 + rot: 1.5707963267948966 rad + pos: 10.5,-10.5 parent: 2 - - uid: 2754 + - uid: 2424 components: - type: Transform - pos: -13.5,15.5 + rot: 1.5707963267948966 rad + pos: 7.5,-10.5 parent: 2 - - uid: 2756 + - uid: 2426 components: - type: Transform - pos: -14.5,14.5 + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 parent: 2 - - uid: 2758 + - uid: 2427 components: - type: Transform - pos: -14.5,12.5 + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 parent: 2 - - uid: 2826 + - uid: 2429 components: - type: Transform - pos: 10.5,-34.5 + rot: 1.5707963267948966 rad + pos: -3.5,-10.5 parent: 2 - - uid: 2830 + - uid: 2430 components: - type: Transform - pos: -16.5,-12.5 + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 parent: 2 - - uid: 2831 + - uid: 2433 components: - type: Transform - pos: -16.5,-15.5 + rot: 1.5707963267948966 rad + pos: -5.5,-10.5 parent: 2 - - uid: 2832 + - uid: 2435 components: - type: Transform - pos: -16.5,-16.5 + rot: 1.5707963267948966 rad + pos: -8.5,-10.5 parent: 2 - - uid: 2835 + - uid: 2436 components: - type: Transform - pos: -16.5,-19.5 + rot: 1.5707963267948966 rad + pos: -9.5,-10.5 parent: 2 - - uid: 2836 + - uid: 2437 components: - type: Transform - pos: -16.5,-20.5 + rot: 1.5707963267948966 rad + pos: -10.5,-7.5 parent: 2 - - uid: 2868 + - uid: 2439 components: - type: Transform - pos: -15.5,-21.5 + rot: 1.5707963267948966 rad + pos: -10.5,-6.5 parent: 2 - - uid: 2869 + - uid: 2440 components: - type: Transform - pos: -13.5,-21.5 + rot: 1.5707963267948966 rad + pos: -10.5,-4.5 parent: 2 - - uid: 2873 + - uid: 2442 components: - type: Transform - pos: -12.5,-22.5 + rot: 1.5707963267948966 rad + pos: -10.5,-2.5 parent: 2 - - uid: 2874 + - uid: 2443 components: - type: Transform - pos: -12.5,-23.5 + rot: 1.5707963267948966 rad + pos: -10.5,4.5 parent: 2 - - uid: 2875 + - uid: 2448 components: - type: Transform - pos: -12.5,-24.5 + rot: 1.5707963267948966 rad + pos: -10.5,3.5 parent: 2 - - uid: 2877 + - uid: 2449 components: - type: Transform - pos: -12.5,-26.5 + rot: 1.5707963267948966 rad + pos: -10.5,9.5 parent: 2 - - uid: 2879 + - uid: 2450 components: - type: Transform - pos: -12.5,-28.5 + rot: 1.5707963267948966 rad + pos: -10.5,7.5 parent: 2 - - uid: 2880 + - uid: 2452 components: - type: Transform - pos: 27.5,-0.5 + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 parent: 2 - - uid: 2884 + - uid: 2457 components: - type: Transform - pos: 24.5,0.5 + rot: 1.5707963267948966 rad + pos: -2.5,-12.5 parent: 2 - - uid: 2885 + - uid: 2458 components: - type: Transform - pos: 23.5,0.5 + rot: 1.5707963267948966 rad + pos: -2.5,-15.5 parent: 2 - - uid: 2886 + - uid: 2459 components: - type: Transform - pos: 22.5,0.5 + rot: 1.5707963267948966 rad + pos: 3.5,-15.5 parent: 2 - - uid: 2888 + - uid: 2461 components: - type: Transform - pos: 20.5,0.5 + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 parent: 2 - - uid: 2892 + - uid: 2463 components: - type: Transform - pos: 18.5,0.5 + rot: 1.5707963267948966 rad + pos: -12.5,-0.5 parent: 2 - - uid: 2894 + - uid: 2466 components: - type: Transform - pos: 16.5,0.5 + rot: 1.5707963267948966 rad + pos: 7.5,-11.5 parent: 2 - - uid: 2895 + - uid: 2467 components: - type: Transform - pos: -15.5,-5.5 + rot: 1.5707963267948966 rad + pos: 7.5,-13.5 parent: 2 - - uid: 2896 + - uid: 2468 components: - type: Transform - pos: 16.5,1.5 + rot: 1.5707963267948966 rad + pos: 7.5,-15.5 parent: 2 - - uid: 2898 + - uid: 2472 components: - type: Transform - pos: -56.5,-22.5 + rot: 1.5707963267948966 rad + pos: 5.5,-16.5 parent: 2 - - uid: 2899 + - uid: 2473 components: - type: Transform - pos: -18.5,-5.5 + rot: 1.5707963267948966 rad + pos: 4.5,-16.5 parent: 2 - - uid: 2900 + - uid: 2474 components: - type: Transform - pos: -17.5,-5.5 + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 parent: 2 - - uid: 2903 + - uid: 2476 components: - type: Transform - pos: -16.5,8.5 + rot: 1.5707963267948966 rad + pos: 13.5,-12.5 parent: 2 - - uid: 2905 + - uid: 2479 components: - type: Transform - pos: -17.5,8.5 + rot: 1.5707963267948966 rad + pos: 13.5,-11.5 parent: 2 - - uid: 2906 + - uid: 2481 components: - type: Transform - pos: -18.5,7.5 + rot: 1.5707963267948966 rad + pos: 13.5,-10.5 parent: 2 - - uid: 2910 + - uid: 2483 components: - type: Transform - pos: -16.5,4.5 + rot: 1.5707963267948966 rad + pos: 13.5,-8.5 parent: 2 - - uid: 2911 + - uid: 2485 components: - type: Transform - pos: -17.5,4.5 + rot: 1.5707963267948966 rad + pos: 13.5,-5.5 parent: 2 - - uid: 2913 + - uid: 2489 components: - type: Transform - pos: -18.5,5.5 + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 parent: 2 - - uid: 2915 + - uid: 2492 components: - type: Transform - pos: -35.5,-7.5 + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 parent: 2 - - uid: 2917 + - uid: 2495 components: - type: Transform - pos: -21.5,-5.5 + rot: 1.5707963267948966 rad + pos: 13.5,2.5 parent: 2 - - uid: 2918 + - uid: 2496 components: - type: Transform - pos: -17.5,12.5 + rot: 1.5707963267948966 rad + pos: 13.5,5.5 parent: 2 - - uid: 2919 + - uid: 2500 components: - type: Transform - pos: -17.5,16.5 + rot: 1.5707963267948966 rad + pos: 13.5,7.5 parent: 2 - - uid: 2921 + - uid: 2503 components: - type: Transform - pos: -17.5,18.5 + rot: 1.5707963267948966 rad + pos: 13.5,11.5 parent: 2 - - uid: 2925 + - uid: 2505 components: - type: Transform - pos: -16.5,18.5 + rot: 1.5707963267948966 rad + pos: 13.5,13.5 parent: 2 - - uid: 2926 + - uid: 2508 components: - type: Transform - pos: -11.5,18.5 + rot: 1.5707963267948966 rad + pos: 11.5,13.5 parent: 2 - - uid: 2927 + - uid: 2510 components: - type: Transform - pos: -13.5,18.5 + rot: 1.5707963267948966 rad + pos: 8.5,13.5 parent: 2 - - uid: 2928 + - uid: 2512 components: - type: Transform - pos: -10.5,18.5 + rot: 1.5707963267948966 rad + pos: 6.5,13.5 parent: 2 - - uid: 2931 + - uid: 2516 components: - type: Transform - pos: -9.5,18.5 + rot: 1.5707963267948966 rad + pos: 3.5,13.5 parent: 2 - - uid: 2960 + - uid: 2518 components: - type: Transform - pos: -7.5,18.5 + rot: 1.5707963267948966 rad + pos: 1.5,13.5 parent: 2 - - uid: 2961 + - uid: 2521 components: - type: Transform - pos: -4.5,18.5 + rot: 1.5707963267948966 rad + pos: -1.5,13.5 parent: 2 - - uid: 2962 + - uid: 2524 components: - type: Transform - pos: -2.5,18.5 + rot: 1.5707963267948966 rad + pos: -4.5,13.5 parent: 2 - - uid: 2963 + - uid: 2527 components: - type: Transform - pos: -5.5,18.5 + rot: 1.5707963267948966 rad + pos: -6.5,13.5 parent: 2 - - uid: 2964 + - uid: 2529 components: - type: Transform - pos: -1.5,18.5 + rot: 1.5707963267948966 rad + pos: -9.5,13.5 parent: 2 - - uid: 2966 + - uid: 2531 components: - type: Transform - pos: -3.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,13.5 parent: 2 - - uid: 2967 + - uid: 2533 components: - type: Transform - pos: 0.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,10.5 parent: 2 - - uid: 2968 + - uid: 2534 components: - type: Transform - pos: 1.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,8.5 parent: 2 - - uid: 2969 + - uid: 2535 components: - type: Transform - pos: 3.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,6.5 parent: 2 - - uid: 2971 + - uid: 2538 components: - type: Transform - pos: 2.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,4.5 parent: 2 - - uid: 2972 + - uid: 2540 components: - type: Transform - pos: 5.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,3.5 parent: 2 - - uid: 2991 + - uid: 2542 components: - type: Transform - pos: 13.5,18.5 + rot: 1.5707963267948966 rad + pos: -10.5,-0.5 parent: 2 - - uid: 3023 + - uid: 2545 components: - type: Transform - pos: -33.5,-7.5 + rot: 1.5707963267948966 rad + pos: -12.5,-3.5 parent: 2 - - uid: 3027 + - uid: 2546 components: - type: Transform - pos: 16.5,-34.5 + rot: 1.5707963267948966 rad + pos: -12.5,-5.5 parent: 2 - - uid: 3037 + - uid: 2548 components: - type: Transform - pos: 14.5,-34.5 + rot: 1.5707963267948966 rad + pos: -12.5,-7.5 parent: 2 - - uid: 3040 + - uid: 2549 components: - type: Transform - pos: 9.5,-34.5 + rot: 1.5707963267948966 rad + pos: -12.5,-11.5 parent: 2 - - uid: 3042 + - uid: 2551 components: - type: Transform - pos: 7.5,-34.5 + rot: 1.5707963267948966 rad + pos: -12.5,-9.5 parent: 2 - - uid: 3043 + - uid: 2553 components: - type: Transform - pos: 13.5,-34.5 + rot: 1.5707963267948966 rad + pos: -12.5,-12.5 parent: 2 - - uid: 3044 + - uid: 2554 components: - type: Transform - pos: 6.5,-34.5 + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 parent: 2 - - uid: 3045 + - uid: 2556 components: - type: Transform - pos: 6.5,-33.5 + rot: 1.5707963267948966 rad + pos: -8.5,-12.5 parent: 2 - - uid: 3050 + - uid: 2557 components: - type: Transform - pos: -8.5,-32.5 + rot: 1.5707963267948966 rad + pos: -7.5,-12.5 parent: 2 - - uid: 3051 + - uid: 2559 components: - type: Transform - pos: -9.5,-32.5 + rot: 1.5707963267948966 rad + pos: -7.5,-11.5 parent: 2 - - uid: 3060 + - uid: 2560 components: - type: Transform - pos: -11.5,-32.5 + rot: 1.5707963267948966 rad + pos: -10.5,-19.5 parent: 2 - - uid: 3061 + - uid: 2562 components: - type: Transform - pos: -12.5,-32.5 + rot: 1.5707963267948966 rad + pos: -11.5,-19.5 parent: 2 - - uid: 3062 + - uid: 2565 components: - type: Transform - pos: 44.5,-14.5 + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 parent: 2 - - uid: 3063 + - uid: 2568 components: - type: Transform - pos: 45.5,-17.5 + rot: 1.5707963267948966 rad + pos: -14.5,-13.5 parent: 2 - - uid: 3064 + - uid: 2569 components: - type: Transform - pos: 44.5,-17.5 + rot: 1.5707963267948966 rad + pos: -14.5,-15.5 parent: 2 - - uid: 3065 + - uid: 2571 components: - type: Transform - pos: 47.5,-17.5 + rot: 1.5707963267948966 rad + pos: -14.5,-17.5 parent: 2 - - uid: 3066 + - uid: 2572 components: - type: Transform - pos: 46.5,-17.5 + rot: 1.5707963267948966 rad + pos: -10.5,-13.5 parent: 2 - - uid: 3068 + - uid: 2575 components: - type: Transform - pos: 44.5,-15.5 + rot: 1.5707963267948966 rad + pos: -10.5,-17.5 parent: 2 - - uid: 3069 + - uid: 2581 components: - type: Transform - pos: -19.5,-5.5 + rot: 1.5707963267948966 rad + pos: -14.5,-19.5 parent: 2 - - uid: 3070 + - uid: 2582 components: - type: Transform - pos: -21.5,-8.5 + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 parent: 2 - - uid: 3073 + - uid: 2583 components: - type: Transform - pos: -17.5,15.5 + rot: 1.5707963267948966 rad + pos: -2.5,-19.5 parent: 2 - - uid: 3074 + - uid: 2586 components: - type: Transform - pos: -23.5,16.5 + rot: 1.5707963267948966 rad + pos: -10.5,-23.5 parent: 2 - - uid: 3076 + - uid: 2587 components: - type: Transform - pos: -16.5,10.5 + rot: 1.5707963267948966 rad + pos: -10.5,-21.5 parent: 2 - - uid: 3078 + - uid: 2589 components: - type: Transform - pos: -15.5,15.5 + rot: 1.5707963267948966 rad + pos: -8.5,-24.5 parent: 2 - - uid: 3081 + - uid: 2590 components: - type: Transform - pos: -17.5,14.5 + rot: 1.5707963267948966 rad + pos: -4.5,-24.5 parent: 2 - - uid: 3083 + - uid: 2591 components: - type: Transform - pos: 44.5,-13.5 + rot: 1.5707963267948966 rad + pos: -3.5,-24.5 parent: 2 - - uid: 3084 + - uid: 2593 components: - type: Transform - pos: -16.5,-7.5 + rot: 1.5707963267948966 rad + pos: -8.5,-25.5 parent: 2 - - uid: 3085 + - uid: 2595 components: - type: Transform - pos: -17.5,-7.5 + rot: 1.5707963267948966 rad + pos: -10.5,-25.5 parent: 2 - - uid: 3088 + - uid: 2597 components: - type: Transform - pos: -19.5,-7.5 + rot: 1.5707963267948966 rad + pos: -10.5,-26.5 parent: 2 - - uid: 3089 + - uid: 2599 components: - type: Transform - pos: -21.5,-7.5 + rot: 1.5707963267948966 rad + pos: -10.5,-28.5 parent: 2 - - uid: 3090 + - uid: 2601 components: - type: Transform - pos: -21.5,-9.5 + rot: 1.5707963267948966 rad + pos: -8.5,-28.5 parent: 2 - - uid: 3092 + - uid: 2603 components: - type: Transform - pos: -16.5,-10.5 + rot: 1.5707963267948966 rad + pos: -3.5,-26.5 parent: 2 - - uid: 3093 + - uid: 2604 components: - type: Transform - pos: -15.5,-9.5 + rot: 1.5707963267948966 rad + pos: -3.5,-28.5 parent: 2 - - uid: 3094 + - uid: 2606 components: - type: Transform - pos: -15.5,-8.5 + rot: 1.5707963267948966 rad + pos: 1.5,-24.5 parent: 2 - - uid: 3113 + - uid: 2609 components: - type: Transform - pos: -16.5,-22.5 + rot: 1.5707963267948966 rad + pos: 3.5,-24.5 parent: 2 - - uid: 3115 + - uid: 2611 components: - type: Transform - pos: -16.5,-23.5 + rot: 1.5707963267948966 rad + pos: 4.5,-24.5 parent: 2 - - uid: 3116 + - uid: 2612 components: - type: Transform - pos: -16.5,-24.5 + rot: 1.5707963267948966 rad + pos: 4.5,-26.5 parent: 2 - - uid: 3118 + - uid: 2617 components: - type: Transform - pos: -18.5,-24.5 + rot: 1.5707963267948966 rad + pos: 1.5,-25.5 parent: 2 - - uid: 3126 + - uid: 2618 components: - type: Transform - pos: -21.5,-24.5 + rot: 1.5707963267948966 rad + pos: 1.5,-28.5 parent: 2 - - uid: 3129 + - uid: 2622 components: - type: Transform - pos: -19.5,-28.5 + rot: 1.5707963267948966 rad + pos: 3.5,-28.5 parent: 2 - - uid: 3131 + - uid: 2624 components: - type: Transform - pos: -13.5,-32.5 + rot: 1.5707963267948966 rad + pos: 3.5,-20.5 parent: 2 - - uid: 3133 + - uid: 2625 components: - type: Transform - pos: -15.5,-32.5 + rot: 1.5707963267948966 rad + pos: 3.5,-22.5 parent: 2 - - uid: 3134 + - uid: 2627 components: - type: Transform - pos: -17.5,-32.5 + rot: 1.5707963267948966 rad + pos: 10.5,-26.5 parent: 2 - - uid: 3135 + - uid: 2630 components: - type: Transform - pos: -18.5,-32.5 + rot: 1.5707963267948966 rad + pos: 9.5,-18.5 parent: 2 - - uid: 3136 + - uid: 2632 components: - type: Transform - pos: -19.5,-32.5 + rot: 1.5707963267948966 rad + pos: 10.5,-19.5 parent: 2 - - uid: 3140 + - uid: 2635 components: - type: Transform - pos: -26.5,-8.5 + rot: 1.5707963267948966 rad + pos: 11.5,-20.5 parent: 2 - - uid: 3141 + - uid: 2638 components: - type: Transform - pos: -25.5,-7.5 + rot: 1.5707963267948966 rad + pos: 9.5,-16.5 parent: 2 - - uid: 3144 + - uid: 2639 components: - type: Transform - pos: -26.5,-11.5 + rot: 1.5707963267948966 rad + pos: 9.5,-19.5 parent: 2 - - uid: 3146 + - uid: 2640 components: - type: Transform - pos: -29.5,-7.5 + rot: 1.5707963267948966 rad + pos: 6.5,-25.5 parent: 2 - - uid: 3147 + - uid: 2642 components: - type: Transform - pos: -32.5,-7.5 + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 parent: 2 - - uid: 3149 + - uid: 2645 components: - type: Transform - pos: -30.5,-7.5 + rot: 1.5707963267948966 rad + pos: 12.5,-19.5 parent: 2 - - uid: 3150 + - uid: 2647 components: - type: Transform - pos: -26.5,-17.5 + rot: 1.5707963267948966 rad + pos: 10.5,-28.5 parent: 2 - - uid: 3152 + - uid: 2649 components: - type: Transform - pos: -26.5,-18.5 + rot: 1.5707963267948966 rad + pos: 10.5,-23.5 parent: 2 - - uid: 3153 + - uid: 2651 components: - type: Transform - pos: -26.5,-20.5 + rot: 1.5707963267948966 rad + pos: 18.5,-25.5 parent: 2 - - uid: 3156 + - uid: 2652 components: - type: Transform - pos: -27.5,-7.5 + rot: 1.5707963267948966 rad + pos: 18.5,-27.5 parent: 2 - - uid: 3165 + - uid: 2655 components: - type: Transform - pos: -25.5,-32.5 + rot: 1.5707963267948966 rad + pos: 18.5,-30.5 parent: 2 - - uid: 3166 + - uid: 2656 components: - type: Transform - pos: -29.5,-35.5 + rot: 1.5707963267948966 rad + pos: 16.5,-23.5 parent: 2 - - uid: 3167 + - uid: 2658 components: - type: Transform - pos: -26.5,-33.5 + rot: 1.5707963267948966 rad + pos: 12.5,-23.5 parent: 2 - - uid: 3168 + - uid: 2661 components: - type: Transform - pos: -25.5,-5.5 + rot: 1.5707963267948966 rad + pos: 18.5,-23.5 parent: 2 - - uid: 3169 + - uid: 2662 components: - type: Transform - pos: -26.5,-5.5 + rot: 1.5707963267948966 rad + pos: 17.5,-30.5 parent: 2 - - uid: 3170 + - uid: 2663 components: - type: Transform - pos: -27.5,22.5 + rot: 1.5707963267948966 rad + pos: 11.5,-30.5 parent: 2 - - uid: 3172 + - uid: 2667 components: - type: Transform - pos: -27.5,20.5 + rot: 1.5707963267948966 rad + pos: 16.5,-21.5 parent: 2 - - uid: 3173 + - uid: 2668 components: - type: Transform - pos: -27.5,18.5 + rot: 1.5707963267948966 rad + pos: 16.5,-20.5 parent: 2 - - uid: 3174 + - uid: 2670 components: - type: Transform - pos: -27.5,17.5 + rot: 1.5707963267948966 rad + pos: 16.5,-19.5 parent: 2 - - uid: 3194 + - uid: 2672 components: - type: Transform - pos: -27.5,16.5 + rot: 1.5707963267948966 rad + pos: 9.5,-14.5 parent: 2 - - uid: 3195 + - uid: 2673 components: - type: Transform - pos: -27.5,15.5 + rot: 1.5707963267948966 rad + pos: 10.5,-14.5 parent: 2 - - uid: 3198 + - uid: 2676 components: - type: Transform - pos: -24.5,22.5 + rot: 1.5707963267948966 rad + pos: 12.5,-14.5 parent: 2 - - uid: 3199 + - uid: 2678 components: - type: Transform - pos: -23.5,22.5 + rot: 1.5707963267948966 rad + pos: 14.5,-14.5 parent: 2 - - uid: 3200 + - uid: 2679 components: - type: Transform - pos: -25.5,22.5 + rot: 1.5707963267948966 rad + pos: 15.5,-9.5 parent: 2 - - uid: 3203 + - uid: 2685 components: - type: Transform - pos: -20.5,22.5 + rot: 1.5707963267948966 rad + pos: 15.5,-6.5 parent: 2 - - uid: 3204 + - uid: 2697 components: - type: Transform - pos: -18.5,22.5 + rot: 1.5707963267948966 rad + pos: 15.5,-4.5 parent: 2 - - uid: 3208 + - uid: 2728 components: - type: Transform - pos: 17.5,22.5 + rot: 1.5707963267948966 rad + pos: 15.5,-3.5 parent: 2 - - uid: 3210 + - uid: 2729 components: - type: Transform - pos: 15.5,22.5 + rot: 1.5707963267948966 rad + pos: 15.5,-1.5 parent: 2 - - uid: 3212 + - uid: 2734 components: - type: Transform - pos: 13.5,22.5 + rot: 1.5707963267948966 rad + pos: -2.5,-39.5 parent: 2 - - uid: 3213 + - uid: 2760 components: - type: Transform - pos: 12.5,22.5 + rot: 1.5707963267948966 rad + pos: 18.5,-19.5 parent: 2 - - uid: 3216 + - uid: 2762 components: - type: Transform - pos: 9.5,22.5 + rot: 1.5707963267948966 rad + pos: 22.5,-19.5 parent: 2 - - uid: 3218 + - uid: 2763 components: - type: Transform - pos: 8.5,23.5 + rot: 1.5707963267948966 rad + pos: -1.5,-28.5 parent: 2 - - uid: 3222 + - uid: 2764 components: - type: Transform - pos: -28.5,-5.5 + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 parent: 2 - - uid: 3223 + - uid: 2765 components: - type: Transform - pos: -29.5,-5.5 + rot: 1.5707963267948966 rad + pos: 22.5,-20.5 parent: 2 - - uid: 3224 + - uid: 2768 components: - type: Transform - pos: -30.5,-5.5 + rot: 1.5707963267948966 rad + pos: 22.5,-22.5 parent: 2 - - uid: 3225 + - uid: 2769 components: - type: Transform - pos: -31.5,-5.5 + rot: 1.5707963267948966 rad + pos: 22.5,-23.5 parent: 2 - - uid: 3229 + - uid: 2771 components: - type: Transform - pos: -35.5,-5.5 + rot: 1.5707963267948966 rad + pos: 23.5,-19.5 parent: 2 - - uid: 3231 + - uid: 2773 components: - type: Transform - pos: -38.5,-5.5 + rot: 1.5707963267948966 rad + pos: 26.5,-19.5 parent: 2 - - uid: 3232 + - uid: 2775 components: - type: Transform - pos: -39.5,-5.5 + rot: 1.5707963267948966 rad + pos: 26.5,-18.5 parent: 2 - - uid: 3234 + - uid: 2776 components: - type: Transform - pos: -40.5,-4.5 + rot: 1.5707963267948966 rad + pos: 28.5,-5.5 parent: 2 - - uid: 3235 + - uid: 2778 components: - type: Transform - pos: -40.5,-3.5 + rot: 1.5707963267948966 rad + pos: 17.5,-5.5 parent: 2 - - uid: 3236 + - uid: 2782 components: - type: Transform - pos: -28.5,10.5 + rot: 1.5707963267948966 rad + pos: 24.5,-22.5 parent: 2 - - uid: 3239 + - uid: 2783 components: - type: Transform - pos: -30.5,10.5 + rot: 1.5707963267948966 rad + pos: 24.5,-21.5 parent: 2 - - uid: 3240 + - uid: 2785 components: - type: Transform - pos: -31.5,10.5 + rot: 1.5707963267948966 rad + pos: 32.5,-9.5 parent: 2 - - uid: 3241 + - uid: 2787 components: - type: Transform - pos: -32.5,10.5 + rot: 1.5707963267948966 rad + pos: 27.5,-14.5 parent: 2 - - uid: 3242 + - uid: 2789 components: - type: Transform - pos: -33.5,10.5 + rot: 1.5707963267948966 rad + pos: 28.5,-14.5 parent: 2 - - uid: 3244 + - uid: 2794 components: - type: Transform - pos: -35.5,10.5 + rot: 1.5707963267948966 rad + pos: 30.5,-14.5 parent: 2 - - uid: 3245 + - uid: 2796 components: - type: Transform - pos: -36.5,10.5 + rot: 1.5707963267948966 rad + pos: 17.5,-3.5 parent: 2 - - uid: 3246 + - uid: 2797 components: - type: Transform - pos: -38.5,10.5 + rot: 1.5707963267948966 rad + pos: 17.5,-1.5 parent: 2 - - uid: 3247 + - uid: 2799 components: - type: Transform - pos: -39.5,10.5 + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 parent: 2 - - uid: 3254 + - uid: 2801 components: - type: Transform - pos: -40.5,7.5 + rot: 1.5707963267948966 rad + pos: 19.5,-5.5 parent: 2 - - uid: 3255 + - uid: 2803 components: - type: Transform - pos: -40.5,6.5 + rot: 1.5707963267948966 rad + pos: 20.5,-1.5 parent: 2 - - uid: 3258 + - uid: 2805 components: - type: Transform - pos: -40.5,3.5 + rot: 1.5707963267948966 rad + pos: 21.5,-2.5 parent: 2 - - uid: 3259 + - uid: 2806 components: - type: Transform - pos: -40.5,-0.5 + rot: 1.5707963267948966 rad + pos: 21.5,-4.5 parent: 2 - - uid: 3260 + - uid: 2808 components: - type: Transform - pos: -40.5,-2.5 + rot: 1.5707963267948966 rad + pos: 22.5,-1.5 parent: 2 - - uid: 3262 + - uid: 2809 components: - type: Transform - pos: -31.5,8.5 + rot: 1.5707963267948966 rad + pos: 23.5,-2.5 parent: 2 - - uid: 3263 + - uid: 2810 components: - type: Transform - pos: -33.5,8.5 + rot: 1.5707963267948966 rad + pos: 23.5,-3.5 parent: 2 - - uid: 3264 + - uid: 2811 components: - type: Transform - pos: -30.5,8.5 + rot: 1.5707963267948966 rad + pos: 23.5,-5.5 parent: 2 - - uid: 3266 + - uid: 2813 components: - type: Transform - pos: -28.5,8.5 + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 parent: 2 - - uid: 3267 + - uid: 2815 components: - type: Transform - pos: -27.5,8.5 + rot: 1.5707963267948966 rad + pos: 25.5,-1.5 parent: 2 - - uid: 3268 + - uid: 2817 components: - type: Transform - pos: -38.5,8.5 + rot: 1.5707963267948966 rad + pos: 25.5,-2.5 parent: 2 - - uid: 3269 + - uid: 2818 components: - type: Transform - pos: -39.5,8.5 + rot: 1.5707963267948966 rad + pos: 25.5,-4.5 parent: 2 - - uid: 3273 + - uid: 2820 components: - type: Transform - pos: -32.5,8.5 + rot: 1.5707963267948966 rad + pos: 26.5,-1.5 parent: 2 - - uid: 3274 + - uid: 2824 components: - type: Transform - pos: -37.5,8.5 + rot: 1.5707963267948966 rad + pos: 27.5,-2.5 parent: 2 - - uid: 3275 + - uid: 2837 components: - type: Transform - pos: -36.5,8.5 + rot: 1.5707963267948966 rad + pos: 27.5,-3.5 parent: 2 - - uid: 3276 + - uid: 2840 components: - type: Transform - pos: -35.5,12.5 + rot: 1.5707963267948966 rad + pos: 27.5,-5.5 parent: 2 - - uid: 3278 + - uid: 2841 components: - type: Transform - pos: -35.5,11.5 + rot: 1.5707963267948966 rad + pos: 27.5,-17.5 parent: 2 - - uid: 3296 + - uid: 2843 components: - type: Transform - pos: -35.5,15.5 + rot: 1.5707963267948966 rad + pos: 30.5,-17.5 parent: 2 - - uid: 3298 + - uid: 2845 components: - type: Transform - pos: -35.5,16.5 + rot: 1.5707963267948966 rad + pos: 31.5,-5.5 parent: 2 - - uid: 3302 + - uid: 2850 components: - type: Transform - pos: -34.5,18.5 + rot: 1.5707963267948966 rad + pos: 32.5,-5.5 parent: 2 - - uid: 3303 + - uid: 2855 components: - type: Transform - pos: -33.5,18.5 + rot: 1.5707963267948966 rad + pos: 33.5,-6.5 parent: 2 - - uid: 3305 + - uid: 2857 components: - type: Transform - pos: -32.5,18.5 + rot: 1.5707963267948966 rad + pos: 33.5,-8.5 parent: 2 - - uid: 3308 + - uid: 2858 components: - type: Transform - pos: -30.5,18.5 + rot: 1.5707963267948966 rad + pos: 32.5,-17.5 parent: 2 - - uid: 3313 + - uid: 2860 components: - type: Transform - pos: -36.5,15.5 + rot: 1.5707963267948966 rad + pos: 36.5,-12.5 parent: 2 - - uid: 3314 + - uid: 2861 components: - type: Transform - pos: -37.5,15.5 + rot: 1.5707963267948966 rad + pos: 36.5,-10.5 parent: 2 - - uid: 3315 + - uid: 2863 components: - type: Transform - pos: -38.5,15.5 + rot: 1.5707963267948966 rad + pos: 36.5,-9.5 parent: 2 - - uid: 3316 + - uid: 2865 components: - type: Transform - pos: -39.5,15.5 + rot: 1.5707963267948966 rad + pos: 34.5,-9.5 parent: 2 - - uid: 3318 + - uid: 2872 components: - type: Transform - pos: -39.5,13.5 + rot: 1.5707963267948966 rad + pos: 34.5,-17.5 parent: 2 - - uid: 3319 + - uid: 2889 components: - type: Transform - pos: -39.5,12.5 + rot: 1.5707963267948966 rad + pos: 36.5,-17.5 parent: 2 - - uid: 3321 + - uid: 2934 components: - type: Transform - pos: -42.5,9.5 + rot: 1.5707963267948966 rad + pos: 36.5,-15.5 parent: 2 - - uid: 3322 + - uid: 2937 components: - type: Transform - pos: -41.5,10.5 + rot: 1.5707963267948966 rad + pos: 15.5,-13.5 parent: 2 - - uid: 3325 + - uid: 2939 components: - type: Transform - pos: -41.5,13.5 + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 parent: 2 - - uid: 3326 + - uid: 2941 components: - type: Transform - pos: -29.5,20.5 + rot: 1.5707963267948966 rad + pos: 39.5,-17.5 parent: 2 - - uid: 3328 + - uid: 2943 components: - type: Transform - pos: -13.5,17.5 + rot: 1.5707963267948966 rad + pos: 38.5,-21.5 parent: 2 - - uid: 3330 + - uid: 2944 components: - type: Transform - pos: -43.5,7.5 + rot: 1.5707963267948966 rad + pos: 36.5,-21.5 parent: 2 - - uid: 3331 + - uid: 2945 components: - type: Transform - pos: -43.5,8.5 + rot: 1.5707963267948966 rad + pos: 34.5,-21.5 parent: 2 - - uid: 3333 + - uid: 2947 components: - type: Transform - pos: -43.5,-4.5 + rot: 1.5707963267948966 rad + pos: 30.5,-22.5 parent: 2 - - uid: 3334 + - uid: 2949 components: - type: Transform - pos: -51.5,-5.5 + rot: 1.5707963267948966 rad + pos: 30.5,-23.5 parent: 2 - - uid: 3335 + - uid: 2951 components: - type: Transform - pos: 18.5,15.5 + rot: 1.5707963267948966 rad + pos: 30.5,-24.5 parent: 2 - - uid: 3336 + - uid: 2952 components: - type: Transform - pos: 18.5,16.5 + rot: 1.5707963267948966 rad + pos: 30.5,-26.5 parent: 2 - - uid: 3337 + - uid: 2954 components: - type: Transform - pos: -36.5,-7.5 + rot: 1.5707963267948966 rad + pos: 22.5,-27.5 parent: 2 - - uid: 3340 + - uid: 2958 components: - type: Transform - pos: -40.5,-7.5 + rot: 1.5707963267948966 rad + pos: 22.5,-29.5 parent: 2 - - uid: 3341 + - uid: 2973 components: - type: Transform - pos: -38.5,-7.5 + rot: 1.5707963267948966 rad + pos: 22.5,-30.5 parent: 2 - - uid: 3342 + - uid: 2981 components: - type: Transform - pos: -27.5,-11.5 + rot: 1.5707963267948966 rad + pos: 22.5,-33.5 parent: 2 - - uid: 3344 + - uid: 2993 components: - type: Transform - pos: -30.5,-11.5 + rot: 1.5707963267948966 rad + pos: 18.5,-34.5 parent: 2 - - uid: 3345 + - uid: 2996 components: - type: Transform - pos: -30.5,-10.5 + rot: 1.5707963267948966 rad + pos: 4.5,-32.5 parent: 2 - - uid: 3347 + - uid: 2997 components: - type: Transform - pos: -30.5,-8.5 + rot: 1.5707963267948966 rad + pos: -2.5,-32.5 parent: 2 - - uid: 3349 + - uid: 2998 components: - type: Transform - pos: -34.5,-8.5 + rot: 1.5707963267948966 rad + pos: 34.5,-22.5 parent: 2 - - uid: 3350 + - uid: 2999 components: - type: Transform - pos: -34.5,-10.5 + rot: 1.5707963267948966 rad + pos: 31.5,-26.5 parent: 2 - - uid: 3351 + - uid: 3002 components: - type: Transform - pos: -35.5,-11.5 + rot: 1.5707963267948966 rad + pos: 34.5,-25.5 parent: 2 - - uid: 3352 + - uid: 3005 components: - type: Transform - pos: -37.5,-11.5 + rot: 1.5707963267948966 rad + pos: 38.5,-22.5 parent: 2 - - uid: 3354 + - uid: 3007 components: - type: Transform - pos: -38.5,-10.5 + rot: 1.5707963267948966 rad + pos: 38.5,-23.5 parent: 2 - - uid: 3355 + - uid: 3008 components: - type: Transform - pos: -38.5,-9.5 + rot: 1.5707963267948966 rad + pos: 38.5,-26.5 parent: 2 - - uid: 3356 + - uid: 3010 components: - type: Transform - pos: -38.5,-8.5 + rot: 1.5707963267948966 rad + pos: 37.5,-27.5 parent: 2 - - uid: 3358 + - uid: 3011 components: - type: Transform - pos: -41.5,-8.5 + rot: 1.5707963267948966 rad + pos: 34.5,-27.5 parent: 2 - - uid: 3359 + - uid: 3012 components: - type: Transform - pos: -41.5,-9.5 + rot: 1.5707963267948966 rad + pos: 38.5,-25.5 parent: 2 - - uid: 3360 + - uid: 3013 components: - type: Transform - pos: -41.5,-10.5 + rot: 1.5707963267948966 rad + pos: 46.5,-22.5 parent: 2 - - uid: 3361 + - uid: 3014 components: - type: Transform - pos: -41.5,-11.5 + rot: 1.5707963267948966 rad + pos: 46.5,-21.5 parent: 2 - - uid: 3363 + - uid: 3015 components: - type: Transform - pos: -39.5,-11.5 + rot: 1.5707963267948966 rad + pos: 45.5,-22.5 parent: 2 - - uid: 3364 + - uid: 3017 components: - type: Transform - pos: -39.5,-12.5 + rot: 1.5707963267948966 rad + pos: 46.5,-24.5 parent: 2 - - uid: 3366 + - uid: 3019 components: - type: Transform - pos: -39.5,-14.5 + rot: 1.5707963267948966 rad + pos: 46.5,-25.5 parent: 2 - - uid: 3367 + - uid: 3021 components: - type: Transform - pos: -39.5,-16.5 + rot: 1.5707963267948966 rad + pos: 46.5,-26.5 parent: 2 - - uid: 3369 + - uid: 3029 components: - type: Transform - pos: -34.5,-16.5 + rot: 1.5707963267948966 rad + pos: 44.5,-26.5 parent: 2 - - uid: 3371 + - uid: 3030 components: - type: Transform - pos: -36.5,-16.5 + rot: 1.5707963267948966 rad + pos: 42.5,-26.5 parent: 2 - - uid: 3374 + - uid: 3031 components: - type: Transform - pos: -40.5,-17.5 + rot: 1.5707963267948966 rad + pos: 40.5,-26.5 parent: 2 - - uid: 3378 + - uid: 3032 components: - type: Transform - pos: -40.5,-19.5 + rot: 1.5707963267948966 rad + pos: 50.5,-22.5 parent: 2 - - uid: 3379 + - uid: 3034 components: - type: Transform - pos: -40.5,-20.5 + rot: 1.5707963267948966 rad + pos: 49.5,-22.5 parent: 2 - - uid: 3381 + - uid: 3035 components: - type: Transform - pos: -35.5,-17.5 + rot: 1.5707963267948966 rad + pos: 50.5,-23.5 parent: 2 - - uid: 3383 + - uid: 3048 components: - type: Transform - pos: -35.5,-19.5 + rot: 1.5707963267948966 rad + pos: 50.5,-24.5 parent: 2 - - uid: 3385 + - uid: 3049 components: - type: Transform - pos: -27.5,-21.5 + rot: 1.5707963267948966 rad + pos: 50.5,-26.5 parent: 2 - - uid: 3386 + - uid: 3054 components: - type: Transform - pos: -29.5,-21.5 + rot: 1.5707963267948966 rad + pos: 49.5,-26.5 parent: 2 - - uid: 3387 + - uid: 3056 components: - type: Transform - pos: -32.5,-21.5 + rot: 1.5707963267948966 rad + pos: 4.5,-40.5 parent: 2 - - uid: 3389 + - uid: 3057 components: - type: Transform - pos: -33.5,-21.5 + rot: 1.5707963267948966 rad + pos: -6.5,-32.5 parent: 2 - - uid: 3390 + - uid: 3058 components: - type: Transform - pos: -35.5,-21.5 + rot: 1.5707963267948966 rad + pos: 40.5,-16.5 parent: 2 - - uid: 3393 + - uid: 3158 components: - type: Transform - pos: -37.5,-21.5 + rot: 1.5707963267948966 rad + pos: 40.5,-14.5 parent: 2 - - uid: 3394 + - uid: 3175 components: - type: Transform - pos: -39.5,-21.5 + rot: 1.5707963267948966 rad + pos: 40.5,-13.5 parent: 2 - - uid: 3395 + - uid: 3177 components: - type: Transform - pos: -43.5,-5.5 + rot: 1.5707963267948966 rad + pos: 38.5,-13.5 parent: 2 - - uid: 3397 + - uid: 3178 components: - type: Transform - pos: -43.5,-7.5 + rot: 1.5707963267948966 rad + pos: -16.5,22.5 parent: 2 - - uid: 3398 + - uid: 3180 components: - type: Transform - pos: -43.5,-8.5 + rot: 1.5707963267948966 rad + pos: 6.5,22.5 parent: 2 - - uid: 3399 + - uid: 3183 components: - type: Transform - pos: -43.5,-9.5 + rot: 1.5707963267948966 rad + pos: 4.5,22.5 parent: 2 - - uid: 3400 + - uid: 3288 components: - type: Transform - pos: -51.5,-12.5 + rot: 1.5707963267948966 rad + pos: 3.5,22.5 parent: 2 - - uid: 3401 + - uid: 3289 components: - type: Transform - pos: -43.5,-13.5 + rot: 1.5707963267948966 rad + pos: 1.5,22.5 parent: 2 - - uid: 3404 + - uid: 3294 components: - type: Transform - pos: -42.5,-16.5 + rot: 1.5707963267948966 rad + pos: -4.5,22.5 parent: 2 - - uid: 3405 + - uid: 3424 components: - type: Transform - pos: -42.5,-14.5 + rot: 1.5707963267948966 rad + pos: -37.5,18.5 parent: 2 - - uid: 3407 + - uid: 3452 components: - type: Transform - pos: -42.5,-18.5 + rot: 1.5707963267948966 rad + pos: -37.5,20.5 parent: 2 - - uid: 3409 + - uid: 3454 components: - type: Transform - pos: -42.5,-20.5 + rot: 1.5707963267948966 rad + pos: -38.5,18.5 parent: 2 - - uid: 3412 + - uid: 3562 components: - type: Transform - pos: -40.5,-23.5 + rot: 1.5707963267948966 rad + pos: -36.5,-38.5 parent: 2 - - uid: 3414 + - uid: 3563 components: - type: Transform - pos: -42.5,-22.5 + rot: 1.5707963267948966 rad + pos: -36.5,-36.5 parent: 2 - - uid: 3415 + - uid: 3566 components: - type: Transform - pos: -41.5,-23.5 + rot: 1.5707963267948966 rad + pos: -41.5,18.5 parent: 2 - - uid: 3416 + - uid: 3576 components: - type: Transform - pos: -38.5,-23.5 + rot: 1.5707963267948966 rad + pos: -57.5,7.5 parent: 2 - - uid: 3417 + - uid: 3577 components: - type: Transform - pos: -37.5,-23.5 + rot: 1.5707963267948966 rad + pos: -56.5,7.5 parent: 2 - - uid: 3419 + - uid: 3614 components: - type: Transform - pos: -34.5,-23.5 + rot: 1.5707963267948966 rad + pos: -54.5,8.5 parent: 2 - - uid: 3420 + - uid: 3657 components: - type: Transform - pos: -33.5,-23.5 + rot: 1.5707963267948966 rad + pos: -57.5,-4.5 parent: 2 - - uid: 3422 + - uid: 3660 components: - type: Transform - pos: -30.5,-23.5 + rot: 1.5707963267948966 rad + pos: -55.5,-4.5 parent: 2 - - uid: 3423 + - uid: 3661 components: - type: Transform - pos: -29.5,-23.5 + rot: 1.5707963267948966 rad + pos: -52.5,8.5 parent: 2 - - uid: 3425 + - uid: 3662 components: - type: Transform - pos: -27.5,-23.5 + rot: 1.5707963267948966 rad + pos: -55.5,10.5 parent: 2 - - uid: 3427 + - uid: 3664 components: - type: Transform - pos: -35.5,-23.5 + rot: 1.5707963267948966 rad + pos: -53.5,11.5 parent: 2 - - uid: 3428 + - uid: 3667 components: - type: Transform - pos: -31.5,-23.5 + rot: 1.5707963267948966 rad + pos: -52.5,11.5 parent: 2 - - uid: 3429 + - uid: 3668 components: - type: Transform - pos: -26.5,-34.5 + rot: 1.5707963267948966 rad + pos: -51.5,11.5 parent: 2 - - uid: 3430 + - uid: 3671 components: - type: Transform - pos: -27.5,-34.5 + rot: 1.5707963267948966 rad + pos: -51.5,9.5 parent: 2 - - uid: 3432 + - uid: 3746 components: - type: Transform - pos: -29.5,-34.5 + rot: 1.5707963267948966 rad + pos: -51.5,14.5 parent: 2 - - uid: 3435 + - uid: 3749 components: - type: Transform - pos: -32.5,-34.5 + rot: 1.5707963267948966 rad + pos: -50.5,14.5 parent: 2 - - uid: 3436 + - uid: 3762 components: - type: Transform - pos: -33.5,-34.5 + rot: 1.5707963267948966 rad + pos: -44.5,14.5 parent: 2 - - uid: 3437 + - uid: 3765 components: - type: Transform - pos: -35.5,-34.5 + rot: 1.5707963267948966 rad + pos: -55.5,-6.5 parent: 2 - - uid: 3438 + - uid: 3791 components: - type: Transform - pos: -36.5,-34.5 + rot: 1.5707963267948966 rad + pos: -55.5,-9.5 parent: 2 - - uid: 3440 + - uid: 3792 components: - type: Transform - pos: -38.5,-34.5 + rot: 1.5707963267948966 rad + pos: -55.5,-12.5 parent: 2 - - uid: 3441 + - uid: 3794 components: - type: Transform - pos: -41.5,-32.5 + rot: 1.5707963267948966 rad + pos: -55.5,-15.5 parent: 2 - - uid: 3442 + - uid: 3854 components: - type: Transform - pos: -41.5,-33.5 + rot: 1.5707963267948966 rad + pos: -55.5,-16.5 parent: 2 - - uid: 3444 + - uid: 3855 components: - type: Transform - pos: -40.5,-34.5 + rot: 1.5707963267948966 rad + pos: -55.5,-18.5 parent: 2 - - uid: 3446 + - uid: 3914 components: - type: Transform - pos: -29.5,-37.5 + rot: 1.5707963267948966 rad + pos: -55.5,-20.5 parent: 2 - - uid: 3447 + - uid: 3920 components: - type: Transform - pos: -29.5,-38.5 + rot: 1.5707963267948966 rad + pos: -55.5,-19.5 parent: 2 - - uid: 3449 + - uid: 3923 components: - type: Transform - pos: -26.5,-40.5 + pos: 36.5,-31.5 parent: 2 - - uid: 3455 + - uid: 3924 components: - type: Transform - pos: -28.5,-40.5 + rot: 1.5707963267948966 rad + pos: 50.5,-27.5 parent: 2 - - uid: 3457 + - uid: 3926 components: - type: Transform - pos: -20.5,-40.5 + rot: 1.5707963267948966 rad + pos: 34.5,-31.5 parent: 2 - - uid: 3458 + - uid: 3928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,20.5 + rot: 1.5707963267948966 rad + pos: 38.5,-31.5 parent: 2 - - uid: 3567 + - uid: 3934 components: - type: Transform - pos: -22.5,-40.5 + rot: 1.5707963267948966 rad + pos: 46.5,-29.5 parent: 2 - - uid: 3581 + - uid: 3936 components: - type: Transform - pos: -18.5,-40.5 + rot: 1.5707963267948966 rad + pos: 46.5,-30.5 parent: 2 - - uid: 3685 + - uid: 3937 components: - type: Transform - pos: -17.5,-39.5 + rot: 1.5707963267948966 rad + pos: 45.5,-31.5 parent: 2 - - uid: 3686 + - uid: 3938 components: - type: Transform - pos: -17.5,-38.5 + rot: 1.5707963267948966 rad + pos: 43.5,-31.5 parent: 2 - - uid: 3688 + - uid: 3941 components: - type: Transform - pos: -17.5,-36.5 + rot: 1.5707963267948966 rad + pos: 42.5,-31.5 parent: 2 - - uid: 3689 + - uid: 3942 components: - type: Transform - pos: -17.5,-35.5 + rot: 1.5707963267948966 rad + pos: 40.5,-31.5 parent: 2 - - uid: 3690 + - uid: 3943 components: - type: Transform - pos: -17.5,-34.5 + rot: 1.5707963267948966 rad + pos: 50.5,-29.5 parent: 2 - - uid: 3693 + - uid: 3944 components: - type: Transform - pos: -31.5,-40.5 + rot: 1.5707963267948966 rad + pos: 50.5,-30.5 parent: 2 - - uid: 3694 + - uid: 3949 components: - type: Transform - pos: -32.5,-40.5 + rot: 1.5707963267948966 rad + pos: 50.5,-31.5 parent: 2 - - uid: 3751 + - uid: 3954 components: - type: Transform - pos: -34.5,-36.5 + rot: 1.5707963267948966 rad + pos: 50.5,-32.5 parent: 2 - - uid: 3757 + - uid: 3956 components: - type: Transform - pos: -33.5,-36.5 + rot: 1.5707963267948966 rad + pos: 50.5,-37.5 parent: 2 - - uid: 3758 + - uid: 3969 components: - type: Transform - pos: -34.5,-40.5 + rot: 1.5707963267948966 rad + pos: 30.5,-32.5 parent: 2 - - uid: 3759 + - uid: 3972 components: - type: Transform - pos: -34.5,-39.5 + rot: 1.5707963267948966 rad + pos: 30.5,-34.5 parent: 2 - - uid: 3764 + - uid: 3973 components: - type: Transform - pos: -34.5,-38.5 + rot: 1.5707963267948966 rad + pos: 49.5,-39.5 parent: 2 - - uid: 3770 + - uid: 4018 components: - type: Transform - pos: -45.5,-9.5 + rot: 1.5707963267948966 rad + pos: 30.5,-37.5 parent: 2 - - uid: 3772 + - uid: 4019 components: - type: Transform - pos: -46.5,-9.5 + rot: 1.5707963267948966 rad + pos: 31.5,-39.5 parent: 2 - - uid: 3776 + - uid: 4138 components: - type: Transform - pos: -47.5,-9.5 + rot: 1.5707963267948966 rad + pos: 46.5,-32.5 parent: 2 - - uid: 3778 + - uid: 4141 components: - type: Transform - pos: -48.5,-9.5 + rot: 1.5707963267948966 rad + pos: 34.5,-32.5 parent: 2 - - uid: 3801 + - uid: 4183 components: - type: Transform - pos: -50.5,-9.5 + rot: 1.5707963267948966 rad + pos: 25.5,-34.5 parent: 2 - - uid: 3809 + - uid: 4192 components: - type: Transform - pos: -51.5,-9.5 + rot: 1.5707963267948966 rad + pos: 28.5,-34.5 parent: 2 - - uid: 3838 + - uid: 4197 components: - type: Transform - pos: -51.5,-8.5 + rot: 1.5707963267948966 rad + pos: 22.5,22.5 parent: 2 - - uid: 3840 + - uid: 4201 components: - type: Transform - pos: -51.5,-6.5 + rot: 1.5707963267948966 rad + pos: 22.5,8.5 parent: 2 - - uid: 3842 + - uid: 4244 components: - type: Transform - pos: -50.5,-11.5 + rot: 1.5707963267948966 rad + pos: 22.5,6.5 parent: 2 - - uid: 3845 + - uid: 4266 components: - type: Transform - pos: -48.5,-11.5 + rot: 1.5707963267948966 rad + pos: 44.5,-8.5 parent: 2 - - uid: 3850 + - uid: 4269 components: - type: Transform - pos: -46.5,-13.5 + rot: 1.5707963267948966 rad + pos: 34.5,5.5 parent: 2 - - uid: 3852 + - uid: 4273 components: - type: Transform - pos: 18.5,13.5 + rot: 1.5707963267948966 rad + pos: 31.5,5.5 parent: 2 - - uid: 4065 + - uid: 4314 components: - type: Transform - pos: 18.5,12.5 + rot: 1.5707963267948966 rad + pos: 28.5,5.5 parent: 2 - - uid: 4066 + - uid: 4315 components: - type: Transform - pos: -46.5,-16.5 + rot: 1.5707963267948966 rad + pos: 51.5,-21.5 parent: 2 - - uid: 4177 + - uid: 4317 components: - type: Transform - pos: -46.5,-18.5 + rot: 1.5707963267948966 rad + pos: 61.5,-2.5 parent: 2 - - uid: 4179 + - uid: 4441 components: - type: Transform - pos: -51.5,-18.5 + rot: 1.5707963267948966 rad + pos: 59.5,-2.5 parent: 2 - - uid: 4180 + - uid: 4450 components: - type: Transform - pos: -45.5,-12.5 + rot: 1.5707963267948966 rad + pos: 39.5,5.5 parent: 2 - - uid: 4185 + - uid: 4474 components: - type: Transform - pos: -51.5,-15.5 + rot: 1.5707963267948966 rad + pos: -64.5,-29.5 parent: 2 - - uid: 4203 + - uid: 4482 components: - type: Transform - pos: -51.5,-32.5 + rot: 1.5707963267948966 rad + pos: -64.5,-22.5 parent: 2 - - uid: 4205 + - uid: 4483 components: - type: Transform - pos: -52.5,-31.5 + rot: 1.5707963267948966 rad + pos: -64.5,-21.5 parent: 2 - - uid: 4206 + - uid: 4486 components: - type: Transform - pos: -52.5,-30.5 + rot: 1.5707963267948966 rad + pos: -61.5,-21.5 parent: 2 - - uid: 4207 + - uid: 4489 components: - type: Transform - pos: -52.5,-29.5 + rot: 1.5707963267948966 rad + pos: -59.5,-20.5 parent: 2 - - uid: 4208 + - uid: 4491 components: - type: Transform - pos: -52.5,-28.5 + rot: 1.5707963267948966 rad + pos: -57.5,-20.5 parent: 2 - - uid: 4210 + - uid: 4660 components: - type: Transform - pos: -52.5,-26.5 + rot: 1.5707963267948966 rad + pos: -35.5,-46.5 parent: 2 - - uid: 4212 + - uid: 4663 components: - type: Transform - pos: -52.5,-23.5 + rot: 1.5707963267948966 rad + pos: -4.5,25.5 parent: 2 - - uid: 4220 + - uid: 4664 components: - type: Transform - pos: -52.5,-22.5 + rot: 1.5707963267948966 rad + pos: -4.5,26.5 parent: 2 - - uid: 4223 + - uid: 4668 components: - type: Transform - pos: -43.5,-12.5 + rot: 1.5707963267948966 rad + pos: -3.5,26.5 parent: 2 - - uid: 4229 + - uid: 4670 components: - type: Transform - pos: 50.5,-17.5 + rot: 1.5707963267948966 rad + pos: -10.5,32.5 parent: 2 - - uid: 4233 + - uid: 4672 components: - type: Transform - pos: 49.5,-17.5 + rot: 1.5707963267948966 rad + pos: 0.5,26.5 parent: 2 - - uid: 4238 + - uid: 4674 components: - type: Transform - pos: 18.5,17.5 + rot: 1.5707963267948966 rad + pos: -3.5,35.5 parent: 2 - - uid: 4242 + - uid: 4677 components: - type: Transform - pos: 18.5,10.5 + rot: 1.5707963267948966 rad + pos: -8.5,25.5 parent: 2 - - uid: 4243 + - uid: 4679 components: - type: Transform - pos: 18.5,9.5 + rot: 1.5707963267948966 rad + pos: -8.5,23.5 parent: 2 - - uid: 4289 + - uid: 4680 components: - type: Transform - pos: 18.5,7.5 + rot: 1.5707963267948966 rad + pos: -3.5,30.5 parent: 2 - - uid: 4290 + - uid: 4684 components: - type: Transform - pos: 18.5,6.5 + rot: 1.5707963267948966 rad + pos: -12.5,25.5 parent: 2 - - uid: 4297 + - uid: 4686 components: - type: Transform - pos: 18.5,5.5 + rot: 1.5707963267948966 rad + pos: -12.5,23.5 parent: 2 - - uid: 4299 + - uid: 4691 components: - type: Transform - pos: 18.5,3.5 + rot: 1.5707963267948966 rad + pos: -16.5,25.5 parent: 2 - - uid: 4300 + - uid: 4692 components: - type: Transform - pos: 18.5,2.5 + rot: 1.5707963267948966 rad + pos: -16.5,24.5 parent: 2 - - uid: 4301 + - uid: 4707 components: - type: Transform - pos: 18.5,1.5 + rot: 1.5707963267948966 rad + pos: -10.5,31.5 parent: 2 - - uid: 4303 + - uid: 4708 components: - type: Transform - pos: 39.5,1.5 + rot: 1.5707963267948966 rad + pos: -10.5,34.5 parent: 2 - - uid: 4308 + - uid: 4713 components: - type: Transform - pos: 40.5,0.5 + rot: 1.5707963267948966 rad + pos: 1.5,36.5 parent: 2 - - uid: 4350 + - uid: 4714 components: - type: Transform - pos: 40.5,-6.5 + rot: 1.5707963267948966 rad + pos: 0.5,27.5 parent: 2 - - uid: 4413 + - uid: 4715 components: - type: Transform - pos: 40.5,-8.5 + rot: 1.5707963267948966 rad + pos: 1.5,35.5 parent: 2 - - uid: 4433 + - uid: 4722 components: - type: Transform - pos: 40.5,-9.5 + rot: 1.5707963267948966 rad + pos: 6.5,27.5 parent: 2 - - uid: 4435 + - uid: 4724 components: - type: Transform - pos: 40.5,-11.5 + rot: 1.5707963267948966 rad + pos: 6.5,24.5 parent: 2 - - uid: 4436 + - uid: 4741 components: - type: Transform - pos: 39.5,-11.5 + rot: 1.5707963267948966 rad + pos: 10.5,28.5 parent: 2 - - uid: 4438 + - uid: 4743 components: - type: Transform - pos: 44.5,-11.5 + rot: 1.5707963267948966 rad + pos: 7.5,29.5 parent: 2 - - uid: 4440 + - uid: 4748 components: - type: Transform - pos: 44.5,-9.5 + rot: 1.5707963267948966 rad + pos: 6.5,29.5 parent: 2 - - uid: 4448 + - uid: 4757 components: - type: Transform - pos: 61.5,7.5 + rot: 1.5707963267948966 rad + pos: -0.5,26.5 parent: 2 - - uid: 4449 + - uid: 4771 components: - type: Transform - pos: 37.5,-5.5 + rot: 1.5707963267948966 rad + pos: -20.5,33.5 parent: 2 - - uid: 4451 + - uid: 4773 components: - type: Transform - pos: 39.5,-5.5 + rot: 1.5707963267948966 rad + pos: -15.5,30.5 parent: 2 - - uid: 4452 + - uid: 4775 components: - type: Transform - pos: -15.5,-33.5 + rot: 1.5707963267948966 rad + pos: -14.5,30.5 parent: 2 - - uid: 4453 + - uid: 4786 components: - type: Transform - pos: 51.5,-17.5 + rot: 1.5707963267948966 rad + pos: -16.5,29.5 parent: 2 - - uid: 4454 + - uid: 4790 components: - type: Transform - pos: 40.5,-4.5 + rot: 1.5707963267948966 rad + pos: 1.5,29.5 parent: 2 - - uid: 4457 + - uid: 4806 components: - type: Transform - pos: -57.5,-23.5 + rot: 1.5707963267948966 rad + pos: -11.5,25.5 parent: 2 - - uid: 4459 + - uid: 4811 components: - type: Transform - pos: -57.5,-25.5 + rot: 1.5707963267948966 rad + pos: -29.5,24.5 parent: 2 - - uid: 4468 + - uid: 4814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,20.5 + rot: 1.5707963267948966 rad + pos: -26.5,24.5 parent: 2 - - uid: 4471 + - uid: 4816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,20.5 + rot: 1.5707963267948966 rad + pos: -24.5,24.5 parent: 2 - - uid: 4731 + - uid: 4817 components: - type: Transform - pos: -53.5,-30.5 + rot: 1.5707963267948966 rad + pos: -23.5,24.5 parent: 2 - - uid: 4736 + - uid: 4818 components: - type: Transform - pos: -55.5,-30.5 + rot: 1.5707963267948966 rad + pos: -23.5,25.5 parent: 2 - - uid: 4780 + - uid: 4821 components: - type: Transform - pos: -57.5,-30.5 + rot: 1.5707963267948966 rad + pos: -19.5,24.5 parent: 2 - - uid: 4793 + - uid: 4823 components: - type: Transform - pos: -57.5,-29.5 + rot: 1.5707963267948966 rad + pos: -18.5,30.5 parent: 2 - - uid: 4808 + - uid: 4826 components: - type: Transform - pos: -58.5,-23.5 + rot: 1.5707963267948966 rad + pos: -20.5,30.5 parent: 2 - - uid: 4815 + - uid: 4827 components: - type: Transform - pos: -60.5,-23.5 + rot: 1.5707963267948966 rad + pos: -21.5,30.5 parent: 2 - - uid: 4836 + - uid: 4830 components: - type: Transform - pos: -62.5,-24.5 + rot: 1.5707963267948966 rad + pos: -21.5,27.5 parent: 2 - - uid: 4859 + - uid: 4831 components: - type: Transform - pos: -62.5,-25.5 + rot: 1.5707963267948966 rad + pos: -21.5,26.5 parent: 2 - - uid: 4861 + - uid: 4832 components: - type: Transform - pos: -62.5,-26.5 + rot: 1.5707963267948966 rad + pos: -21.5,25.5 parent: 2 - - uid: 4898 + - uid: 4837 components: - type: Transform - pos: -62.5,-28.5 + rot: 1.5707963267948966 rad + pos: -23.5,29.5 parent: 2 - - uid: 4901 + - uid: 4839 components: - type: Transform - pos: -61.5,-29.5 + rot: 1.5707963267948966 rad + pos: -5.5,35.5 parent: 2 - - uid: 4902 + - uid: 4840 components: - type: Transform - pos: -60.5,-29.5 + rot: 1.5707963267948966 rad + pos: -6.5,35.5 parent: 2 - - uid: 4904 + - uid: 4842 components: - type: Transform - pos: -58.5,-29.5 + rot: 1.5707963267948966 rad + pos: -8.5,35.5 parent: 2 - - uid: 4916 + - uid: 4844 components: - type: Transform - pos: -47.5,-11.5 + rot: 1.5707963267948966 rad + pos: -10.5,35.5 parent: 2 - - uid: 4921 + - uid: 4847 components: - type: Transform - pos: 8.5,24.5 + rot: 1.5707963267948966 rad + pos: -15.5,33.5 parent: 2 - - uid: 4922 + - uid: 4850 components: - type: Transform - pos: 10.5,25.5 + rot: 1.5707963267948966 rad + pos: -12.5,35.5 parent: 2 - - uid: 5024 + - uid: 4852 components: - type: Transform - pos: -41.5,15.5 + rot: 1.5707963267948966 rad + pos: -13.5,35.5 parent: 2 - - uid: 5044 + - uid: 4854 components: - type: Transform - pos: -41.5,17.5 + rot: 1.5707963267948966 rad + pos: -18.5,32.5 parent: 2 - - uid: 5129 + - uid: 4858 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,14.5 + rot: 1.5707963267948966 rad + pos: -23.5,31.5 parent: 2 - - uid: 5130 + - uid: 4863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,37.5 + rot: 1.5707963267948966 rad + pos: -18.5,31.5 parent: 2 - - uid: 5133 + - uid: 4864 components: - type: Transform - pos: -3.5,36.5 + rot: 1.5707963267948966 rad + pos: -15.5,34.5 parent: 2 - - uid: 5207 + - uid: 4866 components: - type: Transform - pos: 0.5,38.5 + rot: 1.5707963267948966 rad + pos: -17.5,34.5 parent: 2 - - uid: 5435 + - uid: 4867 components: - type: Transform - pos: 9.5,25.5 + rot: 1.5707963267948966 rad + pos: -18.5,34.5 parent: 2 - - uid: 5438 + - uid: 4881 components: - type: Transform - pos: 12.5,26.5 + rot: 1.5707963267948966 rad + pos: -7.5,25.5 parent: 2 - - uid: 5652 + - uid: 4883 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,16.5 + rot: 1.5707963267948966 rad + pos: -20.5,35.5 parent: 2 - - uid: 5766 + - uid: 4886 components: - type: Transform - pos: 12.5,25.5 + rot: 1.5707963267948966 rad + pos: -64.5,-32.5 parent: 2 - - uid: 5781 + - uid: 4888 components: - type: Transform - pos: -21.5,-42.5 + rot: 1.5707963267948966 rad + pos: -17.5,37.5 parent: 2 - - uid: 5782 + - uid: 4896 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,37.5 + rot: 1.5707963267948966 rad + pos: 8.5,31.5 parent: 2 - - uid: 5790 + - uid: 4897 components: - type: Transform - pos: -54.5,-32.5 + rot: 1.5707963267948966 rad + pos: 8.5,30.5 parent: 2 - - uid: 5792 + - uid: 4899 components: - type: Transform - pos: -56.5,-32.5 + rot: 1.5707963267948966 rad + pos: 10.5,30.5 parent: 2 - - uid: 5798 + - uid: 4908 components: - type: Transform - pos: -27.5,-42.5 + rot: 1.5707963267948966 rad + pos: 3.5,34.5 parent: 2 - - uid: 5799 + - uid: 4909 components: - type: Transform - pos: -28.5,-42.5 + rot: 1.5707963267948966 rad + pos: 6.5,34.5 parent: 2 - - uid: 5800 + - uid: 4910 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-42.5 + pos: 5.5,34.5 parent: 2 - - uid: 5808 + - uid: 4911 components: - type: Transform - pos: -31.5,-42.5 + rot: 1.5707963267948966 rad + pos: 7.5,34.5 parent: 2 - - uid: 5950 + - uid: 4912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,16.5 + rot: 1.5707963267948966 rad + pos: 8.5,34.5 parent: 2 - - uid: 6050 + - uid: 4913 components: - type: Transform - pos: -64.5,-23.5 + rot: 1.5707963267948966 rad + pos: 1.5,34.5 parent: 2 - - uid: 6064 + - uid: 4927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,38.5 + rot: 1.5707963267948966 rad + pos: -28.5,33.5 parent: 2 - - uid: 6080 + - uid: 4937 components: - type: Transform - pos: -49.5,-33.5 + rot: 1.5707963267948966 rad + pos: 10.5,38.5 parent: 2 - - uid: 6082 + - uid: 4939 components: - type: Transform - pos: -50.5,-35.5 + rot: 1.5707963267948966 rad + pos: 3.5,36.5 parent: 2 - - uid: 6085 + - uid: 4941 components: - type: Transform - pos: -45.5,-33.5 + rot: 1.5707963267948966 rad + pos: 5.5,36.5 parent: 2 - - uid: 6095 + - uid: 4943 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,38.5 + rot: 1.5707963267948966 rad + pos: 7.5,36.5 parent: 2 - - uid: 6098 + - uid: 4944 components: - type: Transform - pos: -45.5,-34.5 + rot: 1.5707963267948966 rad + pos: 9.5,36.5 parent: 2 - - uid: 6127 + - uid: 4953 components: - type: Transform - pos: -50.5,-33.5 + rot: 1.5707963267948966 rad + pos: 8.5,27.5 parent: 2 - - uid: 6158 + - uid: 4955 components: - type: Transform - pos: -44.5,-32.5 + rot: 1.5707963267948966 rad + pos: 10.5,27.5 parent: 2 - - uid: 6484 + - uid: 4968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,14.5 + rot: 1.5707963267948966 rad + pos: 2.5,29.5 parent: 2 - - uid: 6485 + - uid: 4974 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,12.5 + rot: 1.5707963267948966 rad + pos: 1.5,32.5 parent: 2 - - uid: 6489 + - uid: 4975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,10.5 + rot: 1.5707963267948966 rad + pos: 0.5,32.5 parent: 2 - - uid: 6493 + - uid: 4976 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,17.5 + rot: 1.5707963267948966 rad + pos: 0.5,34.5 parent: 2 - - uid: 6496 + - uid: 5002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,22.5 + rot: 1.5707963267948966 rad + pos: -9.5,37.5 parent: 2 - - uid: 6498 + - uid: 5004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,11.5 + rot: 1.5707963267948966 rad + pos: -7.5,37.5 parent: 2 - - uid: 6499 + - uid: 5005 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,24.5 + rot: 1.5707963267948966 rad + pos: 4.5,40.5 parent: 2 - - uid: 6500 + - uid: 5008 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,24.5 + rot: 1.5707963267948966 rad + pos: 0.5,39.5 parent: 2 - - uid: 6525 + - uid: 5011 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-2.5 + rot: 1.5707963267948966 rad + pos: -3.5,39.5 parent: 2 - - uid: 6544 + - uid: 5012 components: - type: Transform - pos: -15.5,-36.5 + rot: 1.5707963267948966 rad + pos: -2.5,39.5 parent: 2 - - uid: 6553 + - uid: 5113 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-5.5 + rot: 1.5707963267948966 rad + pos: -1.5,44.5 parent: 2 - - uid: 6571 + - uid: 5125 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,0.5 + rot: 1.5707963267948966 rad + pos: 4.5,43.5 parent: 2 - - uid: 6618 + - uid: 5126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-2.5 + rot: 1.5707963267948966 rad + pos: 4.5,42.5 parent: 2 - - uid: 6619 + - uid: 5136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-5.5 + rot: 1.5707963267948966 rad + pos: -7.5,43.5 parent: 2 - - uid: 6620 + - uid: 5137 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-5.5 + rot: 1.5707963267948966 rad + pos: -7.5,44.5 parent: 2 - - uid: 6624 + - uid: 5140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-6.5 + rot: 1.5707963267948966 rad + pos: -7.5,46.5 parent: 2 - - uid: 6627 + - uid: 5142 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-5.5 + rot: 1.5707963267948966 rad + pos: -7.5,48.5 parent: 2 - - uid: 6635 + - uid: 5143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-2.5 + rot: 1.5707963267948966 rad + pos: 4.5,45.5 parent: 2 - - uid: 6802 + - uid: 5145 components: - type: Transform - pos: -19.5,16.5 + rot: 1.5707963267948966 rad + pos: 4.5,47.5 parent: 2 - - uid: 6899 + - uid: 5176 components: - type: Transform - pos: -20.5,16.5 + rot: 1.5707963267948966 rad + pos: -7.5,49.5 parent: 2 - - uid: 6936 + - uid: 5177 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,28.5 + rot: 1.5707963267948966 rad + pos: -6.5,49.5 parent: 2 - - uid: 6943 + - uid: 5178 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,31.5 + rot: 1.5707963267948966 rad + pos: -5.5,49.5 parent: 2 - - uid: 6958 + - uid: 5184 components: - type: Transform - pos: 1.5,41.5 + rot: 1.5707963267948966 rad + pos: -4.5,50.5 parent: 2 - - uid: 6973 + - uid: 5186 components: - type: Transform - pos: -44.5,-35.5 + rot: 1.5707963267948966 rad + pos: -4.5,52.5 parent: 2 - - uid: 6975 + - uid: 5187 components: - type: Transform - pos: 45.5,-11.5 + rot: 1.5707963267948966 rad + pos: -4.5,53.5 parent: 2 - - uid: 6986 + - uid: 5188 components: - type: Transform - pos: 54.5,-17.5 + rot: 1.5707963267948966 rad + pos: -3.5,54.5 parent: 2 - - uid: 6987 + - uid: 5191 components: - type: Transform - pos: 3.5,41.5 + rot: 1.5707963267948966 rad + pos: 3.5,53.5 parent: 2 - - uid: 6989 + - uid: 5192 components: - type: Transform - pos: -6.5,41.5 + rot: 1.5707963267948966 rad + pos: 4.5,53.5 parent: 2 - - uid: 6990 + - uid: 5194 components: - type: Transform - pos: -6.5,44.5 + rot: 1.5707963267948966 rad + pos: 4.5,50.5 parent: 2 - - uid: 6991 + - uid: 5195 components: - type: Transform - pos: 1.5,49.5 + rot: 1.5707963267948966 rad + pos: 4.5,49.5 parent: 2 - - uid: 6993 + - uid: 5282 components: - type: Transform - pos: 3.5,49.5 + rot: 1.5707963267948966 rad + pos: -7.5,39.5 parent: 2 - - uid: 7005 + - uid: 5284 components: - type: Transform - pos: 45.5,-13.5 + rot: 1.5707963267948966 rad + pos: -5.5,39.5 parent: 2 - - uid: 7014 + - uid: 5295 components: - type: Transform - pos: 12.5,34.5 + rot: 1.5707963267948966 rad + pos: 39.5,6.5 parent: 2 - - uid: 7024 + - uid: 5378 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,36.5 + pos: 10.5,33.5 parent: 2 - - uid: 7027 + - uid: 5423 components: - type: Transform - pos: 52.5,-17.5 + rot: 1.5707963267948966 rad + pos: 23.5,16.5 parent: 2 - - uid: 7184 + - uid: 5433 components: - type: Transform - pos: 55.5,-17.5 + rot: 1.5707963267948966 rad + pos: 10.5,35.5 parent: 2 - - uid: 7229 + - uid: 5451 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,0.5 + rot: 1.5707963267948966 rad + pos: 24.5,9.5 parent: 2 - - uid: 7444 + - uid: 5455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-5.5 + rot: 1.5707963267948966 rad + pos: -44.5,-37.5 parent: 2 - - uid: 7456 + - uid: 5470 components: - type: Transform - pos: 58.5,24.5 + rot: 1.5707963267948966 rad + pos: 32.5,16.5 parent: 2 - - uid: 7465 + - uid: 5477 components: - type: Transform - pos: 62.5,24.5 + rot: 1.5707963267948966 rad + pos: 32.5,23.5 parent: 2 - - uid: 7469 + - uid: 5485 components: - type: Transform - pos: 49.5,19.5 + rot: 1.5707963267948966 rad + pos: 34.5,16.5 parent: 2 - - uid: 7471 + - uid: 5490 components: - type: Transform - pos: 48.5,19.5 + rot: 1.5707963267948966 rad + pos: 35.5,7.5 parent: 2 - - uid: 7473 + - uid: 5494 components: - type: Transform - pos: 66.5,-1.5 + rot: 1.5707963267948966 rad + pos: 32.5,11.5 parent: 2 - - uid: 7481 + - uid: 5496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-14.5 + rot: 1.5707963267948966 rad + pos: 34.5,11.5 parent: 2 - - uid: 7484 + - uid: 5497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-16.5 + rot: 1.5707963267948966 rad + pos: 32.5,12.5 parent: 2 - - uid: 7489 + - uid: 5498 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-17.5 + rot: 1.5707963267948966 rad + pos: 36.5,16.5 parent: 2 - - uid: 7495 + - uid: 5504 components: - type: Transform - pos: -53.5,-34.5 + rot: 1.5707963267948966 rad + pos: 37.5,21.5 parent: 2 - - uid: 7496 + - uid: 5506 components: - type: Transform - pos: 54.5,21.5 + rot: 1.5707963267948966 rad + pos: 37.5,23.5 parent: 2 - - uid: 7497 + - uid: 5508 components: - type: Transform - pos: 66.5,2.5 + rot: 1.5707963267948966 rad + pos: 22.5,24.5 parent: 2 - - uid: 7499 + - uid: 5513 components: - type: Transform - pos: 55.5,22.5 + rot: 1.5707963267948966 rad + pos: -56.5,-51.5 parent: 2 - - uid: 7501 + - uid: 5617 components: - type: Transform - pos: 54.5,19.5 + rot: 1.5707963267948966 rad + pos: 24.5,27.5 parent: 2 - - uid: 7502 + - uid: 5630 components: - type: Transform - pos: -53.5,-35.5 + rot: 1.5707963267948966 rad + pos: 38.5,14.5 parent: 2 - - uid: 7506 + - uid: 5631 components: - type: Transform - pos: 55.5,24.5 + rot: 1.5707963267948966 rad + pos: 38.5,13.5 parent: 2 - - uid: 7512 + - uid: 5633 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-8.5 + rot: 1.5707963267948966 rad + pos: 38.5,11.5 parent: 2 - - uid: 7515 + - uid: 5635 components: - type: Transform - pos: 66.5,4.5 + rot: 1.5707963267948966 rad + pos: 36.5,11.5 parent: 2 - - uid: 7537 + - uid: 5664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-8.5 + rot: 1.5707963267948966 rad + pos: 40.5,19.5 parent: 2 - - uid: 7539 + - uid: 5665 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-23.5 + rot: 1.5707963267948966 rad + pos: 40.5,16.5 parent: 2 - - uid: 7750 + - uid: 5666 components: - type: Transform - pos: 56.5,-17.5 + rot: 1.5707963267948966 rad + pos: 39.5,16.5 parent: 2 - - uid: 7906 + - uid: 5667 components: - type: Transform - pos: -9.5,-35.5 + rot: 1.5707963267948966 rad + pos: 40.5,17.5 parent: 2 - - uid: 7910 + - uid: 5742 components: - type: Transform - pos: -14.5,-35.5 + rot: 1.5707963267948966 rad + pos: 42.5,19.5 parent: 2 - - uid: 7920 + - uid: 5789 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-37.5 + pos: 0.5,41.5 parent: 2 - - uid: 7931 + - uid: 5795 components: - type: Transform - pos: -12.5,-35.5 + rot: 1.5707963267948966 rad + pos: -36.5,-46.5 parent: 2 - - uid: 7950 + - uid: 5803 components: - type: Transform - pos: -8.5,-38.5 + rot: 1.5707963267948966 rad + pos: -16.5,-42.5 parent: 2 - - uid: 7994 + - uid: 5804 components: - type: Transform - pos: -8.5,-40.5 + rot: 1.5707963267948966 rad + pos: -15.5,-42.5 parent: 2 - - uid: 8173 + - uid: 5811 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,5.5 + rot: 1.5707963267948966 rad + pos: 54.5,-42.5 parent: 2 - - uid: 8176 + - uid: 5812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,5.5 + rot: 1.5707963267948966 rad + pos: 53.5,-36.5 parent: 2 - - uid: 8178 + - uid: 5813 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,5.5 + rot: 1.5707963267948966 rad + pos: 53.5,-35.5 parent: 2 - - uid: 8179 + - uid: 5815 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,4.5 + rot: 1.5707963267948966 rad + pos: 53.5,-27.5 parent: 2 - - uid: 8180 + - uid: 5816 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,3.5 + rot: 1.5707963267948966 rad + pos: 53.5,-32.5 parent: 2 - - uid: 8181 + - uid: 5818 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,1.5 + rot: 1.5707963267948966 rad + pos: 53.5,-30.5 parent: 2 - - uid: 8223 + - uid: 5819 components: - type: Transform - pos: 16.5,24.5 + rot: 1.5707963267948966 rad + pos: -56.5,-44.5 parent: 2 - - uid: 8226 + - uid: 5822 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-21.5 + rot: 1.5707963267948966 rad + pos: 56.5,-36.5 parent: 2 - - uid: 8227 + - uid: 5825 components: - type: Transform - pos: 15.5,27.5 + rot: 1.5707963267948966 rad + pos: 59.5,-36.5 parent: 2 - - uid: 8229 + - uid: 5828 components: - type: Transform - pos: 13.5,27.5 + rot: 1.5707963267948966 rad + pos: 59.5,-33.5 parent: 2 - - uid: 8231 + - uid: 5830 components: - type: Transform - pos: 66.5,-4.5 + rot: 1.5707963267948966 rad + pos: 59.5,-31.5 parent: 2 - - uid: 8233 + - uid: 5831 components: - type: Transform - pos: 17.5,24.5 + rot: 1.5707963267948966 rad + pos: 59.5,-30.5 parent: 2 - - uid: 8234 + - uid: 5833 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-21.5 + rot: 1.5707963267948966 rad + pos: 57.5,-30.5 parent: 2 - - uid: 8245 + - uid: 5835 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-21.5 + rot: 1.5707963267948966 rad + pos: 55.5,-30.5 parent: 2 - - uid: 9147 + - uid: 5836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-21.5 + rot: 1.5707963267948966 rad + pos: 54.5,-30.5 parent: 2 - - uid: 9154 + - uid: 5838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,27.5 + rot: 1.5707963267948966 rad + pos: 57.5,-31.5 parent: 2 - - uid: 10988 + - uid: 5843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,26.5 + rot: 1.5707963267948966 rad + pos: 60.5,-31.5 parent: 2 - - uid: 11059 + - uid: 5845 components: - type: Transform - pos: -34.5,-4.5 + rot: 1.5707963267948966 rad + pos: 60.5,-33.5 parent: 2 - - uid: 11655 + - uid: 5846 components: - type: Transform - pos: 68.5,-4.5 + rot: 1.5707963267948966 rad + pos: 60.5,-34.5 parent: 2 - - uid: 11656 + - uid: 5847 components: - type: Transform - pos: 71.5,-4.5 + rot: 1.5707963267948966 rad + pos: 60.5,-35.5 parent: 2 - - uid: 12571 + - uid: 5850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,24.5 + rot: 1.5707963267948966 rad + pos: 59.5,-37.5 parent: 2 - - uid: 12603 + - uid: 5852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,22.5 + rot: 1.5707963267948966 rad + pos: 57.5,-37.5 parent: 2 - - uid: 13177 + - uid: 5854 components: - type: Transform - pos: -34.5,-1.5 + rot: 1.5707963267948966 rad + pos: 55.5,-37.5 parent: 2 - - uid: 13745 + - uid: 5855 components: - type: Transform - pos: -15.5,17.5 + rot: 1.5707963267948966 rad + pos: 54.5,-37.5 parent: 2 - - uid: 13983 + - uid: 5860 components: - type: Transform - pos: -42.5,-32.5 + rot: 1.5707963267948966 rad + pos: 53.5,-25.5 parent: 2 - - uid: 14402 + - uid: 5867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,18.5 + rot: 1.5707963267948966 rad + pos: 58.5,-24.5 parent: 2 - - uid: 14695 + - uid: 5868 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-30.5 + rot: 1.5707963267948966 rad + pos: 59.5,-24.5 parent: 2 - - uid: 14704 + - uid: 5870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-27.5 + rot: 1.5707963267948966 rad + pos: 59.5,-26.5 parent: 2 - - uid: 14862 + - uid: 5871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-22.5 + rot: 1.5707963267948966 rad + pos: 59.5,-27.5 parent: 2 - - uid: 14870 + - uid: 5873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,18.5 + rot: 1.5707963267948966 rad + pos: 56.5,-39.5 parent: 2 - - uid: 15165 + - uid: 5876 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-5.5 + pos: 56.5,-41.5 parent: 2 - - uid: 15173 + - uid: 5882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,18.5 + rot: 1.5707963267948966 rad + pos: 54.5,-25.5 parent: 2 - - uid: 15201 + - uid: 5887 components: - type: Transform - pos: 70.5,-0.5 + rot: 1.5707963267948966 rad + pos: -56.5,-53.5 parent: 2 - - uid: 15203 + - uid: 5888 components: - type: Transform - pos: 67.5,-0.5 + rot: 1.5707963267948966 rad + pos: -38.5,-50.5 parent: 2 - - uid: 15210 + - uid: 5892 components: - type: Transform - pos: 70.5,3.5 + rot: 1.5707963267948966 rad + pos: 52.5,-43.5 parent: 2 - - uid: 15213 + - uid: 5918 components: - type: Transform - pos: 67.5,3.5 + rot: 1.5707963267948966 rad + pos: 39.5,8.5 parent: 2 - - uid: 16085 + - uid: 5951 components: - type: Transform - pos: 59.5,26.5 + rot: 1.5707963267948966 rad + pos: 40.5,10.5 parent: 2 - - uid: 16150 + - uid: 5956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-28.5 + rot: 1.5707963267948966 rad + pos: 40.5,11.5 parent: 2 - - uid: 16164 + - uid: 5957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-8.5 + rot: 1.5707963267948966 rad + pos: 40.5,12.5 parent: 2 - - uid: 16186 + - uid: 5958 components: - type: Transform - pos: 51.5,19.5 + rot: 1.5707963267948966 rad + pos: -64.5,-20.5 parent: 2 - - uid: 16187 + - uid: 5961 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-30.5 + rot: 1.5707963267948966 rad + pos: 40.5,14.5 parent: 2 - - uid: 16188 + - uid: 5962 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-30.5 + rot: 1.5707963267948966 rad + pos: 12.5,38.5 parent: 2 - - uid: 16190 + - uid: 5972 components: - type: Transform - pos: 81.5,-26.5 + rot: 1.5707963267948966 rad + pos: 41.5,10.5 parent: 2 - - uid: 16345 + - uid: 5989 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-43.5 + pos: 47.5,10.5 parent: 2 - - uid: 16350 + - uid: 5995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-30.5 + rot: 1.5707963267948966 rad + pos: 48.5,10.5 parent: 2 - - uid: 16353 + - uid: 5999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-30.5 + rot: 1.5707963267948966 rad + pos: 45.5,17.5 parent: 2 - - uid: 16379 + - uid: 6001 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-23.5 + rot: 1.5707963267948966 rad + pos: 46.5,17.5 parent: 2 - - uid: 16380 + - uid: 6002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-22.5 + rot: 1.5707963267948966 rad + pos: 48.5,17.5 parent: 2 - - uid: 16384 + - uid: 6004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-29.5 + rot: 1.5707963267948966 rad + pos: 48.5,16.5 parent: 2 - - uid: 16388 + - uid: 6005 components: - type: Transform - pos: 49.5,20.5 + rot: 1.5707963267948966 rad + pos: 48.5,14.5 parent: 2 - - uid: 16514 + - uid: 6007 components: - type: Transform - pos: 15.5,33.5 + rot: 1.5707963267948966 rad + pos: 48.5,12.5 parent: 2 - - uid: 16516 + - uid: 6009 components: - type: Transform - pos: 13.5,33.5 + rot: 1.5707963267948966 rad + pos: 51.5,16.5 parent: 2 - - uid: 17065 + - uid: 6044 components: - type: Transform - pos: -23.5,-42.5 + rot: 1.5707963267948966 rad + pos: 52.5,16.5 parent: 2 - - uid: 17066 + - uid: 6051 components: - type: Transform - pos: -25.5,-42.5 + rot: 1.5707963267948966 rad + pos: 52.5,15.5 parent: 2 - - uid: 20110 + - uid: 6052 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-37.5 + pos: 45.5,19.5 parent: 2 - - uid: 20297 + - uid: 6053 components: - type: Transform - pos: 85.5,-21.5 + rot: 1.5707963267948966 rad + pos: -45.5,-38.5 parent: 2 - - uid: 20300 + - uid: 6076 components: - type: Transform - pos: 84.5,-22.5 + rot: 1.5707963267948966 rad + pos: 37.5,5.5 parent: 2 - - uid: 20791 + - uid: 6078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,15.5 + rot: 1.5707963267948966 rad + pos: -50.5,-37.5 parent: 2 - - uid: 20907 + - uid: 6079 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-38.5 + pos: -49.5,-37.5 parent: 2 - - uid: 20923 + - uid: 6081 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-42.5 + pos: -45.5,-41.5 parent: 2 - - uid: 21035 + - uid: 6097 components: - type: Transform - pos: 81.5,-32.5 + rot: 1.5707963267948966 rad + pos: -45.5,-43.5 parent: 2 - - uid: 21042 + - uid: 6108 components: - type: Transform - pos: 80.5,-32.5 + rot: 1.5707963267948966 rad + pos: -49.5,-43.5 parent: 2 - - uid: 21940 + - uid: 6110 components: - type: Transform - pos: -29.5,-4.5 + rot: 1.5707963267948966 rad + pos: -49.5,-42.5 parent: 2 -- proto: WallSolidRust - entities: - - uid: 757 + - uid: 6111 components: - type: Transform - pos: -27.5,-43.5 + rot: 1.5707963267948966 rad + pos: -55.5,-43.5 parent: 2 - - uid: 766 + - uid: 6144 components: - type: Transform - pos: -25.5,-41.5 + rot: 1.5707963267948966 rad + pos: -38.5,-53.5 parent: 2 - - uid: 2704 + - uid: 6146 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,10.5 + pos: -38.5,-44.5 parent: 2 - - uid: 2706 + - uid: 6147 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,17.5 + pos: -39.5,-43.5 parent: 2 - - uid: 2708 + - uid: 6149 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,0.5 + pos: -42.5,-37.5 parent: 2 - - uid: 2709 + - uid: 6153 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,3.5 + pos: -19.5,37.5 parent: 2 - - uid: 2710 + - uid: 6154 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,5.5 + pos: -20.5,37.5 parent: 2 - - uid: 2714 + - uid: 6155 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,7.5 + pos: -37.5,-41.5 parent: 2 - - uid: 2717 + - uid: 6156 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,12.5 + pos: -39.5,-36.5 parent: 2 - - uid: 2720 + - uid: 6157 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,13.5 + pos: -37.5,-36.5 parent: 2 - - uid: 2721 + - uid: 6159 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,15.5 + pos: -38.5,-47.5 parent: 2 - - uid: 2723 + - uid: 6162 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,15.5 + pos: -38.5,-48.5 parent: 2 - - uid: 2727 + - uid: 6163 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,15.5 + pos: -56.5,-48.5 parent: 2 - - uid: 2735 + - uid: 6164 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,15.5 + pos: -38.5,-55.5 parent: 2 - - uid: 2739 + - uid: 6168 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,15.5 + pos: -52.5,-57.5 parent: 2 - - uid: 2742 + - uid: 6169 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,15.5 + pos: -42.5,-54.5 parent: 2 - - uid: 2745 + - uid: 6171 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,15.5 + pos: -42.5,-48.5 parent: 2 - - uid: 2749 + - uid: 6172 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,15.5 + pos: -52.5,-49.5 parent: 2 - - uid: 2753 + - uid: 6175 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,15.5 + pos: -43.5,-49.5 parent: 2 - - uid: 2755 + - uid: 6176 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,15.5 + pos: -51.5,-49.5 parent: 2 - - uid: 2757 + - uid: 6177 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,13.5 + pos: -42.5,-50.5 parent: 2 - - uid: 2821 + - uid: 6202 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,10.5 + pos: -56.5,-55.5 parent: 2 - - uid: 2827 + - uid: 6210 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-5.5 + pos: -56.5,-54.5 parent: 2 - - uid: 2829 + - uid: 6211 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-10.5 + pos: -52.5,-54.5 parent: 2 - - uid: 2833 + - uid: 6213 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-17.5 + pos: -52.5,-52.5 parent: 2 - - uid: 2834 + - uid: 6216 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-18.5 + pos: -52.5,-53.5 parent: 2 - - uid: 2867 + - uid: 6217 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-21.5 + pos: -42.5,-53.5 parent: 2 - - uid: 2870 + - uid: 6220 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-21.5 + pos: -45.5,-44.5 parent: 2 - - uid: 2876 + - uid: 6226 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-25.5 + pos: -55.5,-44.5 parent: 2 - - uid: 2878 + - uid: 6229 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-27.5 + pos: -38.5,-51.5 parent: 2 - - uid: 2881 + - uid: 6239 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,0.5 + pos: -58.5,-54.5 parent: 2 - - uid: 2882 + - uid: 6240 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,0.5 + pos: -53.5,-57.5 parent: 2 - - uid: 2883 + - uid: 6242 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,0.5 + pos: -60.5,-54.5 parent: 2 - - uid: 2887 + - uid: 6243 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,0.5 + pos: -37.5,-54.5 parent: 2 - - uid: 2891 + - uid: 6244 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,0.5 + pos: -36.5,-54.5 parent: 2 - - uid: 2893 + - uid: 6245 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,0.5 + pos: -34.5,-55.5 parent: 2 - - uid: 2897 + - uid: 6248 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-5.5 + pos: -34.5,-54.5 parent: 2 - - uid: 2909 + - uid: 6249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,6.5 + rot: 1.5707963267948966 rad + pos: -42.5,-56.5 parent: 2 - - uid: 2912 + - uid: 6250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,8.5 + rot: 1.5707963267948966 rad + pos: -41.5,-57.5 parent: 2 - - uid: 2914 + - uid: 6252 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-5.5 + pos: -52.5,-59.5 parent: 2 - - uid: 2916 + - uid: 6253 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-7.5 + pos: -60.5,-56.5 parent: 2 - - uid: 2920 + - uid: 6256 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,17.5 + pos: -34.5,-57.5 parent: 2 - - uid: 2922 + - uid: 6257 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,18.5 + pos: -42.5,-59.5 parent: 2 - - uid: 2923 + - uid: 6260 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-13.5 + pos: -54.5,-59.5 parent: 2 - - uid: 2924 + - uid: 6262 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,18.5 + pos: -42.5,-64.5 parent: 2 - - uid: 2929 + - uid: 6263 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,18.5 + pos: -41.5,-64.5 parent: 2 - - uid: 2930 + - uid: 6264 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,18.5 + pos: -52.5,-64.5 parent: 2 - - uid: 2965 + - uid: 6266 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,18.5 + pos: -52.5,-66.5 parent: 2 - - uid: 2970 + - uid: 6285 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,18.5 + pos: -53.5,-66.5 parent: 2 - - uid: 2988 + - uid: 6286 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,18.5 + rot: 1.5707963267948966 rad + pos: -42.5,-66.5 parent: 2 - - uid: 2990 + - uid: 6288 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,18.5 + pos: -40.5,-66.5 parent: 2 - - uid: 3024 + - uid: 6290 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-7.5 + pos: -55.5,-66.5 parent: 2 - - uid: 3025 + - uid: 6296 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,18.5 + pos: -56.5,-66.5 parent: 2 - - uid: 3026 + - uid: 6297 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-35.5 + pos: -58.5,-66.5 parent: 2 - - uid: 3036 + - uid: 6299 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-34.5 + pos: -60.5,-66.5 parent: 2 - - uid: 3038 + - uid: 6301 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-34.5 + pos: -60.5,-65.5 parent: 2 - - uid: 3039 + - uid: 6302 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-34.5 + pos: -60.5,-63.5 parent: 2 - - uid: 3041 + - uid: 6304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-34.5 + pos: -60.5,-61.5 parent: 2 - - uid: 3046 + - uid: 6306 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-32.5 + pos: -60.5,-58.5 parent: 2 - - uid: 3052 + - uid: 6308 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-32.5 + pos: -34.5,-62.5 parent: 2 - - uid: 3067 + - uid: 6313 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,10.5 + pos: -34.5,-59.5 parent: 2 - - uid: 3071 + - uid: 6314 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,16.5 + pos: -34.5,-65.5 parent: 2 - - uid: 3072 + - uid: 6317 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,16.5 + pos: -34.5,-66.5 parent: 2 - - uid: 3075 + - uid: 6318 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,15.5 + pos: -36.5,-66.5 parent: 2 - - uid: 3077 + - uid: 6320 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,10.5 + pos: -37.5,-66.5 parent: 2 - - uid: 3079 + - uid: 6321 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,15.5 + pos: 46.5,-8.5 parent: 2 - - uid: 3080 + - uid: 6324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,13.5 + pos: 21.5,-51.5 parent: 2 - - uid: 3082 + - uid: 6371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-16.5 + pos: 23.5,-72.5 parent: 2 - - uid: 3086 + - uid: 6487 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-7.5 + pos: 58.5,-8.5 parent: 2 - - uid: 3087 + - uid: 6488 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-7.5 + pos: 56.5,-8.5 parent: 2 - - uid: 3117 + - uid: 6495 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-24.5 + pos: 54.5,-8.5 parent: 2 - - uid: 3119 + - uid: 6502 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-24.5 + pos: 50.5,-8.5 parent: 2 - - uid: 3120 + - uid: 6510 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-24.5 + pos: 56.5,0.5 parent: 2 - - uid: 3125 + - uid: 6524 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-24.5 + pos: 52.5,12.5 parent: 2 - - uid: 3127 + - uid: 6527 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-28.5 + pos: 62.5,10.5 parent: 2 - - uid: 3128 + - uid: 6528 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-28.5 + pos: 54.5,-15.5 parent: 2 - - uid: 3130 + - uid: 6529 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-28.5 + pos: 56.5,-0.5 parent: 2 - - uid: 3132 + - uid: 6542 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-32.5 + pos: 52.5,13.5 parent: 2 - - uid: 3137 + - uid: 6563 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-32.5 + pos: 58.5,5.5 parent: 2 - - uid: 3138 + - uid: 6623 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-32.5 + pos: 58.5,0.5 parent: 2 - - uid: 3139 + - uid: 6628 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-7.5 + pos: 57.5,7.5 parent: 2 - - uid: 3142 + - uid: 6631 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-9.5 + pos: 57.5,9.5 parent: 2 - - uid: 3143 + - uid: 6633 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-10.5 + pos: 57.5,11.5 parent: 2 - - uid: 3145 + - uid: 6639 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-7.5 + pos: 57.5,13.5 parent: 2 - - uid: 3148 + - uid: 6641 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-16.5 + pos: 54.5,13.5 parent: 2 - - uid: 3151 + - uid: 6643 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-19.5 + pos: 59.5,9.5 parent: 2 - - uid: 3154 + - uid: 6647 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-21.5 + pos: 60.5,9.5 parent: 2 - - uid: 3157 + - uid: 6648 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-23.5 + pos: 60.5,11.5 parent: 2 - - uid: 3163 + - uid: 6650 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-36.5 + pos: 60.5,13.5 parent: 2 - - uid: 3164 + - uid: 6652 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-32.5 + pos: 59.5,13.5 parent: 2 - - uid: 3171 + - uid: 6653 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,21.5 + pos: 53.5,16.5 parent: 2 - - uid: 3196 + - uid: 6655 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,10.5 + pos: 55.5,16.5 parent: 2 - - uid: 3197 + - uid: 6657 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,22.5 + pos: 47.5,-11.5 parent: 2 - - uid: 3201 + - uid: 6667 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,22.5 + pos: 47.5,-13.5 parent: 2 - - uid: 3202 + - uid: 6669 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,22.5 + pos: 47.5,-14.5 parent: 2 - - uid: 3205 + - uid: 6671 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,22.5 + pos: 47.5,-15.5 parent: 2 - - uid: 3209 + - uid: 6672 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,22.5 + pos: 49.5,-15.5 parent: 2 - - uid: 3214 + - uid: 6673 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,22.5 + pos: 51.5,-15.5 parent: 2 - - uid: 3215 + - uid: 6675 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,22.5 + pos: -15.5,-40.5 parent: 2 - - uid: 3217 + - uid: 6677 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,22.5 + pos: 60.5,-24.5 parent: 2 - - uid: 3219 + - uid: 6728 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-5.5 + pos: 51.5,-22.5 parent: 2 - - uid: 3220 + - uid: 6759 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-7.5 + pos: 51.5,-24.5 parent: 2 - - uid: 3221 + - uid: 6776 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-11.5 + pos: 54.5,-13.5 parent: 2 - - uid: 3226 + - uid: 6778 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-5.5 + pos: 54.5,-11.5 parent: 2 - - uid: 3230 + - uid: 6786 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-5.5 + pos: 56.5,17.5 parent: 2 - - uid: 3233 + - uid: 6788 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-5.5 + pos: 56.5,19.5 parent: 2 - - uid: 3238 + - uid: 6830 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,10.5 + pos: 57.5,20.5 parent: 2 - - uid: 3243 + - uid: 6838 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,10.5 + pos: 62.5,20.5 parent: 2 - - uid: 3248 + - uid: 6840 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,10.5 + pos: 62.5,19.5 parent: 2 - - uid: 3252 + - uid: 6842 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,8.5 + pos: 62.5,17.5 parent: 2 - - uid: 3261 + - uid: 6844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-1.5 + pos: 9.5,-45.5 parent: 2 - - uid: 3277 + - uid: 6846 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,13.5 + pos: 62.5,15.5 parent: 2 - - uid: 3299 + - uid: 6847 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,17.5 + pos: 62.5,13.5 parent: 2 - - uid: 3300 + - uid: 6850 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,18.5 + pos: 59.5,-0.5 parent: 2 - - uid: 3307 + - uid: 6852 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,18.5 + pos: 60.5,5.5 parent: 2 - - uid: 3311 + - uid: 6854 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,18.5 + pos: 62.5,5.5 parent: 2 - - uid: 3312 + - uid: 6858 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,18.5 + pos: 62.5,2.5 parent: 2 - - uid: 3317 + - uid: 6860 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,14.5 + pos: 62.5,-0.5 parent: 2 - - uid: 3320 + - uid: 6862 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,11.5 + pos: 63.5,-0.5 parent: 2 - - uid: 3327 + - uid: 6864 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,20.5 + pos: 64.5,-0.5 parent: 2 - - uid: 3332 + - uid: 6868 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-5.5 + pos: 64.5,4.5 parent: 2 - - uid: 3338 + - uid: 6871 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-7.5 + pos: 57.5,-2.5 parent: 2 - - uid: 3339 + - uid: 6872 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-7.5 + pos: 57.5,21.5 parent: 2 - - uid: 3343 + - uid: 6877 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-11.5 + pos: 61.5,21.5 parent: 2 - - uid: 3346 + - uid: 6902 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-9.5 + pos: -41.5,-37.5 parent: 2 - - uid: 3348 + - uid: 6934 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-9.5 + pos: -3.5,41.5 parent: 2 - - uid: 3353 + - uid: 6935 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-11.5 + pos: 0.5,43.5 parent: 2 - - uid: 3357 + - uid: 6941 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-7.5 + pos: -3.5,43.5 parent: 2 - - uid: 3362 + - uid: 6950 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-11.5 + pos: 37.5,7.5 parent: 2 - - uid: 3365 + - uid: 6954 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-13.5 + pos: 37.5,8.5 parent: 2 - - uid: 3368 + - uid: 6956 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-16.5 + pos: 56.5,-10.5 parent: 2 - - uid: 3370 + - uid: 6963 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-16.5 + pos: 56.5,-12.5 parent: 2 - - uid: 3372 + - uid: 6964 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-16.5 + pos: 56.5,-14.5 parent: 2 - - uid: 3373 + - uid: 6979 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-16.5 + pos: 64.5,7.5 parent: 2 - - uid: 3377 + - uid: 6981 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-18.5 + pos: 63.5,7.5 parent: 2 - - uid: 3380 + - uid: 6984 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-21.5 + pos: 62.5,7.5 parent: 2 - - uid: 3382 + - uid: 6999 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-18.5 + pos: 62.5,8.5 parent: 2 - - uid: 3384 + - uid: 7000 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-21.5 + pos: 62.5,11.5 parent: 2 - - uid: 3388 + - uid: 7001 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-21.5 + pos: 64.5,11.5 parent: 2 - - uid: 3391 + - uid: 7006 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-20.5 + pos: 64.5,12.5 parent: 2 - - uid: 3392 + - uid: 7010 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-21.5 + pos: 64.5,18.5 parent: 2 - - uid: 3396 + - uid: 7012 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-6.5 + pos: 64.5,22.5 parent: 2 - - uid: 3402 + - uid: 7016 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-13.5 + pos: 62.5,-8.5 parent: 2 - - uid: 3403 + - uid: 7030 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-15.5 + pos: 60.5,-10.5 parent: 2 - - uid: 3406 + - uid: 7031 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-17.5 + pos: 59.5,-10.5 parent: 2 - - uid: 3408 + - uid: 7034 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-19.5 + pos: 62.5,-10.5 parent: 2 - - uid: 3410 + - uid: 7068 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-21.5 + pos: 64.5,-10.5 parent: 2 - - uid: 3411 + - uid: 7069 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-23.5 + pos: 65.5,-10.5 parent: 2 - - uid: 3413 + - uid: 7070 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-23.5 + pos: 65.5,-7.5 parent: 2 - - uid: 3418 + - uid: 7071 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-23.5 + pos: 65.5,-6.5 parent: 2 - - uid: 3421 + - uid: 7072 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-23.5 + pos: -53.5,-37.5 parent: 2 - - uid: 3426 + - uid: 7075 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-23.5 + pos: 62.5,-20.5 parent: 2 - - uid: 3431 + - uid: 7076 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-34.5 + pos: 62.5,-21.5 parent: 2 - - uid: 3433 + - uid: 7078 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-34.5 + pos: 61.5,-21.5 parent: 2 - - uid: 3434 + - uid: 7083 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-34.5 + pos: 66.5,-14.5 parent: 2 - - uid: 3439 + - uid: 7085 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-34.5 + pos: 62.5,-14.5 parent: 2 - - uid: 3443 + - uid: 7087 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-34.5 + pos: 62.5,-16.5 parent: 2 - - uid: 3445 + - uid: 7088 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-34.5 + pos: 67.5,-21.5 parent: 2 - - uid: 3448 + - uid: 7090 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-40.5 + pos: 66.5,-21.5 parent: 2 - - uid: 3450 + - uid: 7093 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-40.5 + pos: 67.5,-22.5 parent: 2 - - uid: 3456 + - uid: 7107 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-40.5 + pos: 67.5,-24.5 parent: 2 - - uid: 3482 + - uid: 7108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-11.5 + rot: 1.5707963267948966 rad + pos: 67.5,-25.5 parent: 2 - - uid: 3492 + - uid: 7112 components: - type: Transform - pos: -21.5,-10.5 + rot: 1.5707963267948966 rad + pos: 66.5,-15.5 parent: 2 - - uid: 3573 + - uid: 7114 components: - type: Transform - pos: -20.5,-42.5 + rot: 1.5707963267948966 rad + pos: 63.5,-27.5 parent: 2 - - uid: 3618 + - uid: 7115 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-40.5 + pos: 66.5,-27.5 parent: 2 - - uid: 3687 + - uid: 7127 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-37.5 + pos: 61.5,-29.5 parent: 2 - - uid: 3691 + - uid: 7132 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-33.5 + pos: 67.5,-15.5 parent: 2 - - uid: 3692 + - uid: 7134 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-40.5 + pos: 69.5,-15.5 parent: 2 - - uid: 3750 + - uid: 7181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-40.5 + pos: 2.5,39.5 parent: 2 - - uid: 3754 + - uid: 7183 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-37.5 + pos: 71.5,-15.5 parent: 2 - - uid: 3756 + - uid: 7186 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-35.5 + pos: 72.5,-14.5 parent: 2 - - uid: 3766 + - uid: 7188 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-0.5 + pos: 72.5,-10.5 parent: 2 - - uid: 3767 + - uid: 7190 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-4.5 + pos: 73.5,-10.5 parent: 2 - - uid: 3769 + - uid: 7192 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-9.5 + pos: 75.5,-10.5 parent: 2 - - uid: 3783 + - uid: 7196 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-9.5 + pos: 75.5,-8.5 parent: 2 - - uid: 3839 + - uid: 7198 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-7.5 + pos: 75.5,-6.5 parent: 2 - - uid: 3841 + - uid: 7199 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-11.5 + pos: 73.5,-6.5 parent: 2 - - uid: 3843 + - uid: 7201 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-11.5 + pos: 71.5,-6.5 parent: 2 - - uid: 3844 + - uid: 7203 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,14.5 + pos: 70.5,-6.5 parent: 2 - - uid: 3846 + - uid: 7205 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-11.5 + pos: 67.5,-6.5 parent: 2 - - uid: 3848 + - uid: 7207 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-13.5 + pos: 67.5,-19.5 parent: 2 - - uid: 3849 + - uid: 7208 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-12.5 + pos: 71.5,-19.5 parent: 2 - - uid: 4067 + - uid: 7211 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-17.5 + pos: 70.5,-19.5 parent: 2 - - uid: 4178 + - uid: 7270 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-14.5 + pos: 72.5,-19.5 parent: 2 - - uid: 4187 + - uid: 7278 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-32.5 + pos: 72.5,-21.5 parent: 2 - - uid: 4204 + - uid: 7279 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-32.5 + pos: 72.5,-22.5 parent: 2 - - uid: 4209 + - uid: 7280 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-27.5 + pos: 72.5,-24.5 parent: 2 - - uid: 4211 + - uid: 7282 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-15.5 + pos: 68.5,-24.5 parent: 2 - - uid: 4224 + - uid: 7283 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-22.5 + pos: 72.5,-25.5 parent: 2 - - uid: 4234 + - uid: 7286 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-17.5 + pos: 72.5,-26.5 parent: 2 - - uid: 4235 + - uid: 7290 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,18.5 + pos: 72.5,-29.5 parent: 2 - - uid: 4236 + - uid: 7291 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,18.5 + pos: 70.5,-30.5 parent: 2 - - uid: 4237 + - uid: 7292 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,18.5 + pos: 67.5,-28.5 parent: 2 - - uid: 4239 + - uid: 7295 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,1.5 + pos: 67.5,-29.5 parent: 2 - - uid: 4240 + - uid: 7298 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-32.5 + pos: 67.5,-30.5 parent: 2 - - uid: 4241 + - uid: 7301 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,11.5 + pos: 75.5,-19.5 parent: 2 - - uid: 4262 + - uid: 7302 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,8.5 + pos: 77.5,-19.5 parent: 2 - - uid: 4298 + - uid: 7303 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,4.5 + pos: 78.5,-10.5 parent: 2 - - uid: 4304 + - uid: 7306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,20.5 + rot: 1.5707963267948966 rad + pos: 76.5,-10.5 parent: 2 - - uid: 4378 + - uid: 7308 components: - type: Transform - pos: -16.5,-11.5 + rot: 1.5707963267948966 rad + pos: 79.5,-11.5 parent: 2 - - uid: 4412 + - uid: 7318 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-7.5 + pos: 81.5,-11.5 parent: 2 - - uid: 4434 + - uid: 7320 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-10.5 + pos: 79.5,-19.5 parent: 2 - - uid: 4439 + - uid: 7325 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-10.5 + pos: 81.5,-19.5 parent: 2 - - uid: 4455 + - uid: 7327 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-12.5 + pos: 83.5,-11.5 parent: 2 - - uid: 4456 + - uid: 7328 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,-22.5 + pos: 84.5,-19.5 parent: 2 - - uid: 4458 + - uid: 7330 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,-24.5 + pos: 27.5,27.5 parent: 2 - - uid: 4469 + - uid: 7341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,20.5 + rot: 1.5707963267948966 rad + pos: 75.5,-4.5 parent: 2 - - uid: 4470 + - uid: 7349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,20.5 + rot: 1.5707963267948966 rad + pos: 74.5,-4.5 parent: 2 - - uid: 4487 + - uid: 7378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-26.5 + pos: 42.5,14.5 parent: 2 - - uid: 4496 + - uid: 7390 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,-28.5 + pos: 77.5,-4.5 parent: 2 - - uid: 4628 + - uid: 7416 components: - type: Transform - pos: -21.5,16.5 + rot: -1.5707963267948966 rad + pos: 9.5,-50.5 parent: 2 - - uid: 4734 + - uid: 7445 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,-30.5 + pos: 86.5,-10.5 parent: 2 - - uid: 4740 + - uid: 7446 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-30.5 + pos: 74.5,-33.5 parent: 2 - - uid: 4810 + - uid: 7461 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,-23.5 + pos: 75.5,-33.5 parent: 2 - - uid: 4834 + - uid: 7462 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,-23.5 + pos: 75.5,-32.5 parent: 2 - - uid: 4835 + - uid: 7464 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,-23.5 + pos: 66.5,-31.5 parent: 2 - - uid: 4860 + - uid: 7479 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,-27.5 + pos: 68.5,-31.5 parent: 2 - - uid: 4900 + - uid: 7503 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,-29.5 + pos: 72.5,-31.5 parent: 2 - - uid: 4903 + - uid: 7513 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,-29.5 + pos: 73.5,-30.5 parent: 2 - - uid: 4923 + - uid: 7514 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,25.5 + pos: 73.5,-28.5 parent: 2 - - uid: 4924 + - uid: 7519 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,25.5 + pos: 73.5,-27.5 parent: 2 - - uid: 5023 + - uid: 7521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,14.5 + rot: 1.5707963267948966 rad + pos: 73.5,-26.5 parent: 2 - - uid: 5025 + - uid: 7525 components: - type: Transform - pos: -41.5,16.5 + rot: 1.5707963267948966 rad + pos: 73.5,-24.5 parent: 2 - - uid: 5123 + - uid: 7527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,14.5 + rot: 1.5707963267948966 rad + pos: 66.5,-33.5 parent: 2 - - uid: 5131 + - uid: 7529 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,37.5 + rot: 1.5707963267948966 rad + pos: 64.5,-33.5 parent: 2 - - uid: 5138 + - uid: 7530 components: - type: Transform - pos: 0.5,36.5 + rot: 1.5707963267948966 rad + pos: 67.5,-33.5 parent: 2 - - uid: 5443 + - uid: 7531 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,27.5 + pos: 64.5,-30.5 parent: 2 - - uid: 5458 + - uid: 7533 components: - type: Transform - pos: -20.5,-41.5 + rot: 1.5707963267948966 rad + pos: 64.5,-29.5 parent: 2 - - uid: 5783 + - uid: 7540 components: - type: Transform - pos: -22.5,-42.5 + rot: 1.5707963267948966 rad + pos: 64.5,-32.5 parent: 2 - - uid: 5786 + - uid: 7542 components: - type: Transform - pos: -3.5,38.5 + rot: 1.5707963267948966 rad + pos: 18.5,-38.5 parent: 2 - - uid: 5791 + - uid: 7543 components: - type: Transform - pos: -55.5,-32.5 + rot: 1.5707963267948966 rad + pos: 30.5,-39.5 parent: 2 - - uid: 5797 + - uid: 7545 components: - type: Transform - pos: -58.5,-32.5 + rot: 1.5707963267948966 rad + pos: 27.5,-37.5 parent: 2 - - uid: 5801 + - uid: 7546 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-42.5 + pos: 27.5,-35.5 parent: 2 - - uid: 5805 + - uid: 7547 components: - type: Transform - pos: -59.5,-32.5 + rot: 1.5707963267948966 rad + pos: 27.5,-39.5 parent: 2 - - uid: 5806 + - uid: 7553 components: - type: Transform - pos: -64.5,-26.5 + pos: 54.5,-24.5 parent: 2 - - uid: 5807 + - uid: 7567 components: - type: Transform - pos: -29.5,-42.5 + pos: 64.5,21.5 parent: 2 - - uid: 5912 + - uid: 7580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,8.5 + rot: 1.5707963267948966 rad + pos: 25.5,-39.5 parent: 2 - - uid: 5913 + - uid: 7587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,8.5 + rot: 1.5707963267948966 rad + pos: 24.5,-39.5 parent: 2 - - uid: 6061 + - uid: 7590 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,38.5 + rot: 1.5707963267948966 rad + pos: 22.5,-39.5 parent: 2 - - uid: 6062 + - uid: 7593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,21.5 + rot: 1.5707963267948966 rad + pos: 19.5,-39.5 parent: 2 - - uid: 6083 + - uid: 7595 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-33.5 + pos: 26.5,-40.5 parent: 2 - - uid: 6084 + - uid: 7596 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-34.5 + pos: 31.5,-41.5 parent: 2 - - uid: 6094 + - uid: 7598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,38.5 + rot: 1.5707963267948966 rad + pos: 23.5,-40.5 parent: 2 - - uid: 6139 + - uid: 7599 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,38.5 + rot: 1.5707963267948966 rad + pos: 23.5,-42.5 parent: 2 - - uid: 6151 + - uid: 7601 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-35.5 + pos: 30.5,-41.5 parent: 2 - - uid: 6463 + - uid: 7631 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,15.5 + rot: 1.5707963267948966 rad + pos: 31.5,-42.5 parent: 2 - - uid: 6483 + - uid: 7632 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,13.5 + rot: -1.5707963267948966 rad + pos: 5.5,-50.5 parent: 2 - - uid: 6492 + - uid: 7636 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,9.5 + rot: 1.5707963267948966 rad + pos: 22.5,-41.5 parent: 2 - - uid: 6497 + - uid: 7637 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,11.5 + rot: 1.5707963267948966 rad + pos: 31.5,-44.5 parent: 2 - - uid: 6501 + - uid: 7639 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,16.5 + rot: 1.5707963267948966 rad + pos: 30.5,-45.5 parent: 2 - - uid: 6504 + - uid: 7641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,24.5 + rot: 1.5707963267948966 rad + pos: 31.5,-46.5 parent: 2 - - uid: 6505 + - uid: 7645 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,6.5 + rot: 1.5707963267948966 rad + pos: 31.5,-47.5 parent: 2 - - uid: 6519 + - uid: 7648 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-35.5 + pos: 30.5,-47.5 parent: 2 - - uid: 6530 + - uid: 7649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-2.5 + rot: 1.5707963267948966 rad + pos: 22.5,-44.5 parent: 2 - - uid: 6552 + - uid: 7651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-5.5 + rot: 1.5707963267948966 rad + pos: 22.5,-45.5 parent: 2 - - uid: 6570 + - uid: 7653 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,0.5 + rot: 1.5707963267948966 rad + pos: 23.5,-45.5 parent: 2 - - uid: 6574 + - uid: 7654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,0.5 + rot: 1.5707963267948966 rad + pos: 23.5,-46.5 parent: 2 - - uid: 6610 + - uid: 7655 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-37.5 + pos: 22.5,-47.5 parent: 2 - - uid: 6621 + - uid: 7658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-5.5 + rot: 1.5707963267948966 rad + pos: 30.5,-49.5 parent: 2 - - uid: 6625 + - uid: 7660 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-7.5 + rot: 1.5707963267948966 rad + pos: 23.5,-48.5 parent: 2 - - uid: 6636 + - uid: 7661 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-2.5 + rot: 1.5707963267948966 rad + pos: 24.5,-49.5 parent: 2 - - uid: 6918 + - uid: 7662 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-13.5 + rot: 1.5707963267948966 rad + pos: 29.5,-48.5 parent: 2 - - uid: 6937 + - uid: 7664 components: - type: Transform - pos: 47.5,19.5 + rot: 1.5707963267948966 rad + pos: 23.5,-49.5 parent: 2 - - uid: 6939 + - uid: 7726 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,29.5 + rot: 1.5707963267948966 rad + pos: 16.5,-41.5 parent: 2 - - uid: 6951 + - uid: 7730 components: - type: Transform - pos: 12.5,33.5 + rot: 1.5707963267948966 rad + pos: 21.5,-41.5 parent: 2 - - uid: 6957 + - uid: 7733 components: - type: Transform - pos: 3.5,44.5 + rot: 1.5707963267948966 rad + pos: 20.5,-49.5 parent: 2 - - uid: 6969 + - uid: 7735 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-35.5 + pos: 15.5,-41.5 parent: 2 - - uid: 6985 + - uid: 7736 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,-17.5 + pos: 20.5,-45.5 parent: 2 - - uid: 6988 + - uid: 7741 components: - type: Transform - pos: -4.5,41.5 + rot: 1.5707963267948966 rad + pos: 21.5,-45.5 parent: 2 - - uid: 6992 + - uid: 7744 components: - type: Transform - pos: 2.5,49.5 + rot: 1.5707963267948966 rad + pos: 4.5,-36.5 parent: 2 - - uid: 7002 + - uid: 7746 components: - type: Transform - pos: 39.5,0.5 + rot: -1.5707963267948966 rad + pos: 7.5,-50.5 parent: 2 - - uid: 7003 + - uid: 7756 components: - type: Transform - pos: 40.5,-5.5 + rot: 1.5707963267948966 rad + pos: 4.5,-34.5 parent: 2 - - uid: 7004 + - uid: 7757 components: - type: Transform - pos: 35.5,-4.5 + rot: 1.5707963267948966 rad + pos: -6.5,-36.5 parent: 2 - - uid: 7079 + - uid: 7758 components: - type: Transform - pos: 12.5,37.5 + rot: 1.5707963267948966 rad + pos: -6.5,-37.5 parent: 2 - - uid: 7258 + - uid: 7762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-2.5 + rot: 1.5707963267948966 rad + pos: -6.5,-34.5 parent: 2 - - uid: 7272 + - uid: 7763 components: - type: Transform - pos: 56.5,24.5 + rot: 1.5707963267948966 rad + pos: 20.5,-47.5 parent: 2 - - uid: 7288 + - uid: 7764 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-16.5 + pos: 17.5,-49.5 parent: 2 - - uid: 7457 + - uid: 7767 components: - type: Transform - pos: 59.5,24.5 + rot: 1.5707963267948966 rad + pos: 15.5,-44.5 parent: 2 - - uid: 7458 + - uid: 7770 components: - type: Transform - pos: 60.5,24.5 + rot: 1.5707963267948966 rad + pos: 17.5,-50.5 parent: 2 - - uid: 7467 + - uid: 7772 components: - type: Transform - pos: 66.5,-0.5 + rot: 1.5707963267948966 rad + pos: 20.5,-50.5 parent: 2 - - uid: 7468 + - uid: 7782 components: - type: Transform - pos: 46.5,19.5 + rot: 1.5707963267948966 rad + pos: 20.5,-42.5 parent: 2 - - uid: 7470 + - uid: 7783 components: - type: Transform - pos: 50.5,19.5 + rot: 1.5707963267948966 rad + pos: 17.5,-42.5 parent: 2 - - uid: 7472 + - uid: 7794 components: - type: Transform - pos: 66.5,0.5 + rot: 1.5707963267948966 rad + pos: 21.5,-50.5 parent: 2 - - uid: 7480 + - uid: 7804 components: - type: Transform - pos: -54.5,-34.5 + rot: 1.5707963267948966 rad + pos: 16.5,-50.5 parent: 2 - - uid: 7482 + - uid: 7806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-15.5 + rot: 1.5707963267948966 rad + pos: 14.5,-50.5 parent: 2 - - uid: 7483 + - uid: 7816 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-12.5 + pos: 18.5,-55.5 parent: 2 - - uid: 7485 + - uid: 7817 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-18.5 + pos: 18.5,-61.5 parent: 2 - - uid: 7486 + - uid: 7818 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-21.5 + pos: 22.5,-66.5 parent: 2 - - uid: 7487 + - uid: 7819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-19.5 + pos: 23.5,-61.5 parent: 2 - - uid: 7490 + - uid: 7820 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-22.5 + rot: 1.5707963267948966 rad + pos: 22.5,-50.5 parent: 2 - - uid: 7491 + - uid: 7822 components: - type: Transform - pos: -33.5,-5.5 + rot: 1.5707963267948966 rad + pos: 23.5,-50.5 parent: 2 - - uid: 7492 + - uid: 7824 components: - type: Transform - pos: -40.5,8.5 + pos: 25.5,-67.5 parent: 2 - - uid: 7498 + - uid: 7826 components: - type: Transform - pos: 54.5,22.5 + pos: 14.5,-62.5 parent: 2 - - uid: 7500 + - uid: 7827 components: - type: Transform - pos: 54.5,20.5 + pos: 17.5,-51.5 parent: 2 - - uid: 7505 + - uid: 7828 components: - type: Transform - pos: 66.5,3.5 + pos: 17.5,-54.5 parent: 2 - - uid: 7511 + - uid: 7831 components: - type: Transform - pos: -53.5,-36.5 + pos: 13.5,-66.5 parent: 2 - - uid: 7535 + - uid: 7833 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-8.5 + pos: 21.5,-55.5 parent: 2 - - uid: 7536 + - uid: 7834 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-8.5 + pos: 20.5,-55.5 parent: 2 - - uid: 7538 + - uid: 7835 components: - type: Transform - pos: 53.5,19.5 + pos: 18.5,-66.5 parent: 2 - - uid: 7774 + - uid: 7845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-33.5 + pos: 12.5,-78.5 parent: 2 - - uid: 7909 + - uid: 7846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-35.5 + pos: 11.5,-65.5 parent: 2 - - uid: 7941 + - uid: 7848 components: - type: Transform - pos: 35.5,-5.5 + pos: 15.5,-61.5 parent: 2 - - uid: 7993 + - uid: 7849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-39.5 + pos: 17.5,-61.5 parent: 2 - - uid: 8172 + - uid: 7855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,6.5 + pos: 16.5,-52.5 parent: 2 - - uid: 8175 + - uid: 7856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,5.5 + pos: 16.5,-53.5 parent: 2 - - uid: 8177 + - uid: 7858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,5.5 + pos: 25.5,-61.5 parent: 2 - - uid: 8210 + - uid: 7859 components: - type: Transform - pos: 66.5,6.5 + pos: 23.5,-62.5 parent: 2 - - uid: 8224 + - uid: 7861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-21.5 + pos: 16.5,-63.5 parent: 2 - - uid: 8228 + - uid: 7862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,27.5 + pos: 24.5,-54.5 parent: 2 - - uid: 8232 + - uid: 7866 components: - type: Transform - pos: 67.5,-4.5 + pos: 22.5,-54.5 parent: 2 - - uid: 8236 + - uid: 7869 components: - type: Transform - pos: 36.5,-5.5 + rot: 1.5707963267948966 rad + pos: 7.5,-38.5 parent: 2 - - uid: 8244 + - uid: 7871 components: - type: Transform - pos: 38.5,-5.5 + pos: 23.5,-76.5 parent: 2 - - uid: 9140 + - uid: 7872 components: - type: Transform - pos: 69.5,-4.5 + rot: 1.5707963267948966 rad + pos: 7.5,-40.5 parent: 2 - - uid: 9149 + - uid: 7873 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-21.5 + rot: 1.5707963267948966 rad + pos: 9.5,-41.5 parent: 2 - - uid: 9150 + - uid: 7874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,29.5 + pos: 22.5,-61.5 parent: 2 - - uid: 9151 + - uid: 7875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,28.5 + rot: 1.5707963267948966 rad + pos: 11.5,-41.5 parent: 2 - - uid: 9162 + - uid: 7878 components: - type: Transform - pos: -40.5,5.5 + pos: 16.5,-65.5 parent: 2 - - uid: 9170 + - uid: 7881 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-21.5 + rot: 1.5707963267948966 rad + pos: 13.5,-41.5 parent: 2 - - uid: 9442 + - uid: 7883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,4.5 + rot: 1.5707963267948966 rad + pos: 12.5,-50.5 parent: 2 - - uid: 10585 + - uid: 7888 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-24.5 + rot: 1.5707963267948966 rad + pos: 10.5,-45.5 parent: 2 - - uid: 11653 + - uid: 7893 components: - type: Transform - pos: 70.5,-4.5 + rot: 1.5707963267948966 rad + pos: 10.5,-46.5 parent: 2 - - uid: 11661 + - uid: 7894 components: - type: Transform - pos: 66.5,-3.5 + rot: 1.5707963267948966 rad + pos: 10.5,-49.5 parent: 2 - - uid: 11662 + - uid: 7896 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-21.5 + rot: 1.5707963267948966 rad + pos: 10.5,-50.5 parent: 2 - - uid: 12110 + - uid: 7898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,4.5 + rot: 1.5707963267948966 rad + pos: 10.5,-43.5 parent: 2 - - uid: 12572 + - uid: 7907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,23.5 + rot: 1.5707963267948966 rad + pos: 13.5,-43.5 parent: 2 - - uid: 13175 + - uid: 7914 components: - type: Transform - pos: -32.5,-1.5 + rot: 1.5707963267948966 rad + pos: 14.5,-43.5 parent: 2 - - uid: 13176 + - uid: 7962 components: - type: Transform - pos: -29.5,-1.5 + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 parent: 2 - - uid: 13238 + - uid: 7965 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-5.5 + rot: 1.5707963267948966 rad + pos: -2.5,-36.5 parent: 2 - - uid: 14001 + - uid: 7966 components: - type: Transform - pos: -11.5,-35.5 + rot: 1.5707963267948966 rad + pos: 13.5,-39.5 parent: 2 - - uid: 14002 + - uid: 7968 components: - type: Transform - pos: -10.5,-35.5 + rot: 1.5707963267948966 rad + pos: 2.5,-41.5 parent: 2 - - uid: 14717 + - uid: 7972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-29.5 + rot: 1.5707963267948966 rad + pos: -1.5,-33.5 parent: 2 - - uid: 14871 + - uid: 7973 components: - type: Transform - pos: 6.5,18.5 + rot: 1.5707963267948966 rad + pos: 2.5,-33.5 parent: 2 - - uid: 14910 + - uid: 7995 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,12.5 + rot: 1.5707963267948966 rad + pos: -1.5,-32.5 parent: 2 - - uid: 15202 + - uid: 7998 components: - type: Transform - pos: 69.5,-0.5 + rot: 1.5707963267948966 rad + pos: -0.5,-38.5 parent: 2 - - uid: 15204 + - uid: 8001 components: - type: Transform - pos: 68.5,-0.5 + rot: 1.5707963267948966 rad + pos: 2.5,-38.5 parent: 2 - - uid: 15211 + - uid: 8023 components: - type: Transform - pos: 69.5,3.5 + rot: 1.5707963267948966 rad + pos: -3.5,-37.5 parent: 2 - - uid: 15212 + - uid: 8024 components: - type: Transform - pos: 68.5,3.5 + pos: 26.5,-66.5 parent: 2 - - uid: 16084 + - uid: 8025 components: - type: Transform - pos: 59.5,25.5 + rot: 1.5707963267948966 rad + pos: 4.5,-41.5 parent: 2 - - uid: 16086 + - uid: 8026 components: - type: Transform - pos: 59.5,27.5 + pos: 25.5,-78.5 parent: 2 - - uid: 16151 + - uid: 8027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-24.5 + rot: 1.5707963267948966 rad + pos: 4.5,-42.5 parent: 2 - - uid: 16163 + - uid: 8030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,32.5 + rot: 1.5707963267948966 rad + pos: 5.5,-43.5 parent: 2 - - uid: 16168 + - uid: 8031 components: - type: Transform - pos: -36.5,-42.5 + rot: 1.5707963267948966 rad + pos: 6.5,-43.5 parent: 2 - - uid: 16185 + - uid: 8035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-8.5 + rot: 1.5707963267948966 rad + pos: 9.5,-43.5 parent: 2 - - uid: 16189 + - uid: 8036 components: - type: Transform - pos: 75.5,-26.5 + rot: 1.5707963267948966 rad + pos: 13.5,-36.5 parent: 2 - - uid: 16313 + - uid: 8039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-45.5 + pos: 24.5,-71.5 parent: 2 - - uid: 16315 + - uid: 8047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-44.5 + pos: 24.5,-51.5 parent: 2 - - uid: 16349 + - uid: 8048 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-30.5 + pos: 14.5,-69.5 parent: 2 - - uid: 16352 + - uid: 8053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-30.5 + pos: 15.5,-70.5 parent: 2 - - uid: 16377 + - uid: 8059 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-24.5 + pos: 24.5,-52.5 parent: 2 - - uid: 16378 + - uid: 8065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-24.5 + pos: 18.5,-76.5 parent: 2 - - uid: 16382 + - uid: 8079 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-27.5 + rot: 1.5707963267948966 rad + pos: 11.5,-36.5 parent: 2 - - uid: 16383 + - uid: 8120 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-28.5 + rot: 1.5707963267948966 rad + pos: 7.5,-36.5 parent: 2 - - uid: 16387 + - uid: 8121 components: - type: Transform - pos: 49.5,21.5 + rot: 1.5707963267948966 rad + pos: 9.5,-36.5 parent: 2 - - uid: 16615 + - uid: 8123 components: - type: Transform - pos: -40.5,4.5 + rot: 1.5707963267948966 rad + pos: 6.5,-45.5 parent: 2 - - uid: 16750 + - uid: 8124 components: - type: Transform - pos: -29.5,8.5 + rot: 1.5707963267948966 rad + pos: 5.5,-46.5 parent: 2 - - uid: 16751 + - uid: 8126 components: - type: Transform - pos: -34.5,8.5 + rot: -1.5707963267948966 rad + pos: 8.5,-49.5 parent: 2 - - uid: 16752 + - uid: 8127 components: - type: Transform - pos: -35.5,8.5 + rot: 1.5707963267948966 rad + pos: 6.5,-47.5 parent: 2 - - uid: 17527 + - uid: 8128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,4.5 + rot: 1.5707963267948966 rad + pos: 5.5,-48.5 parent: 2 - - uid: 20291 + - uid: 8142 components: - type: Transform - pos: -24.5,-42.5 + rot: 1.5707963267948966 rad + pos: 15.5,-39.5 parent: 2 - - uid: 20298 + - uid: 8143 components: - type: Transform - pos: 84.5,-21.5 + rot: 1.5707963267948966 rad + pos: 54.5,9.5 parent: 2 - - uid: 20793 + - uid: 8145 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,18.5 + rot: 1.5707963267948966 rad + pos: 53.5,9.5 parent: 2 - - uid: 20875 + - uid: 8147 components: - type: Transform - pos: 59.5,-1.5 + rot: 1.5707963267948966 rad + pos: -2.5,-42.5 parent: 2 - - uid: 20888 + - uid: 8149 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,7.5 + pos: -2.5,-41.5 parent: 2 - - uid: 21036 + - uid: 8151 components: - type: Transform - pos: 83.5,-32.5 + rot: 1.5707963267948966 rad + pos: -7.5,-42.5 parent: 2 - - uid: 21388 + - uid: 8152 components: - type: Transform - pos: -19.5,-40.5 + rot: 1.5707963267948966 rad + pos: -8.5,-42.5 parent: 2 -- proto: WallWood - entities: - - uid: 3459 + - uid: 8157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-1.5 + rot: 1.5707963267948966 rad + pos: -36.5,-51.5 parent: 2 - - uid: 3460 + - uid: 8182 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-1.5 + rot: 1.5707963267948966 rad + pos: -35.5,-51.5 parent: 2 - - uid: 3461 + - uid: 8183 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-1.5 + rot: 1.5707963267948966 rad + pos: -35.5,-52.5 parent: 2 - - uid: 3462 + - uid: 8200 components: - type: Transform - pos: -26.5,-35.5 + rot: 1.5707963267948966 rad + pos: 63.5,-33.5 parent: 2 - - uid: 3493 + - uid: 8201 components: - type: Transform - pos: -19.5,-22.5 + rot: 1.5707963267948966 rad + pos: 65.5,11.5 parent: 2 - - uid: 3497 + - uid: 8207 components: - type: Transform - pos: -20.5,-11.5 + rot: 1.5707963267948966 rad + pos: 66.5,10.5 parent: 2 - - uid: 3498 + - uid: 8208 components: - type: Transform - pos: -19.5,-23.5 + rot: 1.5707963267948966 rad + pos: 66.5,9.5 parent: 2 - - uid: 4175 + - uid: 8520 components: - type: Transform - pos: -19.5,-21.5 + rot: 1.5707963267948966 rad + pos: -30.5,25.5 parent: 2 - - uid: 4261 + - uid: 8521 components: - type: Transform - pos: -21.5,-21.5 + rot: 1.5707963267948966 rad + pos: -30.5,26.5 parent: 2 - - uid: 4263 + - uid: 8522 components: - type: Transform - pos: -22.5,-11.5 + rot: 1.5707963267948966 rad + pos: -30.5,28.5 parent: 2 - - uid: 4264 + - uid: 8884 components: - type: Transform - pos: -17.5,-21.5 + rot: 1.5707963267948966 rad + pos: 68.5,18.5 parent: 2 - - uid: 4380 + - uid: 8974 components: - type: Transform - pos: -22.5,-16.5 + pos: 44.5,-30.5 parent: 2 - - uid: 4381 + - uid: 9096 components: - type: Transform - pos: -22.5,-22.5 + pos: 23.5,-73.5 parent: 2 - - uid: 4382 + - uid: 9097 components: - type: Transform - pos: -22.5,-20.5 + pos: 24.5,-75.5 parent: 2 - - uid: 4462 + - uid: 9105 components: - type: Transform - pos: -22.5,-21.5 + rot: 1.5707963267948966 rad + pos: -29.5,28.5 parent: 2 - - uid: 4576 + - uid: 9112 components: - type: Transform - pos: -17.5,-16.5 + rot: 1.5707963267948966 rad + pos: -27.5,29.5 parent: 2 - - uid: 4995 + - uid: 9114 components: - type: Transform - pos: -19.5,-16.5 + rot: 1.5707963267948966 rad + pos: -27.5,31.5 parent: 2 - - uid: 5029 + - uid: 9115 components: - type: Transform - pos: -17.5,-11.5 + rot: 1.5707963267948966 rad + pos: -25.5,31.5 parent: 2 - - uid: 5685 + - uid: 9124 components: - type: Transform - pos: -21.5,-11.5 + rot: 1.5707963267948966 rad + pos: -27.5,27.5 parent: 2 - - uid: 6088 + - uid: 9125 components: - type: Transform - pos: -19.5,-11.5 + rot: 1.5707963267948966 rad + pos: -29.5,30.5 parent: 2 - - uid: 6125 + - uid: 9127 components: - type: Transform - pos: -21.5,-16.5 + rot: 1.5707963267948966 rad + pos: -32.5,30.5 parent: 2 - - uid: 7420 + - uid: 9128 components: - type: Transform - pos: -22.5,-23.5 + rot: 1.5707963267948966 rad + pos: 86.5,-8.5 parent: 2 - - uid: 7550 + - uid: 9131 components: - type: Transform - pos: -22.5,-19.5 + rot: 1.5707963267948966 rad + pos: 83.5,-8.5 parent: 2 - - uid: 8348 + - uid: 9133 components: - type: Transform - pos: -20.5,-16.5 + rot: 1.5707963267948966 rad + pos: 85.5,-8.5 parent: 2 - - uid: 17092 + - uid: 9135 components: - type: Transform - pos: 68.5,-54.5 + rot: 1.5707963267948966 rad + pos: -26.5,33.5 parent: 2 - - uid: 17192 + - uid: 9137 components: - type: Transform - pos: 68.5,-55.5 + rot: 1.5707963267948966 rad + pos: -23.5,33.5 parent: 2 - - uid: 17193 + - uid: 9139 components: - type: Transform - pos: 68.5,-51.5 + rot: 1.5707963267948966 rad + pos: -22.5,33.5 parent: 2 - - uid: 17194 + - uid: 9143 components: - type: Transform - pos: 68.5,-50.5 + rot: 1.5707963267948966 rad + pos: -22.5,36.5 parent: 2 - - uid: 17214 + - uid: 9144 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-51.5 + rot: 1.5707963267948966 rad + pos: -23.5,36.5 parent: 2 - - uid: 17226 + - uid: 9146 components: - type: Transform - pos: 64.5,-55.5 + rot: 1.5707963267948966 rad + pos: -23.5,35.5 parent: 2 - - uid: 17228 + - uid: 9148 components: - type: Transform - pos: 64.5,-50.5 + rot: 1.5707963267948966 rad + pos: 14.5,-37.5 parent: 2 - - uid: 17233 + - uid: 9153 components: - type: Transform - pos: 67.5,-50.5 + rot: 1.5707963267948966 rad + pos: 16.5,-37.5 parent: 2 - - uid: 17237 + - uid: 9156 components: - type: Transform - pos: 64.5,-54.5 + rot: 1.5707963267948966 rad + pos: 16.5,-38.5 parent: 2 - - uid: 17239 + - uid: 9157 components: - type: Transform - pos: 68.5,-53.5 + rot: 1.5707963267948966 rad + pos: -62.5,-20.5 parent: 2 - - uid: 17240 + - uid: 9192 components: - type: Transform - pos: 65.5,-55.5 + rot: 1.5707963267948966 rad + pos: -62.5,-18.5 parent: 2 - - uid: 17241 + - uid: 9193 components: - type: Transform - pos: 66.5,-55.5 + rot: 1.5707963267948966 rad + pos: -61.5,-18.5 parent: 2 - - uid: 17244 + - uid: 9194 components: - type: Transform - pos: 67.5,-55.5 + rot: 1.5707963267948966 rad + pos: -59.5,-19.5 parent: 2 - - uid: 17245 + - uid: 9199 components: - type: Transform - pos: 68.5,-52.5 + rot: 1.5707963267948966 rad + pos: -39.5,-38.5 parent: 2 -- proto: WardrobeBlackFilled - entities: - - uid: 16465 + - uid: 9201 components: - type: Transform - pos: -59.5,-33.5 + rot: 1.5707963267948966 rad + pos: -38.5,-38.5 parent: 2 -- proto: WardrobeBotanistFilled - entities: - - uid: 14631 + - uid: 9202 components: - type: Transform - pos: -38.5,12.5 + rot: 1.5707963267948966 rad + pos: -37.5,-38.5 parent: 2 -- proto: WardrobeCargoFilled - entities: - - uid: 5748 + - uid: 9205 components: - type: Transform - pos: 25.5,17.5 + rot: 1.5707963267948966 rad + pos: 79.5,-32.5 parent: 2 -- proto: WardrobeGreyFilled - entities: - - uid: 16245 + - uid: 9207 components: - type: Transform - pos: 76.5,-29.5 + rot: 1.5707963267948966 rad + pos: 55.5,-38.5 parent: 2 - - uid: 16246 + - uid: 9208 components: - type: Transform - pos: 77.5,-29.5 + rot: 1.5707963267948966 rad + pos: 18.5,22.5 parent: 2 - - uid: 16247 + - uid: 9211 components: - type: Transform - pos: 79.5,-29.5 + rot: 1.5707963267948966 rad + pos: -60.5,-32.5 parent: 2 - - uid: 16248 + - uid: 9216 components: - type: Transform - pos: 80.5,-29.5 + rot: 1.5707963267948966 rad + pos: -23.5,39.5 parent: 2 -- proto: WardrobePrisonFilled - entities: - - uid: 1709 + - uid: 9217 components: - type: Transform - pos: -11.5,23.5 + rot: 1.5707963267948966 rad + pos: -33.5,30.5 parent: 2 - - uid: 4789 + - uid: 9218 components: - type: Transform - pos: -15.5,23.5 + rot: 1.5707963267948966 rad + pos: -38.5,22.5 parent: 2 - - uid: 4795 + - uid: 10288 components: - type: Transform - pos: -7.5,23.5 + rot: 1.5707963267948966 rad + pos: -38.5,20.5 parent: 2 - - uid: 5243 + - uid: 10499 components: - type: Transform - pos: -6.5,43.5 + rot: 1.5707963267948966 rad + pos: -64.5,-30.5 parent: 2 - - uid: 5244 + - uid: 10633 components: - type: Transform - pos: 3.5,43.5 + pos: 13.5,-79.5 parent: 2 -- proto: WardrobeWhiteFilled - entities: - - uid: 3464 + - uid: 10636 components: - type: Transform - pos: -27.5,-10.5 + pos: 13.5,-61.5 parent: 2 -- proto: WarningCO2 - entities: - - uid: 3465 + - uid: 10637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-1.5 + pos: 16.5,-77.5 parent: 2 -- proto: WarningN2 - entities: - - uid: 3466 + - uid: 10646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-1.5 + pos: 15.5,-71.5 parent: 2 -- proto: WarningO2 - entities: - - uid: 3467 + - uid: 10653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-1.5 + pos: 14.5,-75.5 parent: 2 -- proto: WarningPlasma - entities: - - uid: 3468 + - uid: 11666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-1.5 + rot: 1.5707963267948966 rad + pos: -30.5,39.5 parent: 2 -- proto: WarningWaste - entities: - - uid: 3469 + - uid: 12466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-1.5 + rot: 1.5707963267948966 rad + pos: -30.5,35.5 parent: 2 - - uid: 3470 + - uid: 12670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-1.5 + pos: 44.5,-28.5 parent: 2 -- proto: WarpPoint - entities: - - uid: 20936 + - uid: 12811 components: - type: Transform - pos: 8.5,-3.5 - parent: 21128 - - type: WarpPoint - location: Unknown shuttle -- proto: WarpPointBombing - entities: - - uid: 13731 + pos: 23.5,-69.5 + parent: 2 + - uid: 12812 components: - type: Transform - pos: -18.5,1.5 + pos: 27.5,-64.5 parent: 2 - - type: WarpPoint - location: Bar - - uid: 13732 + - uid: 12813 components: - type: Transform - pos: -2.5,24.5 + pos: 20.5,-60.5 parent: 2 - - type: WarpPoint - location: Security - - uid: 13733 + - uid: 12834 components: - type: Transform - pos: -1.5,47.5 + pos: 23.5,-77.5 parent: 2 - - type: WarpPoint - location: Perma - - uid: 13734 + - uid: 12837 components: - type: Transform - pos: 27.5,20.5 + pos: 20.5,-77.5 parent: 2 - - type: WarpPoint - location: Cargo - - uid: 13735 + - uid: 12838 components: - type: Transform - pos: 44.5,8.5 + pos: 16.5,-76.5 parent: 2 - - type: WarpPoint - location: Medical - - uid: 13736 + - uid: 14192 components: - type: Transform - pos: -1.5,-22.5 + rot: 1.5707963267948966 rad + pos: -20.5,39.5 parent: 2 - - type: WarpPoint - location: Engineering - - uid: 13737 + - uid: 14660 components: - type: Transform - pos: 40.5,-35.5 + pos: -62.5,-33.5 parent: 2 - - type: WarpPoint - location: Bridge - - uid: 13738 + - uid: 14674 components: - type: Transform - pos: -32.5,-13.5 + rot: 1.5707963267948966 rad + pos: -23.5,38.5 parent: 2 - - type: WarpPoint - location: Dorms - - uid: 13739 + - uid: 14814 components: - type: Transform - pos: -48.5,1.5 + rot: 1.5707963267948966 rad + pos: 18.5,26.5 parent: 2 - - type: WarpPoint - location: Evacuation -- proto: WaterCooler - entities: - - uid: 3471 + - uid: 14954 components: - type: Transform - pos: 4.5,-17.5 + rot: 1.5707963267948966 rad + pos: 18.5,23.5 parent: 2 - - uid: 3472 + - uid: 15011 components: - type: Transform - pos: 21.5,-18.5 + rot: 1.5707963267948966 rad + pos: -31.5,39.5 parent: 2 - - uid: 5603 + - uid: 15013 components: - type: Transform - pos: 31.5,10.5 + rot: 1.5707963267948966 rad + pos: -33.5,39.5 parent: 2 - - uid: 8266 + - uid: 15045 components: - type: Transform - pos: -3.5,21.5 + rot: 1.5707963267948966 rad + pos: 18.5,25.5 parent: 2 -- proto: WaterTankFull - entities: - - uid: 60 + - uid: 15047 components: - type: Transform - pos: 58.5,-25.5 + rot: 1.5707963267948966 rad + pos: -34.5,35.5 parent: 2 - - uid: 5162 + - uid: 15052 components: - type: Transform - anchored: True - pos: -3.5,50.5 + rot: 1.5707963267948966 rad + pos: -33.5,33.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 7619 + - uid: 15056 components: - type: Transform - pos: 19.5,-35.5 + rot: 1.5707963267948966 rad + pos: -31.5,33.5 parent: 2 - - uid: 14675 + - uid: 15060 components: - type: Transform - pos: -20.5,31.5 + rot: 1.5707963267948966 rad + pos: -24.5,36.5 parent: 2 - - uid: 14678 + - uid: 15062 components: - type: Transform - pos: 17.5,17.5 + rot: 1.5707963267948966 rad + pos: 71.5,0.5 parent: 2 - - uid: 14679 + - uid: 15066 components: - type: Transform - pos: -13.5,-10.5 + rot: 1.5707963267948966 rad + pos: 71.5,6.5 parent: 2 - - uid: 14681 + - uid: 15068 components: - type: Transform - pos: -14.5,-33.5 + rot: 1.5707963267948966 rad + pos: 71.5,7.5 parent: 2 - - uid: 14685 + - uid: 15072 components: - type: Transform - pos: 5.5,-41.5 + rot: 1.5707963267948966 rad + pos: 69.5,7.5 parent: 2 - - uid: 14686 + - uid: 15073 components: - type: Transform - pos: 73.5,-20.5 + rot: 1.5707963267948966 rad + pos: 67.5,7.5 parent: 2 - - uid: 14689 + - uid: 15076 components: - type: Transform - pos: 65.5,-3.5 + rot: 1.5707963267948966 rad + pos: 72.5,-3.5 parent: 2 - - uid: 14690 + - uid: 15078 components: - type: Transform - pos: 49.5,17.5 + rot: 1.5707963267948966 rad + pos: 73.5,-3.5 parent: 2 - - uid: 14693 + - uid: 15158 components: - type: Transform - pos: -11.5,17.5 + rot: 1.5707963267948966 rad + pos: 65.5,22.5 parent: 2 - - uid: 14694 + - uid: 15205 components: - type: Transform - pos: 3.5,38.5 + rot: 1.5707963267948966 rad + pos: 71.5,2.5 parent: 2 - - uid: 14718 + - uid: 15207 components: - type: Transform - pos: 45.5,-9.5 + rot: 1.5707963267948966 rad + pos: 71.5,-1.5 parent: 2 - - uid: 14735 + - uid: 15216 components: - type: Transform - pos: 39.5,-6.5 + rot: 1.5707963267948966 rad + pos: 71.5,4.5 parent: 2 - - uid: 15758 + - uid: 15218 components: - type: Transform - pos: 67.5,0.5 + rot: 1.5707963267948966 rad + pos: -52.5,-67.5 parent: 2 - - uid: 21571 + - uid: 15220 components: - type: Transform - pos: 34.5,-2.5 + rot: 1.5707963267948966 rad + pos: -42.5,-70.5 parent: 2 -- proto: WaterTankHighCapacity - entities: - - uid: 3475 + - uid: 15223 components: - type: Transform - pos: -13.5,-22.5 + rot: 1.5707963267948966 rad + pos: -52.5,-69.5 parent: 2 - - uid: 15394 + - uid: 15224 components: - type: Transform - pos: -28.5,17.5 + rot: 1.5707963267948966 rad + pos: -42.5,-68.5 parent: 2 -- proto: WaterVaporCanister - entities: - - uid: 3477 + - uid: 15246 components: - type: Transform - pos: 22.5,-2.5 + rot: 1.5707963267948966 rad + pos: -17.5,38.5 parent: 2 - - uid: 3478 + - uid: 15247 components: - type: Transform - pos: 24.5,-17.5 + rot: 1.5707963267948966 rad + pos: -17.5,42.5 parent: 2 -- proto: WeaponCapacitorRecharger - entities: - - uid: 4590 + - uid: 15248 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-28.5 + rot: 1.5707963267948966 rad + pos: -16.5,42.5 parent: 2 - - uid: 4972 + - uid: 15249 components: - type: Transform - pos: 5.5,25.5 + rot: 1.5707963267948966 rad + pos: -10.5,42.5 parent: 2 - - uid: 5294 + - uid: 15591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,31.5 + rot: 1.5707963267948966 rad + pos: -10.5,40.5 parent: 2 - - uid: 7621 + - uid: 15623 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-38.5 + pos: -10.5,38.5 parent: 2 - - uid: 13590 + - uid: 15624 components: - type: Transform - pos: 37.5,-32.5 + rot: 1.5707963267948966 rad + pos: -42.5,18.5 parent: 2 -- proto: WeaponDisabler - entities: - - uid: 5154 + - uid: 15846 components: - type: Transform - pos: -8.829058,31.720768 + rot: 1.5707963267948966 rad + pos: -44.5,18.5 parent: 2 -- proto: WeaponLaserCarbine - entities: - - uid: 5093 + - uid: 15849 components: - type: Transform - pos: 3.539238,33.610504 + rot: 1.5707963267948966 rad + pos: -44.5,17.5 parent: 2 - - uid: 5094 + - uid: 15851 components: - type: Transform - pos: 3.539238,33.43863 + rot: 1.5707963267948966 rad + pos: -44.5,16.5 parent: 2 - - uid: 20341 + - uid: 15858 components: - type: Transform - pos: 3.53751,33.53506 + rot: 1.5707963267948966 rad + pos: -23.5,-45.5 parent: 2 -- proto: WeaponShotgunEnforcer - entities: - - uid: 1957 + - uid: 15874 components: - type: Transform - pos: 2.550524,33.364468 + rot: 1.5707963267948966 rad + pos: -24.5,-44.5 parent: 2 -- proto: WeaponShotgunKammerer - entities: - - uid: 5091 + - uid: 15877 components: - type: Transform - pos: 2.523613,33.586533 + rot: 1.5707963267948966 rad + pos: -25.5,-44.5 parent: 2 - - uid: 7564 + - uid: 15878 components: - type: Transform - pos: 2.5417395,33.683712 + rot: 1.5707963267948966 rad + pos: 68.5,22.5 parent: 2 - - uid: 20305 + - uid: 15888 components: - type: Transform - pos: 2.553135,33.488186 + rot: 1.5707963267948966 rad + pos: 59.5,28.5 parent: 2 -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 5081 + - uid: 15941 components: - type: Transform - pos: -11.600864,32.694817 + rot: 1.5707963267948966 rad + pos: 61.5,28.5 parent: 2 -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 853 + - uid: 15944 components: - type: Transform - pos: 9.5,-44.5 + rot: 1.5707963267948966 rad + pos: 63.5,26.5 parent: 2 - - uid: 8171 + - uid: 15945 components: - type: Transform - pos: 7.5,-44.5 + rot: 1.5707963267948966 rad + pos: 63.5,25.5 parent: 2 - - uid: 20391 + - uid: 15995 components: - type: Transform - pos: 16.5,42.5 + rot: 1.5707963267948966 rad + pos: 57.5,28.5 parent: 2 - - uid: 20392 + - uid: 16024 components: - type: Transform - pos: 16.5,39.5 + rot: 1.5707963267948966 rad + pos: 55.5,28.5 parent: 2 - - uid: 21060 + - uid: 16027 components: - type: Transform - pos: -34.5,-45.5 + rot: 1.5707963267948966 rad + pos: 55.5,26.5 parent: 2 - - uid: 22109 + - uid: 16056 components: - type: Transform - pos: 16.5,-67.5 + rot: 1.5707963267948966 rad + pos: 55.5,25.5 parent: 2 - - uid: 22140 + - uid: 16060 components: - type: Transform - pos: 22.5,-67.5 + rot: 1.5707963267948966 rad + pos: 73.5,-36.5 parent: 2 - - uid: 22145 + - uid: 16061 components: - type: Transform - pos: 22.5,-74.5 + rot: 1.5707963267948966 rad + pos: 78.5,-32.5 parent: 2 - - uid: 22170 + - uid: 16073 components: - type: Transform - pos: 16.5,-74.5 + pos: 55.5,-22.5 parent: 2 -- proto: WeaponWaterPistol - entities: - - uid: 20287 + - uid: 16087 components: - type: Transform - pos: 57.375835,-1.3271363 + rot: 1.5707963267948966 rad + pos: 84.5,-32.5 parent: 2 - - uid: 20288 + - uid: 16088 components: - type: Transform - pos: 57.594585,-1.5146363 + rot: 1.5707963267948966 rad + pos: 84.5,-30.5 parent: 2 -- proto: Welder - entities: - - uid: 3479 + - uid: 16092 components: - type: Transform - pos: -7.5141225,-25.4744 + rot: 1.5707963267948966 rad + pos: 84.5,-23.5 parent: 2 -- proto: WelderIndustrial - entities: - - uid: 17640 + - uid: 16093 components: - type: Transform - pos: 17.592184,-17.644693 + rot: 1.5707963267948966 rad + pos: 49.5,-43.5 parent: 2 -- proto: WeldingFuelTankFull - entities: - - uid: 3481 + - uid: 16094 components: - type: Transform - pos: 16.5,-13.5 + rot: 1.5707963267948966 rad + pos: 79.5,-4.5 parent: 2 - - uid: 7618 + - uid: 16096 components: - type: Transform - pos: 19.5,-36.5 + rot: 1.5707963267948966 rad + pos: 83.5,-4.5 parent: 2 - - uid: 8161 + - uid: 16098 components: - type: Transform - pos: 33.5,-2.5 + rot: 1.5707963267948966 rad + pos: 83.5,-6.5 parent: 2 - - uid: 12468 + - uid: 16100 components: - type: Transform - pos: 58.5,-26.5 + rot: 1.5707963267948966 rad + pos: 52.5,25.5 parent: 2 - - uid: 13648 + - uid: 16101 components: - type: Transform - pos: -13.5,-11.5 + rot: 1.5707963267948966 rad + pos: 51.5,25.5 parent: 2 - - uid: 14676 + - uid: 16153 components: - type: Transform - pos: -19.5,31.5 + rot: 1.5707963267948966 rad + pos: 50.5,25.5 parent: 2 - - uid: 14677 + - uid: 16160 components: - type: Transform - pos: 17.5,1.5 + rot: 1.5707963267948966 rad + pos: 49.5,22.5 parent: 2 - - uid: 14682 + - uid: 16165 components: - type: Transform - pos: -13.5,-33.5 + rot: 1.5707963267948966 rad + pos: 16.5,27.5 parent: 2 - - uid: 14683 + - uid: 16169 components: - type: Transform - pos: 21.5,-40.5 + rot: 1.5707963267948966 rad + pos: 16.5,26.5 parent: 2 - - uid: 14684 + - uid: 16171 components: - type: Transform - pos: 5.5,-42.5 + rot: 1.5707963267948966 rad + pos: -27.5,-46.5 parent: 2 - - uid: 14687 + - uid: 16178 components: - type: Transform - pos: 73.5,-21.5 + rot: 1.5707963267948966 rad + pos: -28.5,-46.5 parent: 2 - - uid: 14688 + - uid: 16179 components: - type: Transform - pos: 65.5,-4.5 + rot: 1.5707963267948966 rad + pos: -32.5,-46.5 parent: 2 - - uid: 14691 + - uid: 16309 components: - type: Transform - pos: 50.5,17.5 + rot: 1.5707963267948966 rad + pos: -33.5,-46.5 parent: 2 - - uid: 14692 + - uid: 16347 components: - type: Transform - pos: -12.5,17.5 + rot: 1.5707963267948966 rad + pos: -60.5,-33.5 parent: 2 - - uid: 14719 + - uid: 16348 components: - type: Transform - pos: 45.5,-10.5 + rot: 1.5707963267948966 rad + pos: -60.5,-36.5 parent: 2 - - uid: 14734 + - uid: 16351 components: - type: Transform - pos: 39.5,-7.5 + rot: 1.5707963267948966 rad + pos: -60.5,-37.5 parent: 2 - - uid: 15853 + - uid: 16374 components: - type: Transform - pos: 69.5,6.5 + rot: 1.5707963267948966 rad + pos: -57.5,-37.5 parent: 2 - - uid: 16753 + - uid: 16389 components: - type: Transform - pos: -3.5,-21.5 + rot: 1.5707963267948966 rad + pos: -55.5,-37.5 parent: 2 -- proto: Windoor - entities: - - uid: 3483 + - uid: 16427 components: - type: Transform - pos: -6.5,-28.5 + rot: 1.5707963267948966 rad + pos: -68.5,-27.5 parent: 2 - - uid: 3484 + - uid: 16431 components: - type: Transform - pos: -5.5,-28.5 + rot: 1.5707963267948966 rad + pos: -68.5,-25.5 parent: 2 - - uid: 3485 + - uid: 16432 components: - type: Transform - pos: 20.5,-23.5 + rot: 1.5707963267948966 rad + pos: -68.5,-23.5 parent: 2 - - uid: 3486 + - uid: 16433 components: - type: Transform - pos: 21.5,-23.5 + rot: 1.5707963267948966 rad + pos: -68.5,-22.5 parent: 2 - - uid: 3487 + - uid: 16434 components: - type: Transform - pos: 39.5,-20.5 + rot: 1.5707963267948966 rad + pos: -66.5,-22.5 parent: 2 - - uid: 3488 + - uid: 16435 components: - type: Transform - pos: 45.5,-20.5 + rot: 1.5707963267948966 rad + pos: 16.5,29.5 parent: 2 - - uid: 3489 + - uid: 16452 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-22.5 + rot: 1.5707963267948966 rad + pos: 16.5,32.5 parent: 2 - - uid: 3494 + - uid: 16455 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-9.5 + pos: 16.5,33.5 parent: 2 - - uid: 3495 + - uid: 16456 components: - type: Transform - pos: -16.5,-28.5 + rot: 1.5707963267948966 rad + pos: -57.5,-18.5 parent: 2 - - uid: 3496 + - uid: 16459 components: - type: Transform - pos: -15.5,-28.5 + rot: 1.5707963267948966 rad + pos: 47.5,22.5 parent: 2 - - uid: 4764 + - uid: 16461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,23.5 + rot: 1.5707963267948966 rad + pos: 45.5,22.5 parent: 2 - - uid: 4765 + - uid: 16484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,24.5 + rot: 1.5707963267948966 rad + pos: 45.5,21.5 parent: 2 - - uid: 5149 + - uid: 16485 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,44.5 + rot: 1.5707963267948966 rad + pos: 45.5,20.5 parent: 2 - - uid: 5150 + - uid: 16487 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,44.5 + rot: 1.5707963267948966 rad + pos: 71.5,-33.5 parent: 2 - - uid: 5448 + - uid: 16489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,13.5 + rot: 1.5707963267948966 rad + pos: 10.5,39.5 parent: 2 - - uid: 5449 + - uid: 16491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,14.5 + rot: 1.5707963267948966 rad + pos: 10.5,42.5 parent: 2 - - uid: 6034 + - uid: 16492 components: - type: Transform - pos: 42.5,10.5 + rot: 1.5707963267948966 rad + pos: 9.5,43.5 parent: 2 - - uid: 6035 + - uid: 16493 components: - type: Transform - pos: 46.5,10.5 + rot: 1.5707963267948966 rad + pos: 7.5,43.5 parent: 2 - - uid: 7152 + - uid: 16509 components: - type: Transform - pos: 58.5,-15.5 + rot: 1.5707963267948966 rad + pos: 5.5,43.5 parent: 2 - - uid: 7153 + - uid: 16512 components: - type: Transform - pos: 59.5,-15.5 + rot: 1.5707963267948966 rad + pos: 86.5,-23.5 parent: 2 - - uid: 7154 + - uid: 16513 components: - type: Transform - pos: 60.5,-15.5 + rot: 1.5707963267948966 rad + pos: 17.5,38.5 parent: 2 - - uid: 15022 + - uid: 16517 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,21.5 + pos: 17.5,36.5 parent: 2 - - uid: 16397 + - uid: 16519 components: - type: Transform - pos: 53.5,22.5 + rot: 1.5707963267948966 rad + pos: 17.5,33.5 parent: 2 - - uid: 16912 + - uid: 16521 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,37.5 + pos: 93.5,-11.5 parent: 2 - - uid: 16941 + - uid: 16522 components: - - type: MetaData - name: Theatre windoor - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,4.5 + pos: 93.5,-10.5 parent: 2 - - uid: 18471 + - uid: 16523 components: - - type: MetaData - name: Theatre windoor - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,4.5 + rot: 1.5707963267948966 rad + pos: 55.5,-40.5 parent: 2 - - uid: 20921 + - uid: 16552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,-17.5 + rot: 1.5707963267948966 rad + pos: 5.5,55.5 parent: 2 - - uid: 20922 + - uid: 16566 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,-17.5 + rot: 1.5707963267948966 rad + pos: -5.5,56.5 parent: 2 -- proto: WindoorHydroponicsLocked - entities: - - uid: 3499 + - uid: 16569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,13.5 + rot: 1.5707963267948966 rad + pos: -6.5,55.5 parent: 2 - - uid: 3500 + - uid: 16571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,14.5 + rot: 1.5707963267948966 rad + pos: -8.5,51.5 parent: 2 -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 14242 + - uid: 16573 components: - type: Transform - pos: -19.5,10.5 + rot: 1.5707963267948966 rad + pos: -9.5,50.5 parent: 2 -- proto: WindoorKitchenLocked - entities: - - uid: 3501 + - uid: 16575 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,13.5 + pos: -7.5,51.5 parent: 2 - - uid: 3502 + - uid: 16614 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,14.5 + pos: -38.5,24.5 parent: 2 -- proto: WindoorSecure - entities: - - uid: 3505 + - uid: 16621 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-29.5 + pos: 23.5,-34.5 parent: 2 - - uid: 3506 + - uid: 16623 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-28.5 + pos: 53.5,-29.5 parent: 2 - - uid: 7933 + - uid: 16625 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-38.5 + pos: 54.5,-27.5 parent: 2 - - uid: 16324 + - uid: 16660 components: - type: Transform rot: 1.5707963267948966 rad - pos: 80.5,-6.5 + pos: 53.5,-43.5 parent: 2 - - uid: 17182 + - uid: 16730 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-50.5 + pos: 15.5,-66.5 parent: 2 - - uid: 17229 + - uid: 16754 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-50.5 + rot: 1.5707963267948966 rad + pos: 14.5,38.5 parent: 2 - - uid: 17258 + - uid: 16755 components: - type: Transform - pos: -33.5,-2.5 + rot: 1.5707963267948966 rad + pos: 16.5,38.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 21184: - - DoorStatus: DoorBolt - - uid: 21184 + - uid: 16782 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-1.5 + pos: 63.5,-37.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 17258: - - DoorStatus: DoorBolt - - uid: 21321 + - uid: 16787 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-24.5 + pos: 61.5,-37.5 parent: 2 - - uid: 22489 + - uid: 16827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-35.5 + pos: 15.5,-76.5 parent: 2 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 4751 + - uid: 16834 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,24.5 + pos: 12.5,43.5 parent: 2 - - uid: 4763 + - uid: 16847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,23.5 + pos: 65.5,-37.5 parent: 2 - - uid: 5082 + - uid: 16853 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,32.5 + pos: 13.5,43.5 parent: 2 - - uid: 5083 + - uid: 16855 components: - type: Transform - pos: 3.5,33.5 + rot: 1.5707963267948966 rad + pos: 15.5,43.5 parent: 2 - - uid: 5084 + - uid: 16857 components: - type: Transform - pos: 4.5,33.5 + rot: 1.5707963267948966 rad + pos: 17.5,43.5 parent: 2 - - uid: 5085 + - uid: 16858 components: - type: Transform - pos: 5.5,33.5 + rot: 1.5707963267948966 rad + pos: 17.5,40.5 parent: 2 -- proto: WindoorSecureAtmosphericsLocked - entities: - - uid: 3507 + - uid: 16860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-23.5 + rot: 1.5707963267948966 rad + pos: 17.5,41.5 parent: 2 - - uid: 3508 + - uid: 16861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-23.5 + rot: 1.5707963267948966 rad + pos: 84.5,-36.5 parent: 2 - - uid: 3509 + - uid: 16913 components: - type: Transform - pos: 19.5,-22.5 + rot: 1.5707963267948966 rad + pos: 84.5,-34.5 parent: 2 -- proto: WindoorSecureBrigLocked - entities: - - uid: 4421 + - uid: 17238 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-15.5 + rot: 1.5707963267948966 rad + pos: 79.5,-35.5 parent: 2 - - uid: 4497 + - uid: 17328 components: - type: Transform - pos: -47.5,-15.5 + rot: 1.5707963267948966 rad + pos: 81.5,-36.5 parent: 2 -- proto: WindoorSecureCargoLocked - entities: - - uid: 5445 + - uid: 17362 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,13.5 + pos: 67.5,18.5 parent: 2 - - uid: 5447 + - uid: 17434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,14.5 + rot: -1.5707963267948966 rad + pos: 6.5,-48.5 parent: 2 - - uid: 5450 + - uid: 17558 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,12.5 + pos: 62.5,-3.5 parent: 2 -- proto: WindoorSecureChapelLocked - entities: - - uid: 3510 + - uid: 18472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-39.5 + rot: -1.5707963267948966 rad + pos: 62.5,-5.5 parent: 2 - - uid: 3511 + - uid: 18473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-6.5 + parent: 2 + - uid: 19807 components: - type: Transform - pos: -32.5,-37.5 + rot: 1.5707963267948966 rad + pos: -42.5,22.5 parent: 2 -- proto: WindoorSecureChemistryLocked - entities: - - uid: 6036 + - uid: 19809 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,10.5 + rot: 1.5707963267948966 rad + pos: -44.5,21.5 parent: 2 - - uid: 6037 + - uid: 20302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,10.5 + rot: 1.5707963267948966 rad + pos: -45.5,22.5 parent: 2 - - uid: 8862 + - uid: 20304 components: - type: Transform - pos: 46.5,15.5 + rot: 1.5707963267948966 rad + pos: -45.5,24.5 parent: 2 - - uid: 18993 + - uid: 20309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,10.5 + rot: 1.5707963267948966 rad + pos: -44.5,25.5 parent: 2 -- proto: WindoorSecureCommandLocked - entities: - - uid: 1943 + - uid: 20310 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-64.5 + pos: -42.5,25.5 parent: 2 - - uid: 1945 + - uid: 20331 components: - type: Transform - pos: 8.5,-47.5 + pos: 14.5,-72.5 parent: 2 - - uid: 4571 + - uid: 20358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-29.5 + rot: 1.5707963267948966 rad + pos: -42.5,24.5 parent: 2 - - uid: 7436 + - uid: 20359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-27.5 + rot: 1.5707963267948966 rad + pos: -41.5,24.5 parent: 2 - - uid: 7437 + - uid: 20361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-27.5 + rot: 1.5707963267948966 rad + pos: -17.5,-45.5 parent: 2 - - uid: 7974 + - uid: 20363 components: - type: Transform - pos: 12.5,-45.5 + rot: 1.5707963267948966 rad + pos: 88.5,-10.5 parent: 2 - - uid: 7975 + - uid: 20365 components: - type: Transform - pos: 13.5,-45.5 + rot: 1.5707963267948966 rad + pos: 90.5,-10.5 parent: 2 - - uid: 20900 + - uid: 20366 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-65.5 + pos: 92.5,-10.5 parent: 2 - - uid: 20901 + - uid: 20399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-53.5 + rot: 1.5707963267948966 rad + pos: 93.5,-17.5 parent: 2 - - uid: 22049 + - uid: 20401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-72.5 + rot: 1.5707963267948966 rad + pos: 93.5,-18.5 parent: 2 - - uid: 22050 + - uid: 20404 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-72.5 + pos: 93.5,-19.5 parent: 2 -- proto: WindoorSecureDetectiveLocked - entities: - - uid: 17488 + - uid: 20414 components: - type: Transform - pos: -24.5,28.5 + rot: 1.5707963267948966 rad + pos: 93.5,-20.5 parent: 2 -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 3512 + - uid: 20530 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-22.5 + pos: 92.5,-21.5 parent: 2 - - uid: 3513 + - uid: 20532 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-28.5 + rot: 1.5707963267948966 rad + pos: 90.5,-21.5 parent: 2 - - uid: 3514 + - uid: 20534 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-28.5 + rot: 1.5707963267948966 rad + pos: 88.5,-21.5 parent: 2 - - uid: 3515 + - uid: 20535 components: - type: Transform - pos: -7.5,-27.5 + rot: 1.5707963267948966 rad + pos: 90.5,-22.5 parent: 2 - - uid: 15163 + - uid: 20537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,34.5 + rot: 1.5707963267948966 rad + pos: 89.5,-23.5 parent: 2 - - uid: 15164 + - uid: 20538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,35.5 + rot: 1.5707963267948966 rad + pos: 88.5,-23.5 parent: 2 -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 3516 + - uid: 20539 components: - type: Transform - pos: 43.5,-22.5 + rot: 1.5707963267948966 rad + pos: 50.5,-39.5 parent: 2 - - uid: 7603 + - uid: 20540 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-37.5 + pos: -27.5,-44.5 parent: 2 - - uid: 7604 + - uid: 20795 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-36.5 + pos: -23.5,-48.5 parent: 2 -- proto: WindoorSecureJanitorLocked - entities: - - uid: 3517 + - uid: 20804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-28.5 + pos: 14.5,-68.5 parent: 2 - - uid: 3518 + - uid: 20880 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-28.5 + rot: 1.5707963267948966 rad + pos: -19.5,-48.5 parent: 2 - - uid: 4460 + - uid: 20882 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-27.5 + pos: -17.5,-48.5 parent: 2 - - uid: 20314 + - uid: 20908 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-26.5 + pos: 16.5,-39.5 parent: 2 - - uid: 20315 + - uid: 20909 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-25.5 + pos: 60.5,7.5 parent: 2 -- proto: WindoorSecureMedicalLocked - entities: - - uid: 4676 + - uid: 21401 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,1.5 + pos: 15.5,-73.5 parent: 2 - - uid: 5773 + - uid: 21462 components: - type: Transform - pos: 46.5,3.5 + pos: 24.5,-69.5 parent: 2 - - uid: 5979 + - uid: 21523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,2.5 + pos: 21.5,-76.5 parent: 2 - - uid: 5980 + - uid: 21524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,3.5 + pos: 18.5,-77.5 parent: 2 - - uid: 5981 + - uid: 21527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,1.5 + pos: 23.5,-68.5 parent: 2 - - uid: 6905 + - uid: 21647 components: - type: Transform - pos: 59.5,18.5 + pos: 42.5,17.5 parent: 2 - - uid: 6960 + - uid: 21969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,19.5 + pos: -68.5,-33.5 parent: 2 -- proto: WindoorSecureSalvageLocked - entities: - - uid: 5542 + - uid: 21981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,20.5 + pos: -68.5,-29.5 parent: 2 - - uid: 5543 + - uid: 22007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,21.5 + pos: 22.5,-59.5 parent: 2 -- proto: WindoorSecureScienceLocked - entities: - - uid: 7147 + - uid: 22017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-15.5 + pos: 23.5,-66.5 parent: 2 - - uid: 7150 +- proto: WallShuttle + entities: + - uid: 21142 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-15.5 - parent: 2 - - uid: 7151 + pos: 6.5,3.5 + parent: 21128 + - uid: 21143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-15.5 - parent: 2 - - uid: 7259 + pos: 6.5,2.5 + parent: 21128 + - uid: 21144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-9.5 - parent: 2 - - uid: 7260 + pos: 6.5,1.5 + parent: 21128 + - uid: 21145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-7.5 - parent: 2 - - uid: 7263 + pos: 6.5,0.5 + parent: 21128 + - uid: 21146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-9.5 - parent: 2 - - uid: 8184 + pos: 6.5,-0.5 + parent: 21128 + - uid: 21147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-8.5 - parent: 2 -- proto: WindoorServiceLocked - entities: - - uid: 3716 + pos: 6.5,-1.5 + parent: 21128 + - uid: 21148 components: - type: Transform - pos: -43.5,11.5 - parent: 2 - - uid: 4528 + pos: 6.5,-2.5 + parent: 21128 + - uid: 21149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-28.5 - parent: 2 - - uid: 4637 + pos: 6.5,-4.5 + parent: 21128 + - uid: 21150 components: - type: Transform - pos: -53.5,-26.5 - parent: 2 -- proto: WindoorTheatreLocked - entities: - - uid: 3519 + pos: 8.5,-6.5 + parent: 21128 + - uid: 21151 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,4.5 - parent: 2 -- proto: WindowDirectional - entities: - - uid: 3527 + pos: 9.5,-6.5 + parent: 21128 + - uid: 21152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-8.5 - parent: 2 - - uid: 3528 + pos: 10.5,-6.5 + parent: 21128 + - uid: 21153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-10.5 - parent: 2 - - uid: 15004 + pos: 10.5,-5.5 + parent: 21128 + - uid: 21154 components: - type: Transform - pos: -34.5,22.5 - parent: 2 - - uid: 16198 + pos: 7.5,-0.5 + parent: 21128 + - uid: 21155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-24.5 - parent: 2 - - uid: 16401 + pos: 4.5,-0.5 + parent: 21128 + - uid: 21156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,22.5 - parent: 2 - - uid: 16647 + pos: 4.5,-2.5 + parent: 21128 + - uid: 21157 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 2 -- proto: WindowFrostedDirectional - entities: - - uid: 1965 + pos: 4.5,-4.5 + parent: 21128 + - uid: 21158 components: - type: Transform - pos: -22.5,-41.5 - parent: 2 - - uid: 3733 + pos: 4.5,-5.5 + parent: 21128 + - uid: 21159 components: - type: Transform - pos: -44.5,11.5 - parent: 2 - - uid: 3734 + pos: 4.5,-6.5 + parent: 21128 + - uid: 21160 components: - type: Transform - pos: -42.5,11.5 - parent: 2 - - uid: 3736 + pos: 4.5,-7.5 + parent: 21128 + - uid: 21161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,9.5 - parent: 2 - - uid: 21590 + pos: 4.5,-8.5 + parent: 21128 + - uid: 21162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-1.5 - parent: 2 - - uid: 21591 + pos: 3.5,-8.5 + parent: 21128 + - uid: 21163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-1.5 - parent: 2 - - uid: 21592 + pos: 3.5,-9.5 + parent: 21128 + - uid: 21164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-7.5 - parent: 2 - - uid: 21593 + pos: 2.5,-9.5 + parent: 21128 + - uid: 21165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-4.5 - parent: 2 - - uid: 21594 + pos: 1.5,-9.5 + parent: 21128 + - uid: 21166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-7.5 - parent: 2 - - uid: 21595 + pos: 0.5,-9.5 + parent: 21128 + - uid: 21167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-41.5 - parent: 2 - - uid: 22875 + pos: 0.5,-8.5 + parent: 21128 + - uid: 21168 components: - type: Transform - pos: 47.5,-4.5 - parent: 2 - - uid: 22876 + pos: -0.5,-8.5 + parent: 21128 + - uid: 21169 components: - type: Transform - pos: 47.5,-1.5 - parent: 2 - - uid: 22877 + pos: -0.5,-7.5 + parent: 21128 + - uid: 21170 components: - type: Transform - pos: 53.5,-1.5 - parent: 2 - - uid: 22878 + pos: -0.5,-6.5 + parent: 21128 + - uid: 21171 components: - type: Transform - pos: 53.5,-7.5 - parent: 2 - - uid: 22879 + pos: -0.5,-5.5 + parent: 21128 + - uid: 21172 components: - type: Transform - pos: 47.5,-7.5 - parent: 2 - - uid: 22880 + pos: -0.5,-1.5 + parent: 21128 + - uid: 21173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-7.5 - parent: 2 - - uid: 22881 + pos: -0.5,-0.5 + parent: 21128 + - uid: 21174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-4.5 - parent: 2 - - uid: 22882 + pos: 10.5,3.5 + parent: 21128 + - uid: 21175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-1.5 - parent: 2 - - uid: 22883 + pos: 10.5,1.5 + parent: 21128 +- proto: WallSolid + entities: + - uid: 2702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-1.5 + pos: -41.5,3.5 parent: 2 - - uid: 22884 + - uid: 2703 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-1.5 + pos: 16.5,17.5 parent: 2 - - uid: 22885 + - uid: 2705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-1.5 + pos: -18.5,10.5 parent: 2 - - uid: 22886 + - uid: 2707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-4.5 + pos: 15.5,-0.5 parent: 2 - - uid: 22887 + - uid: 2711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-7.5 + pos: 16.5,6.5 parent: 2 - - uid: 22888 + - uid: 2712 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-7.5 + pos: 16.5,8.5 parent: 2 - - uid: 22889 + - uid: 2713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-7.5 + pos: 16.5,4.5 parent: 2 - - uid: 23311 + - uid: 2715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-41.5 + pos: 16.5,9.5 parent: 2 - - uid: 23312 + - uid: 2716 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-41.5 + pos: 16.5,11.5 parent: 2 -- proto: WindowReinforcedDirectional - entities: - - uid: 1944 + - uid: 2718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,43.5 + pos: 15.5,12.5 parent: 2 - - uid: 1952 + - uid: 2719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-5.5 + pos: 16.5,10.5 parent: 2 - - uid: 1955 + - uid: 2722 components: - type: Transform - pos: -48.5,-30.5 + pos: 14.5,15.5 parent: 2 - - uid: 2008 + - uid: 2724 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-46.5 + pos: 12.5,15.5 parent: 2 - - uid: 2009 + - uid: 2725 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-46.5 + pos: 11.5,15.5 parent: 2 - - uid: 2010 + - uid: 2733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-30.5 + pos: 9.5,15.5 parent: 2 - - uid: 2011 + - uid: 2743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-10.5 + pos: 3.5,15.5 parent: 2 - - uid: 2013 + - uid: 2744 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-10.5 + pos: 2.5,15.5 parent: 2 - - uid: 2018 + - uid: 2746 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-10.5 + pos: 0.5,15.5 parent: 2 - - uid: 2019 + - uid: 2747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-10.5 + pos: -5.5,15.5 parent: 2 - - uid: 2020 + - uid: 2748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-10.5 + pos: -6.5,15.5 parent: 2 - - uid: 2021 + - uid: 2750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-10.5 + pos: -8.5,15.5 parent: 2 - - uid: 2022 + - uid: 2751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-10.5 + pos: -10.5,15.5 parent: 2 - - uid: 2023 + - uid: 2752 components: - type: Transform - pos: 2.5,-10.5 + pos: -11.5,15.5 parent: 2 - - uid: 2024 + - uid: 2754 components: - type: Transform - pos: -9.5,-20.5 + pos: -13.5,15.5 parent: 2 - - uid: 2025 + - uid: 2756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-20.5 + pos: -14.5,14.5 parent: 2 - - uid: 2026 + - uid: 2758 components: - type: Transform - pos: -8.5,-20.5 + pos: -14.5,12.5 parent: 2 - - uid: 2027 + - uid: 2826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-20.5 + pos: 10.5,-34.5 parent: 2 - - uid: 2028 + - uid: 2830 components: - type: Transform - pos: 0.5,-24.5 + pos: -16.5,-12.5 parent: 2 - - uid: 2029 + - uid: 2831 components: - type: Transform - pos: -0.5,-24.5 + pos: -16.5,-15.5 parent: 2 - - uid: 2030 + - uid: 2832 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-28.5 + pos: -16.5,-16.5 parent: 2 - - uid: 2031 + - uid: 2835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-28.5 + pos: -16.5,-19.5 parent: 2 - - uid: 2032 + - uid: 2836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-16.5 + pos: -16.5,-20.5 parent: 2 - - uid: 2033 + - uid: 2868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-11.5 + pos: -15.5,-21.5 parent: 2 - - uid: 2034 + - uid: 2869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 + pos: -13.5,-21.5 parent: 2 - - uid: 2036 + - uid: 2873 components: - type: Transform - pos: 24.5,-7.5 + pos: -12.5,-22.5 parent: 2 - - uid: 2038 + - uid: 2874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-10.5 + pos: -12.5,-23.5 parent: 2 - - uid: 2039 + - uid: 2875 components: - type: Transform - pos: 28.5,-8.5 + pos: -12.5,-24.5 parent: 2 - - uid: 2040 + - uid: 2877 components: - type: Transform - pos: 22.5,-7.5 + pos: -12.5,-26.5 parent: 2 - - uid: 2042 + - uid: 2879 components: - type: Transform - pos: 29.5,-9.5 + pos: -12.5,-28.5 parent: 2 - - uid: 2044 + - uid: 2880 components: - type: Transform - pos: 23.5,-7.5 + pos: 27.5,-0.5 parent: 2 - - uid: 2045 + - uid: 2884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-13.5 + pos: 24.5,0.5 parent: 2 - - uid: 2046 + - uid: 2885 components: - type: Transform - pos: 21.5,-7.5 + pos: 23.5,0.5 parent: 2 - - uid: 2047 + - uid: 2886 components: - type: Transform - pos: 20.5,-7.5 + pos: 22.5,0.5 parent: 2 - - uid: 2048 + - uid: 2888 components: - type: Transform - pos: 19.5,-7.5 + pos: 20.5,0.5 parent: 2 - - uid: 2090 + - uid: 2892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-30.5 + pos: 18.5,0.5 parent: 2 - - uid: 2144 + - uid: 2894 components: - type: Transform - pos: 27.5,-44.5 + pos: 16.5,0.5 parent: 2 - - uid: 2280 + - uid: 2895 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-37.5 + pos: -15.5,-5.5 parent: 2 - - uid: 2695 + - uid: 2896 components: - type: Transform - pos: 18.5,-7.5 + pos: 16.5,1.5 parent: 2 - - uid: 2957 + - uid: 2898 components: - type: Transform - pos: 17.5,-7.5 + pos: -56.5,-22.5 parent: 2 - - uid: 2982 + - uid: 2899 components: - type: Transform - pos: 16.5,-7.5 + pos: -18.5,-5.5 parent: 2 - - uid: 2983 + - uid: 2900 components: - type: Transform - pos: 25.5,-7.5 + pos: -17.5,-5.5 parent: 2 - - uid: 2984 + - uid: 2903 components: - type: Transform - pos: 26.5,-7.5 + pos: -16.5,8.5 parent: 2 - - uid: 3053 + - uid: 2905 components: - type: Transform - pos: 27.5,-7.5 + pos: -17.5,8.5 parent: 2 - - uid: 3159 + - uid: 2906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-16.5 + pos: -18.5,7.5 parent: 2 - - uid: 3160 + - uid: 2910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-14.5 + pos: -16.5,4.5 parent: 2 - - uid: 3161 + - uid: 2911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-15.5 + pos: -17.5,4.5 parent: 2 - - uid: 3182 + - uid: 2913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-22.5 + pos: -18.5,5.5 parent: 2 - - uid: 3186 + - uid: 2915 components: - type: Transform - pos: 24.5,-27.5 + pos: -35.5,-7.5 parent: 2 - - uid: 3187 + - uid: 2917 components: - type: Transform - pos: 25.5,-27.5 + pos: -21.5,-5.5 parent: 2 - - uid: 3188 + - uid: 2918 components: - type: Transform - pos: 26.5,-27.5 + pos: -17.5,12.5 parent: 2 - - uid: 3190 + - uid: 2919 components: - type: Transform - pos: 23.5,-27.5 + pos: -17.5,16.5 parent: 2 - - uid: 3191 + - uid: 2921 components: - type: Transform - pos: 27.5,-27.5 + pos: -17.5,18.5 parent: 2 - - uid: 3192 + - uid: 2925 components: - type: Transform - pos: 28.5,-27.5 + pos: -16.5,18.5 parent: 2 - - uid: 3193 + - uid: 2926 components: - type: Transform - pos: 29.5,-27.5 + pos: -11.5,18.5 parent: 2 - - uid: 3301 + - uid: 2927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-22.5 + pos: -13.5,18.5 parent: 2 - - uid: 3304 + - uid: 2928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-22.5 + pos: -10.5,18.5 parent: 2 - - uid: 3375 + - uid: 2931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-13.5 + pos: -9.5,18.5 parent: 2 - - uid: 3376 + - uid: 2960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-12.5 + pos: -7.5,18.5 parent: 2 - - uid: 3474 + - uid: 2961 components: - type: Transform - pos: -21.5,10.5 + pos: -4.5,18.5 parent: 2 - - uid: 3529 + - uid: 2962 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-12.5 + pos: -2.5,18.5 parent: 2 - - uid: 3530 + - uid: 2963 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-12.5 + pos: -5.5,18.5 parent: 2 - - uid: 3531 + - uid: 2964 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-17.5 + pos: -1.5,18.5 parent: 2 - - uid: 3532 + - uid: 2966 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-17.5 + pos: -3.5,18.5 parent: 2 - - uid: 3533 + - uid: 2967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-21.5 + pos: 0.5,18.5 parent: 2 - - uid: 3534 + - uid: 2968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-23.5 + pos: 1.5,18.5 parent: 2 - - uid: 3535 + - uid: 2969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-23.5 + pos: 3.5,18.5 parent: 2 - - uid: 3536 + - uid: 2971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-24.5 + pos: 2.5,18.5 parent: 2 - - uid: 3537 + - uid: 2972 components: - type: Transform - pos: -38.5,5.5 + pos: 5.5,18.5 parent: 2 - - uid: 3538 + - uid: 2991 components: - type: Transform - pos: -37.5,5.5 + pos: 13.5,18.5 parent: 2 - - uid: 3539 + - uid: 3023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,6.5 + pos: -33.5,-7.5 parent: 2 - - uid: 3540 + - uid: 3027 components: - type: Transform - pos: -27.5,5.5 + pos: 16.5,-34.5 parent: 2 - - uid: 3541 + - uid: 3037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,5.5 + pos: 14.5,-34.5 parent: 2 - - uid: 3542 + - uid: 3040 components: - type: Transform - pos: -28.5,5.5 + pos: 9.5,-34.5 parent: 2 - - uid: 3543 + - uid: 3042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,7.5 + pos: 7.5,-34.5 parent: 2 - - uid: 3544 + - uid: 3043 components: - type: Transform - pos: -29.5,5.5 + pos: 13.5,-34.5 parent: 2 - - uid: 3545 + - uid: 3044 components: - type: Transform - pos: -39.5,5.5 + pos: 6.5,-34.5 parent: 2 - - uid: 3546 + - uid: 3045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,4.5 + pos: 6.5,-33.5 parent: 2 - - uid: 3547 + - uid: 3050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,5.5 + pos: -8.5,-32.5 parent: 2 - - uid: 3548 + - uid: 3051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,6.5 + pos: -9.5,-32.5 parent: 2 - - uid: 3549 + - uid: 3060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,7.5 + pos: -11.5,-32.5 parent: 2 - - uid: 3550 + - uid: 3061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-33.5 + pos: -12.5,-32.5 parent: 2 - - uid: 3551 + - uid: 3062 components: - type: Transform - pos: -26.5,-38.5 + pos: 44.5,-14.5 parent: 2 - - uid: 3552 + - uid: 3063 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-36.5 + pos: 45.5,-17.5 parent: 2 - - uid: 3553 + - uid: 3064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,4.5 + pos: 44.5,-17.5 parent: 2 - - uid: 3554 + - uid: 3065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,4.5 + pos: 47.5,-17.5 parent: 2 - - uid: 3555 + - uid: 3066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-1.5 + pos: 46.5,-17.5 parent: 2 - - uid: 3556 + - uid: 3068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-1.5 + pos: 44.5,-15.5 parent: 2 - - uid: 3568 + - uid: 3069 components: - type: Transform - pos: -17.5,-28.5 + pos: -19.5,-5.5 parent: 2 - - uid: 3569 + - uid: 3070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-29.5 + pos: -21.5,-8.5 parent: 2 - - uid: 3571 + - uid: 3073 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-29.5 + pos: -17.5,15.5 parent: 2 - - uid: 3574 + - uid: 3074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-31.5 + pos: -23.5,16.5 parent: 2 - - uid: 3582 + - uid: 3076 components: - type: Transform - pos: -26.5,-31.5 + pos: -16.5,10.5 parent: 2 - - uid: 3583 + - uid: 3078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-29.5 + pos: -15.5,15.5 parent: 2 - - uid: 3584 + - uid: 3081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,12.5 + pos: -17.5,14.5 parent: 2 - - uid: 3585 + - uid: 3083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-29.5 + pos: 44.5,-13.5 parent: 2 - - uid: 3586 + - uid: 3084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-30.5 + pos: -16.5,-7.5 parent: 2 - - uid: 3649 + - uid: 3085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-31.5 + pos: -17.5,-7.5 parent: 2 - - uid: 3672 + - uid: 3088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-26.5 + pos: -19.5,-7.5 parent: 2 - - uid: 3673 + - uid: 3089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-25.5 + pos: -21.5,-7.5 parent: 2 - - uid: 3674 + - uid: 3090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-24.5 + pos: -21.5,-9.5 parent: 2 - - uid: 3675 + - uid: 3092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-37.5 + pos: -16.5,-10.5 parent: 2 - - uid: 3676 + - uid: 3093 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-0.5 + pos: -15.5,-9.5 parent: 2 - - uid: 3682 + - uid: 3094 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,5.5 + pos: -15.5,-8.5 parent: 2 - - uid: 3695 + - uid: 3113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,5.5 + pos: -16.5,-22.5 parent: 2 - - uid: 3753 + - uid: 3115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,5.5 + pos: -16.5,-23.5 parent: 2 - - uid: 3773 + - uid: 3116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,3.5 + pos: -16.5,-24.5 parent: 2 - - uid: 3774 + - uid: 3118 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-2.5 + pos: -18.5,-24.5 parent: 2 - - uid: 3779 + - uid: 3126 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,3.5 + pos: -21.5,-24.5 parent: 2 - - uid: 3807 + - uid: 3129 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,3.5 + pos: -19.5,-28.5 parent: 2 - - uid: 3822 + - uid: 3131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,2.5 + pos: -13.5,-32.5 parent: 2 - - uid: 3823 + - uid: 3133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-2.5 + pos: -15.5,-32.5 parent: 2 - - uid: 3824 + - uid: 3134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-0.5 + pos: -17.5,-32.5 parent: 2 - - uid: 3825 + - uid: 3135 components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-39.5 + - type: Transform + pos: -18.5,-32.5 parent: 2 - - uid: 3828 + - uid: 3136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-34.5 + pos: -19.5,-32.5 parent: 2 - - uid: 3835 + - uid: 3140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-32.5 + pos: -26.5,-8.5 parent: 2 - - uid: 3851 + - uid: 3141 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-32.5 + pos: -25.5,-7.5 parent: 2 - - uid: 3905 + - uid: 3144 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-32.5 + pos: -26.5,-11.5 parent: 2 - - uid: 3918 + - uid: 3146 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-44.5 + pos: -29.5,-7.5 parent: 2 - - uid: 3922 + - uid: 3147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,25.5 + pos: -32.5,-7.5 parent: 2 - - uid: 3952 + - uid: 3149 components: - type: Transform - pos: -10.5,25.5 + pos: -30.5,-7.5 parent: 2 - - uid: 3963 + - uid: 3150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,25.5 + pos: -26.5,-17.5 parent: 2 - - uid: 3974 + - uid: 3152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,22.5 + pos: -26.5,-18.5 parent: 2 - - uid: 3975 + - uid: 3153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,25.5 + pos: -26.5,-20.5 parent: 2 - - uid: 3976 + - uid: 3156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,25.5 + pos: -27.5,-7.5 parent: 2 - - uid: 3977 + - uid: 3165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,25.5 + pos: -25.5,-32.5 parent: 2 - - uid: 3978 + - uid: 3166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,25.5 + pos: -29.5,-35.5 parent: 2 - - uid: 3979 + - uid: 3167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,25.5 + pos: -26.5,-33.5 parent: 2 - - uid: 3980 + - uid: 3168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,25.5 + pos: -25.5,-5.5 parent: 2 - - uid: 3981 + - uid: 3169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,22.5 + pos: -26.5,-5.5 parent: 2 - - uid: 3982 + - uid: 3170 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,8.5 + pos: -27.5,22.5 parent: 2 - - uid: 3983 + - uid: 3172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,8.5 + pos: -27.5,20.5 parent: 2 - - uid: 3984 + - uid: 3173 components: - type: Transform - pos: -50.5,-18.5 + pos: -27.5,18.5 parent: 2 - - uid: 3985 + - uid: 3174 components: - type: Transform - pos: -47.5,-18.5 + pos: -27.5,17.5 parent: 2 - - uid: 3986 + - uid: 3194 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,8.5 + pos: -27.5,16.5 parent: 2 - - uid: 3987 + - uid: 3195 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,8.5 + pos: -27.5,15.5 parent: 2 - - uid: 3988 + - uid: 3198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,8.5 + pos: -24.5,22.5 parent: 2 - - uid: 3989 + - uid: 3199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,8.5 + pos: -23.5,22.5 parent: 2 - - uid: 3990 + - uid: 3200 components: - type: Transform - pos: -47.5,-5.5 + pos: -25.5,22.5 parent: 2 - - uid: 4218 + - uid: 3203 components: - type: Transform - pos: -48.5,-5.5 + pos: -20.5,22.5 parent: 2 - - uid: 4219 + - uid: 3204 components: - type: Transform - pos: -44.5,-5.5 + pos: -18.5,22.5 parent: 2 - - uid: 4221 + - uid: 3208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-5.5 + pos: 17.5,22.5 parent: 2 - - uid: 4228 + - uid: 3210 components: - type: Transform - pos: -46.5,-5.5 + pos: 15.5,22.5 parent: 2 - - uid: 4230 + - uid: 3212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,14.5 + pos: 13.5,22.5 parent: 2 - - uid: 4231 + - uid: 3213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,14.5 + pos: 12.5,22.5 parent: 2 - - uid: 4232 + - uid: 3216 components: - type: Transform - pos: -45.5,14.5 + pos: 9.5,22.5 parent: 2 - - uid: 4246 + - uid: 3218 components: - type: Transform - pos: -46.5,14.5 + pos: 8.5,23.5 parent: 2 - - uid: 4249 + - uid: 3222 components: - type: Transform - pos: -47.5,14.5 + pos: -28.5,-5.5 parent: 2 - - uid: 4251 + - uid: 3223 components: - type: Transform - pos: -45.5,-5.5 + pos: -29.5,-5.5 parent: 2 - - uid: 4252 + - uid: 3224 components: - type: Transform - pos: -51.5,-17.5 + pos: -30.5,-5.5 parent: 2 - - uid: 4294 + - uid: 3225 components: - type: Transform - pos: -43.5,-18.5 + pos: -31.5,-5.5 parent: 2 - - uid: 4310 + - uid: 3229 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-18.5 + pos: -35.5,-5.5 parent: 2 - - uid: 4311 + - uid: 3231 components: - type: Transform - pos: -44.5,-18.5 + pos: -38.5,-5.5 parent: 2 - - uid: 4312 + - uid: 3232 components: - type: Transform - pos: -46.5,-25.5 + pos: -39.5,-5.5 parent: 2 - - uid: 4313 + - uid: 3234 components: - type: Transform - pos: -47.5,-25.5 + pos: -40.5,-4.5 parent: 2 - - uid: 4344 + - uid: 3235 components: - type: Transform - pos: -48.5,-25.5 + pos: -40.5,-3.5 parent: 2 - - uid: 4346 + - uid: 3236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,14.5 + pos: -28.5,10.5 parent: 2 - - uid: 4359 + - uid: 3239 components: - type: Transform - pos: 39.5,-2.5 + pos: -30.5,10.5 parent: 2 - - uid: 4419 + - uid: 3240 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-15.5 + pos: -31.5,10.5 parent: 2 - - uid: 4420 + - uid: 3241 components: - type: Transform - pos: -44.5,-17.5 + pos: -32.5,10.5 parent: 2 - - uid: 4428 + - uid: 3242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-15.5 + pos: -33.5,10.5 parent: 2 - - uid: 4430 + - uid: 3244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-15.5 + pos: -35.5,10.5 parent: 2 - - uid: 4524 + - uid: 3245 components: - type: Transform - pos: -59.5,-27.5 + pos: -36.5,10.5 parent: 2 - - uid: 4583 + - uid: 3246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-27.5 + pos: -38.5,10.5 parent: 2 - - uid: 4595 + - uid: 3247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-33.5 + pos: -39.5,10.5 parent: 2 - - uid: 4596 + - uid: 3254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-33.5 + pos: -40.5,7.5 parent: 2 - - uid: 4597 + - uid: 3255 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-37.5 + pos: -40.5,6.5 parent: 2 - - uid: 4598 + - uid: 3258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-37.5 + pos: -40.5,3.5 parent: 2 - - uid: 4599 + - uid: 3259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-37.5 + pos: -40.5,-0.5 parent: 2 - - uid: 4600 + - uid: 3260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-32.5 + pos: -40.5,-2.5 parent: 2 - - uid: 4601 + - uid: 3262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-32.5 + pos: -31.5,8.5 parent: 2 - - uid: 4602 + - uid: 3263 components: - type: Transform - pos: 38.5,-38.5 + pos: -33.5,8.5 parent: 2 - - uid: 4603 + - uid: 3264 components: - type: Transform - pos: 42.5,-38.5 + pos: -30.5,8.5 parent: 2 - - uid: 4604 + - uid: 3266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-38.5 + pos: -28.5,8.5 parent: 2 - - uid: 4605 + - uid: 3267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-38.5 + pos: -27.5,8.5 parent: 2 - - uid: 4636 + - uid: 3268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-26.5 + pos: -38.5,8.5 parent: 2 - - uid: 4638 + - uid: 3269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-26.5 + pos: -39.5,8.5 parent: 2 - - uid: 4682 + - uid: 3273 components: - type: Transform - pos: -47.5,-30.5 + pos: -32.5,8.5 parent: 2 - - uid: 4704 + - uid: 3274 components: - type: Transform - pos: -46.5,-30.5 + pos: -37.5,8.5 parent: 2 - - uid: 4706 + - uid: 3275 components: - type: Transform - pos: -45.5,-18.5 + pos: -36.5,8.5 parent: 2 - - uid: 4752 + - uid: 3276 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-29.5 + pos: -35.5,12.5 parent: 2 - - uid: 4761 + - uid: 3278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-22.5 + pos: -35.5,11.5 parent: 2 - - uid: 4778 + - uid: 3296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-30.5 + pos: -35.5,15.5 parent: 2 - - uid: 4783 + - uid: 3298 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-29.5 + pos: -35.5,16.5 parent: 2 - - uid: 4805 + - uid: 3302 components: - type: Transform - pos: 37.5,-39.5 + pos: -34.5,18.5 parent: 2 - - uid: 4807 + - uid: 3303 components: - type: Transform - pos: 40.5,-39.5 + pos: -33.5,18.5 parent: 2 - - uid: 4931 + - uid: 3305 components: - type: Transform - pos: 42.5,-39.5 + pos: -32.5,18.5 parent: 2 - - uid: 4932 + - uid: 3308 components: - type: Transform - pos: 43.5,-39.5 + pos: -30.5,18.5 parent: 2 - - uid: 4966 + - uid: 3313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,25.5 + pos: -36.5,15.5 parent: 2 - - uid: 4967 + - uid: 3314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 + pos: -37.5,15.5 parent: 2 - - uid: 4991 + - uid: 3315 components: - type: Transform - pos: 32.5,-39.5 + pos: -38.5,15.5 parent: 2 - - uid: 4992 + - uid: 3316 components: - type: Transform - pos: 33.5,-39.5 + pos: -39.5,15.5 parent: 2 - - uid: 4994 + - uid: 3318 components: - type: Transform - pos: 34.5,-39.5 + pos: -39.5,13.5 parent: 2 - - uid: 5075 + - uid: 3319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,33.5 + pos: -39.5,12.5 parent: 2 - - uid: 5079 + - uid: 3321 components: - type: Transform - pos: 2.5,32.5 + pos: -42.5,9.5 parent: 2 - - uid: 5104 + - uid: 3322 components: - type: Transform - pos: 38.5,-39.5 + pos: -41.5,10.5 parent: 2 - - uid: 5105 + - uid: 3325 components: - type: Transform - pos: 39.5,-39.5 + pos: -41.5,13.5 parent: 2 - - uid: 5118 + - uid: 3326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,15.5 + pos: -29.5,20.5 parent: 2 - - uid: 5121 + - uid: 3328 components: - type: Transform - pos: 41.5,-39.5 + pos: -13.5,17.5 parent: 2 - - uid: 5122 + - uid: 3330 components: - type: Transform - pos: 45.5,-39.5 + pos: -43.5,7.5 parent: 2 - - uid: 5197 + - uid: 3331 components: - type: Transform - pos: 44.5,-39.5 + pos: -43.5,8.5 parent: 2 - - uid: 5198 + - uid: 3333 components: - type: Transform - pos: 46.5,-39.5 + pos: -43.5,-4.5 parent: 2 - - uid: 5199 + - uid: 3334 components: - type: Transform - pos: 47.5,-39.5 + pos: -51.5,-5.5 parent: 2 - - uid: 5200 + - uid: 3335 components: - type: Transform - pos: 48.5,-39.5 + pos: 18.5,15.5 parent: 2 - - uid: 5201 + - uid: 3336 components: - type: Transform - pos: 36.5,-39.5 + pos: 18.5,16.5 parent: 2 - - uid: 5202 + - uid: 3337 components: - type: Transform - pos: 35.5,-39.5 + pos: -36.5,-7.5 parent: 2 - - uid: 5203 + - uid: 3340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,1.5 + pos: -40.5,-7.5 parent: 2 - - uid: 5204 + - uid: 3341 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,1.5 + pos: -38.5,-7.5 parent: 2 - - uid: 5205 + - uid: 3342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,1.5 + pos: -27.5,-11.5 parent: 2 - - uid: 5206 + - uid: 3344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,1.5 + pos: -30.5,-11.5 parent: 2 - - uid: 5208 + - uid: 3345 components: - type: Transform - pos: 34.5,1.5 + pos: -30.5,-10.5 parent: 2 - - uid: 5426 + - uid: 3347 components: - type: Transform - pos: 33.5,1.5 + pos: -30.5,-8.5 parent: 2 - - uid: 5453 + - uid: 3349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,13.5 + pos: -34.5,-8.5 parent: 2 - - uid: 5454 + - uid: 3350 components: - type: Transform - pos: 36.5,1.5 + pos: -34.5,-10.5 parent: 2 - - uid: 5462 + - uid: 3351 components: - type: Transform - pos: 37.5,1.5 + pos: -35.5,-11.5 parent: 2 - - uid: 5469 + - uid: 3352 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-42.5 + pos: -37.5,-11.5 parent: 2 - - uid: 5480 + - uid: 3354 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-42.5 + pos: -38.5,-10.5 parent: 2 - - uid: 5481 + - uid: 3355 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-42.5 + pos: -38.5,-9.5 parent: 2 - - uid: 5482 + - uid: 3356 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-42.5 + pos: -38.5,-8.5 parent: 2 - - uid: 5487 + - uid: 3358 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-42.5 + pos: -41.5,-8.5 parent: 2 - - uid: 5546 + - uid: 3359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,22.5 + pos: -41.5,-9.5 parent: 2 - - uid: 5547 + - uid: 3360 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,22.5 + pos: -41.5,-10.5 parent: 2 - - uid: 5550 + - uid: 3361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,22.5 + pos: -41.5,-11.5 parent: 2 - - uid: 5636 + - uid: 3363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,22.5 + pos: -39.5,-11.5 parent: 2 - - uid: 5643 + - uid: 3364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,20.5 + pos: -39.5,-12.5 parent: 2 - - uid: 5654 + - uid: 3366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,30.5 + pos: -39.5,-14.5 parent: 2 - - uid: 5658 + - uid: 3367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,25.5 + pos: -39.5,-16.5 parent: 2 - - uid: 5662 + - uid: 3369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,25.5 + pos: -34.5,-16.5 parent: 2 - - uid: 5707 + - uid: 3371 components: - type: Transform - pos: -6.5,25.5 + pos: -36.5,-16.5 parent: 2 - - uid: 5708 + - uid: 3374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,25.5 + pos: -40.5,-17.5 parent: 2 - - uid: 5710 + - uid: 3378 components: - type: Transform - pos: -11.5,30.5 + pos: -40.5,-19.5 parent: 2 - - uid: 5712 + - uid: 3379 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,30.5 + pos: -40.5,-20.5 parent: 2 - - uid: 5713 + - uid: 3381 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,25.5 + pos: -35.5,-17.5 parent: 2 - - uid: 5731 + - uid: 3383 components: - type: Transform - pos: -14.5,25.5 + pos: -35.5,-19.5 parent: 2 - - uid: 5734 + - uid: 3385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,17.5 + pos: -27.5,-21.5 parent: 2 - - uid: 5755 + - uid: 3386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,27.5 + pos: -29.5,-21.5 parent: 2 - - uid: 5903 + - uid: 3387 components: - type: Transform - pos: -23.5,27.5 + pos: -32.5,-21.5 parent: 2 - - uid: 5975 + - uid: 3389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,3.5 + pos: -33.5,-21.5 parent: 2 - - uid: 5976 + - uid: 3390 components: - type: Transform - pos: 44.5,1.5 + pos: -35.5,-21.5 parent: 2 - - uid: 5977 + - uid: 3393 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,3.5 + pos: -37.5,-21.5 parent: 2 - - uid: 5978 + - uid: 3394 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,3.5 + pos: -39.5,-21.5 parent: 2 - - uid: 6030 + - uid: 3395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,36.5 + pos: -43.5,-5.5 parent: 2 - - uid: 6031 + - uid: 3397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,54.5 + pos: -43.5,-7.5 parent: 2 - - uid: 6059 + - uid: 3398 components: - type: Transform - pos: 2.5,54.5 + pos: -43.5,-8.5 parent: 2 - - uid: 6099 + - uid: 3399 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,54.5 + pos: -43.5,-9.5 parent: 2 - - uid: 6103 + - uid: 3400 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,54.5 + pos: -51.5,-12.5 parent: 2 - - uid: 6113 + - uid: 3401 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,54.5 + pos: -43.5,-13.5 parent: 2 - - uid: 6122 + - uid: 3404 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,49.5 + pos: -42.5,-16.5 parent: 2 - - uid: 6123 + - uid: 3405 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,49.5 + pos: -42.5,-14.5 parent: 2 - - uid: 6130 + - uid: 3407 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,49.5 + pos: -42.5,-18.5 parent: 2 - - uid: 6131 + - uid: 3409 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,54.5 + pos: -42.5,-20.5 parent: 2 - - uid: 6132 + - uid: 3412 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,54.5 + pos: -40.5,-23.5 parent: 2 - - uid: 6133 + - uid: 3414 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,54.5 + pos: -42.5,-22.5 parent: 2 - - uid: 6134 + - uid: 3415 components: - type: Transform - pos: -29.5,31.5 + pos: -41.5,-23.5 parent: 2 - - uid: 6143 + - uid: 3416 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,42.5 + pos: -38.5,-23.5 parent: 2 - - uid: 6148 + - uid: 3417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,15.5 + pos: -37.5,-23.5 parent: 2 - - uid: 6178 + - uid: 3419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,16.5 + pos: -34.5,-23.5 parent: 2 - - uid: 6179 + - uid: 3420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,15.5 + pos: -33.5,-23.5 parent: 2 - - uid: 6180 + - uid: 3422 components: - type: Transform - pos: 35.5,23.5 + pos: -30.5,-23.5 parent: 2 - - uid: 6181 + - uid: 3423 components: - type: Transform - pos: 34.5,23.5 + pos: -29.5,-23.5 parent: 2 - - uid: 6182 + - uid: 3425 components: - type: Transform - pos: 36.5,23.5 + pos: -27.5,-23.5 parent: 2 - - uid: 6183 + - uid: 3427 components: - type: Transform - pos: 33.5,23.5 + pos: -35.5,-23.5 parent: 2 - - uid: 6184 + - uid: 3428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,19.5 + pos: -31.5,-23.5 parent: 2 - - uid: 6230 + - uid: 3429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,25.5 + pos: -26.5,-34.5 parent: 2 - - uid: 6231 + - uid: 3430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,26.5 + pos: -27.5,-34.5 parent: 2 - - uid: 6232 + - uid: 3432 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,15.5 + pos: -29.5,-34.5 parent: 2 - - uid: 6233 + - uid: 3435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,25.5 + pos: -32.5,-34.5 parent: 2 - - uid: 6234 + - uid: 3436 components: - type: Transform - pos: 30.5,25.5 + pos: -33.5,-34.5 parent: 2 - - uid: 6235 + - uid: 3437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,23.5 + pos: -35.5,-34.5 parent: 2 - - uid: 6236 + - uid: 3438 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-31.5 + pos: -36.5,-34.5 parent: 2 - - uid: 6237 + - uid: 3440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-27.5 + pos: -38.5,-34.5 parent: 2 - - uid: 6269 + - uid: 3441 components: - type: Transform - pos: -68.5,-31.5 + pos: -41.5,-32.5 parent: 2 - - uid: 6270 + - uid: 3442 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-27.5 + pos: -41.5,-33.5 parent: 2 - - uid: 6271 + - uid: 3444 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-29.5 + pos: -40.5,-34.5 parent: 2 - - uid: 6272 + - uid: 3446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-31.5 + pos: -29.5,-37.5 parent: 2 - - uid: 6273 + - uid: 3447 components: - type: Transform - pos: 43.5,10.5 + pos: -29.5,-38.5 parent: 2 - - uid: 6274 + - uid: 3449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,10.5 + pos: -26.5,-40.5 parent: 2 - - uid: 6275 + - uid: 3455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-1.5 + pos: -28.5,-40.5 parent: 2 - - uid: 6276 + - uid: 3457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-44.5 + pos: -20.5,-40.5 parent: 2 - - uid: 6461 + - uid: 3458 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-44.5 + rot: -1.5707963267948966 rad + pos: -36.5,20.5 parent: 2 - - uid: 6491 + - uid: 3567 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-44.5 + pos: -22.5,-40.5 parent: 2 - - uid: 6523 + - uid: 3581 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-44.5 + pos: -18.5,-40.5 parent: 2 - - uid: 6540 + - uid: 3685 components: - type: Transform - pos: 44.5,-1.5 + pos: -17.5,-39.5 parent: 2 - - uid: 6545 + - uid: 3686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-0.5 + pos: -17.5,-38.5 parent: 2 - - uid: 6554 + - uid: 3688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-0.5 + pos: -17.5,-36.5 parent: 2 - - uid: 6555 + - uid: 3689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-1.5 + pos: -17.5,-35.5 parent: 2 - - uid: 6572 + - uid: 3690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-0.5 + pos: -17.5,-34.5 parent: 2 - - uid: 6577 + - uid: 3693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-42.5 + pos: -31.5,-40.5 parent: 2 - - uid: 6699 + - uid: 3694 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-5.5 + pos: -32.5,-40.5 parent: 2 - - uid: 6700 + - uid: 3751 components: - type: Transform - pos: 50.5,-3.5 + pos: -34.5,-36.5 parent: 2 - - uid: 6745 + - uid: 3757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,11.5 + pos: -33.5,-36.5 parent: 2 - - uid: 6894 + - uid: 3758 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-42.5 + pos: -34.5,-40.5 parent: 2 - - uid: 6907 + - uid: 3759 components: - type: Transform - pos: 57.5,18.5 + pos: -34.5,-39.5 parent: 2 - - uid: 6908 + - uid: 3764 components: - type: Transform - pos: 58.5,18.5 + pos: -34.5,-38.5 parent: 2 - - uid: 6910 + - uid: 3770 components: - type: Transform - pos: 60.5,18.5 + pos: -45.5,-9.5 parent: 2 - - uid: 6911 + - uid: 3772 components: - type: Transform - pos: 61.5,18.5 + pos: -46.5,-9.5 parent: 2 - - uid: 6959 + - uid: 3776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,18.5 + pos: -47.5,-9.5 parent: 2 - - uid: 6965 + - uid: 3778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-49.5 + pos: -48.5,-9.5 parent: 2 - - uid: 6971 + - uid: 3801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-49.5 + pos: -50.5,-9.5 parent: 2 - - uid: 6972 + - uid: 3809 components: - type: Transform - pos: -44.5,-49.5 + pos: -51.5,-9.5 parent: 2 - - uid: 7007 + - uid: 3838 components: - type: Transform - pos: -45.5,-49.5 + pos: -51.5,-8.5 parent: 2 - - uid: 7086 + - uid: 3840 components: - type: Transform - pos: -46.5,-49.5 + pos: -51.5,-6.5 parent: 2 - - uid: 7100 + - uid: 3842 components: - type: Transform - pos: -47.5,-49.5 + pos: -50.5,-11.5 parent: 2 - - uid: 7111 + - uid: 3845 components: - type: Transform - pos: -48.5,-49.5 + pos: -48.5,-11.5 parent: 2 - - uid: 7193 + - uid: 3850 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-42.5 + pos: -46.5,-13.5 parent: 2 - - uid: 7194 + - uid: 3852 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-42.5 + pos: 18.5,13.5 parent: 2 - - uid: 7231 + - uid: 4065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-10.5 + pos: 18.5,12.5 parent: 2 - - uid: 7233 + - uid: 4066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-10.5 + pos: -46.5,-16.5 parent: 2 - - uid: 7234 + - uid: 4177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-8.5 + pos: -46.5,-18.5 parent: 2 - - uid: 7235 + - uid: 4179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-7.5 + pos: -51.5,-18.5 parent: 2 - - uid: 7289 + - uid: 4180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-28.5 + pos: -45.5,-12.5 parent: 2 - - uid: 7310 + - uid: 4185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-42.5 + pos: -51.5,-15.5 parent: 2 - - uid: 7313 + - uid: 4203 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-44.5 + pos: -51.5,-32.5 parent: 2 - - uid: 7314 + - uid: 4205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-44.5 + pos: -52.5,-31.5 parent: 2 - - uid: 7315 + - uid: 4206 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-44.5 + pos: -52.5,-30.5 parent: 2 - - uid: 7343 + - uid: 4207 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-44.5 + pos: -52.5,-29.5 parent: 2 - - uid: 7344 + - uid: 4208 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-44.5 + pos: -52.5,-28.5 parent: 2 - - uid: 7345 + - uid: 4210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-60.5 + pos: -52.5,-26.5 parent: 2 - - uid: 7346 + - uid: 4212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-63.5 + pos: -52.5,-23.5 parent: 2 - - uid: 7347 + - uid: 4220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-62.5 + pos: -52.5,-22.5 parent: 2 - - uid: 7348 + - uid: 4223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-61.5 + pos: -43.5,-12.5 parent: 2 - - uid: 7366 + - uid: 4229 components: - type: Transform - pos: -52.5,-63.5 + pos: 50.5,-17.5 parent: 2 - - uid: 7369 + - uid: 4233 components: - type: Transform - pos: -42.5,-63.5 + pos: 49.5,-17.5 parent: 2 - - uid: 7434 + - uid: 4238 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-27.5 + pos: 18.5,17.5 parent: 2 - - uid: 7435 + - uid: 4242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-27.5 + pos: 18.5,10.5 parent: 2 - - uid: 7448 + - uid: 4243 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-60.5 + pos: 18.5,9.5 parent: 2 - - uid: 7475 + - uid: 4289 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-60.5 + pos: 18.5,7.5 parent: 2 - - uid: 7494 + - uid: 4290 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-46.5 + pos: 18.5,6.5 parent: 2 - - uid: 7508 + - uid: 4297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,8.5 + pos: 18.5,5.5 parent: 2 - - uid: 7509 + - uid: 4299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,10.5 + pos: 18.5,3.5 parent: 2 - - uid: 7510 + - uid: 4300 components: - type: Transform - pos: 52.5,4.5 + pos: 18.5,2.5 parent: 2 - - uid: 7581 + - uid: 4301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-38.5 + pos: 18.5,1.5 parent: 2 - - uid: 7582 + - uid: 4303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-35.5 + pos: 39.5,1.5 parent: 2 - - uid: 7668 + - uid: 4308 components: - type: Transform - pos: 52.5,1.5 + pos: 40.5,0.5 parent: 2 - - uid: 7669 + - uid: 4350 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-39.5 + pos: 40.5,-6.5 parent: 2 - - uid: 7670 + - uid: 4413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-39.5 + pos: 40.5,-8.5 parent: 2 - - uid: 7671 + - uid: 4433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-40.5 + pos: 40.5,-9.5 parent: 2 - - uid: 7700 + - uid: 4435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-44.5 + pos: 40.5,-11.5 parent: 2 - - uid: 7701 + - uid: 4436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-43.5 + pos: 39.5,-11.5 parent: 2 - - uid: 7702 + - uid: 4438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-41.5 + pos: 44.5,-11.5 parent: 2 - - uid: 7703 + - uid: 4440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-46.5 + pos: 44.5,-9.5 parent: 2 - - uid: 7721 + - uid: 4448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-13.5 + pos: 61.5,7.5 parent: 2 - - uid: 7722 + - uid: 4449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-15.5 + pos: 37.5,-5.5 parent: 2 - - uid: 7723 + - uid: 4451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-13.5 + pos: 39.5,-5.5 parent: 2 - - uid: 7724 + - uid: 4452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-21.5 + pos: -15.5,-33.5 parent: 2 - - uid: 7759 + - uid: 4453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-12.5 + pos: 51.5,-17.5 parent: 2 - - uid: 7790 + - uid: 4454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-13.5 + pos: 40.5,-4.5 parent: 2 - - uid: 7795 + - uid: 4457 components: - type: Transform - pos: 27.5,25.5 + pos: -57.5,-23.5 parent: 2 - - uid: 7839 + - uid: 4459 components: - type: Transform - pos: 24.5,25.5 + pos: -57.5,-25.5 parent: 2 - - uid: 7890 + - uid: 4468 components: - type: Transform - pos: -52.5,-37.5 + rot: -1.5707963267948966 rad + pos: -34.5,20.5 parent: 2 - - uid: 7899 + - uid: 4471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-33.5 + rot: -1.5707963267948966 rad + pos: -31.5,20.5 parent: 2 - - uid: 7932 + - uid: 4731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-40.5 + pos: -53.5,-30.5 parent: 2 - - uid: 7960 + - uid: 4736 components: - type: Transform - pos: 64.5,13.5 + pos: -55.5,-30.5 parent: 2 - - uid: 7991 + - uid: 4780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,16.5 + pos: -57.5,-30.5 parent: 2 - - uid: 7992 + - uid: 4793 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,16.5 + pos: -57.5,-29.5 parent: 2 - - uid: 8005 + - uid: 4808 components: - type: Transform - pos: 25.5,-47.5 + pos: -58.5,-23.5 parent: 2 - - uid: 8006 + - uid: 4815 components: - type: Transform - pos: 26.5,-47.5 + pos: -60.5,-23.5 parent: 2 - - uid: 8009 + - uid: 4836 components: - type: Transform - pos: 27.5,-47.5 + pos: -62.5,-24.5 parent: 2 - - uid: 8017 + - uid: 4859 components: - type: Transform - pos: 28.5,-47.5 + pos: -62.5,-25.5 parent: 2 - - uid: 8087 + - uid: 4861 components: - type: Transform - pos: 26.5,-49.5 + pos: -62.5,-26.5 parent: 2 - - uid: 8163 + - uid: 4898 components: - type: Transform - pos: 25.5,-49.5 + pos: -62.5,-28.5 parent: 2 - - uid: 8199 + - uid: 4901 components: - type: Transform - pos: 28.5,-49.5 + pos: -61.5,-29.5 parent: 2 - - uid: 8204 + - uid: 4902 components: - type: Transform - pos: 27.5,-49.5 + pos: -60.5,-29.5 parent: 2 - - uid: 8205 + - uid: 4904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-45.5 + pos: -58.5,-29.5 parent: 2 - - uid: 8206 + - uid: 4916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-47.5 + pos: -47.5,-11.5 parent: 2 - - uid: 8230 + - uid: 4921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-48.5 + pos: 8.5,24.5 parent: 2 - - uid: 8426 + - uid: 4922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-61.5 + pos: 10.5,25.5 parent: 2 - - uid: 8435 + - uid: 5024 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-30.5 + pos: -41.5,15.5 parent: 2 - - uid: 8492 + - uid: 5044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-63.5 + pos: -41.5,17.5 parent: 2 - - uid: 8923 + - uid: 5129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-41.5 + rot: 3.141592653589793 rad + pos: -43.5,14.5 parent: 2 - - uid: 8926 + - uid: 5130 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-45.5 + pos: -16.5,37.5 parent: 2 - - uid: 8927 + - uid: 5133 components: - type: Transform - pos: -6.5,0.5 + pos: -3.5,36.5 parent: 2 - - uid: 8928 + - uid: 5207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-39.5 + pos: 0.5,38.5 parent: 2 - - uid: 8931 + - uid: 5435 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-39.5 + pos: 9.5,25.5 parent: 2 - - uid: 8935 + - uid: 5438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-40.5 + pos: 12.5,26.5 parent: 2 - - uid: 8978 + - uid: 5652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-65.5 + rot: 3.141592653589793 rad + pos: 28.5,16.5 parent: 2 - - uid: 8987 + - uid: 5766 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-39.5 + pos: 12.5,25.5 parent: 2 - - uid: 9020 + - uid: 5781 components: - type: Transform - pos: -10.5,-41.5 + pos: -21.5,-42.5 parent: 2 - - uid: 9041 + - uid: 5782 components: - type: Transform - pos: -4.5,-42.5 + rot: 3.141592653589793 rad + pos: -11.5,37.5 parent: 2 - - uid: 9043 + - uid: 5790 components: - type: Transform - pos: -5.5,-42.5 + pos: -54.5,-32.5 parent: 2 - - uid: 9099 + - uid: 5792 components: - type: Transform - pos: -6.5,-42.5 + pos: -56.5,-32.5 parent: 2 - - uid: 9185 + - uid: 5798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,28.5 + pos: -27.5,-42.5 parent: 2 - - uid: 9271 + - uid: 5799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-17.5 + pos: -28.5,-42.5 parent: 2 - - uid: 9272 + - uid: 5800 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-17.5 + pos: -33.5,-42.5 parent: 2 - - uid: 10658 + - uid: 5808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,20.5 + pos: -31.5,-42.5 parent: 2 - - uid: 11658 + - uid: 5950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-41.5 + rot: 3.141592653589793 rad + pos: 25.5,16.5 parent: 2 - - uid: 11660 + - uid: 6050 components: - type: Transform - pos: -11.5,-41.5 + pos: -64.5,-23.5 parent: 2 - - uid: 12256 + - uid: 6064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-65.5 + rot: 3.141592653589793 rad + pos: 7.5,38.5 parent: 2 - - uid: 12257 + - uid: 6080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,0.5 + pos: -49.5,-33.5 parent: 2 - - uid: 12695 + - uid: 6082 components: - type: Transform - pos: 38.5,-28.5 + pos: -50.5,-35.5 parent: 2 - - uid: 12705 + - uid: 6085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-30.5 + pos: -45.5,-33.5 parent: 2 - - uid: 12805 + - uid: 6095 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-40.5 + pos: 5.5,38.5 parent: 2 - - uid: 12810 + - uid: 6098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-7.5 + pos: -45.5,-34.5 parent: 2 - - uid: 13490 + - uid: 6127 components: - type: Transform - pos: 39.5,-28.5 + pos: -50.5,-33.5 parent: 2 - - uid: 13741 + - uid: 6158 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-7.5 + pos: -44.5,-32.5 parent: 2 - - uid: 13965 + - uid: 6484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,19.5 + rot: 3.141592653589793 rad + pos: 29.5,14.5 parent: 2 - - uid: 13981 + - uid: 6485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-64.5 + rot: 3.141592653589793 rad + pos: 29.5,12.5 parent: 2 - - uid: 14245 + - uid: 6489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,31.5 + rot: 3.141592653589793 rad + pos: 29.5,10.5 parent: 2 - - uid: 14260 + - uid: 6493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,16.5 + rot: 3.141592653589793 rad + pos: 32.5,17.5 parent: 2 - - uid: 14705 + - uid: 6496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,37.5 + rot: 3.141592653589793 rad + pos: 32.5,22.5 parent: 2 - - uid: 14786 + - uid: 6498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,12.5 + rot: 3.141592653589793 rad + pos: 31.5,11.5 parent: 2 - - uid: 14953 + - uid: 6499 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,-46.5 + pos: 30.5,24.5 parent: 2 - - uid: 14955 + - uid: 6500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,27.5 + rot: 3.141592653589793 rad + pos: 24.5,24.5 parent: 2 - - uid: 14957 + - uid: 6525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,28.5 + rot: 3.141592653589793 rad + pos: 45.5,-2.5 parent: 2 - - uid: 14958 + - uid: 6544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,29.5 + pos: -15.5,-36.5 parent: 2 - - uid: 14961 + - uid: 6553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,32.5 + rot: 3.141592653589793 rad + pos: 46.5,-5.5 parent: 2 - - uid: 14968 + - uid: 6571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,32.5 + rot: 3.141592653589793 rad + pos: 53.5,0.5 parent: 2 - - uid: 14969 + - uid: 6618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,31.5 + rot: 3.141592653589793 rad + pos: 54.5,-2.5 parent: 2 - - uid: 15032 + - uid: 6619 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,32.5 + pos: 56.5,-5.5 parent: 2 - - uid: 15040 + - uid: 6620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,36.5 + rot: 3.141592653589793 rad + pos: 55.5,-5.5 parent: 2 - - uid: 15041 + - uid: 6624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,37.5 + rot: 3.141592653589793 rad + pos: 56.5,-6.5 parent: 2 - - uid: 15042 + - uid: 6627 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,37.5 + pos: 53.5,-5.5 parent: 2 - - uid: 15043 + - uid: 6635 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,39.5 + pos: 53.5,-2.5 parent: 2 - - uid: 15053 + - uid: 6802 components: - type: Transform - pos: -34.5,36.5 + pos: -19.5,16.5 parent: 2 - - uid: 15091 + - uid: 6899 components: - type: Transform - pos: 73.5,4.5 + pos: -20.5,16.5 parent: 2 - - uid: 15193 + - uid: 6936 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-1.5 + pos: 12.5,28.5 parent: 2 - - uid: 15215 + - uid: 6943 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,-1.5 - parent: 2 - - uid: 15222 - components: - - type: Transform - pos: 72.5,0.5 + pos: 12.5,31.5 parent: 2 - - uid: 15226 + - uid: 6958 components: - type: Transform - pos: 72.5,-1.5 + pos: 1.5,41.5 parent: 2 - - uid: 15227 + - uid: 6973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-1.5 + pos: -44.5,-35.5 parent: 2 - - uid: 15231 + - uid: 6975 components: - type: Transform - pos: 72.5,4.5 + pos: 45.5,-11.5 parent: 2 - - uid: 15232 + - uid: 6986 components: - type: Transform - pos: 73.5,0.5 + pos: 54.5,-17.5 parent: 2 - - uid: 15233 + - uid: 6987 components: - type: Transform - pos: 73.5,-1.5 + pos: 3.5,41.5 parent: 2 - - uid: 15234 + - uid: 6989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-1.5 + pos: -6.5,41.5 parent: 2 - - uid: 15235 + - uid: 6990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-1.5 + pos: -6.5,44.5 parent: 2 - - uid: 15254 + - uid: 6991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-2.5 + pos: 1.5,49.5 parent: 2 - - uid: 15404 + - uid: 6993 components: - type: Transform - pos: -20.5,10.5 + pos: 3.5,49.5 parent: 2 - - uid: 15413 + - uid: 7005 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,40.5 + pos: 45.5,-13.5 parent: 2 - - uid: 15602 + - uid: 7014 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,1.5 + pos: 12.5,34.5 parent: 2 - - uid: 15843 + - uid: 7024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,34.5 + rot: 1.5707963267948966 rad + pos: 12.5,36.5 parent: 2 - - uid: 15844 + - uid: 7027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,35.5 + pos: 52.5,-17.5 parent: 2 - - uid: 15869 + - uid: 7184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,39.5 + pos: 55.5,-17.5 parent: 2 - - uid: 15875 + - uid: 7229 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,37.5 + pos: 55.5,0.5 parent: 2 - - uid: 15879 + - uid: 7444 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,42.5 + pos: 47.5,-5.5 parent: 2 - - uid: 15880 + - uid: 7456 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,42.5 + pos: 58.5,24.5 parent: 2 - - uid: 15881 + - uid: 7465 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,42.5 + pos: 62.5,24.5 parent: 2 - - uid: 15882 + - uid: 7469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,40.5 + pos: 49.5,19.5 parent: 2 - - uid: 15887 + - uid: 7471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-43.5 + pos: 48.5,19.5 parent: 2 - - uid: 15954 + - uid: 7473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-44.5 + pos: 66.5,-1.5 parent: 2 - - uid: 15993 + - uid: 7481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-21.5 + rot: 3.141592653589793 rad + pos: 86.5,-14.5 parent: 2 - - uid: 16005 + - uid: 7484 components: - type: Transform - pos: 62.5,28.5 + rot: 3.141592653589793 rad + pos: 86.5,-16.5 parent: 2 - - uid: 16074 + - uid: 7489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,28.5 + rot: 3.141592653589793 rad + pos: 86.5,-17.5 parent: 2 - - uid: 16089 + - uid: 7495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-36.5 + pos: -53.5,-34.5 parent: 2 - - uid: 16097 + - uid: 7496 components: - type: Transform - pos: 66.5,-36.5 + pos: 54.5,21.5 parent: 2 - - uid: 16125 + - uid: 7497 components: - type: Transform - pos: 66.5,-36.5 + pos: 66.5,2.5 parent: 2 - - uid: 16126 + - uid: 7499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-26.5 + pos: 55.5,22.5 parent: 2 - - uid: 16155 + - uid: 7501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-27.5 + pos: 54.5,19.5 parent: 2 - - uid: 16156 + - uid: 7502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-28.5 + pos: -53.5,-35.5 parent: 2 - - uid: 16162 + - uid: 7506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-29.5 + pos: 55.5,24.5 parent: 2 - - uid: 16172 + - uid: 7512 components: - type: Transform - pos: 84.5,-29.5 + rot: 3.141592653589793 rad + pos: 77.5,-8.5 parent: 2 - - uid: 16173 + - uid: 7515 components: - type: Transform - pos: 52.5,-21.5 + pos: 66.5,4.5 parent: 2 - - uid: 16174 + - uid: 7537 components: - type: Transform - pos: 77.5,-7.5 + rot: 3.141592653589793 rad + pos: 80.5,-8.5 parent: 2 - - uid: 16175 + - uid: 7539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-7.5 + rot: 3.141592653589793 rad + pos: 75.5,-23.5 parent: 2 - - uid: 16176 + - uid: 7750 components: - type: Transform - pos: 49.5,23.5 + pos: 56.5,-17.5 parent: 2 - - uid: 16192 + - uid: 7906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,23.5 + pos: -9.5,-35.5 parent: 2 - - uid: 16310 + - uid: 7910 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-46.5 + pos: -14.5,-35.5 parent: 2 - - uid: 16311 + - uid: 7920 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-46.5 + rot: 1.5707963267948966 rad + pos: -9.5,-37.5 parent: 2 - - uid: 16322 + - uid: 7931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-7.5 + pos: -12.5,-35.5 parent: 2 - - uid: 16323 + - uid: 7950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-5.5 + pos: -8.5,-38.5 parent: 2 - - uid: 16336 + - uid: 7994 components: - type: Transform - pos: -65.5,-33.5 + pos: -8.5,-40.5 parent: 2 - - uid: 16344 + - uid: 8173 components: - type: Transform - pos: -67.5,-33.5 + rot: 3.141592653589793 rad + pos: 52.5,5.5 parent: 2 - - uid: 16385 + - uid: 8176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,33.5 + rot: 3.141592653589793 rad + pos: 54.5,5.5 parent: 2 - - uid: 16386 + - uid: 8178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,41.5 + rot: 3.141592653589793 rad + pos: 56.5,5.5 parent: 2 - - uid: 16393 + - uid: 8179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,40.5 + rot: 3.141592653589793 rad + pos: 58.5,4.5 parent: 2 - - uid: 16404 + - uid: 8180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-34.5 + rot: 3.141592653589793 rad + pos: 58.5,3.5 parent: 2 - - uid: 16428 + - uid: 8181 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-34.5 + pos: 58.5,1.5 parent: 2 - - uid: 16443 + - uid: 8223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-34.5 + pos: 16.5,24.5 parent: 2 - - uid: 16453 + - uid: 8226 components: - type: Transform - pos: 66.5,-34.5 + rot: 3.141592653589793 rad + pos: 81.5,-21.5 parent: 2 - - uid: 16454 + - uid: 8227 components: - type: Transform - pos: -21.5,-47.5 + pos: 15.5,27.5 parent: 2 - - uid: 16474 + - uid: 8229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-63.5 + pos: 13.5,27.5 parent: 2 - - uid: 16515 + - uid: 8231 components: - type: Transform - pos: 19.5,-55.5 + pos: 66.5,-4.5 parent: 2 - - uid: 16528 + - uid: 8233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-36.5 + pos: 17.5,24.5 parent: 2 - - uid: 16536 + - uid: 8234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-3.5 + rot: 3.141592653589793 rad + pos: 80.5,-21.5 parent: 2 - - uid: 16567 + - uid: 8245 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,12.5 + pos: 78.5,-21.5 parent: 2 - - uid: 16568 + - uid: 9147 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,41.5 + pos: 76.5,-21.5 parent: 2 - - uid: 16590 + - uid: 9154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,41.5 + rot: -1.5707963267948966 rad + pos: -32.5,27.5 parent: 2 - - uid: 16638 + - uid: 10988 components: - type: Transform - pos: 80.5,-36.5 + rot: -1.5707963267948966 rad + pos: -32.5,26.5 parent: 2 - - uid: 16662 + - uid: 11059 components: - type: Transform - pos: 44.5,-20.5 + pos: -34.5,-4.5 parent: 2 - - uid: 16663 + - uid: 11655 components: - type: Transform - pos: 43.5,-20.5 + pos: 68.5,-4.5 parent: 2 - - uid: 16683 + - uid: 11656 components: - type: Transform - pos: 82.5,-36.5 + pos: 71.5,-4.5 parent: 2 - - uid: 16684 + - uid: 12571 components: - type: Transform - pos: -29.5,-3.5 + rot: -1.5707963267948966 rad + pos: -32.5,24.5 parent: 2 - - uid: 16685 + - uid: 12603 components: - type: Transform - pos: -23.5,-47.5 + rot: -1.5707963267948966 rad + pos: -32.5,22.5 parent: 2 - - uid: 16686 + - uid: 13177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-13.5 + pos: -34.5,-1.5 parent: 2 - - uid: 16916 + - uid: 13745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-14.5 + pos: -15.5,17.5 parent: 2 - - uid: 17015 + - uid: 13983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-15.5 + pos: -42.5,-32.5 parent: 2 - - uid: 17019 + - uid: 14402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-12.5 + rot: -1.5707963267948966 rad + pos: 10.5,18.5 parent: 2 - - uid: 17031 + - uid: 14695 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-36.5 + pos: 75.5,-30.5 parent: 2 - - uid: 17308 + - uid: 14704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,15.5 + rot: 3.141592653589793 rad + pos: 75.5,-27.5 parent: 2 - - uid: 17325 + - uid: 14862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-64.5 + rot: 3.141592653589793 rad + pos: 75.5,-22.5 parent: 2 - - uid: 17330 + - uid: 14870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,48.5 + rot: -1.5707963267948966 rad + pos: 7.5,18.5 parent: 2 - - uid: 17484 + - uid: 15165 components: - type: Transform - pos: 42.5,-20.5 + rot: 1.5707963267948966 rad + pos: -37.5,-5.5 parent: 2 - - uid: 17504 + - uid: 15173 components: - type: Transform - pos: -17.5,-47.5 + rot: -1.5707963267948966 rad + pos: 11.5,18.5 parent: 2 - - uid: 17513 + - uid: 15201 components: - type: Transform - pos: -19.5,-47.5 + pos: 70.5,-0.5 parent: 2 - - uid: 17537 + - uid: 15203 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-27.5 + pos: 67.5,-0.5 parent: 2 - - uid: 17539 + - uid: 15210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-29.5 + pos: 70.5,3.5 parent: 2 - - uid: 18277 + - uid: 15213 components: - type: Transform - pos: -34.5,-3.5 + pos: 67.5,3.5 parent: 2 - - uid: 18992 + - uid: 16085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-27.5 + pos: 59.5,26.5 parent: 2 - - uid: 19740 + - uid: 16150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-31.5 + rot: 3.141592653589793 rad + pos: 75.5,-28.5 parent: 2 - - uid: 19757 + - uid: 16164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-28.5 + rot: 3.141592653589793 rad + pos: 82.5,-8.5 parent: 2 - - uid: 19794 + - uid: 16186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-71.5 + pos: 51.5,19.5 parent: 2 - - uid: 20306 + - uid: 16187 components: - type: Transform - pos: 41.5,-20.5 + rot: 3.141592653589793 rad + pos: 76.5,-30.5 parent: 2 - - uid: 20307 + - uid: 16188 components: - type: Transform - pos: 40.5,-20.5 + rot: 3.141592653589793 rad + pos: 77.5,-30.5 parent: 2 - - uid: 20354 + - uid: 16190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,0.5 + pos: 81.5,-26.5 parent: 2 - - uid: 20355 + - uid: 16345 components: - type: Transform - pos: -6.5,0.5 + rot: 1.5707963267948966 rad + pos: -33.5,-43.5 parent: 2 - - uid: 20395 + - uid: 16350 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,23.5 + pos: 79.5,-30.5 parent: 2 - - uid: 20396 + - uid: 16353 components: - type: Transform - pos: 0.5,25.5 + rot: 3.141592653589793 rad + pos: 81.5,-30.5 parent: 2 - - uid: 20397 + - uid: 16379 components: - type: Transform - pos: 24.5,15.5 + rot: 3.141592653589793 rad + pos: 82.5,-23.5 parent: 2 - - uid: 20515 + - uid: 16380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-39.5 + rot: 3.141592653589793 rad + pos: 82.5,-22.5 parent: 2 - - uid: 20881 + - uid: 16384 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-64.5 + pos: 81.5,-29.5 parent: 2 - - uid: 21185 + - uid: 16388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-2.5 + pos: 49.5,20.5 parent: 2 - - uid: 21402 + - uid: 16514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-53.5 + pos: 15.5,33.5 parent: 2 - - uid: 21416 + - uid: 16516 components: - type: Transform - pos: 9.5,-47.5 + pos: 13.5,33.5 parent: 2 - - uid: 21421 + - uid: 17065 components: - type: Transform - pos: 7.5,-47.5 + pos: -23.5,-42.5 parent: 2 - - uid: 21553 + - uid: 17066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-43.5 + pos: -25.5,-42.5 parent: 2 - - uid: 21561 + - uid: 20110 components: - type: Transform - pos: -1.5,-9.5 + rot: 1.5707963267948966 rad + pos: -8.5,-37.5 parent: 2 - - uid: 21562 + - uid: 20297 components: - type: Transform - pos: -0.5,-9.5 + pos: 85.5,-21.5 parent: 2 - - uid: 21563 + - uid: 20300 components: - type: Transform - pos: 0.5,-9.5 + pos: 84.5,-22.5 parent: 2 - - uid: 21564 + - uid: 20791 components: - type: Transform - pos: 1.5,-9.5 + rot: -1.5707963267948966 rad + pos: 7.5,15.5 parent: 2 - - uid: 21565 + - uid: 20907 components: - type: Transform - pos: 2.5,-9.5 + rot: 1.5707963267948966 rad + pos: -15.5,-38.5 parent: 2 - - uid: 21646 + - uid: 20923 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,43.5 + pos: -32.5,-42.5 parent: 2 - - uid: 21752 + - uid: 21035 components: - type: Transform - pos: 47.5,15.5 + pos: 81.5,-32.5 parent: 2 - - uid: 21846 + - uid: 21042 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,1.5 + pos: 80.5,-32.5 parent: 2 - - uid: 21847 + - uid: 21940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,1.5 + pos: -29.5,-4.5 parent: 2 - - uid: 21939 +- proto: WallSolidRust + entities: + - uid: 757 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-1.5 + pos: -27.5,-43.5 parent: 2 - - uid: 21959 + - uid: 766 components: - type: Transform - pos: -49.5,-49.5 + pos: -25.5,-41.5 parent: 2 - - uid: 21960 + - uid: 2704 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,12.5 + pos: -17.5,10.5 parent: 2 - - uid: 21964 + - uid: 2706 components: - type: Transform - pos: -27.5,12.5 + rot: 1.5707963267948966 rad + pos: 14.5,17.5 parent: 2 - - uid: 21990 + - uid: 2708 components: - type: Transform - pos: -22.5,10.5 + rot: 1.5707963267948966 rad + pos: 15.5,0.5 parent: 2 - - uid: 22034 + - uid: 2709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,10.5 + rot: 1.5707963267948966 rad + pos: 16.5,3.5 parent: 2 - - uid: 22051 + - uid: 2710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,10.5 + rot: 1.5707963267948966 rad + pos: 16.5,5.5 parent: 2 - - uid: 22052 + - uid: 2714 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,10.5 + pos: 16.5,7.5 parent: 2 - - uid: 22053 + - uid: 2717 components: - type: Transform - pos: -23.5,12.5 + rot: 1.5707963267948966 rad + pos: 16.5,12.5 parent: 2 - - uid: 22352 + - uid: 2720 components: - type: Transform - pos: 1.5,50.5 + rot: 1.5707963267948966 rad + pos: 15.5,13.5 parent: 2 - - uid: 22366 + - uid: 2721 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,40.5 + pos: 15.5,15.5 parent: 2 - - uid: 22367 + - uid: 2723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,12.5 + rot: 1.5707963267948966 rad + pos: 13.5,15.5 parent: 2 - - uid: 22372 + - uid: 2727 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,12.5 + rot: 1.5707963267948966 rad + pos: 10.5,15.5 parent: 2 - - uid: 22410 + - uid: 2735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,40.5 + rot: 1.5707963267948966 rad + pos: 8.5,15.5 parent: 2 - - uid: 22468 + - uid: 2739 components: - type: Transform - pos: -11.5,22.5 + rot: 1.5707963267948966 rad + pos: 6.5,15.5 parent: 2 - - uid: 22487 + - uid: 2742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-34.5 + rot: 1.5707963267948966 rad + pos: 5.5,15.5 parent: 2 - - uid: 22488 + - uid: 2745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-36.5 + rot: 1.5707963267948966 rad + pos: 1.5,15.5 parent: 2 - - uid: 22502 + - uid: 2749 components: - type: Transform - pos: -10.5,22.5 + rot: 1.5707963267948966 rad + pos: -7.5,15.5 parent: 2 - - uid: 22503 + - uid: 2753 components: - type: Transform - pos: -9.5,22.5 + rot: 1.5707963267948966 rad + pos: -12.5,15.5 parent: 2 - - uid: 22504 + - uid: 2755 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,22.5 + rot: 1.5707963267948966 rad + pos: -14.5,15.5 parent: 2 - - uid: 22505 + - uid: 2757 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,22.5 + rot: 1.5707963267948966 rad + pos: -14.5,13.5 parent: 2 - - uid: 22506 + - uid: 2821 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,22.5 + rot: 1.5707963267948966 rad + pos: -14.5,10.5 parent: 2 - - uid: 22507 + - uid: 2827 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,22.5 + pos: -13.5,-5.5 parent: 2 - - uid: 22508 + - uid: 2829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,22.5 + rot: 1.5707963267948966 rad + pos: -15.5,-10.5 parent: 2 - - uid: 22509 + - uid: 2833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,22.5 + rot: 1.5707963267948966 rad + pos: -16.5,-17.5 parent: 2 - - uid: 22510 + - uid: 2834 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,22.5 + pos: -16.5,-18.5 parent: 2 - - uid: 22511 + - uid: 2867 components: - type: Transform - pos: -5.5,22.5 + rot: 1.5707963267948966 rad + pos: -16.5,-21.5 parent: 2 - - uid: 22512 + - uid: 2870 components: - type: Transform - pos: -6.5,22.5 + rot: 1.5707963267948966 rad + pos: -12.5,-21.5 parent: 2 - - uid: 22513 + - uid: 2876 components: - type: Transform - pos: -7.5,22.5 + rot: 1.5707963267948966 rad + pos: -12.5,-25.5 parent: 2 - - uid: 22514 + - uid: 2878 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,22.5 + rot: 1.5707963267948966 rad + pos: -12.5,-27.5 parent: 2 - - uid: 22515 + - uid: 2881 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,22.5 + rot: 1.5707963267948966 rad + pos: 27.5,0.5 parent: 2 - - uid: 22516 + - uid: 2882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,22.5 + rot: 1.5707963267948966 rad + pos: 26.5,0.5 parent: 2 - - uid: 22517 + - uid: 2883 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,22.5 + rot: 1.5707963267948966 rad + pos: 25.5,0.5 parent: 2 - - uid: 22518 + - uid: 2887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,22.5 + rot: 1.5707963267948966 rad + pos: 21.5,0.5 parent: 2 - - uid: 22519 + - uid: 2891 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,22.5 + rot: 1.5707963267948966 rad + pos: 19.5,0.5 parent: 2 - - uid: 22520 + - uid: 2893 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,22.5 + pos: 17.5,0.5 parent: 2 - - uid: 22521 + - uid: 2897 components: - type: Transform - pos: -13.5,22.5 + rot: 1.5707963267948966 rad + pos: -16.5,-5.5 parent: 2 - - uid: 22522 + - uid: 2909 components: - type: Transform - pos: -14.5,22.5 + rot: -1.5707963267948966 rad + pos: -18.5,6.5 parent: 2 - - uid: 22523 + - uid: 2912 components: - type: Transform - pos: -15.5,22.5 + rot: -1.5707963267948966 rad + pos: -15.5,8.5 parent: 2 - - uid: 22524 + - uid: 2914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,22.5 + rot: 1.5707963267948966 rad + pos: -20.5,-5.5 parent: 2 - - uid: 22525 + - uid: 2916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,30.5 + rot: 1.5707963267948966 rad + pos: -15.5,-7.5 parent: 2 - - uid: 22526 + - uid: 2920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,30.5 + rot: 1.5707963267948966 rad + pos: -17.5,17.5 parent: 2 - - uid: 22527 + - uid: 2922 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,30.5 + rot: 1.5707963267948966 rad + pos: -15.5,18.5 parent: 2 - - uid: 22528 + - uid: 2923 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,30.5 + pos: -16.5,-13.5 parent: 2 - - uid: 22529 + - uid: 2924 components: - type: Transform - pos: -8.5,30.5 + rot: 1.5707963267948966 rad + pos: -12.5,18.5 parent: 2 - - uid: 22530 + - uid: 2929 components: - type: Transform - pos: -5.5,30.5 + rot: 1.5707963267948966 rad + pos: -8.5,18.5 parent: 2 - - uid: 22531 + - uid: 2930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,30.5 + rot: 1.5707963267948966 rad + pos: -6.5,18.5 parent: 2 - - uid: 22532 + - uid: 2965 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,30.5 + rot: 1.5707963267948966 rad + pos: -0.5,18.5 parent: 2 - - uid: 22533 + - uid: 2970 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,30.5 + pos: 4.5,18.5 parent: 2 - - uid: 22534 + - uid: 2988 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,33.5 + pos: 9.5,18.5 parent: 2 - - uid: 22535 + - uid: 2990 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,33.5 + pos: 12.5,18.5 parent: 2 - - uid: 22536 + - uid: 3024 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,32.5 + pos: -34.5,-7.5 parent: 2 - - uid: 22537 + - uid: 3025 components: - type: Transform - pos: -3.5,32.5 + rot: 1.5707963267948966 rad + pos: 14.5,18.5 parent: 2 - - uid: 22538 + - uid: 3026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,32.5 + rot: 1.5707963267948966 rad + pos: 16.5,-35.5 parent: 2 - - uid: 22539 + - uid: 3036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,33.5 + rot: 1.5707963267948966 rad + pos: 15.5,-34.5 parent: 2 - - uid: 22540 + - uid: 3038 components: - type: Transform - pos: 1.5,54.5 + rot: 1.5707963267948966 rad + pos: 12.5,-34.5 parent: 2 - - uid: 22541 + - uid: 3039 components: - type: Transform - pos: 0.5,54.5 + rot: 1.5707963267948966 rad + pos: 11.5,-34.5 parent: 2 - - uid: 22542 + - uid: 3041 components: - type: Transform - pos: -0.5,54.5 + rot: 1.5707963267948966 rad + pos: 8.5,-34.5 parent: 2 - - uid: 22543 + - uid: 3046 components: - type: Transform - pos: -1.5,54.5 + rot: 1.5707963267948966 rad + pos: 6.5,-32.5 parent: 2 - - uid: 22544 + - uid: 3052 components: - type: Transform - pos: -2.5,54.5 + rot: 1.5707963267948966 rad + pos: -10.5,-32.5 parent: 2 - - uid: 22545 + - uid: 3067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,54.5 + rot: 1.5707963267948966 rad + pos: -23.5,10.5 parent: 2 - - uid: 22546 + - uid: 3071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,49.5 + rot: 1.5707963267948966 rad + pos: -18.5,16.5 parent: 2 - - uid: 22547 + - uid: 3072 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,49.5 + pos: -22.5,16.5 parent: 2 - - uid: 22548 + - uid: 3075 components: - type: Transform - pos: 0.5,49.5 + rot: 1.5707963267948966 rad + pos: -23.5,15.5 parent: 2 - - uid: 22549 + - uid: 3077 components: - type: Transform - pos: -0.5,49.5 + rot: 1.5707963267948966 rad + pos: -15.5,10.5 parent: 2 - - uid: 22550 + - uid: 3079 components: - type: Transform - pos: -3.5,49.5 + rot: 1.5707963267948966 rad + pos: -16.5,15.5 parent: 2 - - uid: 22551 + - uid: 3080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,49.5 + rot: 1.5707963267948966 rad + pos: -17.5,13.5 parent: 2 - - uid: 22552 + - uid: 3082 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,49.5 + pos: 44.5,-16.5 parent: 2 - - uid: 22553 + - uid: 3086 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,44.5 + pos: -18.5,-7.5 parent: 2 - - uid: 22554 + - uid: 3087 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,44.5 + pos: -20.5,-7.5 parent: 2 - - uid: 22555 + - uid: 3117 components: - type: Transform - pos: 1.5,44.5 + rot: 1.5707963267948966 rad + pos: -17.5,-24.5 parent: 2 - - uid: 22556 + - uid: 3119 components: - type: Transform - pos: -4.5,44.5 + rot: 1.5707963267948966 rad + pos: -20.5,-24.5 parent: 2 - - uid: 22557 + - uid: 3120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,44.5 + rot: 1.5707963267948966 rad + pos: -19.5,-24.5 parent: 2 - - uid: 22558 + - uid: 3125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,44.5 + rot: 1.5707963267948966 rad + pos: -22.5,-24.5 parent: 2 - - uid: 22559 + - uid: 3127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,44.5 + rot: 1.5707963267948966 rad + pos: -21.5,-28.5 parent: 2 - - uid: 22560 + - uid: 3128 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,44.5 + rot: 1.5707963267948966 rad + pos: -20.5,-28.5 parent: 2 - - uid: 22561 + - uid: 3130 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,37.5 + pos: -18.5,-28.5 parent: 2 - - uid: 22562 + - uid: 3132 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,42.5 + pos: -14.5,-32.5 parent: 2 - - uid: 22563 + - uid: 3137 components: - type: Transform - pos: -12.5,42.5 + rot: 1.5707963267948966 rad + pos: -21.5,-32.5 parent: 2 - - uid: 22564 + - uid: 3138 components: - type: Transform - pos: -14.5,42.5 + rot: 1.5707963267948966 rad + pos: -20.5,-32.5 parent: 2 - - uid: 22565 + - uid: 3139 components: - type: Transform - pos: -13.5,42.5 + rot: 1.5707963267948966 rad + pos: -26.5,-7.5 parent: 2 - - uid: 22566 + - uid: 3142 components: - type: Transform - pos: -15.5,42.5 + rot: 1.5707963267948966 rad + pos: -26.5,-9.5 parent: 2 - - uid: 22567 + - uid: 3143 components: - type: Transform - pos: -13.5,37.5 + rot: 1.5707963267948966 rad + pos: -26.5,-10.5 parent: 2 - - uid: 22568 + - uid: 3145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,37.5 + rot: 1.5707963267948966 rad + pos: -31.5,-7.5 parent: 2 - - uid: 22569 + - uid: 3148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,42.5 + rot: 1.5707963267948966 rad + pos: -26.5,-16.5 parent: 2 - - uid: 22570 + - uid: 3151 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,40.5 + pos: -26.5,-19.5 parent: 2 - - uid: 22571 + - uid: 3154 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,39.5 + pos: -26.5,-21.5 parent: 2 - - uid: 22572 + - uid: 3157 components: - type: Transform - pos: -17.5,39.5 + rot: 1.5707963267948966 rad + pos: -26.5,-23.5 parent: 2 - - uid: 22573 + - uid: 3163 components: - type: Transform - pos: -9.5,41.5 + rot: 1.5707963267948966 rad + pos: -29.5,-36.5 parent: 2 - - uid: 22574 + - uid: 3164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,41.5 + rot: 1.5707963267948966 rad + pos: -26.5,-32.5 parent: 2 - - uid: 22575 + - uid: 3171 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,41.5 + rot: 1.5707963267948966 rad + pos: -27.5,21.5 parent: 2 - - uid: 22576 + - uid: 3196 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,41.5 + pos: -27.5,10.5 parent: 2 - - uid: 22577 + - uid: 3197 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,39.5 + rot: 1.5707963267948966 rad + pos: -26.5,22.5 parent: 2 - - uid: 22578 + - uid: 3201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,39.5 + rot: 1.5707963267948966 rad + pos: -22.5,22.5 parent: 2 - - uid: 22579 + - uid: 3202 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,39.5 + rot: 1.5707963267948966 rad + pos: -21.5,22.5 parent: 2 - - uid: 22580 + - uid: 3205 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,39.5 + pos: -17.5,22.5 parent: 2 - - uid: 22581 + - uid: 3209 components: - type: Transform - pos: -25.5,39.5 + rot: 1.5707963267948966 rad + pos: 16.5,22.5 parent: 2 - - uid: 22582 + - uid: 3214 components: - type: Transform - pos: -26.5,39.5 + rot: 1.5707963267948966 rad + pos: 11.5,22.5 parent: 2 - - uid: 22583 + - uid: 3215 components: - type: Transform - pos: -27.5,39.5 + rot: 1.5707963267948966 rad + pos: 10.5,22.5 parent: 2 - - uid: 22584 + - uid: 3217 components: - type: Transform - pos: -28.5,39.5 + rot: 1.5707963267948966 rad + pos: 8.5,22.5 parent: 2 - - uid: 22585 + - uid: 3219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,39.5 + rot: 1.5707963267948966 rad + pos: -27.5,-5.5 parent: 2 - - uid: 22586 + - uid: 3220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,39.5 + rot: 1.5707963267948966 rad + pos: -28.5,-7.5 parent: 2 - - uid: 22587 + - uid: 3221 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,39.5 + rot: 1.5707963267948966 rad + pos: -34.5,-11.5 parent: 2 - - uid: 22588 + - uid: 3226 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,39.5 + pos: -32.5,-5.5 parent: 2 - - uid: 22589 + - uid: 3230 components: - type: Transform - pos: -22.5,39.5 + rot: 1.5707963267948966 rad + pos: -36.5,-5.5 parent: 2 - - uid: 22590 + - uid: 3233 components: - type: Transform - pos: -34.5,30.5 + rot: 1.5707963267948966 rad + pos: -40.5,-5.5 parent: 2 - - uid: 22591 + - uid: 3238 components: - type: Transform - pos: -35.5,30.5 + rot: 1.5707963267948966 rad + pos: -29.5,10.5 parent: 2 - - uid: 22592 + - uid: 3243 components: - type: Transform - pos: -37.5,30.5 + rot: 1.5707963267948966 rad + pos: -34.5,10.5 parent: 2 - - uid: 22593 + - uid: 3248 components: - type: Transform - pos: -38.5,30.5 + rot: 1.5707963267948966 rad + pos: -42.5,10.5 parent: 2 - - uid: 22594 + - uid: 3252 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,30.5 + rot: 1.5707963267948966 rad + pos: -42.5,8.5 parent: 2 - - uid: 22595 + - uid: 3261 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,30.5 + rot: 1.5707963267948966 rad + pos: -40.5,-1.5 parent: 2 - - uid: 22596 + - uid: 3277 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,30.5 + rot: 1.5707963267948966 rad + pos: -35.5,13.5 parent: 2 - - uid: 22597 + - uid: 3299 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,30.5 + rot: 1.5707963267948966 rad + pos: -35.5,17.5 parent: 2 - - uid: 22598 + - uid: 3300 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,30.5 + pos: -35.5,18.5 parent: 2 - - uid: 22599 + - uid: 3307 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,30.5 + pos: -31.5,18.5 parent: 2 - - uid: 22600 + - uid: 3311 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,30.5 + rot: 1.5707963267948966 rad + pos: -29.5,18.5 parent: 2 - - uid: 22601 + - uid: 3312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,30.5 + rot: 1.5707963267948966 rad + pos: -28.5,18.5 parent: 2 - - uid: 22602 + - uid: 3317 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,29.5 + rot: 1.5707963267948966 rad + pos: -39.5,14.5 parent: 2 - - uid: 22603 + - uid: 3320 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,29.5 + pos: -39.5,11.5 parent: 2 - - uid: 22604 + - uid: 3327 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,28.5 + pos: -28.5,20.5 parent: 2 - - uid: 22605 + - uid: 3332 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,27.5 + pos: -42.5,-5.5 parent: 2 - - uid: 22606 + - uid: 3338 components: - type: Transform - pos: -40.5,27.5 + rot: 1.5707963267948966 rad + pos: -37.5,-7.5 parent: 2 - - uid: 22607 + - uid: 3339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-3.5 + rot: 1.5707963267948966 rad + pos: -39.5,-7.5 parent: 2 - - uid: 22608 + - uid: 3343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-2.5 + rot: 1.5707963267948966 rad + pos: -29.5,-11.5 parent: 2 - - uid: 22609 + - uid: 3346 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-2.5 + rot: 1.5707963267948966 rad + pos: -30.5,-9.5 parent: 2 - - uid: 22610 + - uid: 3348 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-2.5 + pos: -34.5,-9.5 parent: 2 - - uid: 22611 + - uid: 3353 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-3.5 + pos: -38.5,-11.5 parent: 2 - - uid: 22612 + - uid: 3357 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-3.5 + pos: -41.5,-7.5 parent: 2 - - uid: 22613 + - uid: 3362 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-2.5 + pos: -40.5,-11.5 parent: 2 - - uid: 22614 + - uid: 3365 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-2.5 + rot: 1.5707963267948966 rad + pos: -39.5,-13.5 parent: 2 - - uid: 22615 + - uid: 3368 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-0.5 + pos: -31.5,-16.5 parent: 2 - - uid: 22616 + - uid: 3370 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-2.5 + pos: -35.5,-16.5 parent: 2 - - uid: 22617 + - uid: 3372 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,0.5 + pos: -38.5,-16.5 parent: 2 - - uid: 22618 + - uid: 3373 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,1.5 + pos: -40.5,-16.5 parent: 2 - - uid: 22619 + - uid: 3377 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,2.5 + pos: -40.5,-18.5 parent: 2 - - uid: 22620 + - uid: 3380 components: - type: Transform - pos: -55.5,0.5 + rot: 1.5707963267948966 rad + pos: -40.5,-21.5 parent: 2 - - uid: 22621 + - uid: 3382 components: - type: Transform - pos: -56.5,-0.5 + rot: 1.5707963267948966 rad + pos: -35.5,-18.5 parent: 2 - - uid: 22622 + - uid: 3384 components: - type: Transform - pos: -57.5,-0.5 + rot: 1.5707963267948966 rad + pos: -30.5,-21.5 parent: 2 - - uid: 22623 + - uid: 3388 components: - type: Transform - pos: -56.5,-2.5 + rot: 1.5707963267948966 rad + pos: -34.5,-21.5 parent: 2 - - uid: 22624 + - uid: 3391 components: - type: Transform - pos: -57.5,-2.5 + rot: 1.5707963267948966 rad + pos: -35.5,-20.5 parent: 2 - - uid: 22625 + - uid: 3392 components: - type: Transform - pos: -56.5,3.5 + rot: 1.5707963267948966 rad + pos: -36.5,-21.5 parent: 2 - - uid: 22626 + - uid: 3396 components: - type: Transform - pos: -57.5,3.5 + rot: 1.5707963267948966 rad + pos: -43.5,-6.5 parent: 2 - - uid: 22627 + - uid: 3402 components: - type: Transform - pos: -56.5,5.5 + rot: 1.5707963267948966 rad + pos: -42.5,-13.5 parent: 2 - - uid: 22628 + - uid: 3403 components: - type: Transform - pos: -57.5,5.5 + rot: 1.5707963267948966 rad + pos: -42.5,-15.5 parent: 2 - - uid: 22629 + - uid: 3406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,3.5 + rot: 1.5707963267948966 rad + pos: -42.5,-17.5 parent: 2 - - uid: 22630 + - uid: 3408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,5.5 + rot: 1.5707963267948966 rad + pos: -42.5,-19.5 parent: 2 - - uid: 22631 + - uid: 3410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-0.5 + rot: 1.5707963267948966 rad + pos: -42.5,-21.5 parent: 2 - - uid: 22632 + - uid: 3411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-2.5 + rot: 1.5707963267948966 rad + pos: -42.5,-23.5 parent: 2 - - uid: 22633 + - uid: 3413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,0.5 + rot: 1.5707963267948966 rad + pos: -39.5,-23.5 parent: 2 - - uid: 22634 + - uid: 3418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,1.5 + rot: 1.5707963267948966 rad + pos: -36.5,-23.5 parent: 2 - - uid: 22635 + - uid: 3421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,2.5 + rot: 1.5707963267948966 rad + pos: -32.5,-23.5 parent: 2 - - uid: 22636 + - uid: 3426 components: - type: Transform - pos: -49.5,-5.5 + rot: 1.5707963267948966 rad + pos: -28.5,-23.5 parent: 2 - - uid: 22637 + - uid: 3431 components: - type: Transform - pos: -50.5,-5.5 + rot: 1.5707963267948966 rad + pos: -28.5,-34.5 parent: 2 - - uid: 22638 + - uid: 3433 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-5.5 + rot: 1.5707963267948966 rad + pos: -30.5,-34.5 parent: 2 - - uid: 22639 + - uid: 3434 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-5.5 + rot: 1.5707963267948966 rad + pos: -31.5,-34.5 parent: 2 - - uid: 22640 + - uid: 3439 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-5.5 + rot: 1.5707963267948966 rad + pos: -37.5,-34.5 parent: 2 - - uid: 22641 + - uid: 3443 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-5.5 + rot: 1.5707963267948966 rad + pos: -41.5,-34.5 parent: 2 - - uid: 22642 + - uid: 3445 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-5.5 + rot: 1.5707963267948966 rad + pos: -39.5,-34.5 parent: 2 - - uid: 22643 + - uid: 3448 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-5.5 + rot: 1.5707963267948966 rad + pos: -29.5,-40.5 parent: 2 - - uid: 22644 + - uid: 3450 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-5.5 + rot: 1.5707963267948966 rad + pos: -25.5,-40.5 parent: 2 - - uid: 22645 + - uid: 3456 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-18.5 + rot: 1.5707963267948966 rad + pos: -23.5,-40.5 parent: 2 - - uid: 22646 + - uid: 3482 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,-18.5 + pos: 86.5,-11.5 parent: 2 - - uid: 22647 + - uid: 3492 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-18.5 + pos: -21.5,-10.5 parent: 2 - - uid: 22648 + - uid: 3573 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-18.5 + pos: -20.5,-42.5 parent: 2 - - uid: 22649 + - uid: 3618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-16.5 + rot: 1.5707963267948966 rad + pos: -17.5,-40.5 parent: 2 - - uid: 22650 + - uid: 3687 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-16.5 + pos: -17.5,-37.5 parent: 2 - - uid: 22651 + - uid: 3691 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-17.5 + pos: -17.5,-33.5 parent: 2 - - uid: 22652 + - uid: 3692 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-18.5 + pos: -30.5,-40.5 parent: 2 - - uid: 22653 + - uid: 3750 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,-18.5 + pos: -33.5,-40.5 parent: 2 - - uid: 22654 + - uid: 3754 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-18.5 + pos: -34.5,-37.5 parent: 2 - - uid: 22655 + - uid: 3756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-18.5 + rot: 1.5707963267948966 rad + pos: -33.5,-35.5 parent: 2 - - uid: 22656 + - uid: 3766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-18.5 + rot: 1.5707963267948966 rad + pos: -41.5,-0.5 parent: 2 - - uid: 22657 + - uid: 3767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-18.5 + rot: 1.5707963267948966 rad + pos: -51.5,-4.5 parent: 2 - - uid: 22658 + - uid: 3769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-17.5 + rot: 1.5707963267948966 rad + pos: -44.5,-9.5 parent: 2 - - uid: 22659 + - uid: 3783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-16.5 + rot: 1.5707963267948966 rad + pos: -49.5,-9.5 parent: 2 - - uid: 22660 + - uid: 3839 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,-29.5 + pos: -51.5,-7.5 parent: 2 - - uid: 22661 + - uid: 3841 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,-27.5 + pos: -51.5,-11.5 parent: 2 - - uid: 22662 + - uid: 3843 components: - type: Transform - pos: -66.5,-29.5 + rot: 1.5707963267948966 rad + pos: -46.5,-11.5 parent: 2 - - uid: 22663 + - uid: 3844 components: - type: Transform - pos: -65.5,-29.5 + rot: 1.5707963267948966 rad + pos: 18.5,14.5 parent: 2 - - uid: 22664 + - uid: 3846 components: - type: Transform - pos: -67.5,-29.5 + rot: 1.5707963267948966 rad + pos: -49.5,-11.5 parent: 2 - - uid: 22665 + - uid: 3848 components: - type: Transform - pos: -67.5,-27.5 + rot: 1.5707963267948966 rad + pos: -51.5,-13.5 parent: 2 - - uid: 22666 + - uid: 3849 components: - type: Transform - pos: -66.5,-27.5 + rot: 1.5707963267948966 rad + pos: -46.5,-12.5 parent: 2 - - uid: 22667 + - uid: 4067 components: - type: Transform - pos: -65.5,-27.5 + rot: 1.5707963267948966 rad + pos: -46.5,-17.5 parent: 2 - - uid: 22668 + - uid: 4178 components: - type: Transform - pos: -54.5,-22.5 + rot: 1.5707963267948966 rad + pos: -51.5,-14.5 parent: 2 - - uid: 22669 + - uid: 4187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-22.5 + rot: 1.5707963267948966 rad + pos: -43.5,-32.5 parent: 2 - - uid: 22670 + - uid: 4204 components: - type: Transform - pos: -53.5,-22.5 + rot: 1.5707963267948966 rad + pos: -52.5,-32.5 parent: 2 - - uid: 22671 + - uid: 4209 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-22.5 + rot: 1.5707963267948966 rad + pos: -52.5,-27.5 parent: 2 - - uid: 22672 + - uid: 4211 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-22.5 + rot: 1.5707963267948966 rad + pos: -46.5,-15.5 parent: 2 - - uid: 22673 + - uid: 4224 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,-22.5 + pos: -55.5,-22.5 parent: 2 - - uid: 22674 + - uid: 4234 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-30.5 + rot: 1.5707963267948966 rad + pos: 48.5,-17.5 parent: 2 - - uid: 22675 + - uid: 4235 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-30.5 + rot: 1.5707963267948966 rad + pos: 16.5,18.5 parent: 2 - - uid: 22676 + - uid: 4236 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-30.5 + rot: 1.5707963267948966 rad + pos: 17.5,18.5 parent: 2 - - uid: 22677 + - uid: 4237 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-25.5 + rot: 1.5707963267948966 rad + pos: 18.5,18.5 parent: 2 - - uid: 22678 + - uid: 4239 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-25.5 + rot: 1.5707963267948966 rad + pos: 27.5,1.5 parent: 2 - - uid: 22679 + - uid: 4240 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-25.5 + rot: 1.5707963267948966 rad + pos: -50.5,-32.5 parent: 2 - - uid: 22680 + - uid: 4241 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-25.5 + pos: 18.5,11.5 parent: 2 - - uid: 22681 + - uid: 4262 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-30.5 + pos: 18.5,8.5 parent: 2 - - uid: 22682 + - uid: 4298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-30.5 + rot: 1.5707963267948966 rad + pos: 18.5,4.5 parent: 2 - - uid: 22683 + - uid: 4304 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-25.5 + pos: -35.5,20.5 parent: 2 - - uid: 22684 + - uid: 4378 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-29.5 + pos: -16.5,-11.5 parent: 2 - - uid: 22685 + - uid: 4412 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-29.5 + pos: 40.5,-7.5 parent: 2 - - uid: 22686 + - uid: 4434 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-30.5 + pos: 40.5,-10.5 parent: 2 - - uid: 22687 + - uid: 4439 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-31.5 + pos: 44.5,-10.5 parent: 2 - - uid: 22688 + - uid: 4455 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-26.5 + pos: -44.5,-12.5 parent: 2 - - uid: 22689 + - uid: 4456 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-24.5 + pos: -57.5,-22.5 parent: 2 - - uid: 22690 + - uid: 4458 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-25.5 - parent: 2 - - uid: 22691 - components: - - type: Transform - pos: -41.5,-26.5 + pos: -57.5,-24.5 parent: 2 - - uid: 22692 + - uid: 4469 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-24.5 + rot: -1.5707963267948966 rad + pos: -33.5,20.5 parent: 2 - - uid: 22693 + - uid: 4470 components: - type: Transform - pos: -41.5,-31.5 + rot: -1.5707963267948966 rad + pos: -32.5,20.5 parent: 2 - - uid: 22694 + - uid: 4487 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-30.5 + pos: -57.5,-26.5 parent: 2 - - uid: 22695 + - uid: 4496 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-31.5 + pos: -57.5,-28.5 parent: 2 - - uid: 22696 + - uid: 4628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-26.5 + pos: -21.5,16.5 parent: 2 - - uid: 22697 + - uid: 4734 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-25.5 + pos: -54.5,-30.5 parent: 2 - - uid: 22698 + - uid: 4740 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-24.5 - parent: 2 - - uid: 22699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-24.5 + pos: -56.5,-30.5 parent: 2 - - uid: 22700 + - uid: 4810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-24.5 + rot: 1.5707963267948966 rad + pos: -59.5,-23.5 parent: 2 - - uid: 22701 + - uid: 4834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-25.5 + rot: 1.5707963267948966 rad + pos: -61.5,-23.5 parent: 2 - - uid: 22702 + - uid: 4835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-26.5 + rot: 1.5707963267948966 rad + pos: -62.5,-23.5 parent: 2 - - uid: 22703 + - uid: 4860 components: - type: Transform - pos: -26.5,-26.5 + rot: 1.5707963267948966 rad + pos: -62.5,-27.5 parent: 2 - - uid: 22704 + - uid: 4900 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-12.5 + rot: 1.5707963267948966 rad + pos: -62.5,-29.5 parent: 2 - - uid: 22705 + - uid: 4903 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-12.5 + pos: -59.5,-29.5 parent: 2 - - uid: 22706 + - uid: 4923 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-13.5 + pos: 11.5,25.5 parent: 2 - - uid: 22707 + - uid: 4924 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-14.5 + pos: 8.5,25.5 parent: 2 - - uid: 22708 + - uid: 5023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-15.5 + rot: 3.141592653589793 rad + pos: -41.5,14.5 parent: 2 - - uid: 22709 + - uid: 5025 components: - type: Transform - pos: -22.5,-15.5 + pos: -41.5,16.5 parent: 2 - - uid: 22710 + - uid: 5123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-28.5 + rot: 3.141592653589793 rad + pos: -42.5,14.5 parent: 2 - - uid: 22711 + - uid: 5131 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-28.5 + pos: -15.5,37.5 parent: 2 - - uid: 22712 + - uid: 5138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-28.5 + pos: 0.5,36.5 parent: 2 - - uid: 22713 + - uid: 5443 components: - type: Transform - pos: -33.5,-37.5 + rot: 1.5707963267948966 rad + pos: 12.5,27.5 parent: 2 - - uid: 22714 + - uid: 5458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-37.5 + pos: -20.5,-41.5 parent: 2 - - uid: 22715 + - uid: 5783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-37.5 + pos: -22.5,-42.5 parent: 2 - - uid: 22716 + - uid: 5786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-46.5 + pos: -3.5,38.5 parent: 2 - - uid: 22717 + - uid: 5791 components: - type: Transform - pos: -29.5,-46.5 + pos: -55.5,-32.5 parent: 2 - - uid: 22718 + - uid: 5797 components: - type: Transform - pos: -30.5,-46.5 + pos: -58.5,-32.5 parent: 2 - - uid: 22719 + - uid: 5801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-46.5 + rot: 1.5707963267948966 rad + pos: -34.5,-42.5 parent: 2 - - uid: 22720 + - uid: 5805 components: - type: Transform - pos: -50.5,-49.5 + pos: -59.5,-32.5 parent: 2 - - uid: 22721 + - uid: 5806 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-49.5 + pos: -64.5,-26.5 parent: 2 - - uid: 22722 + - uid: 5807 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-49.5 + pos: -29.5,-42.5 parent: 2 - - uid: 22723 + - uid: 5912 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-49.5 + rot: -1.5707963267948966 rad + pos: -18.5,8.5 parent: 2 - - uid: 22724 + - uid: 5913 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-49.5 + rot: -1.5707963267948966 rad + pos: -13.5,8.5 parent: 2 - - uid: 22725 + - uid: 6061 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-49.5 + pos: 9.5,38.5 parent: 2 - - uid: 22726 + - uid: 6062 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-49.5 + rot: -1.5707963267948966 rad + pos: -32.5,21.5 parent: 2 - - uid: 22727 + - uid: 6083 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-49.5 + rot: 1.5707963267948966 rad + pos: -44.5,-33.5 parent: 2 - - uid: 22728 + - uid: 6084 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-60.5 + pos: -49.5,-34.5 parent: 2 - - uid: 22729 + - uid: 6094 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,-44.5 + pos: 6.5,38.5 parent: 2 - - uid: 22730 + - uid: 6139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-44.5 + rot: 3.141592653589793 rad + pos: 4.5,38.5 parent: 2 - - uid: 22731 + - uid: 6151 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-42.5 + pos: -45.5,-35.5 parent: 2 - - uid: 22732 + - uid: 6463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-42.5 + rot: 3.141592653589793 rad + pos: 29.5,15.5 parent: 2 - - uid: 22733 + - uid: 6483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-44.5 + rot: 3.141592653589793 rad + pos: 29.5,13.5 parent: 2 - - uid: 22734 + - uid: 6492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-44.5 + rot: 3.141592653589793 rad + pos: 29.5,9.5 parent: 2 - - uid: 22735 + - uid: 6497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-42.5 + rot: 3.141592653589793 rad + pos: 29.5,11.5 parent: 2 - - uid: 22736 + - uid: 6501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-42.5 + rot: 3.141592653589793 rad + pos: 29.5,16.5 parent: 2 - - uid: 22737 + - uid: 6504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-44.5 + rot: 3.141592653589793 rad + pos: 27.5,24.5 parent: 2 - - uid: 22738 + - uid: 6505 components: - type: Transform - pos: -50.5,-44.5 + rot: 3.141592653589793 rad + pos: 48.5,6.5 parent: 2 - - uid: 22739 + - uid: 6519 components: - type: Transform - pos: -51.5,-44.5 + rot: 1.5707963267948966 rad + pos: -15.5,-35.5 parent: 2 - - uid: 22740 + - uid: 6530 components: - type: Transform - pos: -52.5,-44.5 + rot: 3.141592653589793 rad + pos: 46.5,-2.5 parent: 2 - - uid: 22741 + - uid: 6552 components: - type: Transform - pos: -53.5,-44.5 + rot: 3.141592653589793 rad + pos: 45.5,-5.5 parent: 2 - - uid: 22742 + - uid: 6570 components: - type: Transform - pos: -54.5,-44.5 + rot: 3.141592653589793 rad + pos: 52.5,0.5 parent: 2 - - uid: 22743 + - uid: 6574 components: - type: Transform - pos: -54.5,-42.5 + rot: 3.141592653589793 rad + pos: 54.5,0.5 parent: 2 - - uid: 22744 + - uid: 6610 components: - type: Transform - pos: -53.5,-42.5 + rot: 1.5707963267948966 rad + pos: -15.5,-37.5 parent: 2 - - uid: 22745 + - uid: 6621 components: - type: Transform - pos: -52.5,-42.5 + rot: 3.141592653589793 rad + pos: 54.5,-5.5 parent: 2 - - uid: 22746 + - uid: 6625 components: - type: Transform - pos: -51.5,-42.5 + rot: 3.141592653589793 rad + pos: 56.5,-7.5 parent: 2 - - uid: 22747 + - uid: 6636 components: - type: Transform - pos: -50.5,-42.5 + rot: 3.141592653589793 rad + pos: 55.5,-2.5 parent: 2 - - uid: 22748 + - uid: 6918 components: - type: Transform - pos: -44.5,-42.5 + rot: 3.141592653589793 rad + pos: 86.5,-13.5 parent: 2 - - uid: 22749 + - uid: 6937 components: - type: Transform - pos: -43.5,-42.5 + pos: 47.5,19.5 parent: 2 - - uid: 22750 + - uid: 6939 components: - type: Transform - pos: -42.5,-42.5 + rot: 3.141592653589793 rad + pos: 12.5,29.5 parent: 2 - - uid: 22751 + - uid: 6951 components: - type: Transform - pos: -41.5,-42.5 + pos: 12.5,33.5 parent: 2 - - uid: 22752 + - uid: 6957 components: - type: Transform - pos: -40.5,-42.5 + pos: 3.5,44.5 parent: 2 - - uid: 22753 + - uid: 6969 components: - type: Transform - pos: -40.5,-44.5 + rot: 1.5707963267948966 rad + pos: -49.5,-35.5 parent: 2 - - uid: 22754 + - uid: 6985 components: - type: Transform - pos: -41.5,-44.5 + rot: 1.5707963267948966 rad + pos: 53.5,-17.5 parent: 2 - - uid: 22755 + - uid: 6988 components: - type: Transform - pos: -42.5,-44.5 + pos: -4.5,41.5 parent: 2 - - uid: 22756 + - uid: 6992 components: - type: Transform - pos: -43.5,-44.5 + pos: 2.5,49.5 parent: 2 - - uid: 22757 + - uid: 7002 components: - type: Transform - pos: -44.5,-44.5 + pos: 39.5,0.5 parent: 2 - - uid: 22758 + - uid: 7003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-61.5 + pos: 40.5,-5.5 parent: 2 - - uid: 22759 + - uid: 7004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-62.5 + pos: 35.5,-4.5 parent: 2 - - uid: 22760 + - uid: 7079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-63.5 + pos: 12.5,37.5 parent: 2 - - uid: 22761 + - uid: 7258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-63.5 + rot: 3.141592653589793 rad + pos: 47.5,-2.5 parent: 2 - - uid: 22762 + - uid: 7272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-62.5 + pos: 56.5,24.5 parent: 2 - - uid: 22763 + - uid: 7288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-61.5 + rot: 1.5707963267948966 rad + pos: 56.5,-16.5 parent: 2 - - uid: 22764 + - uid: 7457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-60.5 + pos: 59.5,24.5 parent: 2 - - uid: 22765 + - uid: 7458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-60.5 + pos: 60.5,24.5 parent: 2 - - uid: 22766 + - uid: 7467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-61.5 + pos: 66.5,-0.5 parent: 2 - - uid: 22767 + - uid: 7468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-62.5 + pos: 46.5,19.5 parent: 2 - - uid: 22768 + - uid: 7470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-63.5 + pos: 50.5,19.5 parent: 2 - - uid: 22769 + - uid: 7472 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,0.5 + pos: 66.5,0.5 parent: 2 - - uid: 22770 + - uid: 7480 components: - type: Transform - pos: -66.5,-33.5 + pos: -54.5,-34.5 parent: 2 - - uid: 22771 + - uid: 7482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-33.5 + rot: 3.141592653589793 rad + pos: 86.5,-15.5 parent: 2 - - uid: 22772 + - uid: 7483 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-33.5 + pos: 86.5,-12.5 parent: 2 - - uid: 22773 + - uid: 7485 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-33.5 + pos: 86.5,-18.5 parent: 2 - - uid: 22774 + - uid: 7486 components: - type: Transform rot: 3.141592653589793 rad - pos: -65.5,-33.5 + pos: 86.5,-21.5 parent: 2 - - uid: 22775 + - uid: 7487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-33.5 + rot: 3.141592653589793 rad + pos: 86.5,-19.5 parent: 2 - - uid: 22776 + - uid: 7490 components: - type: Transform - pos: -60.5,-35.5 + rot: 3.141592653589793 rad + pos: 86.5,-22.5 parent: 2 - - uid: 22777 + - uid: 7491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-35.5 + pos: -33.5,-5.5 parent: 2 - - uid: 22778 + - uid: 7492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-34.5 + pos: -40.5,8.5 parent: 2 - - uid: 22779 + - uid: 7498 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-34.5 + pos: 54.5,22.5 parent: 2 - - uid: 22780 + - uid: 7500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-34.5 + pos: 54.5,20.5 parent: 2 - - uid: 22781 + - uid: 7505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-35.5 + pos: 66.5,3.5 parent: 2 - - uid: 22782 + - uid: 7511 components: - type: Transform - pos: -54.5,-33.5 + pos: -53.5,-36.5 parent: 2 - - uid: 22783 + - uid: 7535 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,-33.5 + pos: 78.5,-8.5 parent: 2 - - uid: 22784 + - uid: 7536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-33.5 + rot: 3.141592653589793 rad + pos: 79.5,-8.5 parent: 2 - - uid: 22785 + - uid: 7538 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,8.5 + pos: 53.5,19.5 parent: 2 - - uid: 22786 + - uid: 7774 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,8.5 + rot: 1.5707963267948966 rad + pos: -8.5,-33.5 parent: 2 - - uid: 22787 + - uid: 7909 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,8.5 + pos: -13.5,-35.5 parent: 2 - - uid: 22788 + - uid: 7941 components: - type: Transform - pos: -48.5,8.5 + pos: 35.5,-5.5 parent: 2 - - uid: 22789 + - uid: 7993 components: - type: Transform - pos: -49.5,8.5 + rot: 1.5707963267948966 rad + pos: -8.5,-39.5 parent: 2 - - uid: 22790 + - uid: 8172 components: - type: Transform - pos: -50.5,8.5 + rot: 3.141592653589793 rad + pos: 52.5,6.5 parent: 2 - - uid: 22791 + - uid: 8175 components: - type: Transform - pos: -46.5,8.5 + rot: 3.141592653589793 rad + pos: 53.5,5.5 parent: 2 - - uid: 22792 + - uid: 8177 components: - type: Transform - pos: -45.5,8.5 + rot: 3.141592653589793 rad + pos: 55.5,5.5 parent: 2 - - uid: 22793 + - uid: 8210 components: - type: Transform - pos: -44.5,8.5 + pos: 66.5,6.5 parent: 2 - - uid: 22794 + - uid: 8224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,8.5 + rot: 3.141592653589793 rad + pos: 82.5,-21.5 parent: 2 - - uid: 22795 + - uid: 8228 components: - type: Transform - pos: -48.5,14.5 + rot: 1.5707963267948966 rad + pos: 14.5,27.5 parent: 2 - - uid: 22796 + - uid: 8232 components: - type: Transform - pos: -49.5,14.5 + pos: 67.5,-4.5 parent: 2 - - uid: 22797 + - uid: 8236 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,14.5 + pos: 36.5,-5.5 parent: 2 - - uid: 22798 + - uid: 8244 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,14.5 + pos: 38.5,-5.5 parent: 2 - - uid: 22799 + - uid: 9140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,14.5 + pos: 69.5,-4.5 parent: 2 - - uid: 22800 + - uid: 9149 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,14.5 + pos: 75.5,-21.5 parent: 2 - - uid: 22801 + - uid: 9150 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,14.5 + rot: -1.5707963267948966 rad + pos: -32.5,29.5 parent: 2 - - uid: 22802 + - uid: 9151 components: - type: Transform - pos: 12.5,40.5 + rot: -1.5707963267948966 rad + pos: -32.5,28.5 parent: 2 - - uid: 22803 + - uid: 9162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,40.5 + pos: -40.5,5.5 parent: 2 - - uid: 22804 + - uid: 9170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,41.5 + rot: 3.141592653589793 rad + pos: 77.5,-21.5 parent: 2 - - uid: 22805 + - uid: 9442 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,41.5 + pos: -13.5,4.5 parent: 2 - - uid: 22806 + - uid: 10585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,40.5 + rot: 3.141592653589793 rad + pos: 52.5,-24.5 parent: 2 - - uid: 22807 + - uid: 11653 components: - type: Transform - pos: 10.5,40.5 + pos: 70.5,-4.5 parent: 2 - - uid: 22808 + - uid: 11661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,40.5 + pos: 66.5,-3.5 parent: 2 - - uid: 22809 + - uid: 11662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,41.5 + rot: 3.141592653589793 rad + pos: 79.5,-21.5 parent: 2 - - uid: 22810 + - uid: 12110 components: - type: Transform - pos: 14.5,33.5 + rot: -1.5707963267948966 rad + pos: -15.5,4.5 parent: 2 - - uid: 22811 + - uid: 12572 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,33.5 + pos: -32.5,23.5 parent: 2 - - uid: 22812 + - uid: 13175 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,33.5 + pos: -32.5,-1.5 parent: 2 - - uid: 22813 + - uid: 13176 components: - type: Transform - pos: 21.5,22.5 + pos: -29.5,-1.5 parent: 2 - - uid: 22814 + - uid: 13238 components: - type: Transform - pos: 20.5,22.5 + rot: 3.141592653589793 rad + pos: -34.5,-5.5 parent: 2 - - uid: 22815 + - uid: 14001 components: - type: Transform - pos: 19.5,22.5 + pos: -11.5,-35.5 parent: 2 - - uid: 22816 + - uid: 14002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,22.5 + pos: -10.5,-35.5 parent: 2 - - uid: 22817 + - uid: 14717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,20.5 + rot: 3.141592653589793 rad + pos: 75.5,-29.5 parent: 2 - - uid: 22818 + - uid: 14871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,19.5 + pos: 6.5,18.5 parent: 2 - - uid: 22819 + - uid: 14910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,20.5 + rot: 3.141592653589793 rad + pos: -41.5,12.5 parent: 2 - - uid: 22820 + - uid: 15202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,19.5 + pos: 69.5,-0.5 parent: 2 - - uid: 22821 + - uid: 15204 components: - type: Transform - pos: 22.5,19.5 + pos: 68.5,-0.5 parent: 2 - - uid: 22822 + - uid: 15211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,26.5 + pos: 69.5,3.5 parent: 2 - - uid: 22823 + - uid: 15212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,25.5 + pos: 68.5,3.5 parent: 2 - - uid: 22824 + - uid: 16084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,26.5 + pos: 59.5,25.5 parent: 2 - - uid: 22825 + - uid: 16086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,26.5 + pos: 59.5,27.5 parent: 2 - - uid: 22826 + - uid: 16151 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,26.5 + pos: 75.5,-24.5 parent: 2 - - uid: 22827 + - uid: 16163 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,26.5 + pos: 12.5,32.5 parent: 2 - - uid: 22828 + - uid: 16168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,26.5 + pos: -36.5,-42.5 parent: 2 - - uid: 22829 + - uid: 16185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,25.5 + rot: 3.141592653589793 rad + pos: 81.5,-8.5 parent: 2 - - uid: 22830 + - uid: 16189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,26.5 + pos: 75.5,-26.5 parent: 2 - - uid: 22831 + - uid: 16313 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,25.5 + pos: -33.5,-45.5 parent: 2 - - uid: 22832 + - uid: 16315 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,26.5 + pos: -33.5,-44.5 parent: 2 - - uid: 22833 + - uid: 16349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,25.5 + rot: 3.141592653589793 rad + pos: 78.5,-30.5 parent: 2 - - uid: 22834 + - uid: 16352 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,23.5 + pos: 80.5,-30.5 parent: 2 - - uid: 22835 + - uid: 16377 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,23.5 + pos: 81.5,-24.5 parent: 2 - - uid: 22836 + - uid: 16378 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,23.5 + pos: 82.5,-24.5 parent: 2 - - uid: 22837 + - uid: 16382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,23.5 + rot: 3.141592653589793 rad + pos: 81.5,-27.5 parent: 2 - - uid: 22838 + - uid: 16383 components: - type: Transform - pos: 38.5,19.5 + rot: 3.141592653589793 rad + pos: 81.5,-28.5 parent: 2 - - uid: 22839 + - uid: 16387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,19.5 + pos: 49.5,21.5 parent: 2 - - uid: 22840 + - uid: 16615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,19.5 + pos: -40.5,4.5 parent: 2 - - uid: 22841 + - uid: 16750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,19.5 + pos: -29.5,8.5 parent: 2 - - uid: 22842 + - uid: 16751 components: - type: Transform - pos: 32.5,19.5 + pos: -34.5,8.5 parent: 2 - - uid: 22843 + - uid: 16752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,19.5 + pos: -35.5,8.5 parent: 2 - - uid: 22844 + - uid: 17527 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,19.5 + rot: -1.5707963267948966 rad + pos: -18.5,4.5 parent: 2 - - uid: 22845 + - uid: 20291 components: - type: Transform - pos: 32.5,14.5 + pos: -24.5,-42.5 parent: 2 - - uid: 22846 + - uid: 20298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,14.5 + pos: 84.5,-21.5 parent: 2 - - uid: 22847 + - uid: 20793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,15.5 + rot: 3.141592653589793 rad + pos: 8.5,18.5 parent: 2 - - uid: 22848 + - uid: 20875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,15.5 + pos: 59.5,-1.5 parent: 2 - - uid: 22849 + - uid: 20888 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,15.5 + pos: -51.5,7.5 parent: 2 - - uid: 22850 + - uid: 21036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,14.5 + pos: 83.5,-32.5 parent: 2 - - uid: 22851 + - uid: 21388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,10.5 + pos: -19.5,-40.5 parent: 2 - - uid: 22852 +- proto: WallWood + entities: + - uid: 3459 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,10.5 + pos: -16.5,-1.5 parent: 2 - - uid: 22853 + - uid: 3460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,10.5 + rot: 3.141592653589793 rad + pos: -15.5,-1.5 parent: 2 - - uid: 22854 + - uid: 3461 components: - type: Transform - pos: 45.5,10.5 + rot: 3.141592653589793 rad + pos: -13.5,-1.5 parent: 2 - - uid: 22855 + - uid: 3462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,10.5 + pos: -26.5,-35.5 parent: 2 - - uid: 22856 + - uid: 3493 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,10.5 + pos: -19.5,-22.5 parent: 2 - - uid: 22857 + - uid: 3497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,16.5 + pos: -20.5,-11.5 parent: 2 - - uid: 22858 + - uid: 3498 components: - type: Transform - pos: 27.5,16.5 + pos: -19.5,-23.5 parent: 2 - - uid: 22859 + - uid: 4175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,16.5 + pos: -19.5,-21.5 parent: 2 - - uid: 22863 + - uid: 4261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,8.5 + pos: -21.5,-21.5 parent: 2 - - uid: 22864 + - uid: 4263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,10.5 + pos: -22.5,-11.5 parent: 2 - - uid: 22865 + - uid: 4264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,10.5 + pos: -17.5,-21.5 parent: 2 - - uid: 22866 + - uid: 4380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,8.5 + pos: -22.5,-16.5 parent: 2 - - uid: 22867 + - uid: 4381 components: - type: Transform - pos: 52.5,8.5 + pos: -22.5,-22.5 parent: 2 - - uid: 22868 + - uid: 4382 components: - type: Transform - pos: 52.5,10.5 + pos: -22.5,-20.5 parent: 2 - - uid: 22869 + - uid: 4462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,1.5 + pos: -22.5,-21.5 parent: 2 - - uid: 22870 + - uid: 4576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,4.5 + pos: -17.5,-16.5 parent: 2 - - uid: 22871 + - uid: 4995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,4.5 + pos: -19.5,-16.5 parent: 2 - - uid: 22872 + - uid: 5029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,1.5 + pos: -17.5,-11.5 parent: 2 - - uid: 22873 + - uid: 5685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,1.5 + pos: -21.5,-11.5 parent: 2 - - uid: 22874 + - uid: 6088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,4.5 + pos: -19.5,-11.5 parent: 2 - - uid: 22890 + - uid: 6125 components: - type: Transform - pos: 38.5,1.5 + pos: -21.5,-16.5 parent: 2 - - uid: 22891 + - uid: 7420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-0.5 + pos: -22.5,-23.5 parent: 2 - - uid: 22892 + - uid: 7550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-1.5 + pos: -22.5,-19.5 parent: 2 - - uid: 22893 + - uid: 8348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-2.5 + pos: -20.5,-16.5 parent: 2 - - uid: 22894 + - uid: 17092 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-0.5 + pos: 68.5,-54.5 parent: 2 - - uid: 22895 + - uid: 17192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-0.5 + pos: 68.5,-55.5 parent: 2 - - uid: 22896 + - uid: 17193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-1.5 + pos: 68.5,-51.5 parent: 2 - - uid: 22897 + - uid: 17194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-2.5 + pos: 68.5,-50.5 parent: 2 - - uid: 22898 + - uid: 17214 components: - type: Transform - pos: 40.5,-2.5 + rot: 3.141592653589793 rad + pos: 64.5,-51.5 parent: 2 - - uid: 22899 + - uid: 17226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,1.5 + pos: 64.5,-55.5 parent: 2 - - uid: 22900 + - uid: 17228 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,1.5 + pos: 64.5,-50.5 parent: 2 - - uid: 22901 + - uid: 17233 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,1.5 + pos: 67.5,-50.5 parent: 2 - - uid: 22902 + - uid: 17237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,1.5 + pos: 64.5,-54.5 parent: 2 - - uid: 22903 + - uid: 17239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,1.5 + pos: 68.5,-53.5 parent: 2 - - uid: 22910 + - uid: 17240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-3.5 + pos: 65.5,-55.5 parent: 2 - - uid: 22911 + - uid: 17241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-4.5 + pos: 66.5,-55.5 parent: 2 - - uid: 22912 + - uid: 17244 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-6.5 + pos: 67.5,-55.5 parent: 2 - - uid: 22913 + - uid: 17245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-7.5 + pos: 68.5,-52.5 parent: 2 - - uid: 22914 +- proto: WardrobeBlackFilled + entities: + - uid: 16465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-7.5 + pos: -59.5,-33.5 parent: 2 - - uid: 22915 +- proto: WardrobeBotanistFilled + entities: + - uid: 14631 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-6.5 + pos: -38.5,12.5 parent: 2 - - uid: 22916 +- proto: WardrobeCargoFilled + entities: + - uid: 5748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-4.5 + pos: 25.5,17.5 parent: 2 - - uid: 22917 +- proto: WardrobeGreyFilled + entities: + - uid: 16245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-3.5 + pos: 76.5,-29.5 parent: 2 - - uid: 22918 + - uid: 16246 components: - type: Transform - pos: 44.5,-4.5 + pos: 77.5,-29.5 parent: 2 - - uid: 22919 + - uid: 16247 components: - type: Transform - pos: 44.5,-7.5 + pos: 79.5,-29.5 parent: 2 - - uid: 22920 + - uid: 16248 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-6.5 + pos: 80.5,-29.5 parent: 2 - - uid: 22921 +- proto: WardrobePrisonFilled + entities: + - uid: 1709 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-3.5 + pos: -11.5,23.5 parent: 2 - - uid: 22922 + - uid: 4789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-15.5 + pos: -15.5,23.5 parent: 2 - - uid: 22923 + - uid: 4795 components: - type: Transform - pos: 57.5,-15.5 + pos: -7.5,23.5 parent: 2 - - uid: 22924 + - uid: 5243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-15.5 + pos: -6.5,43.5 parent: 2 - - uid: 22925 + - uid: 5244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-13.5 + pos: 3.5,43.5 parent: 2 - - uid: 22926 +- proto: WardrobeWhiteFilled + entities: + - uid: 3464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-13.5 + pos: -27.5,-10.5 parent: 2 - - uid: 22927 +- proto: WarningCO2 + entities: + - uid: 3465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-13.5 + rot: -1.5707963267948966 rad + pos: 20.5,-1.5 parent: 2 - - uid: 22928 +- proto: WarningN2 + entities: + - uid: 3466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-13.5 + rot: -1.5707963267948966 rad + pos: 18.5,-1.5 parent: 2 - - uid: 22929 +- proto: WarningO2 + entities: + - uid: 3467 components: - type: Transform - pos: 62.5,-13.5 + rot: -1.5707963267948966 rad + pos: 16.5,-1.5 parent: 2 - - uid: 22930 +- proto: WarningPlasma + entities: + - uid: 3468 components: - type: Transform - pos: 66.5,-13.5 + rot: -1.5707963267948966 rad + pos: 24.5,-1.5 parent: 2 - - uid: 22949 +- proto: WarningWaste + entities: + - uid: 3469 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-12.5 + rot: -1.5707963267948966 rad + pos: 22.5,-1.5 parent: 2 - - uid: 22950 + - uid: 3470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-12.5 + rot: -1.5707963267948966 rad + pos: 26.5,-1.5 parent: 2 - - uid: 22951 +- proto: WarpPoint + entities: + - uid: 20936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-13.5 - parent: 2 - - uid: 22952 + pos: 8.5,-3.5 + parent: 21128 + - type: WarpPoint + location: Unknown shuttle +- proto: WarpPointBombing + entities: + - uid: 13731 components: - type: Transform - pos: 72.5,-13.5 + pos: -18.5,1.5 parent: 2 - - uid: 22953 + - type: WarpPoint + location: Bar + - uid: 13732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-25.5 + pos: -2.5,24.5 parent: 2 - - uid: 22954 + - type: WarpPoint + location: Security + - uid: 13733 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-25.5 + pos: -1.5,47.5 parent: 2 - - uid: 22955 + - type: WarpPoint + location: Perma + - uid: 13734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-25.5 + pos: 27.5,20.5 parent: 2 - - uid: 22956 + - type: WarpPoint + location: Cargo + - uid: 13735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-26.5 + pos: 44.5,8.5 parent: 2 - - uid: 22957 + - type: WarpPoint + location: Medical + - uid: 13736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-27.5 + pos: -1.5,-22.5 parent: 2 - - uid: 22958 + - type: WarpPoint + location: Engineering + - uid: 13737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-28.5 + pos: 40.5,-35.5 parent: 2 - - uid: 22959 + - type: WarpPoint + location: Bridge + - uid: 13738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-29.5 + pos: -32.5,-13.5 parent: 2 - - uid: 22960 + - type: WarpPoint + location: Dorms + - uid: 13739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-12.5 + pos: -48.5,1.5 parent: 2 - - uid: 22961 + - type: WarpPoint + location: Evacuation +- proto: WaterCooler + entities: + - uid: 3471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 93.5,-12.5 + pos: 4.5,-17.5 parent: 2 - - uid: 22962 + - uid: 3472 components: - type: Transform - pos: 93.5,-15.5 + pos: 21.5,-18.5 parent: 2 - - uid: 22963 + - uid: 5603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-15.5 + pos: 31.5,10.5 parent: 2 - - uid: 22964 + - uid: 8266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-14.5 + pos: -3.5,21.5 parent: 2 - - uid: 22965 +- proto: WaterTankFull + entities: + - uid: 60 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-13.5 + pos: 58.5,-25.5 parent: 2 - - uid: 22966 + - uid: 5162 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-21.5 + anchored: True + pos: -3.5,50.5 parent: 2 - - uid: 22967 + - type: Physics + bodyType: Static + - uid: 7619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-21.5 + pos: 19.5,-35.5 parent: 2 - - uid: 22968 + - uid: 14675 components: - type: Transform - pos: 64.5,-21.5 + pos: -20.5,31.5 parent: 2 - - uid: 22969 + - uid: 14678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-33.5 + pos: 17.5,17.5 parent: 2 - - uid: 22970 + - uid: 14679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-33.5 + pos: -13.5,-10.5 parent: 2 - - uid: 22971 + - uid: 14681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-33.5 + pos: -14.5,-33.5 parent: 2 - - uid: 22972 + - uid: 14685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-33.5 + pos: 5.5,-41.5 parent: 2 - - uid: 22973 + - uid: 14686 components: - type: Transform - pos: 70.5,-33.5 + pos: 73.5,-20.5 parent: 2 - - uid: 22974 + - uid: 14689 components: - type: Transform - pos: 69.5,-33.5 + pos: 65.5,-3.5 parent: 2 - - uid: 22975 + - uid: 14690 components: - type: Transform - pos: 68.5,-33.5 + pos: 49.5,17.5 parent: 2 - - uid: 22976 + - uid: 14693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-33.5 + pos: -11.5,17.5 parent: 2 - - uid: 22977 + - uid: 14694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-34.5 + pos: 3.5,38.5 parent: 2 - - uid: 22978 + - uid: 14718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-35.5 + pos: 45.5,-9.5 parent: 2 - - uid: 22979 + - uid: 14735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-34.5 + pos: 39.5,-6.5 parent: 2 - - uid: 22980 + - uid: 15758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-35.5 + pos: 67.5,0.5 parent: 2 - - uid: 22981 + - uid: 21571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-34.5 + pos: 34.5,-2.5 parent: 2 - - uid: 22982 +- proto: WaterTankHighCapacity + entities: + - uid: 3475 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-34.5 + pos: -13.5,-22.5 parent: 2 - - uid: 22983 + - uid: 15394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-34.5 + pos: -28.5,17.5 parent: 2 - - uid: 22984 +- proto: WaterVaporCanister + entities: + - uid: 3477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-35.5 + pos: 22.5,-2.5 parent: 2 - - uid: 22985 + - uid: 3478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-34.5 + pos: 24.5,-17.5 parent: 2 - - uid: 22986 +- proto: WeaponCapacitorRecharger + entities: + - uid: 4590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-35.5 + rot: 3.141592653589793 rad + pos: 39.5,-28.5 parent: 2 - - uid: 22987 + - uid: 4972 components: - type: Transform - pos: 73.5,-35.5 + pos: 5.5,25.5 parent: 2 - - uid: 22988 + - uid: 5294 components: - type: Transform - pos: 71.5,-35.5 + rot: -1.5707963267948966 rad + pos: -8.5,31.5 parent: 2 - - uid: 22989 + - uid: 7621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-36.5 + rot: 1.5707963267948966 rad + pos: 20.5,-38.5 parent: 2 - - uid: 22990 + - uid: 13590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-36.5 + pos: 37.5,-32.5 parent: 2 - - uid: 22991 +- proto: WeaponDisabler + entities: + - uid: 5154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-36.5 + pos: -8.829058,31.720768 parent: 2 - - uid: 22992 +- proto: WeaponLaserCarbine + entities: + - uid: 5093 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-36.5 + pos: 3.539238,33.610504 parent: 2 - - uid: 22993 + - uid: 5094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-36.5 + pos: 3.539238,33.43863 parent: 2 - - uid: 22994 + - uid: 20341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-36.5 + pos: 3.53751,33.53506 parent: 2 - - uid: 22995 +- proto: WeaponShotgunEnforcer + entities: + - uid: 1957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-22.5 + pos: 2.550524,33.364468 parent: 2 - - uid: 22996 +- proto: WeaponShotgunKammerer + entities: + - uid: 5091 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-22.5 + pos: 2.523613,33.586533 parent: 2 - - uid: 22997 + - uid: 7564 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-22.5 + pos: 2.5417395,33.683712 parent: 2 - - uid: 22998 + - uid: 20305 components: - type: Transform - pos: 42.5,-22.5 + pos: 2.553135,33.488186 parent: 2 - - uid: 22999 +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 5081 components: - type: Transform - pos: 41.5,-22.5 + pos: -11.600864,32.694817 parent: 2 - - uid: 23000 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 853 components: - type: Transform - pos: 40.5,-22.5 + pos: 9.5,-44.5 parent: 2 - - uid: 23001 + - uid: 8171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-22.5 + pos: 7.5,-44.5 parent: 2 - - uid: 23002 + - uid: 20391 components: - type: Transform - pos: 44.5,-22.5 + pos: 16.5,42.5 parent: 2 - - uid: 23003 + - uid: 20392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-27.5 + pos: 16.5,39.5 parent: 2 - - uid: 23004 + - uid: 21060 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-27.5 + pos: -34.5,-45.5 parent: 2 - - uid: 23005 + - uid: 22109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-27.5 + pos: 16.5,-67.5 parent: 2 - - uid: 23006 + - uid: 22140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-27.5 + pos: 22.5,-67.5 parent: 2 - - uid: 23007 + - uid: 22145 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-27.5 + pos: 22.5,-74.5 parent: 2 - - uid: 23008 + - uid: 22170 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-27.5 + pos: 16.5,-74.5 parent: 2 - - uid: 23009 +- proto: WeaponWaterPistol + entities: + - uid: 20287 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-27.5 + pos: 57.375835,-1.3271363 parent: 2 - - uid: 23010 + - uid: 20288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-27.5 + pos: 57.594585,-1.5146363 parent: 2 - - uid: 23011 +- proto: Welder + entities: + - uid: 3479 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-27.5 + pos: -7.5141225,-25.4744 parent: 2 - - uid: 23012 +- proto: WelderIndustrial + entities: + - uid: 17640 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-30.5 + pos: 17.592184,-17.644693 parent: 2 - - uid: 23013 +- proto: WeldingFuelTankFull + entities: + - uid: 3481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-30.5 + pos: 16.5,-13.5 parent: 2 - - uid: 23014 + - uid: 7618 components: - type: Transform - pos: 30.5,-30.5 + pos: 19.5,-36.5 parent: 2 - - uid: 23015 + - uid: 8161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-39.5 + pos: 33.5,-2.5 parent: 2 - - uid: 23016 + - uid: 12468 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-39.5 + pos: 58.5,-26.5 parent: 2 - - uid: 23017 + - uid: 13648 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-39.5 + pos: -13.5,-11.5 parent: 2 - - uid: 23018 + - uid: 14676 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-39.5 + pos: -19.5,31.5 parent: 2 - - uid: 23019 + - uid: 14677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-39.5 + pos: 17.5,1.5 parent: 2 - - uid: 23020 + - uid: 14682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-39.5 + pos: -13.5,-33.5 parent: 2 - - uid: 23021 + - uid: 14683 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-39.5 + pos: 21.5,-40.5 parent: 2 - - uid: 23022 + - uid: 14684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-39.5 + pos: 5.5,-42.5 parent: 2 - - uid: 23023 + - uid: 14687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-39.5 + pos: 73.5,-21.5 parent: 2 - - uid: 23024 + - uid: 14688 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-39.5 + pos: 65.5,-4.5 parent: 2 - - uid: 23025 + - uid: 14691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-39.5 + pos: 50.5,17.5 parent: 2 - - uid: 23026 + - uid: 14692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-39.5 + pos: -12.5,17.5 parent: 2 - - uid: 23027 + - uid: 14719 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-39.5 + pos: 45.5,-10.5 parent: 2 - - uid: 23028 + - uid: 14734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-39.5 + pos: 39.5,-7.5 parent: 2 - - uid: 23029 + - uid: 15853 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-39.5 + pos: 69.5,6.5 parent: 2 - - uid: 23030 + - uid: 16753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-39.5 + pos: -3.5,-21.5 parent: 2 - - uid: 23031 +- proto: Windoor + entities: + - uid: 3483 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-39.5 + pos: -6.5,-28.5 parent: 2 - - uid: 23032 + - uid: 3484 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-39.5 + pos: -5.5,-28.5 parent: 2 - - uid: 23033 + - uid: 3485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-39.5 + pos: 20.5,-23.5 parent: 2 - - uid: 23052 + - uid: 3486 components: - type: Transform - pos: 30.5,-13.5 + pos: 21.5,-23.5 parent: 2 - - uid: 23053 + - uid: 3487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 + pos: 39.5,-20.5 parent: 2 - - uid: 23054 + - uid: 3488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-7.5 + pos: 45.5,-20.5 parent: 2 - - uid: 23055 + - uid: 3489 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-7.5 + pos: 43.5,-22.5 parent: 2 - - uid: 23056 + - uid: 3494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-7.5 + rot: 1.5707963267948966 rad + pos: -19.5,-9.5 parent: 2 - - uid: 23057 + - uid: 3495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-7.5 + pos: -16.5,-28.5 parent: 2 - - uid: 23058 + - uid: 3496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-7.5 + pos: -15.5,-28.5 parent: 2 - - uid: 23059 + - uid: 4764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-7.5 + rot: -1.5707963267948966 rad + pos: 0.5,23.5 parent: 2 - - uid: 23060 + - uid: 4765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-7.5 + rot: -1.5707963267948966 rad + pos: 0.5,24.5 parent: 2 - - uid: 23061 + - uid: 5149 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-7.5 + pos: -5.5,44.5 parent: 2 - - uid: 23062 + - uid: 5150 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-7.5 + pos: 2.5,44.5 parent: 2 - - uid: 23063 + - uid: 5448 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-7.5 + rot: -1.5707963267948966 rad + pos: 24.5,13.5 parent: 2 - - uid: 23064 + - uid: 5449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-7.5 + rot: -1.5707963267948966 rad + pos: 24.5,14.5 parent: 2 - - uid: 23065 + - uid: 6034 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-7.5 + pos: 42.5,10.5 parent: 2 - - uid: 23066 + - uid: 6035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-7.5 + pos: 46.5,10.5 parent: 2 - - uid: 23067 + - uid: 7152 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 + pos: 58.5,-15.5 parent: 2 - - uid: 23068 + - uid: 7153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-9.5 + pos: 59.5,-15.5 parent: 2 - - uid: 23069 + - uid: 7154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-10.5 + pos: 60.5,-15.5 parent: 2 - - uid: 23070 + - uid: 15022 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-7.5 + pos: -34.5,21.5 parent: 2 - - uid: 23071 + - uid: 16397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-8.5 + pos: 53.5,22.5 parent: 2 - - uid: 23072 + - uid: 16912 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-9.5 + pos: 14.5,37.5 parent: 2 - - uid: 23073 + - uid: 16941 components: + - type: MetaData + name: Theatre windoor - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-10.5 + pos: -37.5,4.5 parent: 2 - - uid: 23074 + - uid: 18471 components: + - type: MetaData + name: Theatre windoor - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-11.5 + rot: -1.5707963267948966 rad + pos: -29.5,4.5 parent: 2 - - uid: 23075 + - uid: 20921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-12.5 + rot: 3.141592653589793 rad + pos: 89.5,-17.5 parent: 2 - - uid: 23076 + - uid: 20922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-13.5 + rot: 3.141592653589793 rad + pos: 90.5,-17.5 parent: 2 - - uid: 23077 +- proto: WindoorHydroponicsLocked + entities: + - uid: 3499 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-9.5 + pos: -27.5,13.5 parent: 2 - - uid: 23078 + - uid: 3500 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-16.5 + pos: -27.5,14.5 parent: 2 - - uid: 23079 +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 14242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-16.5 + pos: -19.5,10.5 parent: 2 - - uid: 23080 +- proto: WindoorKitchenLocked + entities: + - uid: 3501 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-16.5 + pos: -23.5,13.5 parent: 2 - - uid: 23081 + - uid: 3502 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-16.5 + pos: -23.5,14.5 parent: 2 - - uid: 23082 +- proto: WindoorSecure + entities: + - uid: 3505 components: - type: Transform - pos: 26.5,-16.5 + rot: 1.5707963267948966 rad + pos: -31.5,-29.5 parent: 2 - - uid: 23083 + - uid: 3506 components: - type: Transform - pos: 30.5,-16.5 + rot: 1.5707963267948966 rad + pos: -31.5,-28.5 parent: 2 - - uid: 23091 + - uid: 7933 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-34.5 + rot: 1.5707963267948966 rad + pos: -10.5,-38.5 parent: 2 - - uid: 23092 + - uid: 16324 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-34.5 + pos: 80.5,-6.5 parent: 2 - - uid: 23093 + - uid: 17182 components: - type: Transform - pos: 19.5,-34.5 + rot: 3.141592653589793 rad + pos: 66.5,-50.5 parent: 2 - - uid: 23094 + - uid: 17229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-49.5 + rot: 3.141592653589793 rad + pos: 65.5,-50.5 parent: 2 - - uid: 23095 + - uid: 17258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-47.5 + pos: -33.5,-2.5 parent: 2 - - uid: 23096 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 21184: + - DoorStatus: DoorBolt + - uid: 21184 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-47.5 + pos: -33.5,-1.5 parent: 2 - - uid: 23097 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 17258: + - DoorStatus: DoorBolt + - uid: 21321 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-47.5 + pos: 80.5,-24.5 parent: 2 - - uid: 23098 + - uid: 22489 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-47.5 + rot: -1.5707963267948966 rad + pos: 64.5,-35.5 parent: 2 - - uid: 23099 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 4751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-47.5 + rot: 1.5707963267948966 rad + pos: 0.5,24.5 parent: 2 - - uid: 23100 + - uid: 4763 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-47.5 + pos: 0.5,23.5 parent: 2 - - uid: 23101 + - uid: 5082 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-49.5 + pos: 2.5,32.5 parent: 2 - - uid: 23102 + - uid: 5083 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-49.5 + pos: 3.5,33.5 + parent: 2 + - uid: 5084 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 5085 + components: + - type: Transform + pos: 5.5,33.5 parent: 2 - - uid: 23103 +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 3507 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-49.5 + pos: 20.5,-23.5 parent: 2 - - uid: 23104 + - uid: 3508 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-49.5 + pos: 21.5,-23.5 parent: 2 - - uid: 23105 + - uid: 3509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-45.5 + pos: 19.5,-22.5 parent: 2 - - uid: 23106 +- proto: WindoorSecureBrigLocked + entities: + - uid: 4421 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-49.5 + pos: -43.5,-15.5 parent: 2 - - uid: 23107 + - uid: 4497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-45.5 + pos: -47.5,-15.5 parent: 2 - - uid: 23108 +- proto: WindoorSecureCargoLocked + entities: + - uid: 5445 components: - type: Transform - pos: 11.5,-45.5 + rot: 1.5707963267948966 rad + pos: 24.5,13.5 parent: 2 - - uid: 23109 + - uid: 5447 components: - type: Transform - pos: 14.5,-45.5 + rot: 1.5707963267948966 rad + pos: 24.5,14.5 parent: 2 - - uid: 23110 + - uid: 5450 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-45.5 + pos: 25.5,12.5 parent: 2 - - uid: 23111 +- proto: WindoorSecureChapelLocked + entities: + - uid: 3510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-45.5 + rot: 1.5707963267948966 rad + pos: -26.5,-39.5 parent: 2 - - uid: 23112 + - uid: 3511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-63.5 + pos: -32.5,-37.5 parent: 2 - - uid: 23113 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 6036 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-61.5 + pos: 42.5,10.5 parent: 2 - - uid: 23114 + - uid: 6037 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-63.5 + pos: 46.5,10.5 parent: 2 - - uid: 23115 + - uid: 8862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-63.5 + pos: 46.5,15.5 parent: 2 - - uid: 23116 + - uid: 18993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-64.5 + rot: 3.141592653589793 rad + pos: 44.5,10.5 parent: 2 - - uid: 23117 +- proto: WindoorSecureCommandLocked + entities: + - uid: 1943 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-65.5 + pos: 14.5,-64.5 parent: 2 - - uid: 23118 + - uid: 1945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-61.5 + pos: 8.5,-47.5 parent: 2 - - uid: 23119 + - uid: 4571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-63.5 + rot: -1.5707963267948966 rad + pos: 38.5,-29.5 parent: 2 - - uid: 23120 + - uid: 7436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-64.5 + rot: 3.141592653589793 rad + pos: 70.5,-27.5 parent: 2 - - uid: 23121 + - uid: 7437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-65.5 + rot: 3.141592653589793 rad + pos: 69.5,-27.5 parent: 2 - - uid: 23122 + - uid: 7974 components: - type: Transform - pos: 13.5,-65.5 + pos: 12.5,-45.5 parent: 2 - - uid: 23123 + - uid: 7975 components: - type: Transform - pos: 19.5,-61.5 + pos: 13.5,-45.5 parent: 2 - - uid: 23124 + - uid: 20900 components: - type: Transform - pos: 25.5,-65.5 + rot: 1.5707963267948966 rad + pos: 14.5,-65.5 parent: 2 - - uid: 23125 + - uid: 20901 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-55.5 + pos: 23.5,-53.5 parent: 2 - - uid: 23126 + - uid: 22049 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-55.5 + rot: -1.5707963267948966 rad + pos: 18.5,-72.5 parent: 2 - - uid: 23127 + - uid: 22050 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-55.5 + pos: 20.5,-72.5 parent: 2 - - uid: 23128 +- proto: WindoorSecureDetectiveLocked + entities: + - uid: 17488 components: - type: Transform - pos: 19.5,-71.5 + pos: -24.5,28.5 parent: 2 - - uid: 23129 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 3512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-71.5 + rot: 1.5707963267948966 rad + pos: -7.5,-22.5 parent: 2 - - uid: 23130 + - uid: 3513 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-71.5 - parent: 2 - - uid: 23131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-32.5 + pos: -5.5,-28.5 parent: 2 - - uid: 23132 + - uid: 3514 components: - type: Transform - pos: -3.5,-32.5 + rot: 3.141592653589793 rad + pos: -6.5,-28.5 parent: 2 - - uid: 23133 + - uid: 3515 components: - type: Transform - pos: -4.5,-32.5 + pos: -7.5,-27.5 parent: 2 - - uid: 23134 + - uid: 15163 components: - type: Transform - pos: -5.5,-32.5 + rot: -1.5707963267948966 rad + pos: -24.5,34.5 parent: 2 - - uid: 23135 + - uid: 15164 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-32.5 + pos: -24.5,35.5 parent: 2 - - uid: 23136 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 3516 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-28.5 + pos: 43.5,-22.5 parent: 2 - - uid: 23137 + - uid: 7603 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-28.5 - parent: 2 - - uid: 23138 - components: - - type: Transform - pos: 0.5,-28.5 + pos: 22.5,-37.5 parent: 2 - - uid: 23139 + - uid: 7604 components: - type: Transform - pos: -0.5,-28.5 + rot: 1.5707963267948966 rad + pos: 22.5,-36.5 parent: 2 - - uid: 23140 +- proto: WindoorSecureJanitorLocked + entities: + - uid: 3517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-24.5 + rot: 3.141592653589793 rad + pos: -16.5,-28.5 parent: 2 - - uid: 23141 + - uid: 3518 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-24.5 + pos: -15.5,-28.5 parent: 2 - - uid: 23142 + - uid: 4460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-24.5 + rot: 1.5707963267948966 rad + pos: -22.5,-27.5 parent: 2 - - uid: 23143 + - uid: 20314 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-24.5 + pos: -22.5,-26.5 parent: 2 - - uid: 23144 + - uid: 20315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-20.5 + rot: 1.5707963267948966 rad + pos: -22.5,-25.5 parent: 2 - - uid: 23145 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 4676 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-20.5 + pos: 54.5,1.5 parent: 2 - - uid: 23146 + - uid: 5773 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-20.5 + pos: 46.5,3.5 parent: 2 - - uid: 23147 + - uid: 5979 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-20.5 + rot: -1.5707963267948966 rad + pos: 44.5,2.5 parent: 2 - - uid: 23148 + - uid: 5980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-20.5 + rot: -1.5707963267948966 rad + pos: 44.5,3.5 parent: 2 - - uid: 23149 + - uid: 5981 components: - type: Transform - pos: -3.5,-20.5 + rot: -1.5707963267948966 rad + pos: 44.5,1.5 parent: 2 - - uid: 23150 + - uid: 6905 components: - type: Transform - pos: -4.5,-20.5 + pos: 59.5,18.5 parent: 2 - - uid: 23151 + - uid: 6960 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-20.5 + pos: 58.5,19.5 parent: 2 - - uid: 23152 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 5542 components: - type: Transform - pos: 1.5,-10.5 + rot: 1.5707963267948966 rad + pos: 32.5,20.5 parent: 2 - - uid: 23153 + - uid: 5543 components: - type: Transform - pos: 0.5,-10.5 + rot: 1.5707963267948966 rad + pos: 32.5,21.5 parent: 2 - - uid: 23154 +- proto: WindoorSecureScienceLocked + entities: + - uid: 7147 components: - type: Transform - pos: -0.5,-10.5 + rot: 3.141592653589793 rad + pos: 58.5,-15.5 parent: 2 - - uid: 23155 + - uid: 7150 components: - type: Transform - pos: -1.5,-10.5 + rot: 3.141592653589793 rad + pos: 59.5,-15.5 parent: 2 - - uid: 23156 + - uid: 7151 components: - type: Transform - pos: -0.5,-18.5 + rot: 3.141592653589793 rad + pos: 60.5,-15.5 parent: 2 - - uid: 23157 + - uid: 7259 components: - type: Transform - pos: 0.5,-18.5 + rot: -1.5707963267948966 rad + pos: 67.5,-9.5 parent: 2 - - uid: 23158 + - uid: 7260 components: - type: Transform - pos: 1.5,-18.5 + rot: -1.5707963267948966 rad + pos: 67.5,-7.5 parent: 2 - - uid: 23159 + - uid: 7263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-18.5 + rot: 1.5707963267948966 rad + pos: 71.5,-9.5 parent: 2 - - uid: 23160 + - uid: 8184 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-18.5 + rot: -1.5707963267948966 rad + pos: 67.5,-8.5 parent: 2 - - uid: 23161 +- proto: WindoorServiceLocked + entities: + - uid: 3716 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-18.5 + pos: -43.5,11.5 parent: 2 - - uid: 23162 + - uid: 4528 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-18.5 + rot: -1.5707963267948966 rad + pos: -59.5,-28.5 parent: 2 - - uid: 23163 + - uid: 4637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 + pos: -53.5,-26.5 parent: 2 - - uid: 23164 +- proto: WindoorTheatreLocked + entities: + - uid: 3519 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,7.5 + pos: -19.5,4.5 parent: 2 - - uid: 23165 +- proto: WindowDirectional + entities: + - uid: 3527 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,7.5 + pos: -19.5,-8.5 parent: 2 - - uid: 23166 + - uid: 3528 components: - type: Transform - pos: 0.5,7.5 + rot: 1.5707963267948966 rad + pos: -19.5,-10.5 parent: 2 - - uid: 23167 + - uid: 15004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,7.5 + pos: -34.5,22.5 parent: 2 - - uid: 23168 + - uid: 16198 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,14.5 + pos: 79.5,-24.5 parent: 2 - - uid: 23169 + - uid: 16401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 + rot: 1.5707963267948966 rad + pos: 52.5,22.5 parent: 2 - - uid: 23170 + - uid: 16647 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,0.5 - parent: 2 - - uid: 23171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,0.5 + pos: 14.5,36.5 parent: 2 - - uid: 23172 +- proto: WindowFrostedDirectional + entities: + - uid: 3733 components: - type: Transform - pos: 7.5,0.5 + pos: -44.5,11.5 parent: 2 - - uid: 23173 + - uid: 3734 components: - type: Transform - pos: 0.5,-6.5 + pos: -42.5,11.5 parent: 2 - - uid: 23174 + - uid: 3736 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-6.5 + pos: -45.5,9.5 parent: 2 - - uid: 23175 +- proto: WindowReinforcedDirectional + entities: + - uid: 2011 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-6.5 + pos: 1.5,48.5 parent: 2 - - uid: 23176 + - uid: 2090 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-6.5 + pos: 38.5,-30.5 parent: 2 - - uid: 23177 + - uid: 2144 components: - type: Transform - pos: -14.5,-41.5 + pos: 27.5,-44.5 parent: 2 - - uid: 23178 + - uid: 2280 components: - type: Transform - pos: -13.5,-41.5 + rot: 3.141592653589793 rad + pos: 34.5,-37.5 parent: 2 - - uid: 23179 + - uid: 3160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-41.5 + pos: -4.5,-11.5 parent: 2 - - uid: 23180 + - uid: 3474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-41.5 + pos: -21.5,10.5 parent: 2 - - uid: 23181 + - uid: 3531 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-41.5 + pos: -8.5,-17.5 parent: 2 - - uid: 23182 + - uid: 3532 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-41.5 + pos: -9.5,-17.5 parent: 2 - - uid: 23183 + - uid: 3533 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-41.5 + rot: 1.5707963267948966 rad + pos: -7.5,-21.5 parent: 2 - - uid: 23184 + - uid: 3534 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-41.5 + rot: 1.5707963267948966 rad + pos: -7.5,-23.5 parent: 2 - - uid: 23185 + - uid: 3535 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-47.5 + pos: 42.5,-23.5 parent: 2 - - uid: 23186 + - uid: 3536 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-46.5 + pos: 42.5,-24.5 parent: 2 - - uid: 23187 + - uid: 3537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-47.5 + pos: -38.5,5.5 parent: 2 - - uid: 23188 + - uid: 3538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-46.5 + pos: -37.5,5.5 parent: 2 - - uid: 23189 + - uid: 3539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-47.5 + rot: 1.5707963267948966 rad + pos: -27.5,6.5 parent: 2 - - uid: 23190 + - uid: 3540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-46.5 + pos: -27.5,5.5 parent: 2 - - uid: 23191 + - uid: 3541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-47.5 + rot: 1.5707963267948966 rad + pos: -27.5,5.5 parent: 2 - - uid: 23192 + - uid: 3542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-46.5 + pos: -28.5,5.5 parent: 2 - - uid: 23193 + - uid: 3543 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-46.5 + pos: -27.5,7.5 parent: 2 - - uid: 23194 + - uid: 3544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-47.5 + pos: -29.5,5.5 parent: 2 - - uid: 23195 + - uid: 3545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-46.5 + pos: -39.5,5.5 parent: 2 - - uid: 23196 + - uid: 3546 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-47.5 + pos: -23.5,4.5 parent: 2 - - uid: 23197 + - uid: 3547 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-46.5 + pos: -23.5,5.5 parent: 2 - - uid: 23198 + - uid: 3548 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-47.5 + pos: -23.5,6.5 parent: 2 - - uid: 23199 + - uid: 3549 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-46.5 + pos: -23.5,7.5 parent: 2 - - uid: 23200 + - uid: 3550 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-47.5 + pos: -38.5,-33.5 parent: 2 - - uid: 23201 + - uid: 3551 components: - type: Transform - pos: -17.5,-44.5 + pos: -26.5,-38.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-36.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,4.5 parent: 2 - - uid: 23202 + - uid: 3554 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-44.5 + pos: -50.5,4.5 parent: 2 - - uid: 23203 + - uid: 3555 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-43.5 + pos: -50.5,-1.5 parent: 2 - - uid: 23204 + - uid: 3556 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-43.5 + rot: 1.5707963267948966 rad + pos: -43.5,-1.5 parent: 2 - - uid: 23205 + - uid: 4346 components: - type: Transform - pos: -45.5,-40.5 + rot: 1.5707963267948966 rad + pos: 22.5,14.5 parent: 2 - - uid: 23206 + - uid: 4359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-40.5 + pos: 39.5,-2.5 parent: 2 - - uid: 23207 + - uid: 4419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-39.5 + rot: 3.141592653589793 rad + pos: -44.5,-15.5 parent: 2 - - uid: 23208 + - uid: 4420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-39.5 + pos: -44.5,-17.5 parent: 2 - - uid: 23209 + - uid: 4428 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,-40.5 + pos: -50.5,-15.5 parent: 2 - - uid: 23210 + - uid: 4430 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-39.5 + pos: -48.5,-15.5 parent: 2 - - uid: 23211 + - uid: 4524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-40.5 + pos: -59.5,-27.5 parent: 2 - - uid: 23212 + - uid: 4583 components: - type: Transform - pos: -49.5,-40.5 + rot: 1.5707963267948966 rad + pos: 40.5,-27.5 parent: 2 - - uid: 23213 + - uid: 4595 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-37.5 + pos: 46.5,-33.5 parent: 2 - - uid: 23214 + - uid: 4596 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-37.5 + rot: 1.5707963267948966 rad + pos: 34.5,-33.5 parent: 2 - - uid: 23215 + - uid: 4597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-37.5 + rot: 3.141592653589793 rad + pos: 46.5,-37.5 parent: 2 - - uid: 23238 + - uid: 4598 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,19.5 + pos: 42.5,-37.5 parent: 2 - - uid: 23239 + - uid: 4599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,19.5 + rot: 3.141592653589793 rad + pos: 38.5,-37.5 parent: 2 - - uid: 23240 + - uid: 4600 components: - type: Transform - pos: 41.5,19.5 + rot: 1.5707963267948966 rad + pos: 37.5,-32.5 parent: 2 - - uid: 23241 + - uid: 4601 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,24.5 + pos: 43.5,-32.5 parent: 2 - - uid: 23242 + - uid: 4602 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,24.5 + pos: 38.5,-38.5 parent: 2 - - uid: 23243 + - uid: 4603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,24.5 + pos: 42.5,-38.5 parent: 2 - - uid: 23244 + - uid: 4604 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,23.5 + pos: 48.5,-38.5 parent: 2 - - uid: 23245 + - uid: 4605 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,28.5 + pos: 32.5,-38.5 parent: 2 - - uid: 23246 + - uid: 4636 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,28.5 + rot: 1.5707963267948966 rad + pos: -54.5,-26.5 parent: 2 - - uid: 23247 + - uid: 4638 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,28.5 + rot: -1.5707963267948966 rad + pos: -56.5,-26.5 parent: 2 - - uid: 23248 + - uid: 4966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,28.5 + rot: -1.5707963267948966 rad + pos: 3.5,25.5 parent: 2 - - uid: 23249 + - uid: 4967 components: - type: Transform - pos: 56.5,28.5 + rot: -1.5707963267948966 rad + pos: 3.5,26.5 parent: 2 - - uid: 23250 + - uid: 5075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,28.5 + rot: 1.5707963267948966 rad + pos: 5.5,33.5 parent: 2 - - uid: 23251 + - uid: 5079 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,20.5 + pos: 2.5,32.5 parent: 2 - - uid: 23252 + - uid: 5118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,20.5 + rot: -1.5707963267948966 rad + pos: 46.5,15.5 parent: 2 - - uid: 23253 + - uid: 5453 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,20.5 + pos: 22.5,13.5 parent: 2 - - uid: 23254 + - uid: 5654 components: - type: Transform - pos: 68.5,20.5 + pos: 1.5,50.5 parent: 2 - - uid: 23255 + - uid: 5734 components: - type: Transform - pos: 68.5,20.5 + rot: -1.5707963267948966 rad + pos: 34.5,17.5 parent: 2 - - uid: 23256 + - uid: 5975 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,13.5 - parent: 2 - - uid: 23257 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,13.5 + pos: 45.5,3.5 parent: 2 - - uid: 23258 + - uid: 5976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,14.5 + pos: 44.5,1.5 parent: 2 - - uid: 23259 + - uid: 5977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,15.5 + rot: 3.141592653589793 rad + pos: 45.5,3.5 parent: 2 - - uid: 23260 + - uid: 5978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,16.5 + rot: 3.141592653589793 rad + pos: 44.5,3.5 parent: 2 - - uid: 23261 + - uid: 6699 components: - type: Transform - pos: 73.5,2.5 + rot: 3.141592653589793 rad + pos: 50.5,-5.5 parent: 2 - - uid: 23262 + - uid: 6700 components: - type: Transform - pos: 72.5,2.5 + pos: 50.5,-3.5 parent: 2 - - uid: 23263 + - uid: 6745 components: - type: Transform - pos: 73.5,6.5 + rot: 3.141592653589793 rad + pos: 54.5,11.5 parent: 2 - - uid: 23264 + - uid: 6907 components: - type: Transform - pos: 72.5,6.5 + pos: 57.5,18.5 parent: 2 - - uid: 23265 + - uid: 6908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,6.5 + pos: 58.5,18.5 parent: 2 - - uid: 23266 + - uid: 6910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,4.5 + pos: 60.5,18.5 parent: 2 - - uid: 23267 + - uid: 6911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,2.5 + pos: 61.5,18.5 parent: 2 - - uid: 23268 + - uid: 6959 components: - type: Transform rot: -1.5707963267948966 rad - pos: 72.5,0.5 + pos: 58.5,18.5 parent: 2 - - uid: 23269 + - uid: 7231 components: - type: Transform rot: 3.141592653589793 rad - pos: 73.5,2.5 + pos: 67.5,-10.5 parent: 2 - - uid: 23270 + - uid: 7233 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,2.5 + pos: 71.5,-10.5 parent: 2 - - uid: 23271 + - uid: 7234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,4.5 + rot: 1.5707963267948966 rad + pos: 71.5,-8.5 parent: 2 - - uid: 23272 + - uid: 7235 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,4.5 + rot: 1.5707963267948966 rad + pos: 71.5,-7.5 parent: 2 - - uid: 23273 + - uid: 7289 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,6.5 + rot: 1.5707963267948966 rad + pos: 38.5,-28.5 parent: 2 - - uid: 23274 + - uid: 7345 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,6.5 + pos: -3.5,-11.5 parent: 2 - - uid: 23275 + - uid: 7434 components: - type: Transform rot: 3.141592653589793 rad - pos: 73.5,0.5 + pos: 68.5,-27.5 parent: 2 - - uid: 23276 + - uid: 7435 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,0.5 - parent: 2 - - uid: 23277 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,0.5 + pos: 71.5,-27.5 parent: 2 - - uid: 23278 + - uid: 7581 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,2.5 + pos: 22.5,-38.5 parent: 2 - - uid: 23279 + - uid: 7582 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,4.5 + pos: 22.5,-35.5 parent: 2 - - uid: 23280 + - uid: 7700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,6.5 + rot: -1.5707963267948966 rad + pos: 26.5,-44.5 parent: 2 - - uid: 23281 + - uid: 7701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-5.5 + rot: -1.5707963267948966 rad + pos: 26.5,-43.5 parent: 2 - - uid: 23282 + - uid: 7702 components: - type: Transform - pos: 77.5,-5.5 + rot: -1.5707963267948966 rad + pos: 26.5,-41.5 parent: 2 - - uid: 23283 + - uid: 7703 components: - type: Transform rot: -1.5707963267948966 rad - pos: 77.5,-5.5 + pos: 26.5,-46.5 parent: 2 - - uid: 23284 + - uid: 7932 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,-5.5 + pos: -11.5,-40.5 parent: 2 - - uid: 23285 + - uid: 8006 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-4.5 + rot: -1.5707963267948966 rad + pos: -6.5,43.5 parent: 2 - - uid: 23286 + - uid: 8435 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-4.5 + pos: 38.5,-30.5 parent: 2 - - uid: 23287 + - uid: 9185 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,-4.5 + pos: -25.5,28.5 parent: 2 - - uid: 23288 + - uid: 9271 components: - type: Transform - pos: 82.5,-4.5 + rot: -1.5707963267948966 rad + pos: 1.5,-17.5 parent: 2 - - uid: 23289 + - uid: 9272 components: - type: Transform - pos: 81.5,-4.5 + rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 2 + - uid: 12695 + components: + - type: Transform + pos: 38.5,-28.5 parent: 2 - - uid: 23290 + - uid: 12705 components: - type: Transform rot: -1.5707963267948966 rad - pos: 81.5,-4.5 + pos: 38.5,-30.5 parent: 2 - - uid: 23295 + - uid: 12805 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,-21.5 + pos: -10.5,-40.5 parent: 2 - - uid: 23296 + - uid: 13490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-21.5 + pos: 39.5,-28.5 parent: 2 - - uid: 23297 + - uid: 14260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-21.5 + rot: -1.5707963267948966 rad + pos: 46.5,16.5 parent: 2 - - uid: 23298 + - uid: 15193 components: - type: Transform - pos: 54.5,-21.5 + rot: 3.141592653589793 rad + pos: -30.5,-1.5 parent: 2 - - uid: 23299 + - uid: 15404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-21.5 + pos: -20.5,10.5 parent: 2 - - uid: 23300 + - uid: 15602 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,-21.5 + pos: 53.5,1.5 parent: 2 - - uid: 23301 + - uid: 15843 components: - type: Transform - pos: -3.5,22.5 + rot: -1.5707963267948966 rad + pos: -27.5,34.5 parent: 2 - - uid: 23302 + - uid: 15844 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,22.5 + pos: -27.5,35.5 parent: 2 - - uid: 23303 + - uid: 16322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,22.5 + rot: 1.5707963267948966 rad + pos: 80.5,-7.5 parent: 2 - - uid: 23304 + - uid: 16323 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,22.5 + rot: 1.5707963267948966 rad + pos: 80.5,-5.5 parent: 2 - - uid: 23305 + - uid: 16662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,22.5 + pos: 44.5,-20.5 parent: 2 - - uid: 23306 + - uid: 16663 components: - type: Transform - pos: -0.5,22.5 + pos: 43.5,-20.5 + parent: 2 + - uid: 17484 + components: + - type: Transform + pos: 42.5,-20.5 parent: 2 - - uid: 23307 + - uid: 19757 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,28.5 + pos: 38.5,-28.5 parent: 2 - - uid: 23308 + - uid: 20306 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,28.5 + pos: 41.5,-20.5 parent: 2 - - uid: 23309 + - uid: 20307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,28.5 + pos: 40.5,-20.5 parent: 2 - - uid: 23310 + - uid: 20515 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,27.5 + pos: -10.5,-39.5 parent: 2 - - uid: 23313 + - uid: 20881 components: - type: Transform - pos: 17.5,-48.5 + rot: 3.141592653589793 rad + pos: 14.5,-64.5 parent: 2 - - uid: 23314 + - uid: 21185 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-48.5 + pos: -32.5,-2.5 parent: 2 - - uid: 23315 + - uid: 21402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-47.5 + rot: 3.141592653589793 rad + pos: 23.5,-53.5 parent: 2 - - uid: 23316 + - uid: 21416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-47.5 + pos: 9.5,-47.5 parent: 2 - - uid: 23317 + - uid: 21421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-39.5 + pos: 7.5,-47.5 parent: 2 - - uid: 23318 + - uid: 21553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-40.5 + rot: 3.141592653589793 rad + pos: 27.5,-43.5 parent: 2 - - uid: 23319 + - uid: 21561 components: - type: Transform - pos: -0.5,-40.5 + pos: -1.5,-9.5 parent: 2 - - uid: 23320 + - uid: 21562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-40.5 + pos: -0.5,-9.5 parent: 2 - - uid: 23321 + - uid: 21563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-39.5 + pos: 0.5,-9.5 parent: 2 - - uid: 23322 + - uid: 21564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-39.5 + pos: 1.5,-9.5 parent: 2 - - uid: 23323 + - uid: 21565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-40.5 + pos: 2.5,-9.5 parent: 2 - - uid: 23324 + - uid: 21646 components: - type: Transform - pos: 2.5,-40.5 + rot: 1.5707963267948966 rad + pos: 3.5,43.5 parent: 2 - - uid: 23325 + - uid: 21752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-42.5 + pos: 47.5,15.5 parent: 2 - - uid: 23326 + - uid: 21846 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-42.5 + pos: 55.5,1.5 parent: 2 - - uid: 23327 + - uid: 21847 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-42.5 + rot: 1.5707963267948966 rad + pos: 55.5,1.5 parent: 2 - - uid: 23328 + - uid: 21939 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-42.5 + pos: -31.5,-1.5 parent: 2 - - uid: 23329 + - uid: 22366 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-42.5 + pos: -4.5,40.5 + parent: 2 + - uid: 22410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,40.5 + parent: 2 + - uid: 22487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-34.5 + parent: 2 + - uid: 22488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-36.5 parent: 2 - proto: WoodDoor entities: From 33042b00d0fa64e2880acecd7430c425caf3e8f4 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Tue, 8 Oct 2024 11:50:54 +0200 Subject: [PATCH 195/213] Fix cryo locale again (#32654) * Fix cryo locale again * yeep --- Content.Server/Bed/Cryostorage/CryostorageSystem.cs | 2 +- Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs index cd4aa4a0981aac..345f51783ca460 100644 --- a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs +++ b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs @@ -239,7 +239,7 @@ public void HandleEnterCryostorage(Entity ent, Ne Loc.GetString( "earlyleave-cryo-announcement", ("character", name), - ("entity", ent.Owner), + ("entity", ent.Owner), // gender things for supporting downstreams with other languages ("job", CultureInfo.CurrentCulture.TextInfo.ToTitleCase(jobName)) ), Loc.GetString("earlyleave-cryo-sender"), playDefaultSound: false diff --git a/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl b/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl index 7d1c07944356ed..f966f30e2d4fcd 100644 --- a/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl +++ b/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl @@ -2,5 +2,6 @@ ### Announcement earlyleave-cryo-job-unknown = Unknown -earlyleave-cryo-announcement = {$character} ({$job}) { CONJUGATE-HAVE($entity) } entered cryogenic storage! +# {$entity} available for GENDER function purposes +earlyleave-cryo-announcement = {$character} ({$job}) has entered cryogenic storage! earlyleave-cryo-sender = Station From 922dd0bce6519d0af35a9bfbc2360c32893b4cbc Mon Sep 17 00:00:00 2001 From: shamp <140359015+shampunj@users.noreply.github.com> Date: Tue, 8 Oct 2024 12:51:23 +0300 Subject: [PATCH 196/213] Fix cloth dupe (#32685) Update curtains.yml --- .../Prototypes/Entities/Structures/Decoration/curtains.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml b/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml index 1d5069c7da8cf1..fc7fe23bb87c90 100644 --- a/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml +++ b/Resources/Prototypes/Entities/Structures/Decoration/curtains.yml @@ -49,7 +49,7 @@ spawn: MaterialCloth1: min: 1 - max: 2 + max: 1 - type: WallMount arc: 360 From 1f04117edf71b5f3871a18de50e83ad240fdebcb Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 8 Oct 2024 09:52:31 +0000 Subject: [PATCH 197/213] 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 62ef075a6c6251..25a65785d473c8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Moved VGRoid from 1,000m away to ~500m. - type: Tweak - id: 6993 - time: '2024-07-28T03:14:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29943 - author: lzk228 changes: - message: Fixed pancakes stacks. Before it, splitting not default pancakes stacks @@ -3943,3 +3936,10 @@ id: 7492 time: '2024-10-07T22:42:43.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32429 +- author: shampunj + changes: + - message: When curtains are destroyed, only 1 cloth drops out + type: Tweak + id: 7493 + time: '2024-10-08T09:51:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32685 From 0e0887bd49beae005584db0c0ff632fe442d0b4b Mon Sep 17 00:00:00 2001 From: averystarbit Date: Tue, 8 Oct 2024 09:52:46 +0000 Subject: [PATCH 198/213] Added proper capitalisation for supervisors when entering the game (#32683) changed punctuation for jobs, added proper capitalization and comma usa --- .../Locale/en-US/job/job-supervisors.ftl | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Resources/Locale/en-US/job/job-supervisors.ftl b/Resources/Locale/en-US/job/job-supervisors.ftl index d92065a40b1e96..c7eedfd246ff41 100644 --- a/Resources/Locale/en-US/job/job-supervisors.ftl +++ b/Resources/Locale/en-US/job/job-supervisors.ftl @@ -1,15 +1,15 @@ job-supervisors-centcom = Central Command -job-supervisors-captain = the captain -job-supervisors-hop = the head of personnel -job-supervisors-hos = the head of security -job-supervisors-ce = the chief engineer -job-supervisors-cmo = the chief medical officer -job-supervisors-rd = the research director -job-supervisors-qm = the quartermaster -job-supervisors-service = chefs, botanists, the bartender, and the head of personnel -job-supervisors-engineering = station engineers, atmospheric technicians, and the chief engineer -job-supervisors-medicine = medical doctors, chemists, and the chief medical officer -job-supervisors-security = security officers, the warden, and the head of security -job-supervisors-science = scientists, and the research director +job-supervisors-captain = the Captain +job-supervisors-hop = the Head of Personnel +job-supervisors-hos = the Head of Security +job-supervisors-ce = the Chief Engineer +job-supervisors-cmo = the Chief Medical Officer +job-supervisors-rd = the Research Director +job-supervisors-qm = the Quartermaster +job-supervisors-service = Chefs, Botanists, the Bartender, and the Head of Personnel +job-supervisors-engineering = Station Engineers, Atmospheric Technicians, and the Chief Engineer +job-supervisors-medicine = Medical Doctors, Paramedics, Chemists, and the Chief Medical Officer +job-supervisors-security = Security Officers, the Warden, and the Head of Security +job-supervisors-science = Scientists and the Research Director job-supervisors-hire = whoever hires you job-supervisors-everyone = absolutely everyone From 1366f6b405195efa7ba73041c2e06df0f37d1d3f Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Tue, 8 Oct 2024 02:53:50 -0700 Subject: [PATCH 199/213] Replace the Librarian's round-start D10 with a D20 (#32648) Replace D10 with a D20 --- Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml index d865d57cab3cee..61f0ea1d321e4b 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml @@ -16,7 +16,7 @@ shoes: ClothingShoesBootsLaceup id: LibrarianPDA ears: ClothingHeadsetService - pocket1: d10Dice + pocket1: d20Dice pocket2: HandLabeler # for making named bestsellers storage: back: From 28f576dae87bb6f696ce359d969058fbd34d8d88 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 8 Oct 2024 09:54:56 +0000 Subject: [PATCH 200/213] 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 25a65785d473c8..29e83767117f8f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Fixed pancakes stacks. Before it, splitting not default pancakes stacks - would give you default pancakes. - type: Fix - id: 6994 - time: '2024-07-28T03:49:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30270 - author: Plykiya changes: - message: Fixed the client mispredicting people slipping with their magboots turned @@ -3943,3 +3935,10 @@ id: 7493 time: '2024-10-08T09:51:23.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32685 +- author: Plykiya + changes: + - message: Librarians now start with a D20. + type: Tweak + id: 7494 + time: '2024-10-08T09:53:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32648 From 6f9b4f42267814b73feda51cd2e15bff765a872e Mon Sep 17 00:00:00 2001 From: K-Dynamic <20566341+K-Dynamic@users.noreply.github.com> Date: Wed, 9 Oct 2024 06:29:37 +1200 Subject: [PATCH 201/213] CHIMP and APE particle speed increase (#32690) * swap omega and delta particle colours * remove upgrade doafter * explicit syndicate chip description * Syndicate CHIMP stealth * fast projectile speed * 10 to 12 shots * buff heat dmg * upgrade chip mentions omega particle * Revert "remove upgrade doafter" This reverts commit 8a321980b7a384daca06215656494e0c116e7333. * Revert "explicit syndicate chip description" This reverts commit c803c773739a61fc5b3a6cb90810622a6d5846c9. * Revert "Syndicate CHIMP stealth" This reverts commit 698a108580892addabf8d51494a72e1ee651b8e6. * Revert "10 to 12 shots" This reverts commit 858ac0392be0549eb0a288648413d1020cabae1a. * Revert "swap omega and delta particle colours" This reverts commit 4c000b2f110a5d35f317cb61cb5b03ea32841ad5. * Revert "buff heat dmg" This reverts commit 02a8690dafbd41631b098e51ef9afba5b6ee6ac4. --- .../Entities/Objects/Weapons/Guns/Battery/battery_guns.yml | 2 +- .../Entities/Structures/Machines/anomaly_equipment.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index 92c952671f2610..e7fef78f809afa 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -647,7 +647,7 @@ - type: Clothing sprite: Objects/Weapons/Guns/Revolvers/chimp.rsi - type: Gun - projectileSpeed: 4 + projectileSpeed: 10 fireRate: 1.5 soundGunshot: path: /Audio/Weapons/Guns/Gunshots/taser2.ogg diff --git a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml index 4d4eff1f70294f..1761f176da7926 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml @@ -184,7 +184,7 @@ guides: - APE - type: Gun - projectileSpeed: 4 + projectileSpeed: 10 fireRate: 10 #just has to be fast enough to keep up with upgrades showExamineText: false selectedMode: SemiAuto From dc2899c274341db8b0384944a5dce6849b113c9b Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 8 Oct 2024 18:30:44 +0000 Subject: [PATCH 202/213] 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 29e83767117f8f..898a69c3c2a8f7 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: Fixed the client mispredicting people slipping with their magboots turned - on - type: Fix - id: 6995 - time: '2024-07-28T06:17:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30425 - author: Katzenminer changes: - message: Pun and similar pets are no longer firemune @@ -3942,3 +3934,10 @@ id: 7494 time: '2024-10-08T09:53:50.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32648 +- author: K-Dynamic + changes: + - message: CHIMP and APE particles should be almost as fast as before + type: Tweak + id: 7495 + time: '2024-10-08T18:29:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32690 From 384ff7e8f614e47efdc4eeaf39b3067a614001bd Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Tue, 8 Oct 2024 16:29:41 -0700 Subject: [PATCH 203/213] Add pumpkin pie! (#32623) * first commit * Licence fix * rosysyntax licence change (permission granted!) * simplify * Better wording --- .../Objects/Consumable/Food/Baked/pie.yml | 39 +++++++++++++++++- .../Recipes/Cooking/meal_recipes.yml | 12 +++++- .../Consumable/Food/Baked/pie.rsi/meta.json | 8 +++- .../Food/Baked/pie.rsi/pumpkin-slice.png | Bin 0 -> 499 bytes .../Consumable/Food/Baked/pie.rsi/pumpkin.png | Bin 0 -> 600 bytes 5 files changed, 56 insertions(+), 3 deletions(-) create mode 100644 Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin-slice.png create mode 100644 Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin.png diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml index c9ac4833431579..b86a4201e8b797 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml @@ -23,7 +23,7 @@ - ReagentId: Vitamin Quantity: 5 - type: Food #All pies here made with a pie tin; unless you're some kind of savage, you're probably not destroying this when you eat or slice the pie! - trash: + trash: - FoodPlateTin - type: SliceableFood count: 4 @@ -317,6 +317,43 @@ - Slice # Tastes like pie, meat. +- type: entity + name: pumpkin pie + parent: FoodPieBase + id: FoodPiePumpkin + description: Someone should turn this into a latte! + components: + - type: FlavorProfile + flavors: + - sweet + - pumpkin + - type: Sprite + layers: + - state: tin + - state: pumpkin + - type: SliceableFood + slice: FoodPiePumpkinSlice + - type: Tag + tags: + - Pie + +- type: entity + name: slice of pumpkin pie + parent: FoodPieSliceBase + id: FoodPiePumpkinSlice + components: + - type: FlavorProfile + flavors: + - sweet + - pumpkin + - type: Sprite + layers: + - state: pumpkin-slice + - type: Tag + tags: + - Pie + - Slice + - type: entity name: xeno pie parent: FoodPieBase diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 8dc25c1c7251dd..fa2b6573915d8b 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -1062,6 +1062,16 @@ FoodMeat: 3 FoodPlateTin: 1 +- type: microwaveMealRecipe + id: RecipePumpkinPie + name: pumpkin pie recipe + result: FoodPiePumpkin + time: 15 + solids: + FoodDoughPie: 1 + FoodPumpkin: 1 + FoodPlateTin: 1 + #- type: microwaveMealRecipe # id: RecipePlumpPie # name: plump pie recipe @@ -1978,4 +1988,4 @@ solids: FoodCroissantRaw: 1 FoodButterSlice: 1 - ShardGlass: 1 \ No newline at end of file + ShardGlass: 1 diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/meta.json index ced8d583736c3a..644424690dbd52 100644 --- a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, mime tart slice and banana cream pie slice from rosysyntax under under CC BY-SA 4.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, the pumpkin and pumpkin slice are made by ss14nekow (Mute Maid), the mime tart slice and banana cream pie slice are made by rosysyntax.", "size": { "x": 32, "y": 32 @@ -95,6 +95,12 @@ { "name": "plump" }, + { + "name": "pumpkin" + }, + { + "name": "pumpkin-slice" + }, { "name": "tin" }, diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin-slice.png b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin-slice.png new file mode 100644 index 0000000000000000000000000000000000000000..e462de6b654c318147b680e25f1059c62f28de44 GIT binary patch literal 499 zcmVtLEM_DRCyT3p|q;m_xz4EJ|^V$f+k4_5M|NfoA);n`O zj10ejd}h#{{1vYqEO4C!7>q&;3_=1t3@vVfgmr z7uaGc?k^17Tx<+qzkO!lWs?M&dIzt`L`A`^w*p{8-hKGOAgsj0ux8#=utRK$Yr#GS zSq_Q%13-#FX#o@!AiyVS$8h@4B?gK2?-*e54GMB%d<`)HLXzYFkQU^SczEtPgTNng zumd!@Uyy7T$UL$%!5ktg@sZ*63x0;s*6U=O12StAjE2By2#kin$PNJj&Z~-Q6TnoW p0000EWmrjOO-%qQ00008000000002eQ_Y literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin.png b/Resources/Textures/Objects/Consumable/Food/Baked/pie.rsi/pumpkin.png new file mode 100644 index 0000000000000000000000000000000000000000..f2f18879448f8ef498b1765d6515bd676932c3bf GIT binary patch literal 600 zcmV-e0;m0nP)rD(u{f{TJ#^gopNCls<0x(U=j(NO#YuF4246e@HP zQ1Am$D6KjJ)e<2SDrz#$xfpR_Cdt}&A@9A+JNKS*&&&l>C1NZ#9R$S&uI zCwCXRCs+z*ZYvR?0@z;vxFH2kt3IB@xfZCvjd&g5*~h75UK-<}w_| zk^P~isXf_jRx?dgThNL%^UWNtc1uFS?im!(8+6T}Fb2sfL@+N#;r{%NPkv5!T^F`( zKlm*)6~KZNk;!C`bqm*l2yu%-NJuj7_k{@g#4Dzf{M0t{gQZfbDLHYW0tlc8;?n7~ zZx{x0&wtb#W605Ca3mXJSo|}q)AF#cCFyo)DWCzq6~e!KHS*Z9ET3elR0`#CnWU^I zR@1pwBPhkBQU?piDzNpAh^c(Pfxt*WT5pH613Cp&4k!nd1CPLg8&)pjkcyO^p8x;= m4rN$LW=%~1DgXcg2mk;800000(o>TF0000 Date: Tue, 8 Oct 2024 23:30:49 +0000 Subject: [PATCH 204/213] 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 898a69c3c2a8f7..1b358b481e5482 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Katzenminer - changes: - - message: Pun and similar pets are no longer firemune - type: Fix - id: 6996 - time: '2024-07-28T08:32:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30424 - author: lzk228 changes: - message: Fixed permanent absence of the approver string in cargo invoice. @@ -3941,3 +3934,11 @@ id: 7495 time: '2024-10-08T18:29:37.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32690 +- author: ss14nekow + changes: + - message: Added pumpkin pie! Can be made in the microwave with 1 pie tin, 1 pie + dough, and 1 pumpkin. + type: Add + id: 7496 + time: '2024-10-08T23:29:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32623 From 1dbbf315c7d4b3d5b2d8b35b48b7fccfcc1409fc Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Wed, 9 Oct 2024 13:41:03 +0200 Subject: [PATCH 205/213] Update submodule to v236.1.0 (#32704) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 1c3ea968e4ab66..d1d43f834b8845 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 1c3ea968e4ab66d57ffe014f6ee207e4d0d2c403 +Subproject commit d1d43f834b8845da698ef1898e8191ab159ee367 From ddaa0e83c6b055a0b2d162af7d2f04b8a6fec1c5 Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Wed, 9 Oct 2024 13:55:48 +0200 Subject: [PATCH 206/213] Add admin log for codewords (#32531) * initial commit * Delta review --- Content.Server/GameTicking/Rules/TraitorRuleSystem.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs index 4e4191a51bfbef..56b652ed9a07e8 100644 --- a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs @@ -1,3 +1,4 @@ +using Content.Server.Administration.Logs; using Content.Server.Antag; using Content.Server.GameTicking.Rules.Components; using Content.Server.Mind; @@ -5,6 +6,7 @@ using Content.Server.PDA.Ringer; using Content.Server.Roles; using Content.Server.Traitor.Uplink; +using Content.Shared.Database; using Content.Shared.GameTicking.Components; using Content.Shared.Mind; using Content.Shared.NPC.Systems; @@ -25,6 +27,7 @@ public sealed class TraitorRuleSystem : GameRuleSystem { private static readonly Color TraitorCodewordColor = Color.FromHex("#cc3b3b"); + [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly NpcFactionSystem _npcFaction = default!; @@ -47,7 +50,7 @@ public override void Initialize() protected override void Added(EntityUid uid, TraitorRuleComponent component, GameRuleComponent gameRule, GameRuleAddedEvent args) { base.Added(uid, component, gameRule, args); - SetCodewords(component); + SetCodewords(component, args.RuleEntity); } private void AfterEntitySelected(Entity ent, ref AfterAntagEntitySelectedEvent args) @@ -55,9 +58,10 @@ private void AfterEntitySelected(Entity ent, ref AfterAnta MakeTraitor(args.EntityUid, ent); } - private void SetCodewords(TraitorRuleComponent component) + private void SetCodewords(TraitorRuleComponent component, EntityUid ruleEntity) { component.Codewords = GenerateTraitorCodewords(component); + _adminLogger.Add(LogType.EventStarted, LogImpact.Low, $"Codewords generated for game rule {ToPrettyString(ruleEntity)}: {string.Join(", ", component.Codewords)}"); } public string[] GenerateTraitorCodewords(TraitorRuleComponent component) From b657aba2e1fbb089693fd1bb0220a71e717baba0 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 9 Oct 2024 11:56:57 +0000 Subject: [PATCH 207/213] 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 537c6b09ff5bd2..63fd6cabd2a57a 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -552,5 +552,12 @@ Entries: id: 68 time: '2024-09-23T07:28:42.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32395 +- author: SlamBamActionman + changes: + - message: Added admin logging for generated codewords. + type: Add + id: 69 + time: '2024-10-09T11:55:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32531 Name: Admin Order: 1 From d450b613d6f53d12208220d0655279656a2ba35c Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Wed, 9 Oct 2024 14:41:07 +0200 Subject: [PATCH 208/213] fix typo (#32712) --- .../Prototypes/Entities/Objects/Misc/fire_extinguisher.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml index b306da64421202..b0c586fc7537eb 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml @@ -97,7 +97,7 @@ name: pocket fire extinguisher parent: FireExtinguisher id: FireExtinguisherMini - description: A light and compact fibreglass-framed model fire extinguisher. It holds less water then its bigger brother. + description: A light and compact fibreglass-framed model fire extinguisher. It holds less water than its bigger brother. components: - type: Sprite sprite: Objects/Misc/fire_extinguisher_mini.rsi From 5a41cc81b307e1ea8b82f30392bb5f22ef421716 Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Wed, 9 Oct 2024 05:44:38 -0700 Subject: [PATCH 209/213] Decrease price of radio jammer from 4 tc -> 3 tc (#32472) * First commit * increase price by one tc --- Resources/Prototypes/Catalog/uplink_catalog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index a91aab53c804d2..748a65b761a28f 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -887,7 +887,7 @@ discountDownTo: Telecrystal: 2 cost: - Telecrystal: 4 + Telecrystal: 3 categories: - UplinkDisruption From fc1c709d4421cb2267daf35b50f764629645624b Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 9 Oct 2024 12:45:45 +0000 Subject: [PATCH 210/213] 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 1b358b481e5482..fc57e527ab8e53 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Fixed permanent absence of the approver string in cargo invoice. - type: Fix - id: 6997 - time: '2024-07-29T06:19:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29690 - author: JIPDawg changes: - message: F9 is correctly bound to the Round End Summary window by default now. @@ -3942,3 +3935,10 @@ id: 7496 time: '2024-10-08T23:29:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32623 +- author: Beck Thompson + changes: + - message: The radio jammers price has been decreased from 4 -> 3 TC. + type: Tweak + id: 7497 + time: '2024-10-09T12:44:38.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32472 From 6d9959734928fd6fbd6c7b05baac60106f000bb6 Mon Sep 17 00:00:00 2001 From: chavonadelal <156101927+chavonadelal@users.noreply.github.com> Date: Wed, 9 Oct 2024 18:05:36 +0300 Subject: [PATCH 211/213] Job title localization (#32338) * Job title localization * Correcting fields --- Content.Server/Access/Systems/AgentIDCardSystem.cs | 2 +- Content.Server/Access/Systems/IdCardConsoleSystem.cs | 2 +- Content.Server/IdentityManagement/IdentitySystem.cs | 2 +- Content.Server/Medical/SuitSensors/SuitSensorSystem.cs | 4 ++-- Content.Server/PDA/PdaSystem.cs | 2 +- Content.Shared/Access/Components/IdCardComponent.cs | 7 ++++++- Content.Shared/Access/Systems/IdExaminableSystem.cs | 2 +- Content.Shared/Access/Systems/SharedIdCardSystem.cs | 9 +++++---- Resources/Locale/en-US/job/job-names.ftl | 5 +++++ .../Entities/Objects/Misc/identification_cards.yml | 6 +++--- 10 files changed, 26 insertions(+), 15 deletions(-) diff --git a/Content.Server/Access/Systems/AgentIDCardSystem.cs b/Content.Server/Access/Systems/AgentIDCardSystem.cs index 4de908bc3019a2..a38aefce9354b4 100644 --- a/Content.Server/Access/Systems/AgentIDCardSystem.cs +++ b/Content.Server/Access/Systems/AgentIDCardSystem.cs @@ -67,7 +67,7 @@ private void AfterUIOpen(EntityUid uid, AgentIDCardComponent component, AfterAct if (!TryComp(uid, out var idCard)) return; - var state = new AgentIDCardBoundUserInterfaceState(idCard.FullName ?? "", idCard.JobTitle ?? "", idCard.JobIcon); + var state = new AgentIDCardBoundUserInterfaceState(idCard.FullName ?? "", idCard.LocalizedJobTitle ?? "", idCard.JobIcon); _uiSystem.SetUiState(uid, AgentIDCardUiKey.Key, state); } diff --git a/Content.Server/Access/Systems/IdCardConsoleSystem.cs b/Content.Server/Access/Systems/IdCardConsoleSystem.cs index e02664f2bbdfb9..a9e5d9a6d3ef2c 100644 --- a/Content.Server/Access/Systems/IdCardConsoleSystem.cs +++ b/Content.Server/Access/Systems/IdCardConsoleSystem.cs @@ -96,7 +96,7 @@ private void UpdateUserInterface(EntityUid uid, IdCardConsoleComponent component PrivilegedIdIsAuthorized(uid, component), true, targetIdComponent.FullName, - targetIdComponent.JobTitle, + targetIdComponent.LocalizedJobTitle, targetAccessComponent.Tags.ToList(), possibleAccess, jobProto, diff --git a/Content.Server/IdentityManagement/IdentitySystem.cs b/Content.Server/IdentityManagement/IdentitySystem.cs index e110a42483456a..ff6901f5a92e10 100644 --- a/Content.Server/IdentityManagement/IdentitySystem.cs +++ b/Content.Server/IdentityManagement/IdentitySystem.cs @@ -166,7 +166,7 @@ private IdentityRepresentation GetIdentityRepresentation(EntityUid target, if (_idCard.TryFindIdCard(target, out var id)) { presumedName = string.IsNullOrWhiteSpace(id.Comp.FullName) ? null : id.Comp.FullName; - presumedJob = id.Comp.JobTitle?.ToLowerInvariant(); + presumedJob = id.Comp.LocalizedJobTitle?.ToLowerInvariant(); } // If it didn't find a job, that's fine. diff --git a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs index b1b87ae981d561..f56b16432e1723 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs @@ -363,8 +363,8 @@ public void SetSensor(Entity sensors, SuitSensorMode mode, { if (card.Comp.FullName != null) userName = card.Comp.FullName; - if (card.Comp.JobTitle != null) - userJob = card.Comp.JobTitle; + if (card.Comp.LocalizedJobTitle != null) + userJob = card.Comp.LocalizedJobTitle; userJobIcon = card.Comp.JobIcon; foreach (var department in card.Comp.JobDepartments) diff --git a/Content.Server/PDA/PdaSystem.cs b/Content.Server/PDA/PdaSystem.cs index cdcdbc02e5fb28..7f17b97d0adc73 100644 --- a/Content.Server/PDA/PdaSystem.cs +++ b/Content.Server/PDA/PdaSystem.cs @@ -192,7 +192,7 @@ public void UpdatePdaUi(EntityUid uid, PdaComponent? pda = null) { ActualOwnerName = pda.OwnerName, IdOwner = id?.FullName, - JobTitle = id?.JobTitle, + JobTitle = id?.LocalizedJobTitle, StationAlertLevel = pda.StationAlertLevel, StationAlertColor = pda.StationAlertColor }, diff --git a/Content.Shared/Access/Components/IdCardComponent.cs b/Content.Shared/Access/Components/IdCardComponent.cs index ccd4cccbe7b5a5..e80ced646438bd 100644 --- a/Content.Shared/Access/Components/IdCardComponent.cs +++ b/Content.Shared/Access/Components/IdCardComponent.cs @@ -20,7 +20,12 @@ public sealed partial class IdCardComponent : Component [DataField] [AutoNetworkedField] [Access(typeof(SharedIdCardSystem), typeof(SharedPdaSystem), typeof(SharedAgentIdCardSystem), Other = AccessPermissions.ReadWrite)] - public string? JobTitle; + public LocId? JobTitle; + + private string? _jobTitle; + + [Access(typeof(SharedIdCardSystem), typeof(SharedPdaSystem), typeof(SharedAgentIdCardSystem), Other = AccessPermissions.ReadWriteExecute)] + public string? LocalizedJobTitle { set => _jobTitle = value; get => _jobTitle ?? Loc.GetString(JobTitle ?? string.Empty); } /// /// The state of the job icon rsi. diff --git a/Content.Shared/Access/Systems/IdExaminableSystem.cs b/Content.Shared/Access/Systems/IdExaminableSystem.cs index 13359adcba2dd7..807ccc6616d4aa 100644 --- a/Content.Shared/Access/Systems/IdExaminableSystem.cs +++ b/Content.Shared/Access/Systems/IdExaminableSystem.cs @@ -67,7 +67,7 @@ public string GetMessage(EntityUid uid) private string GetNameAndJob(IdCardComponent id) { - var jobSuffix = string.IsNullOrWhiteSpace(id.JobTitle) ? string.Empty : $" ({id.JobTitle})"; + var jobSuffix = string.IsNullOrWhiteSpace(id.LocalizedJobTitle) ? string.Empty : $" ({id.LocalizedJobTitle})"; var val = string.IsNullOrWhiteSpace(id.FullName) ? Loc.GetString(id.NameLocId, diff --git a/Content.Shared/Access/Systems/SharedIdCardSystem.cs b/Content.Shared/Access/Systems/SharedIdCardSystem.cs index 8bdc548e353a88..a5a37eecbd07ea 100644 --- a/Content.Shared/Access/Systems/SharedIdCardSystem.cs +++ b/Content.Shared/Access/Systems/SharedIdCardSystem.cs @@ -116,6 +116,7 @@ public bool TryGetIdCard(EntityUid uid, out Entity idCard) /// /// /// If provided with a player's EntityUid to the player parameter, adds the change to the admin logs. + /// Actually works with the LocalizedJobTitle DataField and not with JobTitle. /// public bool TryChangeJobTitle(EntityUid uid, string? jobTitle, IdCardComponent? id = null, EntityUid? player = null) { @@ -134,9 +135,9 @@ public bool TryChangeJobTitle(EntityUid uid, string? jobTitle, IdCardComponent? jobTitle = null; } - if (id.JobTitle == jobTitle) + if (id.LocalizedJobTitle == jobTitle) return true; - id.JobTitle = jobTitle; + id.LocalizedJobTitle = jobTitle; Dirty(uid, id); UpdateEntityName(uid, id); @@ -238,7 +239,7 @@ private void UpdateEntityName(EntityUid uid, IdCardComponent? id = null) if (!Resolve(uid, ref id)) return; - var jobSuffix = string.IsNullOrWhiteSpace(id.JobTitle) ? string.Empty : $" ({id.JobTitle})"; + var jobSuffix = string.IsNullOrWhiteSpace(id.LocalizedJobTitle) ? string.Empty : $" ({id.LocalizedJobTitle})"; var val = string.IsNullOrWhiteSpace(id.FullName) ? Loc.GetString(id.NameLocId, @@ -251,7 +252,7 @@ private void UpdateEntityName(EntityUid uid, IdCardComponent? id = null) private static string ExtractFullTitle(IdCardComponent idCardComponent) { - return $"{idCardComponent.FullName} ({CultureInfo.CurrentCulture.TextInfo.ToTitleCase(idCardComponent.JobTitle ?? string.Empty)})" + return $"{idCardComponent.FullName} ({CultureInfo.CurrentCulture.TextInfo.ToTitleCase(idCardComponent.LocalizedJobTitle ?? string.Empty)})" .Trim(); } } diff --git a/Resources/Locale/en-US/job/job-names.ftl b/Resources/Locale/en-US/job/job-names.ftl index 0140adf8a2d711..5a0b615b47040c 100644 --- a/Resources/Locale/en-US/job/job-names.ftl +++ b/Resources/Locale/en-US/job/job-names.ftl @@ -62,6 +62,11 @@ job-name-unknown = Unknown job-name-virologist = Virologist job-name-zombie = Zombie +# Job titles +job-title-visitor = Visitor +job-title-cluwne = Cluwne +job-title-universal = Universal + # Role timers - Make these alphabetical or I cut you JobAtmosphericTechnician = Atmospheric Technician JobBartender = Bartender diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml index a08afa127e05e4..ccb83b6aaa373c 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml @@ -443,7 +443,7 @@ - state: default - state: idvisitor - type: IdCard - jobTitle: Visitor + jobTitle: job-title-visitor jobIcon: JobIconVisitor - type: PresetIdCard job: Visitor @@ -741,7 +741,7 @@ - state: default - state: idcluwne - type: IdCard - jobTitle: Cluwne + jobTitle: job-title-cluwne - type: Unremoveable - type: entity @@ -801,7 +801,7 @@ - type: Item heldPrefix: green - type: IdCard - jobTitle: Universal + jobTitle: job-title-universal jobIcon: JobIconAdmin - type: Access groups: From 327466a6e2e36eba03c4bee397371fec5d3e4a86 Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Wed, 9 Oct 2024 11:01:32 -0700 Subject: [PATCH 212/213] Plushies can now have pAIs stuffed into them (v2)! (#30805) * First commit * I forgot silly me * Actually added comments * spellin * fixes * more blacklists * Minor fixes * Speech Verb also changes now * Simple name stuff * Other fixes * remove one line of whitespace --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../EntitySystems/ReagentGrinderSystem.cs | 4 +++ .../Nutrition/EntitySystems/FoodSystem.cs | 4 +++ .../ChangeNameInContainerComponent.cs | 18 +++++++++++ .../ChangeNameInContainerSystem.cs | 30 +++++++++++++++++++ .../Components/SecretStashComponent.cs | 7 +++++ .../EntitySystems/SecretStashSystem.cs | 8 +++-- .../components/secret-stash-component.ftl | 1 + .../Prototypes/Entities/Objects/Fun/pai.yml | 4 +++ .../Prototypes/Entities/Objects/Fun/toys.yml | 20 +++++++++++++ .../Entities/Objects/Misc/dat_fukken_disk.yml | 3 ++ .../Structures/Furniture/potted_plants.yml | 2 ++ Resources/Prototypes/tags.yml | 5 +++- 12 files changed, 102 insertions(+), 4 deletions(-) create mode 100644 Content.Shared/ChangeNameInContainer/ChangeNameInContainerComponent.cs create mode 100644 Content.Shared/ChangeNameInContainer/ChangeNameInContainerSystem.cs diff --git a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs index 12c5a30a4b29ec..de848b34c2c158 100644 --- a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Chemistry.Components; using Content.Shared.Containers.ItemSlots; +using Content.Shared.Destructible; using Content.Shared.FixedPoint; using Content.Shared.Interaction; using Content.Shared.Kitchen; @@ -122,6 +123,9 @@ public override void Update(float frameTime) if (solution.Volume > containerSolution.AvailableVolume) continue; + var dev = new DestructionEventArgs(); + RaiseLocalEvent(item, dev); + QueueDel(item); } diff --git a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs index 3a7c249c2b30cb..d7daf632d661c8 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs @@ -33,6 +33,7 @@ using Content.Shared.Containers.ItemSlots; using Robust.Server.GameObjects; using Content.Shared.Whitelist; +using Content.Shared.Destructible; namespace Content.Server.Nutrition.EntitySystems; @@ -335,6 +336,9 @@ public void DeleteAndSpawnTrash(FoodComponent component, EntityUid food, EntityU if (ev.Cancelled) return; + var dev = new DestructionEventArgs(); + RaiseLocalEvent(food, dev); + if (component.Trash.Count == 0) { QueueDel(food); diff --git a/Content.Shared/ChangeNameInContainer/ChangeNameInContainerComponent.cs b/Content.Shared/ChangeNameInContainer/ChangeNameInContainerComponent.cs new file mode 100644 index 00000000000000..dca8f5b29b4503 --- /dev/null +++ b/Content.Shared/ChangeNameInContainer/ChangeNameInContainerComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; + +namespace Content.Shared.ChangeNameInContainer; + +/// +/// An entity with this component will get its name and verb chaned to the container it's inside of. E.g, if your a +/// pAI that has this component and are inside a lizard plushie, your name when talking will be "lizard plushie". +/// +[RegisterComponent, NetworkedComponent, Access(typeof(ChangeNameInContainerSystem))] +public sealed partial class ChangeVoiceInContainerComponent : Component +{ + /// + /// A whitelist of containers that will change the name. + /// + [DataField] + public EntityWhitelist? Whitelist; +} diff --git a/Content.Shared/ChangeNameInContainer/ChangeNameInContainerSystem.cs b/Content.Shared/ChangeNameInContainer/ChangeNameInContainerSystem.cs new file mode 100644 index 00000000000000..f9abda3ec2329c --- /dev/null +++ b/Content.Shared/ChangeNameInContainer/ChangeNameInContainerSystem.cs @@ -0,0 +1,30 @@ +using Content.Shared.Chat; +using Robust.Shared.Containers; +using Content.Shared.Whitelist; +using Content.Shared.Speech; + +namespace Content.Shared.ChangeNameInContainer; + +public sealed partial class ChangeNameInContainerSystem : EntitySystem +{ + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnTransformSpeakerName); + } + + private void OnTransformSpeakerName(Entity ent, ref TransformSpeakerNameEvent args) + { + if (!_container.TryGetContainingContainer((ent, null, null), out var container) + || _whitelist.IsWhitelistFail(ent.Comp.Whitelist, container.Owner)) + return; + + args.VoiceName = Name(container.Owner); + if (TryComp(container.Owner, out var speechComp)) + args.SpeechVerb = speechComp.SpeechVerb; + } + +} diff --git a/Content.Shared/Storage/Components/SecretStashComponent.cs b/Content.Shared/Storage/Components/SecretStashComponent.cs index 3bf8e2e871ba5c..f8fff4c19498a8 100644 --- a/Content.Shared/Storage/Components/SecretStashComponent.cs +++ b/Content.Shared/Storage/Components/SecretStashComponent.cs @@ -8,6 +8,7 @@ using Content.Shared.DoAfter; using Robust.Shared.Serialization; using Robust.Shared.Audio; +using Content.Shared.Whitelist; namespace Content.Shared.Storage.Components { @@ -26,6 +27,12 @@ public sealed partial class SecretStashComponent : Component [DataField("maxItemSize")] public ProtoId MaxItemSize = "Small"; + /// + /// Entity blacklist for secret stashes. + /// + [DataField] + public EntityWhitelist? Blacklist; + /// /// This sound will be played when you try to insert an item in the stash. /// The sound will be played whether or not the item is actually inserted. diff --git a/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs index 901d744df5f386..08a69c345f0919 100644 --- a/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs @@ -13,6 +13,7 @@ using Content.Shared.Verbs; using Content.Shared.IdentityManagement; using Content.Shared.Tools.EntitySystems; +using Content.Shared.Whitelist; namespace Content.Shared.Storage.EntitySystems; @@ -27,7 +28,7 @@ public sealed class SecretStashSystem : EntitySystem [Dependency] private readonly SharedItemSystem _item = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly ToolOpenableSystem _toolOpenableSystem = default!; - + [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; public override void Initialize() { @@ -90,8 +91,9 @@ private bool TryStashItem(Entity entity, EntityUid userUid return false; } - // check if item is too big to fit into secret stash - if (_item.GetSizePrototype(itemComp.Size) > _item.GetSizePrototype(entity.Comp.MaxItemSize)) + // check if item is too big to fit into secret stash or is in the blacklist + if (_item.GetSizePrototype(itemComp.Size) > _item.GetSizePrototype(entity.Comp.MaxItemSize) || + _whitelistSystem.IsBlacklistPass(entity.Comp.Blacklist, itemToHideUid)) { var msg = Loc.GetString("comp-secret-stash-action-hide-item-too-big", ("item", itemToHideUid), ("stashname", GetStashName(entity))); diff --git a/Resources/Locale/en-US/storage/components/secret-stash-component.ftl b/Resources/Locale/en-US/storage/components/secret-stash-component.ftl index 36892428070176..16e575c0f13fcd 100644 --- a/Resources/Locale/en-US/storage/components/secret-stash-component.ftl +++ b/Resources/Locale/en-US/storage/components/secret-stash-component.ftl @@ -22,3 +22,4 @@ comp-secret-stash-verb-open = Open ### Stash names secret-stash-plant = plant secret-stash-toilet = toilet cistern +secret-stash-plushie = plushie diff --git a/Resources/Prototypes/Entities/Objects/Fun/pai.yml b/Resources/Prototypes/Entities/Objects/Fun/pai.yml index ff662c2186aacf..b4af7f010e0d24 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/pai.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/pai.yml @@ -69,6 +69,10 @@ Searching: { state: pai-searching-overlay } On: { state: pai-on-overlay } - type: StationMap + - type: ChangeVoiceInContainer + whitelist: + components: + - SecretStash - type: entity parent: [ PersonalAI, BaseSyndicateContraband] diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index ffb1611a71d187..a5105fac5ffe58 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -52,6 +52,24 @@ reagents: - ReagentId: Fiber Quantity: 10 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot {} + - type: Speech + speechVerb: Default # for pais (In the secret stash) + - type: SecretStash + secretStashName: secret-stash-plushie + blacklist: + components: + - SecretStash # Prevents being able to insert plushies inside each other (infinite plush)! + - NukeDisk # Could confuse the nukies if they don't know that plushies have a stash. + tags: + - QuantumSpinInverter # It will cause issues with the grinder... + - FakeNukeDisk # So you can't tell if the nuke disk is real or fake depending on if it can be inserted or not. + - type: ToolOpenable + openToolQualityNeeded: Slicing + closeToolQualityNeeded: Slicing # Should probably be stitching or something if that gets added + name: secret-stash-plushie - type: entity parent: BasePlushie @@ -323,6 +341,8 @@ equippedPrefix: lizard slots: - HEAD + - type: Speech + speechVerb: Reptilian # for pais (In the secret stash) - type: entity parent: PlushieLizard diff --git a/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml b/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml index 90e975b93efa17..e1fc3fa5b6f647 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml @@ -35,3 +35,6 @@ state: icon - type: StaticPrice price: 1 # it's worth even less than normal items. Perfection. + - type: Tag + tags: + - FakeNukeDisk diff --git a/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml b/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml index 97c845a7862440..9e6d6580b31694 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/potted_plants.yml @@ -25,6 +25,8 @@ offset: "0.0,0.3" sprite: Structures/Furniture/potted_plants.rsi noRot: true + - type: Speech + speechVerb: Plant # for pais (In the secret stash) - type: SecretStash tryInsertItemSound: /Audio/Effects/plant_rustle.ogg tryRemoveItemSound: /Audio/Effects/plant_rustle.ogg diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 86ade97d4ea57c..4f9d0eb3f8cde4 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -993,6 +993,9 @@ - type: Tag id: Nugget # for chicken nuggets +- type: Tag + id: FakeNukeDisk + - type: Tag id: NukeOpsUplink @@ -1177,7 +1180,7 @@ - type: Tag id: SecureWindoor -- type: Tag +- type: Tag id: SecurityHelmet - type: Tag From ac16a05fef3b7bb029e62c8d0e354999027dca7d Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 9 Oct 2024 18:02:38 +0000 Subject: [PATCH 213/213] Automatic changelog update --- Resources/Changelog/Changelog.yml | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index fc57e527ab8e53..469ffc072400ac 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: JIPDawg - changes: - - message: F9 is correctly bound to the Round End Summary window by default now. - type: Fix - id: 6998 - time: '2024-07-29T06:49:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30438 - author: githubuser508 changes: - message: Candles crate and the ability for Cargo to order it. @@ -3942,3 +3935,16 @@ id: 7497 time: '2024-10-09T12:44:38.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32472 +- author: beck-thompson, Moomoobeef + changes: + - message: Plushies now can have small items stuffed inside of them! To open, click + on the plush with a sharp item. You can then insert a small item into the plush. + To close, just click on it again with any sharp item! + type: Add + - message: When pAIs are inserted into plushies, their names will be updated to + the plushies name. E.g when inside a lizard plushie the pAI's name will appear + as "lizard plushie" when speaking. + type: Add + id: 7498 + time: '2024-10-09T18:01:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30805