Modding Help Problem with adding a microdungeon...

Discussion in 'Starbound Modding' started by GOKOP, Dec 15, 2013.

  1. GOKOP

    GOKOP Big Damn Hero

    (sorry for bad English ;) )

    I added a new microdungeon and placed in .surfacebiome file of my biome code that generates this microdungeon, but it isn't generating, and in the log I found that:

    Code:
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
    0063DF3F
    007A74E3
    00798DF9
    00798EF2
    00790338
    007902F4
    007905B7
    0068CC27
    0069D34D
    0069D9CB
    009447CC
    759833AA
    778C9EF2
    778C9EC5
    
    I added this microdungeon to whitelisted microdungeons in planetgen.config.
    I added that do this directory:
    .../assets/dungeon/microdungeon/fleshhause/<here are the files>
     
    Last edited: Dec 16, 2013
  2. FoolsPower

    FoolsPower Subatomic Cosmonaut

    double check you have the naming absolutely the same in all the files.
     
  3. GOKOP

    GOKOP Big Damn Hero

    Yes, it is...
     
  4. Eathed

    Eathed Pangalactic Porcupine

    Can you upload your mod so we can look at it? It might make it easier to find what the issue is.
     
  5. GOKOP

    GOKOP Big Damn Hero

    Upload you say... hmmm... so, uploading everything has no-sense, (and increases propability of steal...) I think these information should be enough:
    fleshhause.dungeon file:

    Code:
    {
      "metadata" : {
        "name" : "fleshhause",
        "species" : "dummy",
        "rules" : [
        ],
        "anchor" : [ "fleshhause" ],
    
        "maxRadius" : 2000,
        "maxParts" : 100
      },
      "tiles" : [
        {
          "value" : [255, 0, 220, 255],
          "comment" : "magic pinkppp, a no-op value"
        },
        {
          "value" : [0, 0, 0, 255],
          "rules" : [ [ "worldGenMustContainAirBackground" ], [ "allowOverdrawing" ] ],
          "brush" : [ [ "clear" ] ]
        },
    
        {
          "value" : [255, 255, 255, 255],
          "rules" : [ [ "worldGenMustContainSolidBackground" ], [ "allowOverdrawing" ] ],
          "brush" : [ [ "surface" ] ]
        },
    
        {
          "value" : [0, 38, 255, 255],
          "comment" : "bright blue, entrance coupler",
          "connector" : true
        },
        {
          "value" : [0, 255, 186, 255],
          "comment" : "bright aqua, water coupler",
          "connector" : true
        },
        {
          "value" : [32, 32, 32, 255],
          "comment" : "Empty hole",
          "brush" : [ [ "clear" ] ]
        },
    
        {
          "value" : [128, 128, 128, 255],
          "comment" : "Biome tile brush",
          "rules" : [ [ "allowOverdrawing" ] ],
          "brush" : [ [ "surface" ] ]
        },
    
        {
          "value" : [100, 100, 100, 255],
          "comment" : "Biome tile brush non-overwritable",
          "brush" : [ [ "surface" ] ]
        },
    
        {
          "value" : [200, 200, 200, 255],
          "comment" : "Biome tile background brush",
          "brush" : [ [ "clear" ], [ "surfacebackground" ] ]
        },
    
        {
          "value" : [0, 255, 255, 255],
          "comment" : "flesh door",
          "brush" : [ [ "clear" ], [ "object", "fleshdoor" ] ]
        },
        {
          "value" : [0, 127, 127, 255],
          "comment" : "flesh table",
          "brush" : [ [ "clear" ], [ "object", "fleshtable" { "direction" : "right" } ] ]
        },
        {
          "value" : [0, 19, 127, 255],
          "comment" : "flesh chair left",
          "brush" : [ [ "clear" ], [ "object", "fleshchair" { "direction" : "left" } ] ]
        },
        {
          "value" : [0, 50, 127, 255],
          "comment" : "flesh chair right",
          "brush" : [ [ "clear" ], [ "object", "fleshchair" { "direction" : "right" } ] ]
        },
      ],
    
      "parts" : [
        {
          "name" : "fleshhause",
          "rules" : [
            [ "maxSpawnCount", [1] ]
          ],
          "def" : [ "image", [ "fleshhause.png" ] ]
        }
      ]
    }
    

    Microdungeon files directories:
    .../assets/dungeons/microdungeons/fleshhause/fleshhause.dungeon
    .../assets/dungeons/microdungeons/fleshhause/fleshhause.png

    piece of biome file code responsible for microdungeon generating:
    Code:
    {
      "mode" : "floor",
      "priority" : 3.0,
      "variants" : 1,
      "distribution" : "/biomes/distributions.config:scatteredLarge",
    
      "type" : "microdungeon",
      "microdungeons" : [ "fleshhause" ]
      },
    
    I didn't do anything more with this microdungeon, only with biome, but the biome works. ;)
     
  6. tifel100

    tifel100 Void-Bound Voyager

    Found it I think:

    "fleshtable" , { "direction" : "right" } ] ]

    Same goes for the 2 chairs below it.
    Also remove a comma around the end, here's all of it.
    Code:
    {
      "metadata" : {
        "name" : "fleshhause",
        "species" : "dummy",
        "rules" : [
        ],
        "anchor" : [ "fleshhause" ],
    
        "maxRadius" : 2000,
        "maxParts" : 100
      },
      "tiles" : [
        {
          "value" : [255, 0, 220, 255],
          "comment" : "magic pinkppp, a no-op value"
        },
        {
          "value" : [0, 0, 0, 255],
          "rules" : [ [ "worldGenMustContainAirBackground" ], [ "allowOverdrawing" ] ],
          "brush" : [ [ "clear" ] ]
        },
    
        {
          "value" : [255, 255, 255, 255],
          "rules" : [ [ "worldGenMustContainSolidBackground" ], [ "allowOverdrawing" ] ],
          "brush" : [ [ "surface" ] ]
        },
    
        {
          "value" : [0, 38, 255, 255],
          "comment" : "bright blue, entrance coupler",
          "connector" : true
        },
        {
          "value" : [0, 255, 186, 255],
          "comment" : "bright aqua, water coupler",
          "connector" : true
        },
        {
          "value" : [32, 32, 32, 255],
          "comment" : "Empty hole",
          "brush" : [ [ "clear" ] ]
        },
    
        {
          "value" : [128, 128, 128, 255],
          "comment" : "Biome tile brush",
          "rules" : [ [ "allowOverdrawing" ] ],
          "brush" : [ [ "surface" ] ]
        },
    
        {
          "value" : [100, 100, 100, 255],
          "comment" : "Biome tile brush non-overwritable",
          "brush" : [ [ "surface" ] ]
        },
    
        {
          "value" : [200, 200, 200, 255],
          "comment" : "Biome tile background brush",
          "brush" : [ [ "clear" ], [ "surfacebackground" ] ]
        },
    
        {
          "value" : [0, 255, 255, 255],
          "comment" : "flesh door",
          "brush" : [ [ "clear" ], [ "object", "fleshdoor" ] ]
        },
        {
          "value" : [0, 127, 127, 255],
          "comment" : "flesh table",
          "brush" : [ [ "clear" ], [ "object", "fleshtable", { "direction" : "right" } ] ]
        },
        {
          "value" : [0, 19, 127, 255],
          "comment" : "flesh chair left",
          "brush" : [ [ "clear" ], [ "object", "fleshchair", { "direction" : "left" } ] ]
        },
        {
          "value" : [0, 50, 127, 255],
          "comment" : "flesh chair right",
          "brush" : [ [ "clear" ], [ "object", "fleshchair", { "direction" : "right" } ] ]
        }
      ],
    
      "parts" : [
        {
          "name" : "fleshhause",
          "rules" : [
            [ "maxSpawnCount", [1] ]
          ],
          "def" : [ "image", [ "fleshhause.png" ] ]
        }
      ]
    }
    
     
  7. GOKOP

    GOKOP Big Damn Hero

    Thanks a lot :)
     
  8. GOKOP

    GOKOP Big Damn Hero

    So, it worked, but I re-painted .png file and now I have the same problem again...
    I didn't change the .dungeon file, so what can be a reason... ?

    Here is the .png file:
    [​IMG]
    (that white thing isn't in original file)
     
  9. tifel100

    tifel100 Void-Bound Voyager

    Probably missing a color? Like undefined colored, are a defined color which isn't in the image?
     
  10. GOKOP

    GOKOP Big Damn Hero

    I checked it, colors are right...
     
  11. tifel100

    tifel100 Void-Bound Voyager

    maybe 1 of your colors is like 1 value off? like instead of white being 255,255,255 it's 255,255,254
     
  12. GOKOP

    GOKOP Big Damn Hero

    No, I was selecting colors by writing the RGB value.
     
  13. tifel100

    tifel100 Void-Bound Voyager

    Maybe you mistyped. Use the eyedropper tool on your image to make sure your colors match. Also make sure you don't have a color in the file, not being used in the image.
     
  14. GOKOP

    GOKOP Big Damn Hero

    Colors are match.
    I had some not used colors in file, but removing them didn't help. :/
     
  15. GOKOP

    GOKOP Big Damn Hero

    refresh...
     
  16. tifel100

    tifel100 Void-Bound Voyager

    Can you post your new fleshhause code?
     
  17. GOKOP

    GOKOP Big Damn Hero

    Here it is:
    Code:
    {
      "metadata" : {
        "name" : "fleshhause",
        "species" : "dummy",
        "rules" : [
        ],
        "anchor" : [ "fleshhause" ],
    
        "maxRadius" : 50,
        "maxParts" : 100
      },
      "tiles" : [
        {
          "value" : [255, 0, 220, 255],
          "comment" : "magic pinkppp, a no-op value"
        },
       
        {
          "value" : [0, 0, 0, 255],
          "rules" : [ [ "worldGenMustContainAirBackground" ], [ "allowOverdrawing" ] ],
          "brush" : [ [ "clear" ] ]
        },
    
        {
          "value" : [128, 128, 128, 255],
          "comment" : "Biome tile brush",
          "rules" : [ [ "allowOverdrawing" ] ],
          "brush" : [ [ "surface" ] ]
        },
       
        {
          "value" : [200, 200, 200, 255],
          "comment" : "Biome tile background brush",
          "brush" : [ [ "clear" ], [ "surfacebackground" ] ]
        },
    
        {
          "value" : [0, 255, 255, 255],
          "comment" : "flesh door",
          "brush" : [ [ "clear" ], [ "object", "fleshdoor" ] ]
        },
       
        {
          "value" : [0, 127, 127, 255],
          "comment" : "flesh table",
          "brush" : [ [ "clear" ], [ "object", "fleshtable", { "direction" : "right" } ] ]
        },
       
        {
          "value" : [0, 19, 127, 255],
          "comment" : "flesh chair left",
          "brush" : [ [ "clear" ], [ "object", "fleshchair", { "direction" : "left" } ] ]
        },
       
        {
          "value" : [0, 50, 127, 255],
          "comment" : "flesh chair right",
          "brush" : [ [ "clear" ], [ "object", "fleshchair", { "direction" : "right" } ] ]
        }
      ],
    
      "parts" : [
        {
          "name" : "fleshhause",
          "rules" : [
            [ "maxSpawnCount", [1] ]
          ],
          "def" : [ "image", [ "fleshhause.png" ] ]
        }
      ]
    }
     
  18. tifel100

    tifel100 Void-Bound Voyager

    There doesn't seem to be any color missmatches or errors.
    Can I see your starbound.log?
    And when does it crash? When you start up, or when you try to enter a character?
     
  19. GOKOP

    GOKOP Big Damn Hero

    It's not crashing, my flesh house simply doesn't generating...
    And this is full log:

    Code:
    Info: Preparing Star::Root...
    Info: Loading Star::Configuration from '..\starbound.config'
    Info: Done preparing Star::Root.
    Info: Client version 'Beta v. Offended Koala' '623' '424'
    Info: Starting from the title screen
    Info: Initialized SDL
    Info: Initialized SDL Video
    Info: Initialized SDL Joystick
    Info: Initialized SDL Sound
    Info: Opened default audio device with 44khz / 16 bit stereo audio, 2048 sample size buffer
    Info: Loading Star::Root...
    Info: Initializing SDL Window
    Info: OpenGL version: '3.3.0' vender: 'NVIDIA Corporation' renderer: 'GeForce GT 220M/PCIe/SSE2' shader: '3.30 NVIDIA via Cg compiler'
    Info: Created initial window 1000x600
    Info: Initializing SDL Window
    Info: OpenGL version: '3.3.0' vender: 'NVIDIA Corporation' renderer: 'GeForce GT 220M/PCIe/SSE2' shader: '3.30 NVIDIA via Cg compiler'
    Info: Re-created window 1366x703
    Info: Loading Star::Configuration from '..\starbound.config'
    Warn: Perf: Cinematic::render millis: 251
    Warn: Perf: ClientApplication::render millis: 251
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 251
    Debug: Correcting path from /terrain/surface/mountainoussurface.terrain to /terrain/surface/mountainousSurface.terrain
    Debug: Correcting path from /terrain/surface/normalsurface.terrain to /terrain/surface/normalSurface.terrain
    Debug: Correcting path from /terrain/surface/relaxedhillssurface.terrain to /terrain/surface/relaxedHillsSurface.terrain
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 415
    Debug: Correcting path from /effects/breathcritical.effectsource to /effects/breathCritical.effectsource
    Debug: Correcting path from /effects/breathrisk.effectsource to /effects/breathRisk.effectsource
    Debug: Correcting path from /effects/foodcritical.effectsource to /effects/foodCritical.effectsource
    Debug: Correcting path from /effects/foodrisk.effectsource to /effects/foodRisk.effectsource
    Debug: Correcting path from /effects/healthcritical.effectsource to /effects/healthCritical.effectsource
    Debug: Correcting path from /effects/healthrisk.effectsource to /effects/healthRisk.effectsource
    Debug: Correcting path from /effects/multijump.effectsource to /effects/multiJump.effectsource
    Debug: Correcting path from /effects/warmthcritical.effectsource to /effects/warmthCritical.effectsource
    Debug: Correcting path from /effects/warmthrisk.effectsource to /effects/warmthRisk.effectsource
    Debug: Correcting path from /tiles/mods/cerulium.matmod to /tiles/mods/Cerulium.matmod
    Debug: Correcting path from /tiles/mods/rubium.matmod to /tiles/mods/Rubium.matmod
    Warn: Slow asset 0.07 : /tiles/mods/rubium.matmod
    Warn: Slow asset 0.07 : /tiles/mods/sand.matmod
    Debug: Correcting path from /biomes/underground/generic/bottom/rock04layer.undergroundbiome to /biomes/underground/Generic/bottom/rock04layer.undergroundbiome
    Debug: Correcting path from /biomes/underground/generic/bottom/rock12layer.undergroundbiome to /biomes/underground/Generic/bottom/rock12layer.undergroundbiome
    Debug: Correcting path from /biomes/underground/generic/bottom/rock14layer.undergroundbiome to /biomes/underground/Generic/bottom/rock14layer.undergroundbiome
    Debug: Correcting path from /biomes/underground/generic/bottom/rock15layer.undergroundbiome to /biomes/underground/Generic/bottom/rock15layer.undergroundbiome
    Debug: Correcting path from /biomes/underground/generic/bottom/rock17layer.undergroundbiome to /biomes/underground/Generic/bottom/rock17layer.undergroundbiome
    Debug: Correcting path from /biomes/underground/generic/middle/rock01layer.undergroundbiome to /biomes/underground/Generic/middle/rock01layer.undergroundbiome
    Debug: Correcting path from /biomes/underground/generic/middle/rock02.undergroundbiome to /biomes/underground/Generic/middle/rock02.undergroundbiome
    Debug: Correcting path from /biomes/underground/generic/middle/rock03.undergroundbiome to /biomes/underground/Generic/middle/rock03.undergroundbiome
    Debug: Correcting path from /biomes/underground/generic/middle/rock19.undergroundbiome to /biomes/underground/Generic/middle/rock19.undergroundbiome
    Debug: Correcting path from /biomes/underground/generic/middle/rock20.undergroundbiome to /biomes/underground/Generic/middle/rock20.undergroundbiome
    Debug: Correcting path from /biomes/underground/generic/top/claylayer.undergroundbiome to /biomes/underground/Generic/top/claylayer.undergroundbiome
    Debug: Correcting path from /biomes/underground/generic/top/drydirtlayer.undergroundbiome to /biomes/underground/Generic/top/drydirtlayer.undergroundbiome
    Debug: Correcting path from /biomes/underground/generic/top/drysandlayer.undergroundbiome to /biomes/underground/Generic/top/drysandlayer.undergroundbiome
    Debug: Correcting path from /biomes/underground/generic/top/gravellayer.undergroundbiome to /biomes/underground/Generic/top/gravellayer.undergroundbiome
    Debug: Correcting path from /biomes/underground/generic/top/mudlayer.undergroundbiome to /biomes/underground/Generic/top/mudlayer.undergroundbiome
    Debug: Correcting path from /biomes/underground/generic/top/sandlayer.undergroundbiome to /biomes/underground/Generic/top/sandlayer.undergroundbiome
    Debug: Correcting path from /biomes/underground/generic/top/sandstonelayer.undergroundbiome to /biomes/underground/Generic/top/sandstonelayer.undergroundbiome
    Debug: Correcting path from /biomes/underground/generic/core/blaststonecorelayer.corebiome to /biomes/underground/Generic/core/blaststonecorelayer.corebiome
    Debug: Correcting path from /biomes/underground/generic/core/magmarockcorelayer.corebiome to /biomes/underground/Generic/core/magmarockcorelayer.corebiome
    Debug: Correcting path from /biomes/underground/generic/core/obisidiancorelayer.corebiome to /biomes/underground/Generic/core/obisidiancorelayer.corebiome
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 154
    Debug: Correcting path from /projectiles/npcs/staticfireball/staticfireball.projectile to /projectiles/npcs/staticFireball/staticFireball.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/chomp1/chomp1.projectile to /projectiles/swoosh/Unused/chomp1/chomp1.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/chomp2/chomp2.projectile to /projectiles/swoosh/Unused/chomp2/chomp2.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/chomp3/chomp3.projectile to /projectiles/swoosh/Unused/chomp3/chomp3.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/chomp4/chomp4.projectile to /projectiles/swoosh/Unused/chomp4/chomp4.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/swoopdown1/swoopdown1.projectile to /projectiles/swoosh/Unused/swoopdown1/swoopdown1.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/swoopup1/swoopup1.projectile to /projectiles/swoosh/Unused/swoopup1/swoopup1.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/testsideswoosh/testsideswoosh.projectile to /projectiles/swoosh/Unused/testsideswoosh/testsideswoosh.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/testswoosh/testswoosh.projectile to /projectiles/swoosh/Unused/testswoosh/testswoosh.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/testswoosh2/testswoosh2.projectile to /projectiles/swoosh/Unused/testswoosh2/testswoosh2.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/testswoosh4/testswoosh4.projectile to /projectiles/swoosh/Unused/testswoosh4/testswoosh4.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/thrust1/thrust1.projectile to /projectiles/swoosh/Unused/thrust1/thrust1.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/chomp4/chomp4.projectile to /projectiles/swoosh/Unused/chomp4/chomp4.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/swoopdown1/swoopdown1.projectile to /projectiles/swoosh/Unused/swoopdown1/swoopdown1.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/swoopup1/swoopup1.projectile to /projectiles/swoosh/Unused/swoopup1/swoopup1.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/testsideswoosh/testsideswoosh.projectile to /projectiles/swoosh/Unused/testsideswoosh/testsideswoosh.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/testswoosh/testswoosh.projectile to /projectiles/swoosh/Unused/testswoosh/testswoosh.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/testswoosh2/testswoosh2.projectile to /projectiles/swoosh/Unused/testswoosh2/testswoosh2.projectile
    Debug: Correcting path from /projectiles/swoosh/unused/thrust1/thrust1.projectile to /projectiles/swoosh/Unused/thrust1/thrust1.projectile
    Debug: Correcting path from /plants/trees/undergroundforest/stem/underwood/underwood.modularstem to /plants/trees/undergroundforest/Stem/underwood/underwood.modularstem
    Debug: Correcting path from /plants/trees/undergroundforest/foliage/mossy/mossy.modularfoliage to /plants/trees/undergroundforest/Foliage/mossy/mossy.modularfoliage
    Debug: Correcting path from /plants/trees/undergroundforest/foliage/scattered/scattered.modularfoliage to /plants/trees/undergroundforest/Foliage/scattered/scattered.modularfoliage
    Debug: Correcting path from /monsters/unique/penguin/rockettrooper.monstertype to /monsters/unique/penguin/rocketTrooper.monstertype
    Debug: Correcting path from /monsters/unique/penguin/rockettrooper.monstertype to /monsters/unique/penguin/rocketTrooper.monstertype
    Debug: Correcting path from /monsters/unique/penguinminiufo/penguinminiufo.monstertype to /monsters/unique/penguinMiniUfo/penguinMiniUfo.monstertype
    Debug: Correcting path from /monsters/unique/penguintank/penguintank.monstertype to /monsters/unique/penguinTank/penguinTank.monstertype
    Debug: Correcting path from /monsters/unique/penguinufo/penguinufo.monstertype to /monsters/unique/penguinUfo/penguinUfo.monstertype
    Warn: Slow asset 0.051 : /monsters/ground/tinyquadruped/organic/head/tinygorillahead/tinygorillahead.monsterpart
    Warn: Slow asset 0.059 : /renderer.config
    Debug: Correcting path from /monsters/unique/penguin/backarm/rockettrooperbackarm.monsterpart to /monsters/unique/penguin/backArm/rocketTrooperBackArm.monsterpart
    Debug: Correcting path from /monsters/unique/penguin/backarm/trooperbackarm.monsterpart to /monsters/unique/penguin/backArm/trooperBackArm.monsterpart
    Debug: Correcting path from /monsters/unique/penguin/body/generalbody.monsterpart to /monsters/unique/penguin/body/generalBody.monsterpart
    Debug: Correcting path from /monsters/unique/penguin/backarm/generalbackarm.monsterpart to /monsters/unique/penguin/backArm/generalBackArm.monsterpart
    Debug: Correcting path from /monsters/unique/penguin/body/rockettrooperbody.monsterpart to /monsters/unique/penguin/body/rocketTrooperBody.monsterpart
    Debug: Correcting path from /monsters/unique/penguin/body/trooperbody.monsterpart to /monsters/unique/penguin/body/trooperBody.monsterpart
    Debug: Correcting path from /monsters/unique/penguin/chest/dynamitechest.monsterpart to /monsters/unique/penguin/chest/dynamiteChest.monsterpart
    Debug: Correcting path from /monsters/unique/penguin/frontarm/generalfrontarm.monsterpart to /monsters/unique/penguin/frontArm/generalFrontArm.monsterpart
    Debug: Correcting path from /monsters/unique/penguin/frontarm/rockettrooperfrontarm.monsterpart to /monsters/unique/penguin/frontArm/rocketTrooperFrontArm.monsterpart
    Debug: Correcting path from /monsters/unique/penguin/frontarm/trooperfrontarm.monsterpart to /monsters/unique/penguin/frontArm/trooperFrontArm.monsterpart
    Debug: Correcting path from /monsters/unique/penguin/helm/generalhelm.monsterpart to /monsters/unique/penguin/helm/generalHelm.monsterpart
    Debug: Correcting path from /monsters/unique/penguin/helm/trooperhelm.monsterpart to /monsters/unique/penguin/helm/trooperHelm.monsterpart
    Debug: Correcting path from /monsters/unique/penguinminiufo/ufo/ufo.monsterpart to /monsters/unique/penguinMiniUfo/ufo/ufo.monsterpart
    Debug: Correcting path from /monsters/unique/penguintank/parts/body.monsterpart to /monsters/unique/penguinTank/parts/body.monsterpart
    Debug: Correcting path from /monsters/unique/penguintank/parts/gun.monsterpart to /monsters/unique/penguinTank/parts/gun.monsterpart
    Debug: Correcting path from /monsters/unique/penguintank/parts/pilot.monsterpart to /monsters/unique/penguinTank/parts/pilot.monsterpart
    Debug: Correcting path from /monsters/unique/penguintank/parts/smoke.monsterpart to /monsters/unique/penguinTank/parts/smoke.monsterpart
    Debug: Correcting path from /monsters/unique/penguintank/parts/turret.monsterpart to /monsters/unique/penguinTank/parts/turret.monsterpart
    Debug: Correcting path from /monsters/unique/penguinufo/pilot/pilot.monsterpart to /monsters/unique/penguinUfo/pilot/pilot.monsterpart
    Debug: Correcting path from /monsters/unique/penguinufo/ufo/ufo.monsterpart to /monsters/unique/penguinUfo/ufo/ufo.monsterpart
    Debug: Correcting path from /monsters/unique/penguin/helm/rockettrooperhelm.monsterpart to /monsters/unique/penguin/helm/rocketTrooperHelm.monsterpart
    Debug: Correcting path from /monsters/unique/penguin/helm/generalhelm.monsterpart to /monsters/unique/penguin/helm/generalHelm.monsterpart
    Debug: Correcting path from /monsters/unique/penguin/helm/rockettrooperhelm.monsterpart to /monsters/unique/penguin/helm/rocketTrooperHelm.monsterpart
    Debug: Correcting path from /monsters/unique/penguinminiufo/ufo/ufo.monsterpart to /monsters/unique/penguinMiniUfo/ufo/ufo.monsterpart
    Debug: Correcting path from /monsters/unique/penguintank/parts/body.monsterpart to /monsters/unique/penguinTank/parts/body.monsterpart
    Debug: Correcting path from /monsters/unique/penguintank/parts/gun.monsterpart to /monsters/unique/penguinTank/parts/gun.monsterpart
    Debug: Correcting path from /monsters/unique/penguintank/parts/pilot.monsterpart to /monsters/unique/penguinTank/parts/pilot.monsterpart
    Debug: Correcting path from /monsters/unique/penguintank/parts/smoke.monsterpart to /monsters/unique/penguinTank/parts/smoke.monsterpart
    Debug: Correcting path from /monsters/unique/penguintank/parts/turret.monsterpart to /monsters/unique/penguinTank/parts/turret.monsterpart
    Debug: Correcting path from /monsters/unique/penguinufo/pilot/pilot.monsterpart to /monsters/unique/penguinUfo/pilot/pilot.monsterpart
    Debug: Correcting path from /monsters/flying/skills/flyingswoopattack.monsterskill to /monsters/flying/skills/flyingSwoopAttack.monsterskill
    Debug: Correcting path from /monsters/flying/skills/flyingswoopbounceattack.monsterskill to /monsters/flying/skills/flyingSwoopBounceAttack.monsterskill
    Debug: Correcting path from /monsters/flying/skills/ranged/airbubbleblastrangedattack.monsterskill to /monsters/flying/skills/ranged/airBubbleBlastRangedAttack.monsterskill
    Debug: Correcting path from /monsters/flying/skills/ranged/airflameburstrangedattack.monsterskill to /monsters/flying/skills/ranged/airflameBurstRangedAttack.monsterskill
    Debug: Correcting path from /monsters/ground/skills/chargeattack.monsterskill to /monsters/ground/skills/chargeAttack.monsterskill
    Debug: Correcting path from /monsters/ground/skills/meleeattack.monsterskill to /monsters/ground/skills/meleeAttack.monsterskill
    Debug: Correcting path from /monsters/ground/skills/pounceattack.monsterskill to /monsters/ground/skills/pounceAttack.monsterskill
    Debug: Correcting path from /monsters/ground/skills/ranged/bubbleblastrangedattack.monsterskill to /monsters/ground/skills/ranged/BubbleBlastRangedAttack.monsterskill
    Debug: Correcting path from /monsters/ground/skills/ranged/flameburstrangedattack.monsterskill to /monsters/ground/skills/ranged/flameBurstRangedAttack.monsterskill
    Debug: Correcting path from /monsters/ground/skills/ranged/rangedattack.monsterskill to /monsters/ground/skills/ranged/rangedAttack.monsterskill
    Debug: Correcting path from /monsters/ground/skills/staticprojectileattack.monsterskill to /monsters/ground/skills/staticProjectileAttack.monsterskill
    Warn: Slow asset 0.052 : /npcs/merchant.npctype
    Warn: Slow asset 0.108 : /npcs/pyramidguard.npctype
    Warn: Slow asset 0.114 : /npcs/villageguardcaptain.npctype
    Warn: Slow asset 0.129 : /npcs/villager.npctype
    Warn: Slow asset 0.055 : /items/guns/randomgenerated/commonshotgun.generatedgun
    Warn: Slow asset 0.059 : /items/guns/randomgenerated/commonpistol_plasma.generatedgun
    Warn: Perf: StarApplicationBase::run.innerLoop.graphicsSwapBuffers millis: 218
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 232
    Warn: Slow asset 0.053 : /items/guns/randomgenerated/uncommonsniperrifle.generatedgun
    Warn: Slow asset 0.052 : /items/shields/randomgenerated/hylotlstrongshield.generatedshield
    Debug: Correcting path from /items/generic/crafting/ceruliumbar.item to /items/generic/crafting/Ceruliumbar.item
    Debug: Correcting path from /items/generic/crafting/ceruliumore.item to /items/generic/crafting/Ceruliumore.item
    Debug: Correcting path from /items/generic/crafting/feroziumbar.item to /items/generic/crafting/Feroziumbar.item
    Debug: Correcting path from /items/generic/crafting/ceruliumbar.item to /items/generic/crafting/Ceruliumbar.item
    Debug: Correcting path from /items/generic/crafting/feroziumbar.item to /items/generic/crafting/Feroziumbar.item
    Debug: Correcting path from /items/generic/crafting/rubiumbar.item to /items/generic/crafting/Rubiumbar.item
    Debug: Correcting path from /items/generic/crafting/rubiumore.item to /items/generic/crafting/Rubiumore.item
    Debug: Correcting path from /items/generic/crafting/rubiumbar.item to /items/generic/crafting/Rubiumbar.item
    Debug: Correcting path from /items/generic/crafting/violiumbar.item to /items/generic/crafting/Violiumbar.item
    Debug: Correcting path from /items/armors/decorative/developers/ban/ban.head to /items/armors/decorative/developers/Ban/Ban.head
    Warn: Slow asset 0.052 : /items/armors/decorative/hats/eyehead/eyehead.head
    Warn: Slow asset 0.112 : /items/armors/decorative/hats/fancy/fancy.head
    Warn: Slow asset 0.111 : /items/armors/decorative/hats/fedora/fedora.head
    Warn: Slow asset 0.102 : /renderer.config
    Warn: Slow asset 0.053 : /items/armors/decorative/hats/ladyhat/head.head
    Warn: Slow asset 0.077 : /items/armors/decorative/hats/rainbowhood/rainbowhood.head
    Warn: Slow asset 0.078 : /items/armors/decorative/hats/safetyhelmet/safetyhelmet.head
    Warn: Slow asset 0.071 : /items/armors/decorative/hats/shroomhead2/shroom.head
    Debug: Correcting path from /items/armors/other/fullmetal/fullmetal.head to /items/armors/other/fullmetal/Fullmetal.head
    Debug: Correcting path from /items/armors/decorative/developers/ban/ban.chest to /items/armors/decorative/developers/Ban/Ban.chest
    Debug: Correcting path from /items/armors/other/fullmetal/fullmetal.chest to /items/armors/other/fullmetal/Fullmetal.chest
    Warn: Slow asset 0.076 : /items/armors/decorative/costumes/pilot/pilot.legs
    Warn: Slow asset 0.078 : /items/armors/decorative/costumes/pirate/pirate.legs
    Debug: Correcting path from /items/armors/decorative/developers/ban/ban.legs to /items/armors/decorative/developers/Ban/ban.legs
    Warn: Slow asset 0.057 : /items/armors/other/cultist/cultist.legs
    Warn: Slow asset 0.056 : /items/armors/other/diamondarmor/diamondarmor.legs
    Warn: Slow asset 0.056 : /renderer.config
    Debug: Correcting path from /items/armors/other/fullmetal/fullmetal.legs to /items/armors/other/fullmetal/Fullmetal.legs
    Debug: Correcting path from /items/armors/backitems/batterypackaa/batterypackaa.back to /items/armors/backitems/batterypackAA/batterypackAA.back
    Warn: Slow asset 0.054 : /items/armors/backitems/shortcape/shortcape.back
    Warn: Slow asset 0.093 : /items/armors/backitems/simplecape/simplecape.back
    Debug: Correcting path from /items/armors/other/fullmetal/fullmetal.back to /items/armors/other/fullmetal/Fullmetal.back
    Warn: Slow asset 0.073 : /objects/apex/apexbustmale/apexbustmale.object
    Warn: Slow asset 0.073 : /objects/apex/apexbananasign/apexbananasign.object
    Warn: Slow asset 0.071 : /renderer.config
    Warn: Slow asset 0.079 : /objects/apex/apexcaptainschair/apexcaptainschair.object
    Warn: Slow asset 0.06 : /objects/apex/apexcounter1/apexcounter1.object
    Warn: Slow asset 0.06 : /objects/apex/apexcounter2/apexcounter2.object
    Warn: Slow asset 0.06 : /renderer.config
    Warn: Slow asset 0.063 : /objects/defaultParameters.config
    Warn: Object apexcaptainschair does not have a price set
    Warn: Slow asset 0.079 : /objects/apex/apexpainting5/apexpainting5.object
    Warn: Slow asset 0.081 : /objects/apex/apexcooldoor/apexcooldoor.object
    Warn: Slow asset 0.099 : /objects/apex/apexpiano/apexpiano.object
    Warn: Object apexfuelhatch does not have a category set
    Warn: Object apexfuelhatch does not have a price set
    Warn: Slow asset 0.061 : /objects/apex/classicbardoor/classicbardoor.object
    Warn: Slow asset 0.063 : /objects/apex/apexnameplate/apexnameplate.png
    Warn: Slow asset 0.063 : /objects/apex/apexnameplate/apexnameplate.png:default
    Warn: Object apexshiplocker does not have a price set
    Warn: Slow asset 0.081 : /objects/apex/classicfountain/classicfountain.object
    Warn: Slow asset 0.081 : /objects/apex/classicglass/classicglass.object
    Warn: Slow asset 0.052 : /objects/apex/apexstatue2/apexstatue2.png
    Warn: Slow asset 0.052 : /objects/apex/apexstatue2/apexstatue2.png:default
    Warn: Slow asset 0.051 : /renderer.config
    Warn: Slow asset 0.062 : /renderer.config
    Warn: Slow asset 0.075 : /objects/apex/microscope/microscope.object
    Warn: Slow asset 0.116 : /objects/apex/greenflask/greenflask.object
    Warn: Slow asset 0.07 : /objects/apex/apexwoodenchair/apexwoodenchair.png
    Warn: Slow asset 0.07 : /objects/apex/apexwoodenchair/apexwoodenchair.png:default
    Warn: Slow asset 0.142 : /objects/apex/pipes5/pipes5.object
    Warn: Slow asset 0.143 : /objects/defaultParameters.config
    Warn: Slow asset 0.063 : /objects/apex/reddangersign/reddangersign.object
    Warn: Perf: Assets::loadVariant millis: 205
    Warn: Slow asset 0.205 : /objects/apex/plasmadisc/plasmadisc.object
    Warn: Slow asset 0.066 : /objects/apex/classicchina/classicchina.png
    Warn: Slow asset 0.066 : /objects/apex/classicchina/classicchina.png:default
    Warn: Slow asset 0.066 : /objects/avian/avianbanner4/avianbanner4.object
    Warn: Slow asset 0.068 : /objects/avian/avianbanner2/avianbanner2.object
    Warn: Slow asset 0.055 : /renderer.config
    Warn: Slow asset 0.052 : /objects/avian/tombstone3/tombstone3.object
    Warn: Slow asset 0.054 : /objects/apex/pipes3/pipes3.png
    Warn: Slow asset 0.054 : /objects/apex/pipes3/pipes3.png:default
    Warn: Slow asset 0.057 : /objects/avian/tombstone4/tombstone4.object
    Warn: Object aviancaptainschair does not have a price set
    Warn: Object avianfuelhatch does not have a category set
    Warn: Object avianfuelhatch does not have a price set
    Warn: Object avianshiplocker does not have a price set
    Warn: Object decoyprincess does not have a price set
    Warn: Object ironbeacon does not have a price set
    Warn: Object peanutbutter does not have a price set
    Warn: Object robot does not have a price set
    Warn: Object automatoseed does not have a price set
    Warn: Object wildautomatoseed does not have a price set
    Warn: Object avesmingoseed does not have a price set
    Warn: Object wildavesmingoseed does not have a price set
    Warn: Object bananaseed does not have a price set
    Warn: Object wildbananaseed does not have a price set
    Warn: Object beakseedseed does not have a price set
    Warn: Object wildbeakseedseed does not have a price set
    Warn: Object boltbulbseed does not have a price set
    Warn: Object wildboltbulbseed does not have a price set
    Warn: Object bonebooseed does not have a price set
    Warn: Object wildbonebooseed does not have a price set
    Warn: Object carrotseed does not have a price set
    Warn: Object wildcarrotseed does not have a price set
    Warn: Object chiliseed does not have a price set
    Warn: Object wildchiliseed does not have a price set
    Warn: Object coralcreepseed does not have a price set
    Warn: Object wildcoralcreepseed does not have a price set
    Warn: Object cornseed does not have a price set
    Warn: Object wildcornseed does not have a price set
    Warn: Object crystalplantseed does not have a price set
    Warn: Object wildcrystalplantseed does not have a price set
    Warn: Object currentcornseed does not have a price set
    Warn: Object wildcurrentcornseed does not have a price set
    Warn: Slow asset 0.054 : /objects/glitch/smallwoodencrate/smallwoodencrate.object
    Warn: Slow asset 0.112 : /objects/glitch/signweaponshop/signweaponshop.object
    Warn: Slow asset 0.064 : /objects/farmables/diodia/diodiaseed.object
    Warn: Object diodiaseed does not have a price set
    Warn: Slow asset 0.067 : /objects/glitch/target/target.object
    Warn: Object wilddiodiaseed does not have a price set
    Warn: Object dirturchinseed does not have a price set
    Warn: Object wilddirturchinseed does not have a price set
    Warn: Object eggshootseed does not have a price set
    Warn: Slow asset 0.053 : /objects/glitch/trashbag/trashbag.object
    Warn: Slow asset 0.08 : /objects/glitch/toxicwastebarrel/toxicwastebarrel.object
    Warn: Object wildeggshootseed does not have a price set
    Warn: Object feathercrownseed does not have a price set
    Warn: Object wildfeathercrownseed does not have a price set
    Warn: Object flowerblue does not have a price set
    Warn: Object flowerred does not have a price set
    Warn: Object floweryellow does not have a price set
    Warn: Object grapesseed does not have a price set
    Warn: Object wildgrapesseed does not have a price set
    Warn: Object kiwiseed does not have a price set
    Warn: Object wildkiwiseed does not have a price set
    Warn: Object mushroomseed does not have a price set
    Warn: Object neonmelonseed does not have a price set
    Warn: Object wildneonmelonseed does not have a price set
    Warn: Object oculemonseed does not have a price set
    Warn: Object wildoculemonseed does not have a price set
    Warn: Object pearlpeaseed does not have a price set
    Warn: Object wildpearlpeaseed does not have a price set
    Warn: Object pineappleseed does not have a price set
    Warn: Object wildpineappleseed does not have a price set
    Warn: Object potatoseed does not have a price set
    Warn: Object wildpotatoseed does not have a price set
    Warn: Object pussplumseed does not have a price set
    Warn: Object wildpussplumseed does not have a price set
    Warn: Object reefpodseed does not have a price set
    Warn: Object wildreefpodseed does not have a price set
    Warn: Object riceseed does not have a price set
    Warn: Object wildriceseed does not have a price set
    Warn: Object sugarcaneseed does not have a price set
    Warn: Object wildsugarcaneseed does not have a price set
    Warn: Object tomatoseed does not have a price set
    Warn: Object wildtomatoseed does not have a price set
    Warn: Object toxictopseed does not have a price set
    Warn: Object wildtoxictopseed does not have a price set
    Warn: Object wartweedseed does not have a price set
    Warn: Object wildwartweedseed does not have a price set
    Warn: Object wheatseed does not have a price set
    Warn: Object wildwheatseed does not have a price set
    Warn: Missing inventoryIcon for chestplant1, using default
    Warn: Object florancaptainschair does not have a price set
    Warn: Object floranfuelhatch does not have a category set
    Warn: Object floranfuelhatch does not have a price set
    Warn: Object floranshiplocker does not have a price set
    Warn: Object 3dprinter does not have a price set
    Warn: Object apexdungeonpod does not have a price set
    Warn: Object aviandungeonpod does not have a price set
    Warn: Missing inventoryIcon for barvent, using default
    Warn: Object boosterflame does not have a price set
    Warn: Object boosterflamehuman does not have a price set
    Warn: Slow asset 0.051 : /objects/tiered/tier7techchest/tier7techchest.object
    Warn: Slow asset 0.066 : /objects/tiered/tier8table/tier8table.object
    Warn: Object cultistaltar does not have a price set
    Warn: Object dungeonpod does not have a price set
    Warn: Object florandungeonpod does not have a price set
    Warn: Object frogstatue does not have a category set
    Warn: Object glitchdungeonpod does not have a price set
    Warn: Object randomfountain does not have a price set
    Warn: Slow asset 0.144 : /objects/generic/randomfountain/randomfountain.png
    Warn: Slow asset 0.144 : /objects/generic/randomfountain/randomfountain.png:default
    Warn: Slow asset 0.066 : /objects/generic/shiplight/shiplight.png
    Warn: Slow asset 0.066 : /objects/generic/shiplight/shiplight.png:default.default
    Warn: Object smallboosterflame does not have a price set
    Warn: Object statuspod does not have a price set
    Warn: Object teacup1 does not have a category set
    Warn: Object teapot1 does not have a category set
    Warn: Object teleporter does not have a price set
    Warn: Object tis1 does not have a price set
    Warn: Object volcanopod does not have a price set
    Warn: Object wflowerpot does not have a category set
    Warn: Object woodencookingtable does not have a price set
    Warn: Missing inventoryIcon for wreckvent, using default
    Warn: Object glitchcaptainschair does not have a price set
    Warn: Object glitchfuelhatch does not have a category set
    Warn: Object glitchfuelhatch does not have a price set
    Warn: Object glitchshiplocker does not have a price set
    Debug: Correcting path from /objects/glitch/sewergauge/sewergauge.png to /objects/glitch/sewergauge/sewerGauge.png
    Debug: Correcting path from /objects/glitch/sewervalve/sewervalve.png to /objects/glitch/sewervalve/sewerValve.png
    Debug: Correcting path from /objects/glitch/wallpipe/wallpipe.png to /objects/glitch/wallpipe/wallPipe.png
    Warn: Slow asset 0.067 : /renderer.config
    Warn: Slow asset 0.129 : /objects/human/bunkertable3/bunkertable3.png
    Warn: Slow asset 0.129 : /objects/human/bunkertable3/bunkertable3.png:default
    Warn: Slow asset 0.051 : /objects/human/bunkertv/bunkertvleft.png
    Warn: Slow asset 0.051 : /objects/human/bunkertv/bunkertvleft.png:default
    Warn: Slow asset 0.085 : /objects/human/bunkerwires/bunkerwires.png
    Warn: Slow asset 0.086 : /objects/human/bunkerwires/bunkerwires.png:default
    Warn: Object captainschair does not have a price set
    Warn: Slow asset 0.107 : /objects/human/dangersignv/dangersignv.png
    Warn: Slow asset 0.107 : /objects/human/dangersignv/dangersignv.png:default
    Warn: Slow asset 0.055 : /objects/human/flickeringfluorescentlight/flickeringfluorescentlightright.png
    Warn: Slow asset 0.056 : /objects/human/flickeringfluorescentlight/flickeringfluorescentlightright.png:default.default
    Warn: Object fuelhatch does not have a category set
    Warn: Object fuelhatch does not have a price set
    Warn: Slow asset 0.078 : /objects/human/jukebox/jukebox.png
    Warn: Slow asset 0.078 : /objects/human/jukebox/jukebox.png:default.default
    Warn: Slow asset 0.117 : /objects/human/prisongraffiti1/prisongraffiti1.png
    Warn: Slow asset 0.117 : /objects/human/prisongraffiti1/prisongraffiti1.png:default
    Warn: Object shiplocker does not have a price set
    Warn: Object techconsolehuman does not have a price set
    Warn: Object hylotlcaptainschair does not have a price set
    Warn: Object hylotlfuelhatch does not have a category set
    Warn: Object hylotlfuelhatch does not have a price set
    Warn: Object hylotlshiplocker does not have a price set
    Warn: Object snowglobe1 does not have a category set
    Warn: Object snowglobe2 does not have a category set
    Warn: Slow asset 0.052 : /recipes/biomes/crystal/crystallamp.recipe
    Warn: Slow asset 0.053 : /recipes/biomes/crystal/crystaltable.recipe
    Warn: Slow asset 0.055 : /items/armors/floran/floran-tier9/icons.png
    Warn: Slow asset 0.055 : /items/armors/floran/floran-tier9/icons.png:chest
    Debug: Correcting path from /recipes/level33/feroziumbar.recipe to /recipes/level33/Feroziumbar.recipe
    Debug: Correcting path from /recipes/level35/violiumbar.recipe to /recipes/level35/Violiumbar.recipe
    Debug: Correcting path from /recipes/tier1/metalworkstation/humanmechtech.recipe to /recipes/tier1/metalworkstation/HumanMechTech.recipe
    Error: Could not load /recipes/tier1/metalworkstation/humanmechtech.recipe asset, attempting to use default.
    AssetException: Could not read variant asset /recipes/tier1/metalworkstation/humanmechtech.recipe
    caused by: JsonParsingException: Cannot parse json file: /recipes/tier1/metalworkstation/humanmechtech.recipe
    caused by: JsonParsingException: Error parsing json: unexpected character parsing word at 7:3
      0097C2C8
      007CC2C2
      004E7A5D
      004E873C
      004E075F
      004E081D
      004EA8DB
      004EB04C
      004EBC31
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Debug: Correcting path from /objects/minibiome/mushroom/shroombed/shroombedicon.png to /objects/minibiome/mushroom/shroombed/shroombedIcon.png
    Debug: Correcting path from /objects/tiered/tier3bed/tier3bedicon.png to /objects/tiered/tier3bed/tier3bedIcon.png
    Debug: Correcting path from /objects/tiered/tier3bed/tier3bedicon.png to /objects/tiered/tier3bed/tier3bedIcon.png
    Debug: Correcting path from /objects/tiered/tier3chair/tier3chairicon.png to /objects/tiered/tier3chair/tier3chairIcon.png
    Debug: Correcting path from /objects/tiered/tier3door/tier3dooricon.png to /objects/tiered/tier3door/tier3doorIcon.png
    Debug: Correcting path from /objects/tiered/tier3door/tier3dooricon.png to /objects/tiered/tier3door/tier3doorIcon.png
    Debug: Correcting path from /objects/tiered/tier3light/tier3lighticon.png to /objects/tiered/tier3light/tier3lightIcon.png
    Debug: Correcting path from /objects/tiered/tier4bed/tier4bedicon.png to /objects/tiered/tier4bed/tier4bedIcon.png
    Debug: Correcting path from /objects/tiered/tier4chair/tier4chairicon.png to /objects/tiered/tier4chair/tier4chairIcon.png
    Debug: Correcting path from /objects/tiered/tier4door/tier4dooricon.png to /objects/tiered/tier4door/tier4doorIcon.png
    Debug: Correcting path from /objects/tiered/tier4light/tier4lighticon.png to /objects/tiered/tier4light/tier4lightIcon.png
    Debug: Correcting path from /objects/tiered/tier4switch/tier4switchicon.png to /objects/tiered/tier4switch/tier4switchIcon.png
    Debug: Correcting path from /objects/tiered/tier4switch/tier4switchicon.png to /objects/tiered/tier4switch/tier4switchIcon.png
    Debug: Correcting path from /objects/tiered/tier5bed/tier5bedicon.png to /objects/tiered/tier5bed/tier5bedIcon.png
    Debug: Correcting path from /objects/tiered/tier5bed/tier5bedicon.png to /objects/tiered/tier5bed/tier5bedIcon.png
    Debug: Correcting path from /objects/tiered/tier5chair/tier5chairicon.png to /objects/tiered/tier5chair/tier5chairIcon.png
    Debug: Correcting path from /objects/tiered/tier5door/tier5dooricon.png to /objects/tiered/tier5door/tier5doorIcon.png
    Debug: Correcting path from /objects/tiered/tier5light/tier5lighticon.png to /objects/tiered/tier5light/tier5lightIcon.png
    Debug: Correcting path from /objects/tiered/tier5switch/tier5switchicon.png to /objects/tiered/tier5switch/tier5switchIcon.png
    Debug: Correcting path from /recipes/level33/feroziumbar.recipe to /recipes/level33/Feroziumbar.recipe
    Debug: Correcting path from /items/generic/crafting/feroziumbar.item to /items/generic/crafting/Feroziumbar.item
    Debug: Correcting path from /objects/tiered/tier6bed/tier6bedicon.png to /objects/tiered/tier6bed/tier6bedIcon.png
    Debug: Correcting path from /objects/tiered/tier6door/tier6dooricon.png to /objects/tiered/tier6door/tier6doorIcon.png
    Debug: Correcting path from /objects/tiered/tier6door/tier6dooricon.png to /objects/tiered/tier6door/tier6doorIcon.png
    Debug: Correcting path from /objects/tiered/tier6light/tier6lighticon.png to /objects/tiered/tier6light/tier6lightIcon.png
    Debug: Correcting path from /objects/tiered/tier6switch/tier6switchicon.png to /objects/tiered/tier6switch/tier6switchIcon.png
    Debug: Correcting path from /objects/tiered/tier6switch/tier6switchicon.png to /objects/tiered/tier6switch/tier6switchIcon.png
    Debug: Correcting path from /objects/tiered/tier8bed/tier8bedicon.png to /objects/tiered/tier8bed/tier8bedIcon.png
    Debug: Correcting path from /objects/tiered/tier8chair/tier8chairicon.png to /objects/tiered/tier8chair/tier8chairIcon.png
    Debug: Correcting path from /objects/tiered/tier8chair/tier8chairicon.png to /objects/tiered/tier8chair/tier8chairIcon.png
    Debug: Correcting path from /objects/tiered/tier8door/tier8dooricon.png to /objects/tiered/tier8door/tier8doorIcon.png
    Debug: Correcting path from /objects/tiered/tier8light/tier8lighticon.png to /objects/tiered/tier8light/tier8lightIcon.png
    Debug: Correcting path from /objects/tiered/tier8switch/tier8switchicon.png to /objects/tiered/tier8switch/tier8switchIcon.png
    Debug: Correcting path from /recipes/level35/violiumbar.recipe to /recipes/level35/Violiumbar.recipe
    Debug: Correcting path from /items/generic/crafting/violiumbar.item to /items/generic/crafting/Violiumbar.item
    Debug: Correcting path from /objects/tiered/tier9bed/tier9bedicon.png to /objects/tiered/tier9bed/tier9bedIcon.png
    Debug: Correcting path from /objects/tiered/tier9bed/tier9bedicon.png to /objects/tiered/tier9bed/tier9bedIcon.png
    Debug: Correcting path from /objects/tiered/tier9chair/tier9chairicon.png to /objects/tiered/tier9chair/tier9chairIcon.png
    Debug: Correcting path from /objects/tiered/tier9door/tier9dooricon.png to /objects/tiered/tier9door/tier9doorIcon.png
    Debug: Correcting path from /objects/tiered/tier9light/tier9lighticon.png to /objects/tiered/tier9light/tier9lightIcon.png
    Debug: Correcting path from /objects/tiered/tier9switch/tier9switchicon.png to /objects/tiered/tier9switch/tier9switchIcon.png
    Debug: Correcting path from /items/armors/floran/floranfurnivour/icons.png to /items/armors/floran/floranfurnivour/Icons.png
    Debug: Correcting path from /items/armors/floran/floranfurnivour/icons.png to /items/armors/floran/floranfurnivour/Icons.png
    Debug: Correcting path from /items/armors/floran/floranhunter/icons.png to /items/armors/floran/floranhunter/Icons.png
    Debug: Correcting path from /items/armors/floran/floranleaf/icons.png to /items/armors/floran/floranleaf/Icons.png
    Debug: Correcting path from /items/armors/floran/floranpelt/icons.png to /items/armors/floran/floranpelt/Icons.png
    Debug: Correcting path from /items/armors/floran/floransurvivalist/icons.png to /items/armors/floran/floransurvivalist/Icons.png
    Debug: Correcting path from /items/armors/floran/floransurvivalist/icons.png to /items/armors/floran/floransurvivalist/Icons.png
    Debug: Correcting path from /items/armors/human/human-cool/icons.png to /items/armors/human/human-cool/Icons.png
    Debug: Correcting path from /items/generic/crafting/rubiumbar.item to /items/generic/crafting/Rubiumbar.item
    Debug: Correcting path from /items/generic/crafting/violiumbar.item to /items/generic/crafting/Violiumbar.item
    Debug: Correcting path from /items/generic/crafting/feroziumbar.item to /items/generic/crafting/Feroziumbar.item
    Debug: Correcting path from /items/generic/crafting/ceruliumbar.item to /items/generic/crafting/Ceruliumbar.item
    Error: Could not instantiate item '[keytar, 1, {}]'. ItemException: No such item 'keytar'
      0058547A
      005858AB
      00586AE0
      00586CC6
      005B9285
      004DABBF
      004016D8
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Could not instantiate item '[keytar, 1, {}]'. ItemException: No such item 'keytar'
      0058547A
      005858AB
      00586AE0
      0058747A
      005B9285
      004DABBF
      004016D8
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Debug: Correcting path from /recipes/tier1/metalworkstation/humanmechtech.recipe to /recipes/tier1/metalworkstation/HumanMechTech.recipe
    Error: Could not load /recipes/tier1/metalworkstation/humanmechtech.recipe asset, attempting to use default.
    AssetException: Could not read variant asset /recipes/tier1/metalworkstation/humanmechtech.recipe
    caused by: JsonParsingException: Cannot parse json file: /recipes/tier1/metalworkstation/humanmechtech.recipe
    caused by: JsonParsingException: Error parsing json: unexpected character parsing word at 7:3
      0097C2C8
      007CC2C2
      004E7A5D
      004E873C
      004E075F
      004E081D
      004EA8DB
      004EB04C
      004EB15C
      004EB36E
      005B9344
      004DABBF
      004016D8
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Warn: Slow asset 0.146 : /objects/boss/decoyprincessicon.png
    Warn: Slow asset 0.146 : /objects/boss/decoyprincessicon.png
    Warn: Slow asset 0.06 : /dungeons/avian/avianvillage/avianvillage.dungeon
    Warn: Slow asset 0.062 : /dungeons/avian/aviantower/aviantower.dungeon
    Warn: Slow asset 0.061 : /dungeons/glitch/glitchvillage/glitchvillage.dungeon
    Debug: Found connector on 1 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1 at (51, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 10 at (0, 31) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 10 at (26, 31) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 10 at (0, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 10 at (26, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 10 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 10 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 11 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 11 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 12 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 12 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 13 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 13 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 14 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 14 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 15 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 15 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 16 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 16 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 20 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 20 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 21 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 21 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 22 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 22 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 23 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 23 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 27 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 27 at (51, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3 at (0, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3 at (51, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3 at (51, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4 at (51, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5 at (0, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5 at (26, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 6 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 6 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 8 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 8 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 9 at (0, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 9 at (51, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 9 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 9 at (51, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on entrance1 at (95, 111) color (0, 38, 255, 255) direction 1
    Debug: Found connector on entrance1 at (95, 96) color (0, 38, 255, 255) direction 1
    Debug: Found connector on entrance1 at (169, 96) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entrance1 at (70, 81) color (0, 38, 255, 255) direction 1
    Debug: Found connector on entrance1 at (169, 81) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entrance1 at (70, 66) color (0, 38, 255, 255) direction 1
    Debug: Found connector on entrance1 at (144, 66) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entrance1 at (70, 51) color (0, 38, 255, 255) direction 1
    Debug: Found connector on entrance1 at (144, 51) color (0, 38, 255, 255) direction 0
    Debug: Found connector on template1 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on template1 at (51, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on template2 at (0, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on template2 at (51, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on template2 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on template2 at (51, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on template3 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on template3 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on template4 at (0, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on template4 at (26, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on template4 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on template4 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on template5 at (0, 31) color (0, 38, 255, 255) direction 0
    Debug: Found connector on template5 at (26, 31) color (0, 38, 255, 255) direction 1
    Debug: Found connector on template5 at (0, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on template5 at (26, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on template5 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on template5 at (26, 1) color (0, 38, 255, 255) direction 1
    Debug: Found connector on template6 at (0, 31) color (0, 38, 255, 255) direction 0
    Debug: Found connector on template6 at (53, 31) color (0, 38, 255, 255) direction 1
    Debug: Found connector on template6 at (0, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on template6 at (53, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on template6 at (0, 1) color (0, 38, 255, 255) direction 0
    Debug: Found connector on template6 at (53, 1) color (0, 38, 255, 255) direction 1
    Warn: Slow asset 0.054 : /dungeons/microdungeons/molecave/molecave.dungeon
    Debug: Found connector on 1 at (1, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1 at (43, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 10a at (14, 30) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 10a at (1, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 10b at (1, 30) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 10b at (14, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 11a at (35, 74) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 11a at (36, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 11b at (2, 74) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 11b at (1, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2a at (13, 77) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2a at (42, 11) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2b at (40, 77) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2b at (11, 11) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2c at (1, 77) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2c at (11, 11) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2d at (50, 77) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2d at (40, 11) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3a at (43, 23) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3a at (0, 7) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3b at (0, 23) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3b at (43, 7) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4 at (1, 40) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4 at (84, 40) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5 at (1, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5 at (56, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 6a at (1, 34) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 6a at (47, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 6b at (47, 34) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 6b at (1, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7a at (1, 43) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7a at (65, 7) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7b at (65, 43) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7b at (1, 7) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 8a at (1, 10) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 8a at (79, 10) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 8b at (1, 10) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 8b at (79, 10) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 9 at (1, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 9 at (37, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on entrance1 at (109, 30) color (0, 38, 255, 255) direction 1
    Debug: Found connector on entrance1underground at (109, 11) color (0, 38, 255, 255) direction 1
    Debug: Found connector on rewardroom1a at (12, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on rewardroom1b at (1, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on anchor1 at (12, 32) color (0, 38, 255, 255) direction 2
    Debug: Found connector on anchor1 at (0, 25) color (255, 0, 0, 255) direction 0
    Debug: Found connector on anchor1 at (99, 25) color (255, 0, 0, 255) direction 1
    Debug: Found connector on basement2 at (17, 10) color (255, 255, 0, 255) direction 2
    Debug: Found connector on basement2 at (0, 1) color (255, 0, 0, 255) direction 0
    Debug: Found connector on basement2 at (99, 1) color (255, 0, 0, 255) direction 1
    Debug: Found connector on floor1 at (12, 17) color (0, 38, 255, 255) direction 2
    Debug: Found connector on floor1 at (12, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on floor2 at (12, 17) color (0, 38, 255, 255) direction 2
    Debug: Found connector on floor2 at (12, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on floor3 at (12, 17) color (0, 38, 255, 255) direction 2
    Debug: Found connector on floor3 at (12, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on floor4 at (12, 17) color (0, 38, 255, 255) direction 2
    Debug: Found connector on floor4 at (12, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on floor5 at (12, 17) color (0, 38, 255, 255) direction 2
    Debug: Found connector on floor5 at (12, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on floorb1 at (17, 10) color (255, 255, 0, 255) direction 2
    Debug: Found connector on floorb1 at (17, 0) color (255, 255, 0, 255) direction 3
    Debug: Found connector on floorb2 at (17, 10) color (255, 255, 0, 255) direction 2
    Debug: Found connector on floorb2 at (17, 0) color (255, 255, 0, 255) direction 3
    Debug: Found connector on floorb3 at (17, 10) color (255, 255, 0, 255) direction 2
    Debug: Found connector on floorb3 at (17, 0) color (255, 255, 0, 255) direction 3
    Debug: Found connector on floorb4 at (17, 10) color (255, 255, 0, 255) direction 2
    Debug: Found connector on floorb4 at (17, 0) color (255, 255, 0, 255) direction 3
    Debug: Found connector on floorb5 at (17, 10) color (255, 255, 0, 255) direction 2
    Debug: Found connector on floorb5 at (17, 0) color (255, 255, 0, 255) direction 3
    Debug: Found connector on offices at (0, 25) color (255, 0, 0, 255) direction 0
    Debug: Found connector on offices at (99, 25) color (255, 0, 0, 255) direction 1
    Debug: Found connector on plaza1 at (0, 7) color (255, 0, 0, 255) direction 0
    Debug: Found connector on plaza1 at (96, 7) color (255, 0, 0, 255) direction 1
    Debug: Found connector on roof1 at (12, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on roofb at (17, 1) color (255, 255, 0, 255) direction 3
    Debug: Found connector on store at (0, 10) color (255, 0, 0, 255) direction 0
    Debug: Found connector on store at (99, 10) color (255, 0, 0, 255) direction 1
    Warn: Slow asset 0.068 : /dungeons/microdungeons/randomencounter/generic/randomencounter.dungeon
    Warn: Slow asset 0.102 : /dungeons/avian/avianairship/avianairship.dungeon
    Warn: Slow asset 0.076 : /dungeons/microdungeons/randomencounter/shroomencounter/shroomencounter.dungeon
    Warn: Slow asset 0.1 : /dungeons/microdungeons/randomencounter/underground generic/undergroundencounter.dungeon
    Debug: Found connector on 1 at (59, 95) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 1 at (20, 57) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1 at (98, 57) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1 at (59, 25) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 10 at (45, 58) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 10 at (73, 58) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 10 at (59, 46) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 11 at (89, 74) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 11 at (31, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 12 at (30, 74) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 12 at (88, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 13a at (109, 82) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 13a at (109, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 13b at (93, 45) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 13c at (91, 62) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 13c at (65, 41) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 14a at (10, 82) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 14a at (10, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 14b at (26, 45) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 14c at (27, 62) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 14c at (53, 41) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 15a at (59, 107) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 15a at (10, 76) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 15a at (108, 76) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 15a at (59, 12) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 15b at (10, 74) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 15b at (108, 74) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 15b at (59, 10) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 15c at (10, 52) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 15c at (108, 52) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 15c at (59, 20) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 15d at (10, 67) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 15d at (108, 67) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 16 at (84, 63) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 16 at (34, 45) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 17 at (34, 63) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 17 at (84, 45) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 18 at (96, 59) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 19a at (10, 85) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 19a at (108, 85) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 19a at (59, 35) color (0, 255, 186, 255) direction 3
    Debug: Found connector on 19b at (2, 66) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 19b at (116, 66) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 19b at (59, 39) color (0, 255, 186, 255) direction 3
    Debug: Found connector on 19c at (59, 81) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 2 at (59, 64) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 2 at (59, 55) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 20 at (20, 52) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 20 at (98, 52) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 21a at (89, 63) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 21a at (29, 47) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 21b at (29, 63) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 21b at (89, 47) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 21c at (59, 81) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 21c at (89, 48) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 21c at (29, 47) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 22 at (68, 69) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 22 at (53, 50) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 23 at (51, 69) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 23 at (66, 50) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 24 at (48, 69) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 24 at (79, 54) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 24 at (65, 50) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 25 at (70, 69) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 25 at (39, 54) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 25 at (53, 50) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 26 at (34, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 26 at (85, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 27 at (45, 75) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 27 at (83, 54) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 27 at (45, 44) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 28 at (74, 75) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 28 at (36, 54) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 28 at (74, 44) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 29 at (45, 54) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 29 at (73, 54) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 29 at (59, 50) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 3 at (69, 72) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 3 at (40, 52) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 30 at (19, 47) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 30 at (99, 47) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 30 at (59, 43) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 4 at (49, 72) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 4 at (78, 52) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5a at (45, 54) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5a at (73, 54) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5b at (45, 54) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5b at (73, 54) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5c at (45, 54) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5c at (73, 54) color (0, 38, 255, 255) direction 1
    Warn: Slow asset 0.125 : /dungeons/avian/aviantemple/6.png
    Warn: Perf: Assets::loadImage millis: 180
    Warn: Slow asset 0.18 : /dungeons/avian/aviantemple/6.png
    Debug: Found connector on 6 at (38, 54) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 6 at (80, 54) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 6 at (59, 50) color (0, 38, 255, 255) direction 3
    Warn: Perf: Assets::loadBaseImage millis: 181
    Warn: Slow asset 0.181 : /dungeons/avian/aviantemple/endright2.png
    Warn: Perf: Assets::loadImage millis: 181
    Warn: Slow asset 0.181 : /dungeons/avian/aviantemple/endright2.png
    Warn: Perf: Assets::loadBaseImage millis: 198
    Warn: Slow asset 0.198 : /dungeons/avian/aviantemple/endright1c-objects.png
    Warn: Perf: Assets::loadImage millis: 198
    Warn: Slow asset 0.198 : /dungeons/avian/aviantemple/endright1c-objects.png
    Warn: Slow asset 0.061 : /dungeons/avian/aviantemple/endright3.png
    Warn: Slow asset 0.061 : /dungeons/avian/aviantemple/endright3.png
    Warn: Slow asset 0.06 : /dungeons/avian/aviantemple/endright3a-objects.png
    Warn: Slow asset 0.06 : /dungeons/avian/aviantemple/endright3a-objects.png
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 151
    Warn: Slow asset 0.09 : /dungeons/avian/aviantemple/endright3b-objects.png
    Warn: Slow asset 0.091 : /dungeons/avian/aviantemple/endright3b-objects.png
    Warn: Slow asset 0.092 : /dungeons/avian/aviantemple/endright3c-objects.png
    Warn: Slow asset 0.092 : /dungeons/avian/aviantemple/endright3c-objects.png
    Debug: Found connector on 7 at (23, 47) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7 at (95, 47) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7 at (59, 35) color (0, 38, 255, 255) direction 3
    Warn: Slow asset 0.065 : /dungeons/avian/aviantemple/endright3d-objects.png
    Warn: Slow asset 0.065 : /dungeons/avian/aviantemple/endright3d-objects.png
    Warn: Slow asset 0.064 : /dungeons/avian/aviantemple/endright3e-objects.png
    Warn: Slow asset 0.064 : /dungeons/avian/aviantemple/endright3e-objects.png
    Debug: Found connector on 8a at (59, 85) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 8a at (18, 39) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 8a at (100, 39) color (0, 38, 255, 255) direction 1
    Warn: Slow asset 0.089 : /dungeons/avian/aviantemple/endright4.png
    Warn: Slow asset 0.089 : /dungeons/avian/aviantemple/endright4.png
    Warn: Slow asset 0.086 : /dungeons/avian/aviantemple/8b.png
    Warn: Slow asset 0.086 : /dungeons/avian/aviantemple/8b.png
    Debug: Found connector on 8b at (18, 40) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 8b at (100, 40) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 9 at (10, 54) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 9 at (109, 54) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endceiling1 at (9, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling2 at (9, 0) color (0, 38, 255, 255) direction 3
    Warn: Slow asset 0.111 : /dungeons/avian/aviantemple/entrance1.png
    Warn: Slow asset 0.111 : /dungeons/avian/aviantemple/entrance1.png
    Debug: Found connector on endceiling3 at (9, 0) color (0, 38, 255, 255) direction 3
    Warn: Slow asset 0.078 : /dungeons/avian/aviantemple/entrance2.png
    Warn: Slow asset 0.078 : /dungeons/avian/aviantemple/entrance2.png
    Debug: Found connector on endfloor1 at (9, 6) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endfloor2 at (9, 7) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endfloor3 at (9, 8) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endfloor4 at (9, 4) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endleft1a at (16, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft1b at (16, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft1c at (16, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft1d at (16, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft2a at (16, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft2b at (16, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft2c at (16, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft2d at (16, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft3a at (17, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft3b at (17, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft3c at (17, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft3d at (17, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft3e at (17, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft4a at (17, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft4b at (17, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft4c at (17, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft4d at (17, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft4e at (17, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft5 at (4, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endright1a at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright1b at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright1c at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright1d at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright2a at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright2b at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright2c at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright2d at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright3a at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright3b at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright3c at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright3d at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright3e at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright4a at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright4b at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright4c at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright4d at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright4e at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright5 at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entrance at (174, 5) color (0, 38, 255, 255) direction 3
    Debug: Found connector on entrance2 at (174, 23) color (0, 38, 255, 255) direction 3
    Debug: Found connector on entrance3 at (175, 28) color (0, 38, 255, 255) direction 3
    Debug: Found connector on entrance4 at (175, 18) color (0, 38, 255, 255) direction 3
    Debug: Found connector on entrance5 at (175, 10) color (0, 38, 255, 255) direction 3
    Debug: Found connector on entrance6 at (174, 107) color (186, 255, 0, 255) direction 3
    Debug: Found connector on pyramidentry1 at (35, 70) color (186, 255, 0, 255) direction 2
    Debug: Found connector on pyramidentry1 at (35, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on pyramidentry2 at (35, 70) color (186, 255, 0, 255) direction 2
    Debug: Found connector on pyramidentry2 at (35, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on pyramidentry3 at (35, 70) color (186, 255, 0, 255) direction 2
    Debug: Found connector on pyramidentry3 at (35, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on waterendceiling at (9, 0) color (0, 255, 186, 255) direction 3
    Debug: Found connector on waterendfloor at (9, 3) color (0, 255, 186, 255) direction 2
    Debug: Found connector on waterendleft at (3, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on waterendright at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 10a at (8, 9) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 10a at (51, 9) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 10b at (8, 9) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 10b at (51, 9) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 11a at (8, 9) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 11a at (51, 9) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 12a at (8, 9) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 12a at (51, 9) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 13a at (59, 47) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 13a at (5, 24) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 13a at (113, 24) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 13a at (59, 9) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 14a at (7, 13) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 14a at (66, 13) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 14b at (37, 34) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 14b at (7, 11) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 14b at (66, 11) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 15a at (7, 38) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 15a at (34, 38) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 15b at (7, 38) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 15b at (34, 38) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 15c at (7, 38) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 15c at (34, 38) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 16a at (37, 38) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 16a at (6, 33) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 17a at (6, 38) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 17a at (37, 33) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1a at (60, 90) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 1a at (5, 56) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1a at (115, 56) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1a at (60, 10) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 2a at (50, 40) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 2a at (18, 9) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 2b at (50, 40) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 2b at (9, 13) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2c at (59, 25) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2c at (18, 9) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 2d at (59, 25) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2d at (9, 13) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3a at (18, 40) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 3a at (50, 9) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 3b at (18, 40) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 3b at (59, 13) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3c at (7, 25) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3c at (48, 9) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 3d at (9, 25) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3d at (59, 13) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4a at (59, 81) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 4a at (9, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4a at (109, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7a at (17, 49) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 7a at (29, 22) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7a at (5, 10) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7b at (19, 37) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 7b at (7, 22) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7b at (31, 10) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7c at (7, 22) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7c at (31, 10) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 8a at (17, 49) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 8a at (5, 22) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 8a at (29, 10) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 8b at (19, 37) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 8b at (31, 22) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 8b at (7, 10) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 8c at (31, 22) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 8c at (7, 10) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endceiling at (9, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling1a at (29, 1) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling2a at (29, 1) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling2b at (29, 1) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling3a at (29, 1) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling4 at (29, 1) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling5a at (29, 1) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling6a at (29, 1) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling6b at (29, 1) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling7 at (29, 1) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endfloor at (9, 3) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endfloor1a at (29, 35) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endfloor2a at (13, 13) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endfloor2b at (13, 13) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endleft at (3, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft1a at (33, 12) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft1b at (33, 12) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft2a at (33, 12) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft2b at (33, 12) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft3a at (33, 12) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft3b at (33, 12) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endright at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright1a at (1, 12) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright1b at (1, 12) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright2a at (1, 12) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright2b at (1, 12) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright3a at (1, 12) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright3b at (1, 12) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entrance1 at (121, 36) color (0, 38, 255, 255) direction 3
    Debug: Found connector on entrance2 at (78, 51) color (0, 38, 255, 255) direction 3
    Debug: Found connector on waterendceiling at (9, 0) color (0, 255, 186, 255) direction 3
    Debug: Found connector on waterendfloor at (9, 3) color (0, 255, 186, 255) direction 2
    Debug: Found connector on waterendleft at (3, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on waterendright at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 1 at (37, 64) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 1 at (37, 10) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 2 at (37, 64) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 2 at (37, 10) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 3 at (37, 54) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 3 at (37, 20) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 4 at (38, 71) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 4 at (38, 4) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 5 at (38, 64) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 5 at (38, 10) color (0, 38, 255, 255) direction 3
    Debug: Found connector on entrance at (92, 68) color (0, 38, 255, 255) direction 2
    Debug: Found connector on roof1 at (37, 10) color (0, 38, 255, 255) direction 3
    Debug: Found connector on roof2 at (37, 10) color (0, 38, 255, 255) direction 3
    Debug: Found connector on roof3 at (37, 10) color (0, 38, 255, 255) direction 3
    Debug: Found connector on roof4 at (37, 10) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 10 at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 10 at (20, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 11 at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 11 at (59, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 12 at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 12 at (20, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 13 at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 13 at (20, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 14 at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 14 at (18, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 15 at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 15 at (20, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 16 at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 16 at (20, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 17 at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 17 at (20, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 18 at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 18 at (20, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 19a at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 19a at (43, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 19b at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 19b at (43, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1a at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1a at (63, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1b at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1b at (63, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 20a at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 20a at (63, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 20b at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 20b at (63, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2a at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2a at (43, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2b at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2b at (43, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3a at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3a at (56, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3b at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3b at (56, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4 at (0, 38) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4 at (42, 38) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5 at (0, 38) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5 at (79, 38) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 6 at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 6 at (12, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7a at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7a at (35, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7b at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7b at (35, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 8 at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 8 at (48, 25) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 9 at (0, 38) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 9 at (59, 38) color (0, 38, 255, 255) direction 1
    Debug: Found connector on stairs1 at (11, 33) color (0, 38, 255, 255) direction 1
    Debug: Found connector on stairs1 at (0, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on stairs2 at (0, 33) color (0, 38, 255, 255) direction 0
    Debug: Found connector on stairs2 at (11, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on villagecenter1 at (0, 39) color (0, 38, 255, 255) direction 0
    Debug: Found connector on villagecenter1 at (79, 39) color (0, 38, 255, 255) direction 1
    Debug: Found connector on villageentryleft1 at (167, 66) color (0, 38, 255, 255) direction 1
    Debug: Found connector on villageentryleft2 at (119, 66) color (0, 38, 255, 255) direction 1
    Debug: Found connector on villageentryleft3 at (132, 66) color (0, 38, 255, 255) direction 1
    Debug: Found connector on villageentryright1 at (0, 66) color (0, 38, 255, 255) direction 0
    Debug: Found connector on villageentryright2 at (0, 66) color (0, 38, 255, 255) direction 0
    Debug: Found connector on villageentryright3 at (0, 66) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1a at (33, 86) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1a at (117, 86) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1a at (33, 41) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1a at (117, 41) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2a at (65, 69) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2a at (85, 69) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2b at (65, 69) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2b at (85, 69) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2c at (65, 77) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2c at (85, 69) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2d at (85, 77) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2d at (65, 69) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2e at (65, 77) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2e at (85, 69) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2f at (85, 77) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2f at (65, 69) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3a at (64, 69) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3a at (98, 69) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3b at (64, 69) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3b at (98, 69) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3c at (64, 69) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3c at (98, 69) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4a at (43, 69) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4a at (107, 69) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4b at (43, 69) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4b at (107, 69) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4c at (43, 69) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4c at (107, 69) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4d at (43, 69) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4d at (107, 69) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4e at (43, 69) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4e at (107, 69) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4f at (43, 69) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4f at (107, 69) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5a at (67, 105) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5a at (95, 105) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5a at (67, 90) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5a at (67, 75) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5a at (67, 60) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5a at (67, 45) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5a at (67, 30) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5a at (99, 27) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5b at (55, 105) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5b at (83, 105) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5b at (83, 90) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5b at (83, 75) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5b at (83, 60) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5b at (83, 45) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5b at (83, 30) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5b at (51, 27) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5c at (55, 105) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5c at (71, 90) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5c at (71, 75) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5c at (71, 60) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5c at (71, 45) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5c at (71, 30) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5c at (103, 27) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5d at (97, 105) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5d at (81, 90) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5d at (81, 75) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5d at (81, 60) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5d at (81, 45) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5d at (81, 30) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5d at (49, 27) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5e at (24, 108) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5e at (128, 108) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5e at (40, 93) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5e at (112, 93) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5e at (40, 78) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5e at (112, 78) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5e at (40, 63) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5e at (112, 63) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5e at (40, 48) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5e at (112, 48) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5e at (40, 33) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5e at (112, 33) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5f at (24, 126) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5f at (128, 126) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5f at (40, 111) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5f at (112, 111) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5f at (40, 96) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5f at (112, 96) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5f at (40, 81) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5f at (112, 81) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5f at (40, 66) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5f at (112, 66) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5f at (40, 51) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 5f at (112, 51) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 5f at (60, 12) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5f at (92, 12) color (0, 38, 255, 255) direction 1
    Debug: Found connector on cellleft at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1a at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1b at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1c at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1d at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1e at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1f at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1g at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1h at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1i at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1j at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1k at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1l at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1m at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1n at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1o at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1p at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1q at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1r at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1s at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1t at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1u at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1v at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1w at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1x at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1y at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellleft1z at (14, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cellright at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1a at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1b at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1c at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1d at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1e at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1f at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1g at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1h at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1i at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1j at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1k at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1l at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1m at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1n at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1o at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1p at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1q at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1r at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1s at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1t at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1u at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1v at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1w at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1x at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1y at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cellright1z at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on endleft1 at (25, 19) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft2 at (25, 19) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endright1 at (22, 19) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright2 at (22, 19) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entrance1 at (33, 36) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entrance1 at (117, 36) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1a at (11, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1a at (89, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1a-chest at (11, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1a-chest at (89, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2a at (11, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2a at (89, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2a-chest at (11, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2a-chest at (89, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2b at (11, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2b at (89, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2b-chest at (11, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2b-chest at (89, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3a at (43, 75) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3a at (62, 20) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3b at (61, 75) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3b at (42, 20) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3c at (43, 75) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3c at (43, 20) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3d at (62, 75) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3d at (62, 20) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4a at (34, 45) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4a at (62, 34) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4b at (62, 45) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4b at (34, 34) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5a at (26, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5a at (73, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5b at (26, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5b at (73, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5b-chest at (26, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5b-chest at (73, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5c at (26, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5c at (73, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft1a-chest at (21, 10) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft1b-chest at (21, 10) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft2 at (17, 10) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endright1a-chest at (7, 10) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright1b-chest at (7, 10) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright2 at (11, 10) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entrance1 at (15, 60) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entrance1 at (176, 60) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1a at (48, 77) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 1a at (48, 20) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 1b at (48, 77) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 1b at (48, 20) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 2a at (49, 77) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 2a at (49, 20) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 2b at (49, 77) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 2b at (49, 20) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 3a at (49, 69) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 3a at (49, 29) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 3b at (49, 69) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 3b at (49, 29) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 4a at (49, 68) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 4a at (49, 29) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 4b at (49, 68) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 4b at (49, 29) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endcapleft at (29, 32) color (0, 255, 186, 255) direction 1
    Debug: Found connector on endcapright at (0, 32) color (0, 255, 186, 255) direction 0
    Debug: Found connector on endtoproof1a at (48, 24) color (0, 38, 255, 255) direction 3
    Warn: Slow asset 0.055 : /dungeons/glitch/glitchcastle/1a-right-objects.png
    Warn: Slow asset 0.055 : /dungeons/glitch/glitchcastle/1a-right-objects.png
    Debug: Found connector on endtoproof2a at (48, 24) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endtoproof2b at (48, 24) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endtoproof3a at (48, 24) color (0, 38, 255, 255) direction 3
    Warn: Slow asset 0.103 : /renderer.config
    Debug: Found connector on endtoproof3b at (48, 24) color (0, 38, 255, 255) direction 3
    Warn: Slow asset 0.082 : /dungeons/floran/floranvillagetower/roof4.png
    Warn: Slow asset 0.082 : /dungeons/floran/floranvillagetower/roof4.png
    Debug: Found connector on endtoproof4a at (48, 24) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endtoproof4b at (48, 24) color (0, 38, 255, 255) direction 3
    Debug: Found connector on groundhut1a at (25, 49) color (0, 255, 186, 255) direction 0
    Debug: Found connector on groundhut1a at (73, 49) color (0, 255, 186, 255) direction 1
    Debug: Found connector on groundhut1b at (25, 49) color (0, 255, 186, 255) direction 0
    Debug: Found connector on groundhut1b at (73, 49) color (0, 255, 186, 255) direction 1
    Debug: Found connector on groundhut2a at (23, 49) color (0, 255, 186, 255) direction 0
    Debug: Found connector on groundhut2a at (76, 49) color (0, 255, 186, 255) direction 1
    Debug: Found connector on groundhut2b at (23, 49) color (0, 255, 186, 255) direction 0
    Debug: Found connector on groundhut2b at (76, 49) color (0, 255, 186, 255) direction 1
    Debug: Found connector on groundhut3a at (20, 49) color (0, 255, 186, 255) direction 0
    Debug: Found connector on groundhut3a at (76, 49) color (0, 255, 186, 255) direction 1
    Debug: Found connector on groundhut3b at (20, 49) color (0, 255, 186, 255) direction 0
    Debug: Found connector on groundhut3b at (76, 49) color (0, 255, 186, 255) direction 1
    Debug: Found connector on groundhut4a at (21, 49) color (0, 255, 186, 255) direction 0
    Debug: Found connector on groundhut4a at (78, 49) color (0, 255, 186, 255) direction 1
    Debug: Found connector on groundhut4b at (21, 49) color (0, 255, 186, 255) direction 0
    Debug: Found connector on groundhut4b at (78, 49) color (0, 255, 186, 255) direction 1
    Debug: Found connector on groundhut5a at (21, 49) color (0, 255, 186, 255) direction 0
    Debug: Found connector on groundhut5a at (78, 49) color (0, 255, 186, 255) direction 1
    Debug: Found connector on groundhut5b at (21, 49) color (0, 255, 186, 255) direction 0
    Debug: Found connector on groundhut5b at (78, 49) color (0, 255, 186, 255) direction 1
    Debug: Found connector on groundhut6a at (22, 49) color (0, 255, 186, 255) direction 0
    Debug: Found connector on groundhut6a at (75, 49) color (0, 255, 186, 255) direction 1
    Debug: Found connector on groundhut6b at (22, 49) color (0, 255, 186, 255) direction 0
    Debug: Found connector on groundhut6b at (75, 49) color (0, 255, 186, 255) direction 1
    Warn: Perf: Assets::loadBaseImage millis: 224
    Warn: Slow asset 0.224 : /dungeons/glitch/glitchcastle/2b-right-objects.png
    Warn: Perf: Assets::loadImage millis: 224
    Warn: Slow asset 0.224 : /dungeons/glitch/glitchcastle/2b-right-objects.png
    Warn: Perf: Assets::loadBaseImage millis: 223
    Warn: Slow asset 0.223 : /dungeons/glitch/glitchcastle/3-left.png
    Warn: Perf: Assets::loadImage millis: 223
    Warn: Slow asset 0.223 : /dungeons/glitch/glitchcastle/3-left.png
    Debug: Found connector on roof1a at (48, 24) color (0, 38, 255, 255) direction 3
    Debug: Found connector on roof2a at (48, 24) color (0, 38, 255, 255) direction 3
    Warn: Slow asset 0.077 : /dungeons/glitch/glitchcastle/3a-left-objects.png
    Warn: Slow asset 0.078 : /dungeons/glitch/glitchcastle/3a-left-objects.png
    Warn: Slow asset 0.077 : /dungeons/glitch/glitchcastle/3a-objects.png
    Warn: Slow asset 0.077 : /dungeons/glitch/glitchcastle/3a-objects.png
    Debug: Found connector on roof2b at (48, 24) color (0, 38, 255, 255) direction 3
    Debug: Found connector on roof3a at (48, 24) color (0, 38, 255, 255) direction 3
    Debug: Found connector on roof3b at (48, 24) color (0, 38, 255, 255) direction 3
    Warn: Slow asset 0.101 : /dungeons/glitch/glitchcastle/4a-objects.png
    Warn: Slow asset 0.101 : /dungeons/glitch/glitchcastle/4a-objects.png
    Warn: Slow asset 0.103 : /dungeons/glitch/glitchcastle/4a-left-objects.png
    Warn: Slow asset 0.103 : /dungeons/glitch/glitchcastle/4a-left-objects.png
    Debug: Found connector on roof4a at (48, 24) color (0, 38, 255, 255) direction 3
    Debug: Found connector on roof4b at (48, 24) color (0, 38, 255, 255) direction 3
    Debug: Found connector on treebase1 at (48, 74) color (0, 38, 255, 255) direction 2
    Debug: Found connector on treebase1 at (71, 49) color (0, 255, 186, 255) direction 1
    Debug: Found connector on treebase1 at (25, 47) color (0, 255, 186, 255) direction 0
    Debug: Found connector on treebase2 at (48, 74) color (0, 38, 255, 255) direction 2
    Debug: Found connector on treebase2 at (23, 48) color (0, 255, 186, 255) direction 0
    Debug: Found connector on treebase2 at (73, 46) color (0, 255, 186, 255) direction 1
    Debug: Found connector on treebase3 at (48, 74) color (0, 38, 255, 255) direction 2
    Debug: Found connector on treebase3 at (72, 49) color (0, 255, 186, 255) direction 1
    Debug: Found connector on treebase3 at (25, 48) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 1a at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1a at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1a-left at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1a-right at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1b at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1b at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1b-left at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1b-right at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2a at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2a at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2a-left at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2a-right at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2b at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2b at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2b-left at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2b-right at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3a at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3a at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3a-left at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3a-right at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4a at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4a at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4a-left at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4a-right at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5a at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5a at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5a-left at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5a-right at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5b at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5b at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5b-left at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5b-right at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 6a at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 6a at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 6a-left at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 6a-right at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 6b at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 6b at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 6b-left at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 6b-right at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7a at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7a at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7a-left at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7a-right at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7b at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7b at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7b-left at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7b-right at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 8a at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 8a at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 8a-left at (35, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 8a-right at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase1 at (165, 100) color (0, 255, 186, 255) direction 1
    Debug: Found connector on castlebase1 at (201, 100) color (0, 255, 186, 255) direction 0
    Debug: Found connector on castlebase1 at (233, 100) color (0, 255, 186, 255) direction 1
    Debug: Found connector on castlebase1 at (269, 100) color (0, 255, 186, 255) direction 0
    Debug: Found connector on castlebase1 at (199, 80) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase1 at (268, 80) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase1 at (301, 80) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase1 at (98, 60) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase1 at (199, 60) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase1 at (268, 60) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase1 at (335, 60) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase2 at (193, 137) color (0, 255, 186, 255) direction 1
    Debug: Found connector on castlebase2 at (229, 137) color (0, 255, 186, 255) direction 0
    Debug: Found connector on castlebase2 at (261, 137) color (255, 168, 0, 255) direction 1
    Debug: Found connector on castlebase2 at (228, 117) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase2 at (91, 97) color (0, 255, 186, 255) direction 1
    Debug: Found connector on castlebase2 at (127, 97) color (0, 255, 186, 255) direction 2
    Debug: Found connector on castlebase2 at (160, 97) color (0, 38, 255, 255) direction 2
    Debug: Found connector on castlebase2 at (193, 97) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase2 at (228, 97) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase2 at (92, 77) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase2 at (193, 77) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase2 at (228, 77) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase2 at (92, 57) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase2 at (159, 57) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase2 at (228, 57) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase3 at (184, 137) color (255, 168, 0, 255) direction 0
    Debug: Found connector on castlebase3 at (216, 137) color (0, 255, 186, 255) direction 1
    Debug: Found connector on castlebase3 at (252, 137) color (0, 255, 186, 255) direction 0
    Debug: Found connector on castlebase3 at (216, 117) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase3 at (216, 97) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase3 at (251, 97) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase3 at (284, 97) color (0, 38, 255, 255) direction 2
    Debug: Found connector on castlebase3 at (318, 97) color (0, 255, 186, 255) direction 1
    Debug: Found connector on castlebase3 at (354, 97) color (0, 255, 186, 255) direction 0
    Debug: Found connector on castlebase3 at (216, 77) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase3 at (251, 77) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase3 at (352, 77) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase3 at (216, 57) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase3 at (285, 57) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase3 at (352, 57) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase4 at (223, 137) color (0, 255, 186, 255) direction 1
    Debug: Found connector on castlebase4 at (259, 137) color (0, 255, 186, 255) direction 0
    Debug: Found connector on castlebase4 at (157, 117) color (0, 255, 186, 255) direction 0
    Debug: Found connector on castlebase4 at (190, 117) color (0, 38, 255, 255) direction 2
    Debug: Found connector on castlebase4 at (223, 117) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase4 at (325, 117) color (0, 255, 186, 255) direction 1
    Debug: Found connector on castlebase4 at (122, 97) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase4 at (223, 97) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase4 at (258, 97) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase4 at (359, 97) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase4 at (156, 77) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase4 at (223, 77) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase4 at (292, 77) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase4 at (325, 77) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase5 at (165, 100) color (0, 255, 186, 255) direction 1
    Debug: Found connector on castlebase5 at (201, 100) color (0, 255, 186, 255) direction 0
    Debug: Found connector on castlebase5 at (233, 100) color (0, 255, 186, 255) direction 1
    Debug: Found connector on castlebase5 at (269, 100) color (0, 255, 186, 255) direction 2
    Debug: Found connector on castlebase5 at (301, 80) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase5 at (98, 60) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase5 at (165, 60) color (0, 38, 255, 255) direction 0
    Debug: Found connector on castlebase5 at (268, 60) color (0, 38, 255, 255) direction 1
    Debug: Found connector on castlebase5 at (369, 60) color (0, 38, 255, 255) direction 0
    Debug: Found connector on hall1a at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on hall1a at (69, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on hall1a-left at (69, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on hall1a-right at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on hall2a at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on hall2a at (69, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on hall2a-left at (69, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on hall2a-right at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on hall3a at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on hall3a at (69, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on hall3a-left at (69, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on hall3a-right at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on hall4a at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on hall4a at (69, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on hall4a-left at (69, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on hall4a-right at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on mountainentrance1 at (5, 137) color (255, 168, 0, 255) direction 0
    Debug: Found connector on mountainentrance2 at (5, 137) color (255, 168, 0, 255) direction 0
    Debug: Found connector on mountainentrance3 at (5, 137) color (255, 168, 0, 255) direction 0
    Debug: Found connector on mountainentrance4 at (5, 137) color (255, 168, 0, 255) direction 0
    Debug: Found connector on mountainentrance5 at (218, 137) color (255, 168, 0, 255) direction 1
    Debug: Found connector on mountainentrance6 at (218, 137) color (255, 168, 0, 255) direction 1
    Debug: Found connector on mountainentrance7 at (218, 137) color (255, 168, 0, 255) direction 1
    Debug: Found connector on mountainentrance8 at (218, 137) color (255, 168, 0, 255) direction 1
    Debug: Found connector on prisonentry1a at (11, 28) color (0, 38, 255, 255) direction 0
    Debug: Found connector on prisonentry1a at (46, 28) color (0, 38, 255, 255) direction 1
    Debug: Found connector on prisonentry1a at (0, 4) color (168, 255, 0, 255) direction 0
    Debug: Found connector on prisonentry1a at (58, 4) color (168, 255, 0, 255) direction 1
    Debug: Found connector on prisonentry1a-left at (46, 28) color (0, 38, 255, 255) direction 1
    Debug: Found connector on prisonentry1a-left at (0, 4) color (168, 255, 0, 255) direction 0
    Debug: Found connector on prisonentry1a-left at (58, 4) color (168, 255, 0, 255) direction 1
    Debug: Found connector on prisonentry1a-right at (11, 28) color (0, 38, 255, 255) direction 0
    Debug: Found connector on prisonentry1a-right at (0, 4) color (168, 255, 0, 255) direction 0
    Debug: Found connector on prisonentry1a-right at (58, 4) color (168, 255, 0, 255) direction 1
    Debug: Found connector on prisonentry2a at (0, 28) color (0, 38, 255, 255) direction 0
    Debug: Found connector on prisonentry2a at (35, 28) color (0, 38, 255, 255) direction 2
    Debug: Found connector on prisonentry2a at (57, 6) color (168, 255, 0, 255) direction 1
    Debug: Found connector on prisonentry2a-left at (35, 28) color (0, 38, 255, 255) direction 2
    Debug: Found connector on prisonentry2a-left at (57, 6) color (168, 255, 0, 255) direction 1
    Debug: Found connector on prisonentry2a-right at (0, 28) color (0, 38, 255, 255) direction 0
    Debug: Found connector on prisonentry2a-right at (57, 6) color (168, 255, 0, 255) direction 1
    Debug: Found connector on prisonentry3a at (22, 28) color (0, 38, 255, 255) direction 2
    Debug: Found connector on prisonentry3a at (57, 28) color (0, 38, 255, 255) direction 1
    Debug: Found connector on prisonentry3a at (1, 6) color (168, 255, 0, 255) direction 0
    Debug: Found connector on prisonentry3a-left at (57, 28) color (0, 38, 255, 255) direction 1
    Debug: Found connector on prisonentry3a-left at (1, 6) color (168, 255, 0, 255) direction 0
    Debug: Found connector on prisonentry3a-right at (22, 28) color (0, 38, 255, 255) direction 2
    Debug: Found connector on prisonentry3a-right at (1, 6) color (168, 255, 0, 255) direction 0
    Debug: Found connector on prisonroom10a at (7, 6) color (168, 255, 0, 255) direction 0
    Debug: Found connector on prisonroom1a at (1, 6) color (168, 255, 0, 255) direction 0
    Debug: Found connector on prisonroom2a at (9, 6) color (168, 255, 0, 255) direction 0
    Debug: Found connector on prisonroom2b at (9, 6) color (168, 255, 0, 255) direction 0
    Debug: Found connector on prisonroom3a at (15, 6) color (168, 255, 0, 255) direction 0
    Debug: Found connector on prisonroom4a at (46, 6) color (168, 255, 0, 255) direction 1
    Debug: Found connector on prisonroom5a at (38, 6) color (168, 255, 0, 255) direction 1
    Debug: Found connector on prisonroom5b at (38, 6) color (168, 255, 0, 255) direction 1
    Debug: Found connector on prisonroom6a at (29, 6) color (168, 255, 0, 255) direction 1
    Debug: Found connector on prisonroom7a at (29, 6) color (168, 255, 0, 255) direction 1
    Debug: Found connector on prisonroom8a at (15, 6) color (168, 255, 0, 255) direction 0
    Debug: Found connector on prisonroom9a at (40, 6) color (168, 255, 0, 255) direction 1
    Debug: Found connector on tower1a at (11, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on tower1a at (49, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on tower1a-left at (49, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on tower1a-right at (11, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on tower2a at (11, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on tower2a at (49, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on tower2a-left at (49, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on tower2a-right at (11, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on tower3a at (11, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on tower3a at (49, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on tower3a-left at (49, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on tower3a-right at (11, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on tower4a at (11, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on tower4a at (49, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on tower4a-left at (49, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on tower4a-right at (11, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on tower5a at (11, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on tower5a at (49, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on tower5a-left at (49, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on tower5a-right at (11, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on tower6a at (11, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on tower6a at (49, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on tower6a-left at (49, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on tower6a-right at (11, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on tower7a at (11, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on tower7a at (49, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on tower7a-left at (49, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on tower7a-right at (11, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 1a at (37, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1a at (63, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1b at (37, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1b at (63, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1c at (37, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1c at (63, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2a at (1, 50) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2a at (97, 50) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2b at (6, 50) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2b at (89, 50) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3a at (35, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3a at (64, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3a at (50, 35) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 3b at (35, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3b at (64, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3b at (50, 35) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 4a at (50, 59) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 4a at (35, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4a at (64, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4b at (50, 59) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 4b at (35, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4b at (64, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5a at (35, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5a at (50, 35) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 5b at (65, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5b at (51, 35) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 6a at (50, 59) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 6a at (64, 42) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 6b at (49, 59) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 6b at (34, 42) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7a at (50, 78) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 7a at (50, 33) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 8a at (36, 72) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 8a at (36, 27) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endbottom1 at (15, 12) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endleft1 at (11, 11) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endright1 at (9, 11) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endtop1 at (15, 10) color (0, 38, 255, 255) direction 3
    Debug: Found connector on entrance at (77, 21) color (0, 38, 255, 255) direction 1
    Debug: Found connector on entrance at (23, 14) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1 at (14, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1 at (64, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 10 at (11, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 10 at (67, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 11 at (17, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 11 at (57, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 12 at (26, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 12 at (54, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 13 at (26, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 13 at (53, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 14 at (20, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 14 at (56, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 15 at (27, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 15 at (53, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 16 at (27, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 16 at (56, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 17a at (27, 63) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 17a at (52, 63) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 17b at (27, 63) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 17b at (52, 63) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 18a at (31, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 18a at (54, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 18b at (31, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 18b at (54, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 19a at (36, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 19a at (49, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 19b at (36, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 19b at (49, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2 at (23, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2 at (55, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 20a at (33, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 20a at (53, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 20b at (33, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 20b at (53, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 21a at (32, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 21a at (50, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 21b at (32, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 21b at (50, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 22a at (23, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 22a at (60, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 22b at (23, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 22b at (60, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 23a at (28, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 23a at (45, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 23b at (28, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 23b at (45, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3 at (19, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3 at (60, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4 at (20, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4 at (58, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5 at (15, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5 at (64, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 6 at (16, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 6 at (64, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7a at (19, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7a at (60, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7b at (19, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7b at (60, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 8a at (25, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 8a at (59, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 8b at (20, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 8b at (54, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 9a at (14, 20) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 9a at (67, 20) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 9b at (12, 20) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 9b at (65, 20) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft1 at (69, 66) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endright1 at (0, 66) color (0, 38, 255, 255) direction 0
    Debug: Found connector on slope1 at (3, 21) color (0, 38, 255, 255) direction 0
    Debug: Found connector on slope1 at (14, 19) color (0, 38, 255, 255) direction 1
    Debug: Found connector on slope10 at (1, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on slope10 at (18, 19) color (0, 38, 255, 255) direction 1
    Debug: Found connector on slope11 at (4, 21) color (0, 38, 255, 255) direction 0
    Debug: Found connector on slope11 at (14, 19) color (0, 38, 255, 255) direction 1
    Debug: Found connector on slope12 at (15, 21) color (0, 38, 255, 255) direction 1
    Debug: Found connector on slope12 at (4, 19) color (0, 38, 255, 255) direction 0
    Debug: Found connector on slope13 at (7, 21) color (0, 38, 255, 255) direction 0
    Debug: Found connector on slope13 at (12, 19) color (0, 38, 255, 255) direction 1
    Debug: Found connector on slope14 at (12, 21) color (0, 38, 255, 255) direction 1
    Debug: Found connector on slope14 at (7, 19) color (0, 38, 255, 255) direction 0
    Debug: Found connector on slope2 at (14, 21) color (0, 38, 255, 255) direction 1
    Debug: Found connector on slope2 at (3, 19) color (0, 38, 255, 255) direction 0
    Debug: Found connector on slope3 at (16, 22) color (0, 38, 255, 255) direction 1
    Debug: Found connector on slope3 at (3, 19) color (0, 38, 255, 255) direction 0
    Debug: Found connector on slope4 at (3, 22) color (0, 38, 255, 255) direction 0
    Debug: Found connector on slope4 at (16, 19) color (0, 38, 255, 255) direction 1
    Debug: Found connector on slope5 at (3, 23) color (0, 38, 255, 255) direction 0
    Debug: Found connector on slope5 at (14, 19) color (0, 38, 255, 255) direction 1
    Debug: Found connector on slope6 at (14, 23) color (0, 38, 255, 255) direction 1
    Debug: Found connector on slope6 at (3, 19) color (0, 38, 255, 255) direction 0
    Debug: Found connector on slope7 at (1, 21) color (0, 38, 255, 255) direction 0
    Debug: Found connector on slope7 at (18, 19) color (0, 38, 255, 255) direction 1
    Debug: Found connector on slope8 at (18, 21) color (0, 38, 255, 255) direction 1
    Debug: Found connector on slope8 at (1, 19) color (0, 38, 255, 255) direction 0
    Debug: Found connector on slope9 at (18, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on slope9 at (1, 19) color (0, 38, 255, 255) direction 0
    Debug: Found connector on towncenter1 at (34, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on towncenter1 at (117, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on towncenter2 at (34, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on towncenter2 at (113, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1 at (4, 11) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1 at (55, 11) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1 at (12, 3) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 10 at (0, 2) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 10 at (52, 2) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 11 at (1, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 12 at (8, 24) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 12 at (0, 8) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 12 at (42, 8) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 12 at (25, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 13 at (25, 47) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 13 at (25, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 14 at (14, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 15a at (6, 21) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 15a at (29, 2) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 15b at (6, 21) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 15b at (29, 2) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 16a at (23, 21) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 16a at (0, 2) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 16b at (23, 21) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 16b at (0, 2) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 17 at (0, 15) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2 at (8, 27) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 2 at (0, 11) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2 at (54, 11) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3 at (6, 8) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 3 at (6, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 4 at (12, 27) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 4 at (47, 3) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 5 at (8, 33) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 5 at (0, 17) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 6 at (12, 26) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 6 at (3, 11) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 6 at (21, 11) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 6 at (12, 3) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 7 at (25, 47) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 7 at (25, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 8 at (55, 22) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 8 at (29, 5) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 9 at (1, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 9 at (53, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endceiling1a at (6, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling1b at (6, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling1c at (6, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling1d at (6, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling1e at (6, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling2 at (6, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling3 at (6, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endfloor1a at (6, 9) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endfloor1b at (6, 9) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endfloor1c at (6, 9) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endfloor2a at (6, 7) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endfloor2b at (6, 7) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endfloor3 at (6, 5) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endfloor4 at (6, 2) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endleft1a at (13, 2) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft1b at (13, 2) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft1c at (13, 2) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft2a at (8, 2) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft2b at (8, 2) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft2c at (8, 2) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft3a at (5, 2) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft3b at (5, 2) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft3c at (5, 2) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft4 at (2, 2) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endright1 at (0, 2) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright1b at (0, 2) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright1c at (0, 2) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright2a at (0, 2) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright2b at (0, 2) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright2c at (0, 2) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright3 at (0, 2) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright3b at (0, 2) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright3c at (0, 2) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright4 at (0, 2) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entrance at (193, 140) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entrance at (234, 140) color (0, 38, 255, 255) direction 1
    Debug: Found connector on entrance at (202, 132) color (0, 38, 255, 255) direction 3
    Debug: Found connector on cell1aleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1aright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1bleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1bright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1cleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1cright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1dleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1dright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1eleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1eright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1fleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1fright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1gleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1gright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1hleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1hright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1ileft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1iright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1jleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1jright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1kleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1kright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1leftfill at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1lleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1lright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1mleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1mright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1nleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1nright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1oleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1oright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1pleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1pright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1qleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1qright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1rightfill at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1rleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1rright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1sleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1sright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on cell1tleft at (22, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on cell1tright at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on courtyard1a at (2, 32) color (0, 38, 255, 255) direction 0
    Debug: Found connector on courtyard1a at (59, 32) color (0, 38, 255, 255) direction 1
    Debug: Found connector on entranceleft1 at (186, 95) color (0, 38, 255, 255) direction 1
    Debug: Found connector on entranceleft2 at (186, 95) color (0, 38, 255, 255) direction 1
    Debug: Found connector on entranceright1 at (21, 95) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entranceright2 at (21, 95) color (0, 38, 255, 255) direction 0
    Debug: Found connector on guardroom1a at (5, 39) color (0, 255, 186, 255) direction 0
    Debug: Found connector on guardroom1a at (43, 39) color (0, 255, 186, 255) direction 1
    Debug: Found connector on guardroom1a at (5, 9) color (0, 255, 186, 255) direction 0
    Debug: Found connector on guardroom1a at (43, 9) color (0, 255, 186, 255) direction 1
    Debug: Found connector on guardroom1b at (5, 39) color (0, 255, 186, 255) direction 0
    Debug: Found connector on guardroom1b at (43, 39) color (0, 255, 186, 255) direction 1
    Debug: Found connector on guardroom1b at (5, 9) color (0, 255, 186, 255) direction 0
    Debug: Found connector on guardroom1b at (43, 9) color (0, 255, 186, 255) direction 1
    Debug: Found connector on guardroom1c at (5, 39) color (0, 255, 186, 255) direction 0
    Debug: Found connector on guardroom1c at (43, 39) color (0, 255, 186, 255) direction 1
    Debug: Found connector on guardroom1c at (5, 9) color (0, 255, 186, 255) direction 0
    Debug: Found connector on guardroom1c at (43, 9) color (0, 255, 186, 255) direction 1
    Debug: Found connector on messhall1a at (2, 17) color (0, 38, 255, 255) direction 0
    Debug: Found connector on messhall1a at (59, 17) color (0, 38, 255, 255) direction 1
    Debug: Found connector on messhall1b at (2, 17) color (0, 38, 255, 255) direction 0
    Debug: Found connector on messhall1b at (59, 17) color (0, 38, 255, 255) direction 1
    Debug: Found connector on prisonblock1a at (24, 99) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock1a at (43, 99) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock1a at (24, 84) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock1a at (43, 84) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock1a at (24, 69) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock1a at (43, 69) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock1a at (24, 54) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock1a at (43, 54) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock1a at (4, 39) color (0, 38, 255, 255) direction 0
    Debug: Found connector on prisonblock1a at (63, 39) color (0, 38, 255, 255) direction 1
    Debug: Found connector on prisonblock1b at (24, 99) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock1b at (43, 99) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock1b at (24, 84) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock1b at (43, 84) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock1b at (4, 69) color (0, 38, 255, 255) direction 0
    Debug: Found connector on prisonblock1b at (63, 69) color (0, 38, 255, 255) direction 1
    Debug: Found connector on prisonblock1c at (24, 99) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock1c at (43, 99) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock1c at (24, 84) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock1c at (43, 84) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock1c at (4, 69) color (0, 38, 255, 255) direction 0
    Debug: Found connector on prisonblock1c at (63, 69) color (0, 38, 255, 255) direction 1
    Debug: Found connector on prisonblock1c at (34, 66) color (0, 38, 255, 255) direction 3
    Debug: Found connector on prisonblock1d at (34, 67) color (0, 38, 255, 255) direction 2
    Debug: Found connector on prisonblock1d at (24, 54) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock1d at (43, 54) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock1d at (24, 39) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock1d at (43, 39) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock1d at (4, 24) color (0, 38, 255, 255) direction 0
    Debug: Found connector on prisonblock1d at (63, 24) color (0, 38, 255, 255) direction 1
    Debug: Found connector on prisonblock2a at (36, 90) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock2a at (75, 90) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock2a at (111, 90) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock2a at (150, 90) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock2a at (36, 75) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock2a at (150, 75) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock2a at (36, 60) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock2a at (75, 60) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock2a at (111, 60) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock2a at (150, 60) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock2a at (16, 30) color (0, 38, 255, 255) direction 0
    Debug: Found connector on prisonblock2a at (170, 30) color (0, 38, 255, 255) direction 1
    Debug: Found connector on prisonblock2b at (61, 90) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock2b at (100, 90) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock2b at (61, 75) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock2b at (61, 60) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock2b at (100, 60) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock2b at (136, 60) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock2b at (41, 30) color (0, 38, 255, 255) direction 0
    Debug: Found connector on prisonblock2b at (143, 30) color (0, 38, 255, 255) direction 1
    Debug: Found connector on prisonblock2c at (87, 90) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock2c at (126, 90) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock2c at (126, 75) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock2c at (51, 60) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock2c at (87, 60) color (0, 255, 186, 255) direction 0
    Debug: Found connector on prisonblock2c at (126, 60) color (0, 255, 186, 255) direction 1
    Debug: Found connector on prisonblock2c at (44, 30) color (0, 38, 255, 255) direction 0
    Debug: Found connector on prisonblock2c at (146, 30) color (0, 38, 255, 255) direction 1
    Debug: Found connector on showerhall1a at (2, 17) color (0, 38, 255, 255) direction 0
    Debug: Found connector on showerhall1a at (59, 17) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1 at (0, 9) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1 at (31, 9) color (0, 38, 255, 255) direction 1
    Warn: Slow asset 0.114 : /dungeons/microdungeons/biome/ice/1-objects.png
    Warn: Slow asset 0.114 : /dungeons/microdungeons/biome/ice/1-objects.png
    Warn: Slow asset 0.127 : /dungeons/microdungeons/biome/ice/1.png
    Warn: Slow asset 0.127 : /dungeons/microdungeons/biome/ice/1.png
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 157
    Warn: Slow asset 0.058 : /dungeons/microdungeons/biome/ice/2.png
    Warn: Slow asset 0.058 : /dungeons/microdungeons/biome/ice/2.png
    Warn: Slow asset 0.076 : /dungeons/microdungeons/biome/ice/3-objects.png
    Warn: Slow asset 0.076 : /dungeons/microdungeons/biome/ice/3-objects.png
    Warn: Slow asset 0.076 : /dungeons/microdungeons/biome/ice/ice.dungeon
    Warn: Slow asset 0.084 : /dungeons/microdungeons/biome/ice/3.png
    Warn: Slow asset 0.084 : /dungeons/microdungeons/biome/ice/3.png
    Warn: Slow asset 0.086 : /dungeons/microdungeons/biome/ice/4-objects.png
    Warn: Slow asset 0.086 : /dungeons/microdungeons/biome/ice/4-objects.png
    Warn: Slow asset 0.093 : /dungeons/microdungeons/biome/ice/4.png
    Warn: Slow asset 0.093 : /dungeons/microdungeons/biome/ice/4.png
    Warn: Slow asset 0.089 : /dungeons/microdungeons/biome/ice/5-objects.png
    Warn: Slow asset 0.089 : /dungeons/microdungeons/biome/ice/5-objects.png
    Warn: Slow asset 0.078 : /dungeons/microdungeons/biome/ice/5.png
    Warn: Slow asset 0.078 : /dungeons/microdungeons/biome/ice/5.png
    Warn: Slow asset 0.056 : /renderer.config
    Warn: Slow asset 0.087 : /dungeons/microdungeons/biome/igloo/1-objects.png
    Warn: Slow asset 0.087 : /dungeons/microdungeons/biome/igloo/1-objects.png
    Warn: Slow asset 0.104 : /dungeons/microdungeons/biome/igloo/1.png
    Warn: Slow asset 0.104 : /dungeons/microdungeons/biome/igloo/1.png
    Warn: Slow asset 0.114 : /dungeons/microdungeons/biome/igloo/2-objects.png
    Warn: Slow asset 0.114 : /dungeons/microdungeons/biome/igloo/2-objects.png
    Warn: Slow asset 0.095 : /dungeons/microdungeons/biome/igloo/2.png
    Warn: Slow asset 0.095 : /dungeons/microdungeons/biome/igloo/2.png
    Warn: Slow asset 0.085 : /dungeons/microdungeons/biome/igloo/3-objects.png
    Warn: Slow asset 0.085 : /dungeons/microdungeons/biome/igloo/3-objects.png
    Warn: Perf: Assets::loadVariant millis: 192
    Warn: Slow asset 0.192 : /dungeons/microdungeons/biome/igloo/igloo.dungeon
    Warn: Slow asset 0.096 : /dungeons/microdungeons/biome/igloo/3.png
    Warn: Slow asset 0.096 : /dungeons/microdungeons/biome/igloo/3.png
    Warn: Slow asset 0.114 : /dungeons/microdungeons/biome/igloo/4-objects.png
    Warn: Slow asset 0.114 : /dungeons/microdungeons/biome/igloo/4-objects.png
    Warn: Slow asset 0.104 : /dungeons/microdungeons/biome/igloo/4.png
    Warn: Slow asset 0.104 : /dungeons/microdungeons/biome/igloo/4.png
    Warn: Slow asset 0.058 : /dungeons/microdungeons/biome/igloo/5.png
    Warn: Slow asset 0.058 : /dungeons/microdungeons/biome/igloo/5.png
    Warn: Slow asset 0.099 : /dungeons/microdungeons/biome/igloo/6-objects.png
    Warn: Slow asset 0.099 : /dungeons/microdungeons/biome/igloo/6-objects.png
    Warn: Slow asset 0.067 : /dungeons/microdungeons/biome/oasis/1-objects.png
    Warn: Slow asset 0.067 : /dungeons/microdungeons/biome/oasis/1-objects.png
    Warn: Slow asset 0.11 : /dungeons/microdungeons/biome/igloo/6.png
    Warn: Slow asset 0.11 : /dungeons/microdungeons/biome/igloo/6.png
    Warn: Slow asset 0.091 : /dungeons/microdungeons/biome/oasis/oasis.dungeon
    Warn: Slow asset 0.09 : /dungeons/microdungeons/biome/sandstone/2.png
    Warn: Slow asset 0.09 : /dungeons/microdungeons/biome/sandstone/2.png
    Warn: Slow asset 0.099 : /dungeons/microdungeons/biome/sandstone/3.png
    Warn: Slow asset 0.099 : /dungeons/microdungeons/biome/sandstone/3.png
    Warn: Slow asset 0.06 : /dungeons/microdungeons/biome/sandstone/4.png
    Warn: Slow asset 0.06 : /dungeons/microdungeons/biome/sandstone/4.png
    Warn: Slow asset 0.101 : /dungeons/microdungeons/biome/tar/1-objects.png
    Warn: Slow asset 0.101 : /dungeons/microdungeons/biome/tar/1-objects.png
    Warn: Slow asset 0.107 : /dungeons/microdungeons/biome/sandstone/sandstone.dungeon
    Warn: Slow asset 0.108 : /dungeons/microdungeons/biome/tar/1.png
    Warn: Slow asset 0.108 : /dungeons/microdungeons/biome/tar/1.png
    Warn: Slow asset 0.062 : /dungeons/microdungeons/biome/tar/4-objects.png
    Warn: Slow asset 0.062 : /dungeons/microdungeons/biome/tar/4-objects.png
    Warn: Slow asset 0.062 : /dungeons/microdungeons/biome/sandstone/4.png
    Warn: Slow asset 0.062 : /dungeons/microdungeons/biome/sandstone/4.png
    Warn: Slow asset 0.065 : /dungeons/microdungeons/biome/tar/5-objects.png
    Warn: Slow asset 0.065 : /dungeons/microdungeons/biome/tar/5-objects.png
    Warn: Slow asset 0.099 : /dungeons/microdungeons/biome/sandstone/5.png
    Warn: Slow asset 0.099 : /dungeons/microdungeons/biome/sandstone/5.png
    Warn: Slow asset 0.106 : /dungeons/microdungeons/biome/tar/5.png
    Warn: Slow asset 0.106 : /dungeons/microdungeons/biome/tar/5.png
    Warn: Slow asset 0.091 : /dungeons/microdungeons/common/stripeblocks/14.png
    Warn: Slow asset 0.092 : /dungeons/microdungeons/common/stripeblocks/14.png
    Warn: Slow asset 0.081 : /dungeons/microdungeons/common/stripeblocks/2.png
    Warn: Slow asset 0.081 : /dungeons/microdungeons/common/stripeblocks/2.png
    Warn: Perf: StarApplicationBase::run.innerLoop.renderPost millis: 159
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 174
    Warn: Perf: Assets::loadBaseImage millis: 169
    Warn: Slow asset 0.169 : /dungeons/microdungeons/common/stripeblocks/15.png
    Warn: Perf: Assets::loadImage millis: 169
    Warn: Slow asset 0.169 : /dungeons/microdungeons/common/stripeblocks/15.png
    Debug: Found connector on 1 at (3, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1 at (26, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2 at (8, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2 at (26, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3 at (26, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3 at (8, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4 at (26, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4 at (8, 11) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5 at (8, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 6 at (23, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7 at (5, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7 at (23, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 8 at (26, 11) color (0, 38, 255, 255) direction 1
    Error: Failed to process dungeon file /dungeons/microdungeons/fleshhause/fleshhause.dungeon : StarException: Exception StarException: Unknown dungeon color: #ff00ddff  (/dungeons/microdungeons/fleshhause/ fleshhause dummy)
      006408A7
      0064992D
      00649CF1
      00645727
      00646127
      004DABC7
      004016D8
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    in connector fleshhause
      00649BE2
      00649CF1
      00645727
      00646127
      004DABC7
      004016D8
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Debug: Found connector on 1 at (3, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1 at (26, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 10 at (3, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 10 at (26, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 11 at (2, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 11 at (26, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 12 at (26, 25) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 12 at (2, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 13 at (5, 25) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 13 at (29, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2 at (2, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2 at (26, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3 at (2, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3 at (26, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4 at (29, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5 at (2, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 6 at (3, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 6 at (26, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7 at (3, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7 at (26, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 8 at (3, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 8 at (26, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 9 at (3, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 9 at (26, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 10a at (0, 19) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 10a at (58, 10) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 10b at (58, 19) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 10b at (0, 10) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 11a at (52, 43) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 11a at (0, 5) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 11a at (50, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 11b at (0, 43) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 11b at (52, 5) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 11b at (2, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 12a at (2, 43) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 12a at (52, 41) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 12a at (0, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 12b at (50, 43) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 12b at (0, 41) color (0, 255, 186, 255) direction 0
    Warn: Slow asset 0.091 : /dungeons/other/naturalcave/13a.png
    Warn: Slow asset 0.091 : /dungeons/other/naturalcave/13a.png
    Debug: Found connector on 12b at (52, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 13a at (98, 86) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 13a at (92, 44) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 13a at (2, 6) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 13b at (2, 86) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 13b at (8, 44) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 13b at (98, 6) color (0, 38, 255, 255) direction 1
    Warn: Slow asset 0.053 : /dungeons/other/naturalcave/4.png
    Warn: Slow asset 0.053 : /dungeons/other/naturalcave/4.png
    Warn: Slow asset 0.052 : /dungeons/other/naturalcave/5a-objects.png
    Warn: Slow asset 0.052 : /dungeons/other/naturalcave/5a-objects.png
    Debug: Found connector on 1a at (31, 55) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 1a at (0, 17) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1a at (42, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 1b at (22, 58) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 1b at (55, 22) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1b at (0, 11) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1c at (15, 55) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 1c at (58, 28) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1c at (27, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 1d at (57, 38) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1d at (2, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1d at (35, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 2a at (31, 55) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 2a at (56, 7) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2b at (25, 55) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 2b at (0, 7) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2c at (58, 20) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2c at (16, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 2d at (0, 39) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2d at (25, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 3 at (0, 8) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3 at (52, 8) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4 at (0, 10) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4 at (52, 10) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5a at (0, 35) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5a at (52, 35) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5a at (3, 6) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5a at (50, 5) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5b at (24, 39) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 5b at (47, 5) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5b at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5c at (0, 37) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5c at (50, 15) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5d at (52, 37) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5d at (2, 8) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5e at (0, 39) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5e at (50, 5) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5e at (3, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5f at (52, 39) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5f at (2, 10) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5f at (49, 6) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5g at (0, 38) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5g at (52, 37) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5g at (50, 5) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5h at (0, 37) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5h at (52, 35) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5h at (2, 5) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 6a at (140, 47) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 6a at (0, 44) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 6b at (69, 88) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 6b at (0, 47) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 6b at (140, 44) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 6c at (71, 88) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 6c at (140, 47) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 6c at (0, 44) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 6d at (69, 88) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 6d at (0, 47) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 6d at (140, 44) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 6e at (71, 88) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 6e at (140, 47) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 6e at (0, 44) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7a at (0, 32) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 7a at (119, 31) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 7b at (119, 32) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 7b at (0, 31) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 8a at (119, 48) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 8a at (0, 47) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 8b at (0, 48) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 8b at (119, 47) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 9a at (0, 14) color (0, 255, 186, 255) direction 0
    Debug: Found connector on 9a at (58, 5) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 9b at (58, 14) color (0, 255, 186, 255) direction 1
    Debug: Found connector on 9b at (0, 5) color (0, 255, 186, 255) direction 0
    Debug: Found connector on campsite1left at (58, 12) color (240, 255, 0, 255) direction 1
    Debug: Found connector on campsite1right at (14, 12) color (240, 255, 0, 255) direction 0
    Debug: Found connector on campsite2left at (56, 12) color (240, 255, 0, 255) direction 1
    Debug: Found connector on campsite2right at (16, 12) color (240, 255, 0, 255) direction 0
    Debug: Found connector on campsite3left at (56, 12) color (240, 255, 0, 255) direction 1
    Debug: Found connector on campsite3right at (16, 12) color (240, 255, 0, 255) direction 0
    Debug: Found connector on campsite4left at (53, 12) color (240, 255, 0, 255) direction 1
    Debug: Found connector on campsite4right at (19, 12) color (240, 255, 0, 255) direction 0
    Debug: Found connector on campsite5left at (58, 12) color (240, 255, 0, 255) direction 1
    Debug: Found connector on campsite5right at (14, 12) color (240, 255, 0, 255) direction 0
    Debug: Found connector on campsite6left at (56, 12) color (240, 255, 0, 255) direction 1
    Debug: Found connector on campsite6right at (16, 12) color (240, 255, 0, 255) direction 0
    Debug: Found connector on endceiling1 at (8, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling2a at (8, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling2b at (8, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling2c at (8, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling2d at (8, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on endceiling3 at (8, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on enddarkleft at (6, 3) color (0, 255, 186, 255) direction 1
    Debug: Found connector on enddarkright at (0, 3) color (0, 255, 186, 255) direction 0
    Debug: Found connector on endfloor1 at (8, 3) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endfloor2a at (8, 4) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endfloor2b at (8, 4) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endfloor2c at (8, 4) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endfloor2d at (8, 4) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endleft1a at (29, 5) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft1b at (29, 5) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft1c at (29, 5) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft2a at (21, 5) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft2b at (21, 5) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft2c at (21, 5) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft3a at (10, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft3b at (10, 4) color (0, 38, 255, 255) direction 1
    Warn: Slow asset 0.065 : /dungeons/other/naturalcave/endright1c-objects.png
    Warn: Slow asset 0.065 : /dungeons/other/naturalcave/endright1c-objects.png
    Debug: Found connector on endleft3c at (10, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft4a at (7, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft4b at (7, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft4c at (7, 3) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endright1a at (0, 5) color (0, 38, 255, 255) direction 0
    Warn: Slow asset 0.065 : /dungeons/other/naturalcave/endright1c.png
    Warn: Slow asset 0.065 : /dungeons/other/naturalcave/endright1c.png
    Debug: Found connector on endright1b at (0, 5) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright1c at (0, 5) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright2a at (0, 5) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright2b at (0, 5) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright2c at (0, 5) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright3a at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright3b at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright3c at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright4a at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright4b at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright4c at (0, 3) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entrance1 at (75, 72) color (240, 255, 0, 255) direction 1
    Debug: Found connector on entrance1 at (31, 5) color (0, 38, 255, 255) direction 3
    Debug: Found connector on entrance2a at (18, 40) color (240, 255, 0, 255) direction 0
    Debug: Found connector on entrance2a at (57, 40) color (240, 255, 0, 255) direction 1
    Debug: Found connector on entrance2a at (60, 6) color (0, 38, 255, 255) direction 1
    Debug: Found connector on entrance2a at (13, 5) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entrance2b at (18, 40) color (240, 255, 0, 255) direction 0
    Debug: Found connector on entrance2b at (60, 6) color (0, 38, 255, 255) direction 1
    Debug: Found connector on entrance2b at (13, 5) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entrance2c at (55, 40) color (240, 255, 0, 255) direction 1
    Debug: Found connector on entrance2c at (13, 6) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entrance2c at (60, 5) color (0, 38, 255, 255) direction 1
    Debug: Found connector on entrance3 at (0, 63) color (240, 255, 0, 255) direction 0
    Debug: Found connector on entrance3 at (66, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on entrance4a at (0, 4) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entrance4a at (2, 4) color (0, 38, 255, 255) direction 1
    Debug: Found connector on entrance4b at (0, 4) color (0, 255, 186, 255) direction 0
    Debug: Found connector on entrance4b at (2, 4) color (0, 255, 186, 255) direction 1
    Debug: Found connector on entrance5 at (0, 25) color (240, 255, 0, 255) direction 0
    Debug: Found connector on entrance5 at (48, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on entrance6 at (54, 38) color (240, 255, 0, 255) direction 1
    Debug: Found connector on entrance6 at (21, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 1 at (0, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1 at (70, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2 at (0, 39) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2 at (89, 39) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3 at (0, 39) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3 at (89, 39) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 4 at (0, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 4 at (89, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5 at (0, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5 at (91, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 6 at (0, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 6 at (51, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 7 at (0, 16) color (0, 38, 255, 255) direction 0
    Debug: Found connector on entrance at (121, 16) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 1 at (41, 57) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 1 at (5, 13) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 1 at (78, 13) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 2 at (5, 27) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 2 at (78, 27) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3 at (6, 27) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 3 at (83, 27) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 3 at (44, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 4 at (19, 57) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 4 at (11, 6) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 5 at (83, 34) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 5 at (44, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 6 at (19, 57) color (0, 38, 255, 255) direction 2
    Debug: Found connector on 6 at (66, 32) color (0, 38, 255, 255) direction 1
    Debug: Found connector on 6 at (19, 5) color (0, 38, 255, 255) direction 3
    Debug: Found connector on 7 at (6, 26) color (0, 38, 255, 255) direction 0
    Debug: Found connector on 7 at (77, 26) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endbottom at (9, 14) color (0, 38, 255, 255) direction 2
    Debug: Found connector on endleft at (78, 27) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleft2 at (78, 27) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endleftsmall at (5, 2) color (0, 38, 255, 255) direction 1
    Debug: Found connector on endright at (6, 27) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endright2 at (6, 27) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endrightsmall at (1, 2) color (0, 38, 255, 255) direction 0
    Debug: Found connector on endtop at (4, 0) color (0, 38, 255, 255) direction 3
    Debug: Found connector on entrance1 at (119, 13) color (0, 38, 255, 255) direction 3
    Info: Done loading Star::Root.
    Info: Writing Star::Configuration to '..\starbound.config'
    Debug: Correcting path from /interface/title/singleplayerover.png to /interface/title/singleplayerOver.png
    Warn: Slow asset 0.092 : /interface/windowconfig/multiplayer.config
    Warn: Perf: ClientApplication::update millis: 253
    Warn: Perf: StarApplicationBase::run.innerLoop.update millis: 253
    Warn: Slow asset 0.057 : /celestial/system/gas_giant/gas_giant_dynamics/29.png
    Warn: Slow asset 0.057 : /celestial/system/gas_giant/gas_giant_dynamics/29.png
    Warn: Slow asset 0.132 : /celestial/system/gas_giant/gas_giant_clouds.png?addmask=/celestial/system/gas_giant/gas_giant_dynamics/28.png+/celestial/system/gas_giant/gas_giant_dynamics/29.png
    Warn: Slow asset 0.09 : /celestial/system/gas_giant/shadows/9.png
    Warn: Slow asset 0.09 : /celestial/system/gas_giant/shadows/9.png
    Warn: Slow asset 0.06 : /celestial/system/terrestrial/biomes/snow/maskie3.png
    Warn: Slow asset 0.06 : /celestial/system/terrestrial/biomes/snow/maskie3.png
    Warn: Slow asset 0.14 : /celestial/system/terrestrial/biomes/snow/maskie3.png?hueshift=-180?addmask=/celestial/system/terrestrial/dynamics/13.png
    Warn: Slow asset 0.082 : /celestial/system/terrestrial/biomes/snow/maskie2.png?hueshift=-180?addmask=/celestial/system/terrestrial/dynamics/11.png
    Warn: Slow asset 0.086 : /celestial/system/terrestrial/biomes/snow/maskie1.png?hueshift=-180?addmask=/celestial/system/terrestrial/dynamics/34.png
    Debug: Correcting path from /interface/title/firstlogo.png to /interface/title/FirstLogo.png
    Warn: Slow asset 0.093 : /celestial/system/horizon/textures/snow_l.png?hueshift=-180?addmask=/celestial/system/horizon/masks/23_l.png+/celestial/system/horizon/masks/20_l.png+/celestial/system/horizon/masks/26_l.png;0;0
    Warn: Perf: ClientApplication::render millis: 1019
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 1019
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 1273
    Warn: Perf: Assets::loadAudio millis: 189
    Warn: Slow asset 0.189 : /music/TitleMenuMusic.ogg
    Warn: Perf: ClientApplication::updateTitle millis: 191
    Warn: Perf: ClientApplication::update millis: 191
    Warn: Perf: StarApplicationBase::run.innerLoop.update millis: 191
    Warn: Slow asset 0.169 : /celestial/system/horizon/atmosphere/atmosphere_r.png
    Warn: Slow asset 0.169 : /celestial/system/horizon/atmosphere/atmosphere_r.png
    Warn: Perf: ClientApplication::render millis: 197
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 197
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 403
    Warn: Perf: Assets::loadBaseImage millis: 243
    Warn: Slow asset 0.243 : /celestial/system/horizon/textures/snow_r.png
    Warn: Perf: Assets::loadImage millis: 244
    Warn: Slow asset 0.244 : /celestial/system/horizon/textures/snow_r.png
    Warn: Perf: Assets::loadImage millis: 311
    Warn: Slow asset 0.311 : /celestial/system/horizon/textures/snow_r.png?hueshift=-180?addmask=/celestial/system/horizon/masks/23_r.png+/celestial/system/horizon/masks/20_r.png+/celestial/system/horizon/masks/26_r.png;0;0
    Debug: Correcting path from /items/armors/human/human-workout/bsleeve.png to /items/armors/human/human-workout/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-workout/fsleeve.png to /items/armors/human/human-workout/FSleeve.png
    Debug: Correcting path from /items/armors/human/human-cool/icons.png to /items/armors/human/human-cool/Icons.png
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Warn: Perf: ClientApplication::processInput millis: 305
    Warn: Perf: StarApplicationBase::run.innerLoop.SDL_PollEvent millis: 306
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 369
    Info: Creating world alpha:53742602:-28831866:-12629229:1
    Warn: Slow asset 0.06 : /biomes/surface/forest/forestunderground.png?brightness=-65
    Debug: Correcting path from /biomes/underground/generic/top/rockunderground.undergroundparallax to /biomes/underground/Generic/top/rockunderground.undergroundparallax
    Debug: Correcting path from /biomes/underground/generic/top/desertunderground.png to /biomes/underground/Generic/top/desertunderground.png
    Debug: Correcting path from /biomes/underground/generic/top/rockdivider.png to /biomes/underground/Generic/top/rockdivider.png
    Debug: Correcting path from /biomes/underground/generic/middle/rockunderground.undergroundparallax to /biomes/underground/Generic/middle/rockunderground.undergroundparallax
    Debug: Correcting path from /biomes/underground/generic/middle/desertunderground.png to /biomes/underground/Generic/middle/desertunderground.png
    Debug: Correcting path from /biomes/underground/generic/middle/rockdivider.png to /biomes/underground/Generic/middle/rockdivider.png
    Debug: Correcting path from /biomes/underground/generic/desert.undergroundparallax to /biomes/underground/Generic/desert.undergroundparallax
    Debug: Correcting path from /biomes/underground/generic/desertunderground.png to /biomes/underground/Generic/desertunderground.png
    Debug: Correcting path from /biomes/underground/generic/rockdivider.png to /biomes/underground/Generic/rockdivider.png
    Info: Spawn surface at (0, 1655.5)
    Info: Generating 1 dungeons
    Info: Generating a dungeon
    Info: Placing dungeon at (5458, 1767)
    Debug: Dungeon entrance placed at (5458, 1694)
    Debug: Trying to add part entrance at (5458, 1694) connectors: 2
    Debug: Connects to 13 parts
    Debug: placed
    Debug: Connects to 13 parts
    Debug: placed
    Debug: Trying to add part 2b at (5528, 1665) connectors: 2
    Debug: Connects to 11 parts
    Debug: Connects to 11 parts
    Debug: placed
    Debug: Trying to add part 6a at (5418, 1666) connectors: 2
    Debug: Connects to 6 parts
    Debug: placed
    Debug: Connects to 12 parts
    Debug: Trying to add part 3a at (5581, 1673) connectors: 3
    Debug: Connects to 11 parts
    Debug: Connects to 11 parts
    Debug: placed
    Debug: Connects to 7 parts
    Debug: placed
    Debug: Trying to add part 5a at (5418, 1689) connectors: 2
    Debug: Connects to 12 parts
    Debug: placed
    Debug: Connects to 6 parts
    Debug: Trying to add part 4b at (5609, 1673) connectors: 3
    Debug: Connects to 7 parts
    Debug: unplacable
    Debug: placed
    Debug: Connects to 11 parts
    Debug: Connects to 11 parts
    Debug: placed
    Debug: Trying to add part 6b at (5582, 1650) connectors: 2
    Debug: Connects to 6 parts
    Debug: Connects to 12 parts
    Debug: placed
    Debug: Trying to add part 4a at (5390, 1689) connectors: 3
    Debug: Connects to 7 parts
    Debug: unplacable
    Debug: unplacable
    Debug: placed
    Debug: Connects to 11 parts
    Debug: placed
    Debug: Connects to 11 parts
    Debug: Trying to add part 5b at (5608, 1696) connectors: 2
    Debug: Connects to 12 parts
    Debug: placed
    Debug: Connects to 6 parts
    Debug: Trying to add part 3b at (5637, 1673) connectors: 3
    Debug: Connects to 11 parts
    Debug: Connects to 11 parts
    Debug: placed
    Debug: Connects to 7 parts
    Debug: placed
    Debug: Trying to add part endleft1 at (5606, 1681) connectors: 1
    Debug: Connects to 13 parts
    Debug: Trying to add part endtop1 at (5425, 1737) connectors: 1
    Debug: Connects to 7 parts
    Debug: Trying to add part 1a at (5363, 1689) connectors: 2
    Debug: Connects to 13 parts
    Debug: placed
    Debug: Connects to 13 parts
    Debug: Trying to add part 1c at (5635, 1696) connectors: 2
    Debug: Connects to 13 parts
    Debug: Connects to 13 parts
    Debug: placed
    Debug: Trying to add part 1b at (5663, 1673) connectors: 2
    Debug: Connects to 13 parts
    Debug: Connects to 13 parts
    Debug: placed
    Debug: Trying to add part 7a at (5637, 1631) connectors: 2
    Debug: Connects to 7 parts
    Debug: Connects to 7 parts
    Debug: placed
    Debug: Trying to add part 2a at (5304, 1681) connectors: 2
    Debug: Connects to 11 parts
    Debug: placed
    Debug: Connects to 11 parts
    Debug: Trying to add part endright1 at (5688, 1727) connectors: 1
    Debug: Connects to 13 parts
    Debug: Trying to add part endright1 at (5716, 1704) connectors: 1
    Debug: Connects to 13 parts
    Debug: Trying to add part 8a at (5651, 1593) connectors: 2
    Debug: Connects to 7 parts
    Debug: Connects to 7 parts
    Debug: placed
    Debug: Trying to add part endleft1 at (5295, 1720) connectors: 1
    Debug: Connects to 13 parts
    Debug: Trying to add part endbottom1 at (5672, 1609) connectors: 1
    Debug: Connects to 7 parts
    Debug: Settling dungeon water.
    Debug: Flushing dungeon into the worldgen.
    Debug: Marking Box{min:(5466, 1695) max:(5554, 1792)} as dungeon region
    Debug: Marking (5466, 5554) as dungeon surface of height 1767
    Debug: Marking Box{min:(5535, 1689) max:(5616, 1743)} as dungeon region
    Debug: Marking (5535, 5616) as dungeon surface of height 1767
    Debug: Marking Box{min:(5452, 1696) max:(5481, 1724)} as dungeon region
    Debug: Marking (5452, 5481) as dungeon surface of height 1767
    Debug: Marking Box{min:(5617, 1703) max:(5644, 1733)} as dungeon region
    Debug: Marking (5617, 5644) as dungeon surface of height 1767
    Debug: Marking Box{min:(5454, 1720) max:(5483, 1749)} as dungeon region
    Debug: Marking (5454, 5483) as dungeon surface of height 1767
    Debug: Marking Box{min:(5645, 1703) max:(5672, 1731)} as dungeon region
    Debug: Marking (5645, 5672) as dungeon surface of height 1767
    Debug: Marking Box{min:(5617, 1680) max:(5646, 1708)} as dungeon region
    Debug: Marking (5617, 5646) as dungeon surface of height 1767
    Debug: Marking Box{min:(5426, 1719) max:(5453, 1747)} as dungeon region
    Debug: Marking (5426, 5453) as dungeon surface of height 1767
    Debug: Marking Box{min:(5643, 1729) max:(5672, 1756)} as dungeon region
    Debug: Marking (5643, 5672) as dungeon surface of height 1767
    Debug: Marking Box{min:(5673, 1703) max:(5700, 1733)} as dungeon region
    Debug: Marking (5673, 5700) as dungeon surface of height 1767
    Debug: Marking Box{min:(5615, 1686) max:(5616, 1705)} as dungeon region
    Debug: Marking (5615, 5616) as dungeon surface of height 1767
    Debug: Marking Box{min:(5431, 1748) max:(5448, 1749)} as dungeon region
    Debug: Marking (5431, 5448) as dungeon surface of height 1767
    Debug: Marking Box{min:(5401, 1718) max:(5425, 1750)} as dungeon region
    Debug: Marking (5401, 5425) as dungeon surface of height 1767
    Debug: Marking Box{min:(5673, 1729) max:(5697, 1756)} as dungeon region
    Debug: Marking (5673, 5697) as dungeon surface of height 1767
    Debug: Marking Box{min:(5701, 1702) max:(5725, 1735)} as dungeon region
    Debug: Marking (5701, 5725) as dungeon surface of height 1767
    Debug: Marking Box{min:(5657, 1659) max:(5714, 1708)} as dungeon region
    Debug: Marking (5657, 5714) as dungeon surface of height 1767
    Debug: Marking Box{min:(5306, 1706) max:(5400, 1759)} as dungeon region
    Debug: Marking (5306, 5400) as dungeon surface of height 1767
    Debug: Marking Box{min:(5698, 1732) max:(5699, 1751)} as dungeon region
    Debug: Marking (5698, 5699) as dungeon surface of height 1767
    Debug: Marking Box{min:(5726, 1709) max:(5727, 1728)} as dungeon region
    Debug: Marking (5726, 5727) as dungeon surface of height 1767
    Debug: Marking Box{min:(5671, 1615) max:(5727, 1669)} as dungeon region
    Debug: Marking (5671, 5727) as dungeon surface of height 1767
    Debug: Marking Box{min:(5304, 1725) max:(5305, 1744)} as dungeon region
    Debug: Marking (5304, 5305) as dungeon surface of height 1767
    Debug: Marking Box{min:(5678, 1619) max:(5695, 1620)} as dungeon region
    Debug: Marking (5678, 5695) as dungeon surface of height 1767
    Debug: Correcting path from /objects/glitch/wallpipe/wallpipe.png to /objects/glitch/wallpipe/wallPipe.png
    Debug: Correcting path from /objects/glitch/sewergauge/sewergauge.png to /objects/glitch/sewergauge/sewerGauge.png
    Debug: Correcting path from /objects/glitch/sewervalve/sewervalve.png to /objects/glitch/sewervalve/sewerValve.png
    Warn: Perf: DungeonDefinition::buildDungeon millis: 1107
    Warn: Perf: DungeonGenerator::generate millis: 1117
    Warn: Slow asset 0.166 : /plants/trees/forest/foliage/hanging/branch1.png
    Warn: Slow asset 0.166 : /plants/trees/forest/foliage/hanging/branch1.png
    Warn: Object floweryellow does not have a price set
    Warn: Slow asset 0.071 : /plants/trees/forest/stem/wood/crown2.png
    Warn: Slow asset 0.071 : /plants/trees/forest/stem/wood/crown2.png
    Warn: Slow asset 0.074 : /plants/trees/forest/foliage/hanging/crown2.png
    Warn: Slow asset 0.074 : /plants/trees/forest/foliage/hanging/crown2.png
    Warn: Object wildpotatoseed does not have a price set
    Warn: Perf: UniverseServer::createWorld millis: 7014
    Info: UniverseServer: client connection made from local
    Info: Sending Handshake Challenge
    Info: Sending Handshake Repsonse
    Info: Loading ship world received from client <1> <User: GOKOP>
    Warn: Object boosterflamehuman does not have a price set
    Warn: Object smallboosterflame does not have a price set
    Warn: Object teleporter does not have a price set
    Warn: Object apexshiplocker does not have a price set
    Warn: Object apexcaptainschair does not have a price set
    Warn: Object apexfuelhatch does not have a category set
    Warn: Object apexfuelhatch does not have a price set
    Info: Loading world db for world alpha:-31288450:-57676932:2875919:5
    Warn: Slow asset 0.052 : /universe_server.config
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Warn: Slow asset 0.081 : /interface/tech/lockinUnselected.png
    Warn: Slow asset 0.081 : /interface/tech/lockinUnselected.png
    Warn: Slow asset 0.139 : /interface/tech/lockinSelected.png
    Warn: Slow asset 0.14 : /interface/tech/lockinSelected.png
    Warn: Slow asset 0.094 : /interface/tech/craftablebackground.png
    Warn: Slow asset 0.094 : /interface/tech/craftablebackground.png
    Debug: Correcting path from /interface/escmenu/body.png to /interface/escMenu/body.png
    Debug: Correcting path from /interface/escmenu/returntogame.png to /interface/escMenu/returntogame.png
    Debug: Correcting path from /interface/escmenu/returntogame-over.png to /interface/escMenu/returntogame-over.png
    Debug: Correcting path from /interface/escmenu/options.png to /interface/escMenu/options.png
    Debug: Correcting path from /interface/escmenu/options-over.png to /interface/escMenu/options-over.png
    Debug: Correcting path from /interface/escmenu/saveandquit.png to /interface/escMenu/saveandquit.png
    Debug: Correcting path from /interface/escmenu/saveandquit-over.png to /interface/escMenu/saveandquit-over.png
    Debug: Correcting path from /interface/escmenu/3dPrinterUp.png to /interface/escMenu/3dprinterup.png
    Debug: Correcting path from /interface/escmenu/3dPrinter.png to /interface/escMenu/3dprinter.png
    Debug: Correcting path from /interface/escmenu/techUp.png to /interface/escMenu/techup.png
    Debug: Correcting path from /interface/escmenu/tech.png to /interface/escMenu/tech.png
    Debug: Correcting path from /interface/escmenu/cancelUp.png to /interface/escMenu/cancelup.png
    Debug: Correcting path from /interface/escmenu/cancel.png to /interface/escMenu/cancel.png
    Warn: Perf: ClientApplication::update millis: 9258
    Warn: Perf: StarApplicationBase::run.innerLoop.update millis: 9258
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 9578
    Warn: Perf: WorldServer::update millis: 161
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 161
    Warn: Perf: WorldServerThread::update millis: 161
    Warn: Slow asset 0.104 : /items/swords/randomgenerated/crappyspear/handle/3.png
    Warn: Slow asset 0.104 : /items/swords/randomgenerated/crappyspear/handle/3.png
    Warn: Slow asset 0.104 : /items/swords/randomgenerated/crappyspear/handle/3.png?replace;452b13=452b13;303030=303030;555555=555555;808080=808080;724c23=724c23;78472b=78472b;a9523d=a9523d;ad885f=ad885f;52341e=52341e
    Warn: Perf: Assets::loadAudio millis: 161
    Warn: Slow asset 0.161 : /music/event-horizon.ogg
    Warn: Perf: WorldClient::update millis: 192
    Warn: Perf: UniverseClient::update millis: 275
    Warn: Perf: ClientApplication::updateRunning millis: 293
    Warn: Perf: ClientApplication::update millis: 293
    Warn: Perf: StarApplicationBase::run.innerLoop.update millis: 293
    Debug: Correcting path from /items/armors/human/human-cool/icons.png to /items/armors/human/human-cool/Icons.png
    Warn: Perf: UniverseServer::createWorld millis: 2115
    Info: Client 'GOKOP' <1> (IODevice <0x179b39a0>) connected
    Warn: Perf: UniverseServer::handleQueuedConnections.one millis: 2697
    Warn: Perf: UniverseServer::handleQueuedConnections millis: 2698
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Warn: Perf: WorldGenerator::prepareTiles millis: 174
    Warn: Perf: WorldStorage::update millis: 183
    Warn: Perf: WorldServer::update millis: 194
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 194
    Warn: Perf: WorldServerThread::update millis: 194
    Warn: Perf: WorldServerThread::readFullWorld millis: 279
    Warn: Slow asset 0.055 : /sfx/objects/boosterflame.wav
    Warn: Perf: UniverseClient::update millis: 356
    Warn: Perf: ClientApplication::updateRunning millis: 365
    Warn: Perf: ClientApplication::update millis: 366
    Warn: Perf: StarApplicationBase::run.innerLoop.update millis: 366
    Warn: Slow asset 0.057 : /sky/glitters/3.png
    Warn: Slow asset 0.057 : /sky/glitters/3.png
    Warn: Slow asset 0.053 : /sky/glitters/1.png
    Warn: Slow asset 0.053 : /sky/glitters/1.png
    Warn: Slow asset 0.052 : /celestial/system/horizon/textures/meat_l.png?hueshift=-45?addmask=/celestial/system/horizon/masks/13_l.png;0;0
    Warn: Slow asset 0.053 : /celestial/system/horizon/atmosphere/atmosphere_l.png
    Warn: Slow asset 0.053 : /celestial/system/horizon/atmosphere/atmosphere_l.png
    Warn: Slow asset 0.053 : /tiles/materials/packeddirt.png
    Warn: Slow asset 0.053 : /tiles/materials/packeddirt.png
    Warn: Perf: WorldPainter::render millis: 479
    Warn: Perf: ClientApplication::render millis: 486
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 486
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 906
    Warn: Perf: WorldServerThread::sync millis: 513
    Warn: Perf: UniverseServer::doTriggeredStorage millis: 1134
    Warn: Perf: UniverseServer::run.innerloop millis: 3941
    Warn: Slow asset 0.07 : /interface/quests/questlog/entry_bg.png
    Warn: Slow asset 0.07 : /interface/quests/questlog/entry_bg.png
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 217
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Warn: Perf: Assets::loadVariant millis: 248
    Warn: Slow asset 0.248 : /interface/cockpit/cockpit.config
    Warn: Perf: ClientApplication::updateRunning millis: 374
    Warn: Perf: ClientApplication::update millis: 374
    Warn: Perf: StarApplicationBase::run.innerLoop.update millis: 374
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Warn: Slow asset 0.072 : /interface/cockpit/nebula1.png
    Warn: Slow asset 0.072 : /interface/cockpit/nebula1.png
    Warn: Slow asset 0.166 : /interface/cockpit/nebula1.png?hueshift=-30
    Warn: Slow asset 0.094 : /celestial/system/terrestrial/biomes/meat/maskie3.png?hueshift=-45?addmask=/celestial/system/terrestrial/dynamics/26.png
    Warn: Slow asset 0.104 : /celestial/system/terrestrial/biomes/meat/maskie2.png?hueshift=-45?addmask=/celestial/system/terrestrial/dynamics/8.png
    Warn: Slow asset 0.147 : /celestial/system/terrestrial/biomes/meat/maskie1.png
    Warn: Slow asset 0.147 : /celestial/system/terrestrial/biomes/meat/maskie1.png
    Warn: Slow asset 0.225 : /celestial/system/terrestrial/biomes/meat/maskie1.png?hueshift=-45?addmask=/celestial/system/terrestrial/dynamics/9.png
    Warn: Perf: ClientApplication::render millis: 980
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 980
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 1375
    Warn: Perf: Assets::loadBaseImage millis: 194
    Warn: Slow asset 0.194 : /celestial/system/gas_giant/gas_giant_dynamics/8.png
    Warn: Perf: Assets::loadImage millis: 194
    Warn: Slow asset 0.194 : /celestial/system/gas_giant/gas_giant_dynamics/8.png
    Warn: Perf: Assets::loadImage millis: 234
    Warn: Slow asset 0.234 : /celestial/system/gas_giant/gas_giant_clouds.png?addmask=/celestial/system/gas_giant/gas_giant_dynamics/29.png+/celestial/system/gas_giant/gas_giant_dynamics/8.png
    Warn: Slow asset 0.054 : /celestial/system/terrestrial/biomes/moon/maskie3.png?hueshift=-45
    Warn: Slow asset 0.075 : /celestial/system/terrestrial/biomes/moon/maskie3.png?hueshift=-45?addmask=/celestial/system/terrestrial/dynamics/15.png
    Warn: Slow asset 0.074 : /celestial/system/terrestrial/biomes/moon/maskie2.png?hueshift=-45?addmask=/celestial/system/terrestrial/dynamics/30.png
    Warn: Slow asset 0.078 : /celestial/system/terrestrial/biomes/moon/maskie1.png?hueshift=-45?addmask=/celestial/system/terrestrial/dynamics/18.png
    Warn: Slow asset 0.078 : /celestial/system/terrestrial/biomes/forest/maskie3.png?hueshift=-180?addmask=/celestial/system/terrestrial/dynamics/14.png
    Warn: Slow asset 0.077 : /celestial/system/terrestrial/biomes/forest/maskie2.png?hueshift=-180?addmask=/celestial/system/terrestrial/dynamics/7.png
    Warn: Slow asset 0.099 : /celestial/system/terrestrial/biomes/forest/maskie1.png?hueshift=-180?addmask=/celestial/system/terrestrial/dynamics/20.png
    Warn: Perf: ClientApplication::render millis: 1052
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 1052
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 1074
    Warn: Slow asset 0.051 : /celestial/stars/backgrounds/star19px.png
    Warn: Slow asset 0.051 : /celestial/stars/backgrounds/star19px.png
    Warn: Slow asset 0.051 : /celestial/stars/backgrounds/star19px.png?hueshift=-30
    Warn: Perf: ClientApplication::render millis: 171
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 171
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 201
    Warn: Slow asset 0.077 : /celestial/system/terrestrial/biomes/desert/maskie3.png?hueshift=-45
    Warn: Perf: Assets::loadBaseImage millis: 187
    Warn: Slow asset 0.187 : /celestial/system/terrestrial/dynamics/37.png
    Warn: Perf: Assets::loadImage millis: 187
    Warn: Slow asset 0.187 : /celestial/system/terrestrial/dynamics/37.png
    Warn: Perf: Assets::loadImage millis: 237
    Warn: Slow asset 0.237 : /celestial/system/terrestrial/biomes/desert/maskie3.png?hueshift=-45?addmask=/celestial/system/terrestrial/dynamics/37.png
    Warn: Slow asset 0.112 : /celestial/system/terrestrial/biomes/desert/maskie2.png?hueshift=-45?addmask=/celestial/system/terrestrial/dynamics/10.png
    Warn: Slow asset 0.061 : /celestial/system/terrestrial/biomes/desert/maskie1.png?hueshift=-45?addmask=/celestial/system/terrestrial/dynamics/37.png
    Warn: Slow asset 0.081 : /celestial/system/terrestrial/biomes/moon/maskie3.png?hueshift=-45?addmask=/celestial/system/terrestrial/dynamics/32.png
    Warn: Slow asset 0.071 : /celestial/system/terrestrial/biomes/moon/maskie2.png?hueshift=-45?addmask=/celestial/system/terrestrial/dynamics/29.png
    Warn: Slow asset 0.067 : /celestial/system/terrestrial/biomes/moon/maskie1.png?hueshift=-45?addmask=/celestial/system/terrestrial/dynamics/39.png
    Warn: Perf: ClientApplication::render millis: 912
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 912
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 939
    Warn: Perf: Assets::loadBaseImage millis: 701
    Warn: Slow asset 0.701 : /celestial/system/gas_giant/gas_giant_dynamics/15.png
    Warn: Perf: Assets::loadImage millis: 701
    Warn: Slow asset 0.701 : /celestial/system/gas_giant/gas_giant_dynamics/15.png
    Warn: Perf: Assets::loadImage millis: 730
    Warn: Slow asset 0.73 : /celestial/system/gas_giant/gas_giant_clouds.png?addmask=/celestial/system/gas_giant/gas_giant_dynamics/15.png+/celestial/system/gas_giant/gas_giant_dynamics/15.png
    Warn: Slow asset 0.101 : /celestial/system/terrestrial/dynamics/16.png
    Warn: Slow asset 0.101 : /celestial/system/terrestrial/dynamics/16.png
    Warn: Slow asset 0.156 : /celestial/system/terrestrial/biomes/meat/maskie3.png?hueshift=-26?addmask=/celestial/system/terrestrial/dynamics/16.png
    Warn: Slow asset 0.054 : /celestial/system/terrestrial/biomes/meat/maskie2.png?hueshift=-26?addmask=/celestial/system/terrestrial/dynamics/16.png
    Warn: Slow asset 0.064 : /celestial/system/terrestrial/biomes/meat/maskie1.png?hueshift=-26?addmask=/celestial/system/terrestrial/dynamics/16.png
    Warn: Slow asset 0.053 : /celestial/system/terrestrial/biomes/snow/maskie3.png?hueshift=0?addmask=/celestial/system/terrestrial/dynamics/21.png
    Warn: Slow asset 0.059 : /celestial/system/terrestrial/biomes/snow/maskie2.png?hueshift=0?addmask=/celestial/system/terrestrial/dynamics/38.png
    Warn: Slow asset 0.077 : /celestial/system/terrestrial/biomes/arid/maskie3.png
    Warn: Slow asset 0.077 : /celestial/system/terrestrial/biomes/arid/maskie3.png
    Warn: Slow asset 0.146 : /celestial/system/terrestrial/biomes/arid/maskie3.png?hueshift=90?addmask=/celestial/system/terrestrial/dynamics/8.png
    Warn: Slow asset 0.089 : /celestial/system/terrestrial/biomes/arid/maskie2.png?hueshift=90?addmask=/celestial/system/terrestrial/dynamics/13.png
    Warn: Slow asset 0.094 : /celestial/system/terrestrial/biomes/arid/maskie1.png?hueshift=90?addmask=/celestial/system/terrestrial/dynamics/19.png
    Warn: Slow asset 0.072 : /celestial/system/terrestrial/biomes/moon/maskie3.png?hueshift=180?addmask=/celestial/system/terrestrial/dynamics/22.png
    Warn: Slow asset 0.06 : /celestial/system/terrestrial/biomes/moon/maskie2.png?hueshift=180?addmask=/celestial/system/terrestrial/dynamics/29.png
    Info: Shutting down world alpha:53742602:-28831866:-12629229:1
    Warn: Slow asset 0.14 : /celestial/system/terrestrial/dynamics/4.png
    Warn: Slow asset 0.14 : /celestial/system/terrestrial/dynamics/4.png
    Warn: Slow asset 0.2 : /celestial/system/terrestrial/biomes/moon/maskie1.png?hueshift=180?addmask=/celestial/system/terrestrial/dynamics/4.png
    Warn: Perf: ClientApplication::render millis: 2196
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 2196
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 2214
    Info: Shutting down world alpha:-31288450:-57676932:2875919:5
    Info: Creating world alpha:-40941267:-70013841:-7694303:4:5
    Debug: Correcting path from /biomes/underground/generic/top/rockunderground.undergroundparallax to /biomes/underground/Generic/top/rockunderground.undergroundparallax
    Debug: Correcting path from /biomes/underground/generic/top/desertunderground.png to /biomes/underground/Generic/top/desertunderground.png
    Debug: Correcting path from /biomes/underground/generic/top/rockdivider.png to /biomes/underground/Generic/top/rockdivider.png
    Debug: Correcting path from /biomes/underground/generic/desert.undergroundparallax to /biomes/underground/Generic/desert.undergroundparallax
    Debug: Correcting path from /biomes/underground/generic/desertunderground.png to /biomes/underground/Generic/desertunderground.png
    Debug: Correcting path from /biomes/underground/generic/rockdivider.png to /biomes/underground/Generic/rockdivider.png
    Warn: Perf: WorldPainter::render millis: 382
    Warn: Perf: ClientApplication::render millis: 391
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 391
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 436
    Info: Spawn surface at (0, 414.5)
    Info: Generating 1 dungeons
    Info: Generating a dungeon
    Info: Failed to place a dungeon at (1588, 485)
    Info: Generating a dungeon
    Info: Placing dungeon at (1384, 474)
    Debug: Dungeon entrance placed at (1384, 285)
    Warn: Perf: Assets::loadBaseImage millis: 443
    Warn: Slow asset 0.443 : /interface/cockpit/jumpfull.png
    Warn: Perf: Assets::loadImage millis: 445
    Warn: Slow asset 0.445 : /interface/cockpit/jumpfull.png:0
    Warn: Perf: ClientApplication::render millis: 458
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 458
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 522
    Debug: Trying to add part entrance at (1384, 285) connectors: 3
    Debug: Connects to 21 parts
    Debug: placed
    Debug: Connects to 21 parts
    Debug: placed
    Debug: Connects to 17 parts
    Debug: placed
    Debug: Trying to add part 2 at (1524, 414) connectors: 3
    Debug: Connects to 16 parts
    Debug: placed
    Debug: Connects to 21 parts
    Debug: placed
    Debug: Connects to 22 parts
    Debug: placed
    Debug: Trying to add part 2 at (1617, 414) connectors: 3
    Debug: Connects to 16 parts
    Debug: placed
    Debug: Connects to 21 parts
    Debug: placed
    Debug: Connects to 22 parts
    Debug: placed
    Debug: Trying to add part 13 at (1561, 371) connectors: 2
    Debug: Connects to 16 parts
    Debug: placed
    Debug: Connects to 19 parts
    Debug: placed
    Debug: Trying to add part 6 at (1520, 437) connectors: 4
    Debug: Connects to 14 parts
    Debug: placed
    Debug: Connects to 20 parts
    Debug: placed
    Debug: Connects to 21 parts
    Debug: placed
    Debug: Connects to 17 parts
    Debug: placed
    Debug: Trying to add part 10 at (1473, 423) connectors: 2
    Debug: Connects to 21 parts
    Debug: placed
    Debug: Connects to 22 parts
    Debug: placed
    Debug: Trying to add part endright4 at (1577, 423) connectors: 1
    Debug: Trying to add part 1 at (1613, 437) connectors: 3
    Debug: Connects to 20 parts
    Debug: placed
    Debug: Connects to 21 parts
    Debug: placed
    Debug: Connects to 17 parts
    Debug: placed
    Debug: Trying to add part endleft4 at (1616, 423) connectors: 1
    Debug: Trying to add part 16a at (1670, 423) connectors: 2
    Debug: Connects to 13 parts
    Debug: placed
    Debug: Connects to 17 parts
    Debug: placed
    Debug: Trying to add part endceiling3 at (1580, 417) connectors: 1
    Debug: Trying to add part 4 at (1574, 345) connectors: 2
    Debug: Connects to 16 parts
    Debug: placed
    Debug: Connects to 19 parts
    Debug: placed
    Debug: Trying to add part endceiling3 at (1526, 462) connectors: 1
    Debug: Connects to 19 parts
    Debug: placed
    Debug: Trying to add part 9 at (1471, 445) connectors: 2
    Debug: Connects to 21 parts
    Debug: placed
    Debug: Connects to 22 parts
    Debug: placed
    Debug: Trying to add part 11 at (1539, 445) connectors: 1
    Debug: Connects to 21 parts
    Debug: placed
    Debug: Trying to add part endfloor4 at (1526, 439) connectors: 1
    Debug: Trying to add part 12 at (1432, 417) connectors: 4
    Debug: Connects to 15 parts
    Debug: placed
    Debug: Connects to 21 parts
    Debug: placed
    Debug: Connects to 22 parts
    Debug: placed
    Debug: Connects to 18 parts
    Debug: placed
    Debug: Trying to add part endright4 at (1524, 423) connectors: 1
    Debug: Trying to add part 14 at (1604, 445) connectors: 1
    Debug: Connects to 22 parts
    Debug: placed
    Debug: Trying to add part endright2c at (1667, 446) connectors: 1
    Debug: Connects to 21 parts
    Debug: placed
    Debug: Trying to add part endfloor4 at (1619, 439) connectors: 1
    Debug: Trying to add part endceiling1c at (1687, 443) connectors: 1
    Debug: Connects to 19 parts
    Debug: placed
    Debug: Trying to add part endleft4 at (1669, 423) connectors: 1
    Debug: Trying to add part endceiling3 at (1580, 371) connectors: 1
    Debug: Trying to add part 15a at (1615, 328) connectors: 2
    Debug: Connects to 14 parts
    Debug: placed
    Debug: Connects to 19 parts
    Debug: placed
    Debug: Trying to add part endfloor4 at (1526, 461) connectors: 1
    Debug: Trying to add part endleft2c at (1465, 446) connectors: 1
    Debug: Connects to 22 parts
    Debug: placed
    Debug: Trying to add part endright4 at (1523, 446) connectors: 1
    Debug: Trying to add part endleft4 at (1539, 446) connectors: 1
    Debug: Trying to add part endceiling1d at (1434, 440) connectors: 1
    Debug: Connects to 19 parts
    Debug: placed
    Debug: Trying to add part endleft1b at (1420, 423) connectors: 1
    Debug: Connects to 22 parts
    Debug: placed
    Debug: Trying to add part endright4 at (1473, 423) connectors: 1
    Debug: Trying to add part 15b at (1451, 397) connectors: 2
    Debug: Connects to 15 parts
    Debug: placed
    Debug: Connects to 20 parts
    Debug: placed
    Debug: Trying to add part endright4 at (1617, 446) connectors: 1
    Debug: Trying to add part endleft4 at (1666, 446) connectors: 1
    Debug: Trying to add part endfloor4 at (1687, 442) connectors: 1
    Debug: Trying to add part endceiling3 at (1615, 348) connectors: 1
    Debug: Trying to add part endright2a at (1643, 328) connectors: 1
    Debug: Connects to 21 parts
    Debug: placed
    Debug: Trying to add part endright4 at (1472, 446) connectors: 1
    Debug: Trying to add part endfloor4 at (1434, 439) connectors: 1
    Debug: Trying to add part endright4 at (1432, 423) connectors: 1
    Debug: Trying to add part endceiling3 at (1451, 417) connectors: 1
    Debug: Trying to add part 5 at (1479, 382) connectors: 2
    Debug: Connects to 16 parts
    Debug: placed
    Debug: Connects to 21 parts
    Debug: placed
    Debug: Trying to add part endleft4 at (1642, 328) connectors: 1
    Debug: Trying to add part 3 at (1481, 414) connectors: 2
    Debug: Connects to 12 parts
    Debug: placed
    Debug: Connects to 12 parts
    Debug: placed
    Debug: Trying to add part endleft4 at (1478, 397) connectors: 1
    Debug: Trying to add part endceiling3 at (1481, 421) connectors: 1
    Debug: Connects to 19 parts
    Debug: placed
    Debug: Trying to add part endfloor4 at (1481, 413) connectors: 1
    Debug: Trying to add part endfloor4 at (1481, 420) connectors: 1
    Debug: Settling dungeon water.
    Debug: Flushing dungeon into the worldgen.
    Debug: Marking Box{min:(1393, 292) max:(1808, 529)} as dungeon region
    Debug: Marking (1393, 1808) as dungeon surface of height 474
    Debug: Marking Box{min:(1524, 414) max:(1579, 443)} as dungeon region
    Debug: Marking (1524, 1579) as dungeon surface of height 474
    Debug: Marking Box{min:(1617, 414) max:(1672, 443)} as dungeon region
    Debug: Marking (1617, 1672) as dungeon surface of height 474
    Debug: Marking Box{min:(1561, 371) max:(1611, 418)} as dungeon region
    Debug: Marking (1561, 1611) as dungeon surface of height 474
    Debug: Marking Box{min:(1520, 437) max:(1544, 464)} as dungeon region
    Debug: Marking (1520, 1544) as dungeon surface of height 474
    Debug: Marking Box{min:(1473, 423) max:(1525, 434)} as dungeon region
    Debug: Marking (1473, 1525) as dungeon surface of height 474
    Debug: Marking Box{min:(1613, 437) max:(1668, 464)} as dungeon region
    Debug: Marking (1613, 1668) as dungeon surface of height 474
    Debug: Marking Box{min:(1670, 423) max:(1699, 444)} as dungeon region
    Debug: Marking (1670, 1699) as dungeon surface of height 474
    Debug: Marking Box{min:(1574, 345) max:(1629, 374)} as dungeon region
    Debug: Marking (1574, 1629) as dungeon surface of height 474
    Debug: Marking Box{min:(1527, 463) max:(1537, 463)} as dungeon region
    Debug: Marking (1527, 1537) as dungeon surface of height 474
    Debug: Marking Box{min:(1471, 445) max:(1525, 464)} as dungeon region
    Debug: Marking (1471, 1525) as dungeon surface of height 474
    Debug: Marking Box{min:(1539, 445) max:(1571, 464)} as dungeon region
    Debug: Marking (1539, 1571) as dungeon surface of height 474
    Debug: Marking Box{min:(1432, 417) max:(1474, 441)} as dungeon region
    Debug: Marking (1432, 1474) as dungeon surface of height 474
    Debug: Marking Box{min:(1604, 445) max:(1618, 458)} as dungeon region
    Debug: Marking (1604, 1618) as dungeon surface of height 474
    Debug: Marking Box{min:(1668, 447) max:(1674, 456)} as dungeon region
    Debug: Marking (1668, 1674) as dungeon surface of height 474
    Debug: Marking Box{min:(1688, 444) max:(1698, 449)} as dungeon region
    Debug: Marking (1688, 1698) as dungeon surface of height 474
    Debug: Marking Box{min:(1615, 328) max:(1644, 349)} as dungeon region
    Debug: Marking (1615, 1644) as dungeon surface of height 474
    Debug: Marking Box{min:(1466, 447) max:(1472, 456)} as dungeon region
    Debug: Marking (1466, 1472) as dungeon surface of height 474
    Debug: Marking Box{min:(1435, 441) max:(1445, 446)} as dungeon region
    Debug: Marking (1435, 1445) as dungeon surface of height 474
    Debug: Marking Box{min:(1421, 424) max:(1432, 433)} as dungeon region
    Debug: Marking (1421, 1432) as dungeon surface of height 474
    Debug: Marking Box{min:(1451, 397) max:(1480, 418)} as dungeon region
    Debug: Marking (1451, 1480) as dungeon surface of height 474
    Debug: Marking Box{min:(1644, 329) max:(1650, 338)} as dungeon region
    Debug: Marking (1644, 1650) as dungeon surface of height 474
    Debug: Marking Box{min:(1479, 382) max:(1544, 417)} as dungeon region
    Debug: Marking (1479, 1544) as dungeon surface of height 474
    Debug: Marking Box{min:(1481, 414) max:(1493, 422)} as dungeon region
    Debug: Marking (1481, 1493) as dungeon surface of height 474
    Debug: Marking Box{min:(1482, 422) max:(1492, 422)} as dungeon region
    Debug: Marking (1482, 1492) as dungeon surface of height 474
    Warn: Slow asset 0.12 : /objects/wired/switch/switchtoggle.animation
    Warn: Slow asset 0.122 : /client.config
    Warn: Failed to place dungeon object: bunkerserver direction: 0 position: (1602, 356)
    Warn: Failed to place dungeon object: bunkerlightv direction: 0 position: (1615, 359)
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 217
    Warn: Failed to place dungeon object: bunkertv direction: 0 position: (1483, 410)
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 150
    Warn: Slow asset 0.061 : /codex/documents/humanbunkerbook_11.png
    Warn: Slow asset 0.061 : /codex/documents/humanbunkerbook_11.png
    Warn: Failed to place dungeon object: fluorescentlight direction: 0 position: (1540, 437)
    Warn: Failed to place dungeon object: fluorescentlight direction: 0 position: (1558, 437)
    Warn: Failed to place dungeon object: fluorescentlight direction: 0 position: (1633, 437)
    Warn: Failed to place dungeon object: fluorescentlight direction: 0 position: (1651, 437)
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 219
    Warn: Failed to place dungeon object: bunkertv direction: 0 position: (1476, 454)
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 187
    Warn: Slow asset 0.141 : /npcs/guard/guardState.lua
    Warn: Slow asset 0.135 : /sfx.config
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 316
    Warn: Slow asset 0.055 : /client.config
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 235
    Warn: Perf: DungeonDefinition::buildDungeon millis: 2605
    Warn: Perf: DungeonGenerator::generate millis: 2726
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Warn: Object statuspod does not have a price set
    Warn: Slow asset 0.131 : /objects/generic/statuspod/statuspod.animation
    Warn: Slow asset 0.119 : /default_actor_movement.config
    Warn: Perf: WorldGenerator::prepareSector millis: 172
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 186
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      00796A93
      00796D5B
      00690A2C
      0069238C
      00A76011
      004F565C
      004F6028
      004F6C31
      004FB5A4
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      00796A93
      00796D5B
      00690A2C
      0069238C
      00A76011
      004F565C
      004F6028
      004F6C31
      004FB5A4
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      00796A93
      00796D5B
      00690A2C
      0069238C
      00A76011
      004F565C
      004F6028
      004F6C31
      004FB5A4
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      00796A93
      00796D5B
      00690A2C
      0069238C
      00A76011
      004F565C
      004F6028
      004F6C31
      004FB5A4
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      00796A93
      00796D5B
      00690A2C
      0069238C
      00A76011
      004F565C
      004F6028
      004F6C31
      004FB5A4
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      00796A93
      00796D5B
      00690A2C
      0069238C
      00A76011
      004F565C
      004F6028
      004F6C31
      004FB5A4
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Warn: Slow asset 0.135 : /objects/generic/smallboosterflame/smallboosterflameon.png
    Warn: Slow asset 0.135 : /objects/generic/smallboosterflame/smallboosterflameon.png:default.2
    Warn: Perf: WorldPainter::render millis: 188
    Warn: Perf: ClientApplication::render millis: 194
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 194
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 234
    Warn: Slow asset 0.077 : /sfx/interface/hyperspace_start.ogg
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 204
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      00796A93
      00796D5B
      00690A2C
      0069238C
      00A76011
      004F565C
      004F6028
      004F6C31
      004FB5A4
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      00796A93
      00796D5B
      00690A2C
      0069238C
      00A76011
      004F565C
      004F6028
      004F6C31
      004FB5A4
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      00796A93
      00796D5B
      00690A2C
      0069238C
      00A76011
      004F565C
      004F6028
      004F6C31
      004FB5A4
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      00796A93
      00796D5B
      00690A2C
      0069238C
      00A76011
      004F565C
      004F6028
      004F6C31
      004FB5A4
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Warn: Perf: UniverseServer::createWorld millis: 10937
    Warn: Perf: UniverseServer::handleQueuedWarps millis: 10938
    Error: World thread has died, removing world alpha:-40941267:-70013841:-7694303:4:5
    Warn: Perf: UniverseServer::shutdownInactiveWorlds millis: 677
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Warn: Perf: UniverseServer::run.innerloop millis: 11715
    Warn: Slow asset 0.091 : /sfx/interface/hyperspace_loop.ogg
    Warn: Perf: UniverseServer::run.innerloop millis: 228
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Warn: Slow asset 0.063 : /celestial/system/terrestrial/biomes/arid/maskie3.png?hueshift=90?addmask=/celestial/system/terrestrial/dynamics/8.png
    Warn: Slow asset 0.064 : /celestial/system/terrestrial/biomes/arid/maskie2.png?hueshift=90?addmask=/celestial/system/terrestrial/dynamics/13.png
    Warn: Slow asset 0.063 : /celestial/system/terrestrial/biomes/arid/maskie1.png?hueshift=90?addmask=/celestial/system/terrestrial/dynamics/19.png
    Warn: Slow asset 0.057 : /celestial/system/terrestrial/biomes/moon/maskie3.png?hueshift=180?addmask=/celestial/system/terrestrial/dynamics/22.png
    Warn: Slow asset 0.063 : /celestial/system/terrestrial/biomes/moon/maskie2.png?hueshift=180?addmask=/celestial/system/terrestrial/dynamics/29.png
    Warn: Slow asset 0.063 : /celestial/system/terrestrial/biomes/moon/maskie1.png?hueshift=180?addmask=/celestial/system/terrestrial/dynamics/4.png
    Warn: Slow asset 0.08 : /sky/orbitals/cloud3.png
    Warn: Slow asset 0.08 : /sky/orbitals/cloud3.png
    Warn: Slow asset 0.083 : /celestial/system/horizon/masks/36_l.png
    Warn: Slow asset 0.083 : /celestial/system/horizon/masks/36_l.png
    Warn: Perf: WorldPainter::render millis: 964
    Warn: Perf: ClientApplication::render millis: 971
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 971
    Warn: Slow asset 0.143 : /celestial/system/horizon/textures/meat_l.png?hueshift=-26?addmask=/celestial/system/horizon/masks/36_l.png+/celestial/system/horizon/masks/38_l.png;0;0
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 1008
    Warn: Slow asset 0.059 : /celestial/system/horizon/textures/meat_r.png?hueshift=-26?addmask=/celestial/system/horizon/masks/36_r.png+/celestial/system/horizon/masks/38_r.png;0;0
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Warn: Wav file data size reported is inconsistent with file size, got 368112 but expected 335818
    Warn: Slow asset 0.131 : /music/impact-event.ogg
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 167
    Info: Loading world db for world alpha:-40941267:-70013841:-7694303:4:5
    Warn: Object statuspod does not have a price set
    Warn: Perf: UniverseServer::createWorld millis: 260
    Warn: Perf: UniverseServer::handleQueuedWarps millis: 266
    Info: Client received world stop packet, leaving: Removed
    Warn: Perf: UniverseServer::run.innerloop millis: 367
    Warn: Slow asset 0.149 : /sfx/tools/teleport_down.wav
    Warn: Slow asset 0.134 : /music/mercury.ogg
    Warn: Perf: UniverseClient::update millis: 425
    Warn: Perf: ClientApplication::updateRunning millis: 426
    Warn: Perf: ClientApplication::update millis: 426
    Warn: Perf: StarApplicationBase::run.innerLoop.update millis: 426
    Debug: Correcting path from /items/armors/human/human-cool/icons.png to /items/armors/human/human-cool/Icons.png
    Warn: Slow asset 0.065 : /celestial/system/terrestrial/biomes/arid/maskie3.png?hueshift=90?addmask=/celestial/system/terrestrial/dynamics/8.png
    Warn: Slow asset 0.08 : /celestial/system/terrestrial/biomes/arid/maskie2.png?hueshift=90?addmask=/celestial/system/terrestrial/dynamics/13.png
    Warn: Slow asset 0.089 : /monsters/ground/tinyquadruped/tinyquadruped.animation
    Warn: Slow asset 0.075 : /celestial/system/terrestrial/biomes/arid/maskie1.png
    Warn: Slow asset 0.075 : /celestial/system/terrestrial/biomes/arid/maskie1.png
    Warn: Slow asset 0.051 : /celestial/system/terrestrial/dynamics/19.png
    Warn: Slow asset 0.051 : /celestial/system/terrestrial/dynamics/19.png
    Warn: Slow asset 0.174 : /celestial/system/terrestrial/biomes/arid/maskie1.png?hueshift=90?addmask=/celestial/system/terrestrial/dynamics/19.png
    Warn: Slow asset 0.134 : /universe_server.config
    Warn: Slow asset 0.238 : /monsters/ground/captiveState.lua
    Warn: Slow asset 0.218 : /celestial/system/terrestrial/biomes/moon/maskie3.png
    Warn: Slow asset 0.218 : /celestial/system/terrestrial/biomes/moon/maskie3.png
    Warn: Slow asset 0.29 : /celestial/system/terrestrial/biomes/moon/maskie3.png?hueshift=180?addmask=/celestial/system/terrestrial/dynamics/22.png
    Warn: Slow asset 0.099 : /monsters/ground/grazeState.lua
    Warn: Slow asset 0.078 : /celestial/system/terrestrial/biomes/moon/maskie2.png?hueshift=180?addmask=/celestial/system/terrestrial/dynamics/29.png
    Warn: Perf: Spawner::update millis: 441
    Warn: Slow asset 0.067 : /celestial/system/terrestrial/biomes/moon/maskie1.png?hueshift=180?addmask=/celestial/system/terrestrial/dynamics/4.png
    Warn: Perf: WorldServer::update millis: 527
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 527
    Warn: Perf: WorldServerThread::update millis: 527
    Warn: Perf: WorldPainter::render millis: 1378
    Warn: Slow asset 0.061 : /parallax/clouds2/base/1.png?hueshift=-26?fade=ffffff=0.06
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Warn: Slow asset 0.136 : /parallax/clouds2/base/2.png?hueshift=-26?fade=ffffff=0.06
    Warn: Slow asset 0.053 : /humanoid/human/emote.png
    Warn: Slow asset 0.053 : /humanoid/human/emote.png:idle.1
    Warn: Slow asset 0.053 : /humanoid/human/emote.png:idle.1?replace;ffe2c5=fff6f6;ffc181=f7d5d3;d39c6c=d1aaa1;c7815b=a27f70?replace;dc1f00=7c41b8;be1b00=6c2f90;951500=471962?addmask=/humanoid/portraitMask.png;0;0?addmask=/humanoid/portraitBackgroundMask.png;0;0
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Warn: Slow asset 0.375 : /parallax/desertback2/base/1.png?hueshift=-26?brightness=18?saturation=-12?fade=ffffff=0.3
    Warn: Slow asset 0.07 : /interface/cursors.png
    Warn: Slow asset 0.07 : /interface/cursors.png:pointer
    Warn: Perf: ClientApplication::render millis: 1791
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 1791
    Warn: Slow asset 0.057 : /parallax/clouds3/base/1.png?hueshift=-26?fade=ffffff=0.15
    Warn: Slow asset 0.057 : /parallax/clouds3/base/2.png?hueshift=-26?fade=ffffff=0.15
    Warn: Slow asset 0.059 : /parallax/clouds1/base/2.png?hueshift=-26?fade=ffffff=0.04
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 2433
    Warn: Slow asset 0.062 : /parallax/clouds1/base/1.png?hueshift=-26?fade=ffffff=0.04
    Warn: Perf: WorldGenerator::prepareTiles millis: 220
    Warn: Perf: WorldStorage::update millis: 230
    Warn: Perf: WorldServer::update millis: 233
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 233
    Warn: Perf: WorldServerThread::update millis: 233
    Warn: Slow asset 0.068 : /parallax/desertrare/base/3.png?hueshift=-26?brightness=5?saturation=-4?fade=ffffff=0.1
    Warn: Slow asset 0.069 : /plants/trees/tentacle/foliage/tentacletreeblank/crown1.png
    Warn: Slow asset 0.069 : /plants/trees/tentacle/foliage/tentacletreeblank/crown1.png
    Warn: Perf: UniverseClient::update millis: 301
    Warn: Perf: ClientApplication::updateRunning millis: 305
    Warn: Perf: ClientApplication::update millis: 305
    Warn: Perf: StarApplicationBase::run.innerLoop.update millis: 305
    Warn: Slow asset 0.216 : /parallax/desertfront/base/2.png?hueshift=-26?brightness=5?saturation=-4?fade=ffffff=0.1
    Warn: Slow asset 0.052 : /parallax/desertfront2/base/1.png?hueshift=-26?fade=ffffff=0.05
    Warn: Perf: Assets::loadImage millis: 808
    Warn: Slow asset 0.809 : /parallax/desertback/base/1.png?hueshift=-26?brightness=15?saturation=-10?fade=ffffff=0.15
    Warn: Slow asset 0.054 : /parallax/clouds3/base/1.png?hueshift=-26?fade=ffffff=0.15
    Warn: Slow asset 0.102 : /parallax/clouds3/base/2.png?hueshift=-26?fade=ffffff=0.15
    Warn: Slow asset 0.085 : /parallax/clouds1/base/2.png?hueshift=-26?fade=ffffff=0.04
    Warn: Slow asset 0.224 : /parallax/desertfront2/base/1.png?hueshift=-26?fade=ffffff=0.05
    Warn: Slow asset 0.228 : /tiles/materials/fleshblock.png
    Warn: Slow asset 0.253 : /tiles/materials/fleshblock.png
    Warn: Slow asset 0.254 : /tiles/materials/fleshblock.png?hueshift=336
    Warn: Slow asset 0.253 : /biomes/surface/meat/rockdivider.png
    Warn: Slow asset 0.253 : /biomes/surface/meat/rockdivider.png
    Warn: Slow asset 0.269 : /biomes/surface/meat/rockdivider.png?brightness=-65
    Warn: Slow asset 0.068 : /monsters/flying/smallflyingnight/wings/hummingbird/hummingbirdbwing.png
    Warn: Slow asset 0.068 : /monsters/flying/smallflyingnight/wings/hummingbird/hummingbirdbwing.png:flying.2
    Warn: Slow asset 0.068 : /monsters/flying/smallflyingnight/wings/hummingbird/hummingbirdbwing.png:flying.2??replace;a85636=515151;f32200=f39b00;f7e7b2=efa4ae;dc1f00=dc7c00;be1b00=be5000;d9c189=e07f7f;6f2919=171717;e0975c=767676;951500=953800;a38d59=965751;ffca8a=9f9f9f;735e3a=503224??
    Warn: Slow asset 0.063 : /monsters/flying/smallflying/body/ribbonbody/ribbonbody.png
    Warn: Slow asset 0.063 : /monsters/flying/smallflying/body/ribbonbody/ribbonbody.png:flying.2
    Warn: Slow asset 0.063 : /monsters/flying/smallflying/body/ribbonbody/ribbonbody.png:flying.2??replace;a85636=515151;f32200=f39b00;f7e7b2=efa4ae;dc1f00=dc7c00;be1b00=be5000;d9c189=e07f7f;6f2919=171717;e0975c=767676;951500=953800;a38d59=965751;ffca8a=9f9f9f;735e3a=503224??
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 1140
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 151
    Warn: Slow asset 0.056 : /parallax/clouds2/base/2.png?hueshift=-26?fade=ffffff=0.06
    Warn: Perf: WorldStorage::update millis: 271
    Warn: Perf: WorldServer::update millis: 273
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 273
    Warn: Perf: WorldServerThread::update millis: 273
    Warn: Perf: Assets::loadBaseImage millis: 173
    Warn: Slow asset 0.173 : /monsters/flying/smallflyingnight/wings/albatross/albatrossbwing.png
    Warn: Perf: Assets::loadImage millis: 173
    Warn: Slow asset 0.173 : /monsters/flying/smallflyingnight/wings/albatross/albatrossbwing.png:flying.1
    Warn: Perf: Assets::loadImage millis: 173
    Warn: Slow asset 0.173 : /monsters/flying/smallflyingnight/wings/albatross/albatrossbwing.png:flying.1??replace;a85636=344651;f32200=4c4c4c;f7e7b2=bfe9ff;dc1f00=383838;be1b00=262626;d9c189=96cbe6;6f2919=1c2a33;e0975c=52646d;951500=171717;a38d59=6995b7;ffca8a=7d8b8e;735e3a=41546c??
    Warn: Perf: WorldPainter::render millis: 203
    Warn: Perf: ClientApplication::render millis: 209
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 209
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 236
    Warn: Perf: WorldStorage::update millis: 179
    Warn: Perf: WorldServer::update millis: 180
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 180
    Warn: Perf: WorldServerThread::update millis: 180
    Warn: Perf: WorldStorage::update millis: 209
    Warn: Perf: WorldServer::update millis: 212
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 212
    Warn: Perf: WorldServerThread::update millis: 212
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Warn: Perf: WorldStorage::update millis: 212
    Warn: Perf: WorldServer::update millis: 213
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 213
    Warn: Perf: WorldServerThread::update millis: 214
    Warn: Perf: WorldGenerator::prepareSector millis: 154
    Warn: Perf: WorldStorage::update millis: 154
    Warn: Perf: WorldServer::update millis: 155
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 155
    Warn: Perf: WorldServerThread::update millis: 155
    Warn: Perf: WorldStorage::update millis: 235
    Warn: Perf: WorldServer::update millis: 238
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 238
    Warn: Perf: WorldServerThread::update millis: 238
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Warn: Perf: WorldStorage::update millis: 212
    Warn: Perf: WorldServer::update millis: 217
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 217
    Warn: Perf: WorldServerThread::update millis: 217
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Warn: Perf: WorldStorage::update millis: 221
    Warn: Perf: WorldServer::update millis: 223
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 224
    Warn: Perf: WorldServerThread::update millis: 224
    Warn: Perf: WorldStorage::update millis: 243
    Warn: Perf: WorldServer::update millis: 264
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 265
    Warn: Perf: WorldServerThread::update millis: 265
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 319
    Warn: Perf: WorldStorage::update millis: 197
    Warn: Perf: WorldServer::update millis: 200
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 200
    Warn: Perf: WorldServerThread::update millis: 200
    Warn: Perf: WorldStorage::update millis: 205
    Warn: Perf: WorldServer::update millis: 212
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 212
    Warn: Perf: WorldServerThread::update millis: 212
    Warn: Slow asset 0.127 : /particles/rain/1.png
    Warn: Slow asset 0.127 : /particles/rain/1.png
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 168
    Warn: Perf: Assets::loadBaseImage millis: 203
    Warn: Slow asset 0.203 : /items/throwables/throwingdaggericon.png
    Warn: Perf: Assets::loadImage millis: 203
    Warn: Slow asset 0.203 : /items/throwables/throwingdaggericon.png
    Warn: Perf: ClientApplication::updateRunning millis: 205
    Warn: Perf: ClientApplication::update millis: 205
    Warn: Perf: StarApplicationBase::run.innerLoop.update millis: 205
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 235
    Warn: Perf: WorldGenerator::prepareSector millis: 240
    Warn: Perf: WorldStorage::update millis: 366
    Warn: Perf: WorldServer::update millis: 369
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 369
    Warn: Perf: WorldServerThread::update millis: 369
    Warn: Perf: WorldStorage::update millis: 215
    Warn: Perf: WorldServer::update millis: 219
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 219
    Warn: Perf: WorldServerThread::update millis: 219
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Warn: Perf: Assets::loadAudio millis: 341
    Warn: Slow asset 0.341 : /sfx/npc/smallbiped/spidermonkey_turnhostile.wav
    Warn: Perf: WorldClient::update millis: 368
    Warn: Perf: UniverseClient::update millis: 368
    Warn: Perf: ClientApplication::updateRunning millis: 371
    Warn: Perf: ClientApplication::update millis: 371
    Warn: Perf: StarApplicationBase::run.innerLoop.update millis: 371
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 450
    Warn: Slow asset 0.054 : /sfx/npc/smallbiped/spidermonkey_death.wav
    Warn: Perf: WorldStorage::update millis: 177
    Warn: Perf: WorldServer::update millis: 179
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 179
    Warn: Perf: WorldServerThread::update millis: 179
    Warn: Perf: WorldServerThread::update.clientsOutgoingPackets millis: 343
    Warn: Perf: WorldServerThread::update millis: 391
    Warn: Perf: WorldServerThread::sync millis: 404
    Warn: Perf: UniverseServer::doTriggeredStorage millis: 429
    Warn: Perf: UniverseServer::run.innerloop millis: 566
    Warn: Perf: WorldServerThread::run.sleeping millis: 328
    Warn: Perf: WorldServer::update millis: 177
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 177
    Warn: Perf: WorldServerThread::update millis: 177
    Warn: Perf: WorldStorage::update millis: 197
    Warn: Perf: WorldServer::update millis: 208
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 208
    Warn: Perf: WorldServerThread::update millis: 208
    Warn: Perf: WorldStorage::update millis: 222
    Warn: Perf: WorldServer::update millis: 230
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 230
    Warn: Perf: WorldServerThread::update millis: 230
    Warn: Perf: WorldStorage::update millis: 260
    Warn: Perf: WorldServer::update millis: 265
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 269
    Warn: Perf: WorldServerThread::update millis: 269
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Warn: Slow asset 0.141 : /sfx/objects/capsule_break1.wav
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 202
    Warn: Perf: Spawner::update millis: 153
    Warn: Perf: WorldServer::update millis: 163
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 163
    Warn: Perf: WorldServerThread::update millis: 163
    Warn: Slow asset 0.06 : /sfx/objects/fluorescent_light_loud.wav
    Warn: Perf: WorldStorage::update millis: 161
    Warn: Perf: WorldServer::update millis: 178
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 178
    Warn: Perf: WorldServerThread::update millis: 178
    Warn: Slow asset 0.09 : /sfx/objects/bunkerdisplay.wav
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 151
    Warn: Slow asset 0.084 : /projectiles/guns/plasmabullets/blueplasmabullet/blueplasmabullet.png
    Warn: Slow asset 0.084 : /projectiles/guns/plasmabullets/blueplasmabullet/blueplasmabullet.png:0
    Warn: Perf: WorldServer::update millis: 151
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 151
    Warn: Perf: WorldServerThread::update millis: 152
    Warn: Wav file data size reported is inconsistent with file size, got 235210 but expected 230268
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 338
    Warn: Slow asset 0.086 : /items/armors/human/human-tier4/bsleeve.png
    Warn: Slow asset 0.086 : /items/armors/human/human-tier4/bsleeve.png:rotation
    Warn: Slow asset 0.086 : /items/armors/human/human-tier4/bsleeve.png:rotation?replace;ffca8a=838383;e0975c=555555;a85636=383838;6f2919=151515
    Warn: Perf: WorldPainter::render millis: 180
    Warn: Perf: ClientApplication::render millis: 189
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 189
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 252
    Warn: Slow asset 0.055 : /sfx/objects/bunkervent.wav
    Warn: Perf: Assets::loadBaseImage millis: 186
    Warn: Slow asset 0.186 : /tiles/materials/smoothmetal.png
    Warn: Perf: Assets::loadImage millis: 186
    Warn: Slow asset 0.186 : /tiles/materials/smoothmetal.png
    Warn: Perf: WorldPainter::render millis: 196
    Warn: Perf: ClientApplication::render millis: 205
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 206
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 236
    Warn: Slow asset 0.064 : /humanoid/human/hair/fem56.png
    Warn: Slow asset 0.064 : /humanoid/human/hair/fem56.png:normal
    Warn: Slow asset 0.065 : /humanoid/human/hair/fem56.png:normal?replace;d9c189=cd72d9;a38d59=ac4da6;735e3a=913b86?addmask=/items/armors/human/human-tier4/mask.png;0;0
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 201
    Warn: Slow asset 0.057 : /leveling/monster.config
    Warn: Perf: WorldServer::update millis: 193
    Warn: Slow asset 0.272 : /sfx/objects/bunkerwires.wav
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 321
    Warn: Perf: WorldServerThread::update millis: 323
    Warn: Perf: WorldClient::update millis: 345
    Warn: Perf: UniverseClient::update millis: 349
    Warn: Perf: ClientApplication::updateRunning millis: 351
    Warn: Perf: ClientApplication::update millis: 351
    Warn: Perf: StarApplicationBase::run.innerLoop.update millis: 351
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 404
    Warn: Slow asset 0.117 : /sfx/blocks/footstep_stone.wav
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 168
    Warn: Wav file data size reported is inconsistent with file size, got 235210 but expected 230268
    Warn: Slow asset 0.138 : /tiles/materials/plate.png
    Warn: Perf: Assets::loadImage millis: 171
    Warn: Slow asset 0.171 : /tiles/materials/plate.png
    Warn: Perf: WorldPainter::render millis: 179
    Warn: Perf: ClientApplication::render millis: 190
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 190
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 252
    Warn: Slow asset 0.088 : /tiles/materials/metallic.png
    Warn: Slow asset 0.088 : /tiles/materials/metallic.png
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 184
    Warn: Perf: UniverseServer::run.innerloop millis: 154
    Warn: Slow asset 0.058 : /sfx/gun/shotgun4.wav
    Warn: Slow asset 0.088 : /projectiles/guns/bullets/bullet-2/bullet-2.png
    Warn: Slow asset 0.088 : /projectiles/guns/bullets/bullet-2/bullet-2.png:0
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 217
    Warn: Wav file data size reported is inconsistent with file size, got 28972 but expected 20966
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 154
    Warn: Slow asset 0.058 : /sfx/objects/arcademachine.wav
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 152
    Warn: Slow asset 0.087 : /items/armors/human/human-tier4/chestm.png
    Warn: Slow asset 0.087 : /items/armors/human/human-tier4/chestm.png:idle.3
    Warn: Slow asset 0.087 : /items/armors/human/human-tier4/chestm.png:idle.3?replace;ffca8a=838383;e0975c=555555;a85636=383838;6f2919=151515
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 199
    Warn: Slow asset 0.095 : /humanoid/human/hair/male5.png
    Warn: Slow asset 0.095 : /humanoid/human/hair/male5.png:normal
    Warn: Slow asset 0.096 : /humanoid/human/hair/male5.png:normal?replace;d9c189=cd72d9;a38d59=ac4da6;735e3a=913b86?addmask=/items/armors/human/human-tier4/mask.png;0;0
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 168
    Warn: Perf: WorldStorage::update millis: 151
    Warn: Perf: WorldServer::update millis: 176
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 176
    Warn: Perf: WorldServerThread::update millis: 176
    Warn: Perf: WorldServer::update millis: 167
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 167
    Warn: Perf: WorldServerThread::update millis: 168
    Warn: Wav file data size reported is inconsistent with file size, got 28972 but expected 20966
    Warn: Wav file data size reported is inconsistent with file size, got 235210 but expected 230268
    Warn: Perf: WorldServer::update millis: 156
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 156
    Warn: Perf: WorldServerThread::update millis: 156
    Warn: Perf: WorldServer::update millis: 150
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 150
    Warn: Perf: WorldServerThread::update millis: 150
    Warn: Perf: WorldStorage::update millis: 153
    Warn: Perf: WorldServer::update millis: 174
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 174
    Warn: Perf: WorldServerThread::update millis: 174
    Warn: Perf: WorldServer::update millis: 153
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 153
    Warn: Perf: WorldServerThread::update millis: 153
    Warn: Wav file data size reported is inconsistent with file size, got 72320 but expected 66936
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Warn: Wav file data size reported is inconsistent with file size, got 92748 but expected 87364
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Warn: Perf: UniverseServer::run.innerloop millis: 160
    Warn: Perf: WorldServer::update millis: 153
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 153
    Warn: Perf: WorldServerThread::update millis: 153
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Warn: Perf: WorldServer::update millis: 150
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 150
    Warn: Perf: WorldServerThread::update millis: 150
    Warn: Wav file data size reported is inconsistent with file size, got 92566 but expected 87182
    Warn: Slow asset 0.058 : /sfx/npc/smallbiped/teethyhead_small_turnhostile.wav
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Warn: Wav file data size reported is inconsistent with file size, got 28972 but expected 20966
    Warn: Perf: StarApplicationBase::run.innerLoop.SDL_PollEvent millis: 498
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 788
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Warn: Wav file data size reported is inconsistent with file size, got 102224 but expected 96840
    Warn: Wav file data size reported is inconsistent with file size, got 119462 but expected 114078
    Warn: Slow asset 0.067 : /sfx/npc/smallbiped/teethyhead_small_death.wav
    Warn: Perf: WorldStorage::update millis: 215
    Warn: Perf: WorldServer::update millis: 230
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 230
    Warn: Perf: WorldServerThread::update millis: 230
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Warn: Perf: StarApplicationBase::run.innerLoop.graphicsSwapBuffers millis: 216
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 238
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 159
    Warn: Perf: StarApplicationBase::run.innerLoop.SDL_PollEvent millis: 379
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 427
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Warn: Wav file data size reported is inconsistent with file size, got 92566 but expected 87182
    Warn: Wav file data size reported is inconsistent with file size, got 28972 but expected 20966
    Warn: Wav file data size reported is inconsistent with file size, got 48084 but expected 40952
    Warn: Perf: Audio::parseWav millis: 157
    Warn: Perf: Assets::loadAudio millis: 188
    Warn: Slow asset 0.188 : /sfx/melee/bite.wav
    Warn: Perf: WorldClient::update millis: 191
    Warn: Perf: UniverseClient::update millis: 193
    Warn: Perf: ClientApplication::updateRunning millis: 194
    Warn: Perf: ClientApplication::update millis: 194
    Warn: Perf: StarApplicationBase::run.innerLoop.update millis: 194
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 234
    Warn: Perf: WorldStorage::update millis: 156
    Warn: Perf: WorldServer::update millis: 168
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 187
    Warn: Slow asset 0.141 : /animations/statuseffects/skid1/skid1.png
    Warn: Perf: Assets::loadImage millis: 196
    Warn: Slow asset 0.197 : /animations/statuseffects/skid1/skid1.png:0
    Warn: Perf: WorldPainter::renderParticles millis: 198
    Warn: Perf: WorldPainter::render millis: 204
    Warn: Perf: ClientApplication::render millis: 210
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 210
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 252
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Warn: Perf: WorldServerThread::update.clientsOutgoingPackets millis: 326
    Warn: Perf: WorldServerThread::update millis: 513
    Warn: Perf: WorldServerThread::sync millis: 411
    Warn: Perf: UniverseServer::doTriggeredStorage millis: 441
    Warn: Perf: UniverseServer::run.innerloop millis: 573
    Warn: Wav file data size reported is inconsistent with file size, got 104048 but expected 98664
    Warn: Perf: UniverseServer::run.innerloop millis: 209
    Warn: Wav file data size reported is inconsistent with file size, got 28972 but expected 20966
    Warn: Perf: StarApplicationBase::run.innerLoop.graphicsSwapBuffers millis: 353
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 375
    Warn: Wav file data size reported is inconsistent with file size, got 119462 but expected 114078
    Warn: Perf: WorldStorage::update millis: 190
    Warn: Perf: WorldServer::update millis: 194
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 194
    Warn: Perf: WorldServerThread::update millis: 195
    Warn: Perf: WorldServer::update millis: 157
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 157
    Warn: Perf: WorldServerThread::update millis: 157
    Warn: Perf: WorldStorage::update millis: 205
    Warn: Perf: WorldServer::update millis: 211
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 211
    Warn: Perf: WorldServerThread::update millis: 211
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Warn: Wav file data size reported is inconsistent with file size, got 28972 but expected 20966
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Warn: Perf: StarApplicationBase::run.innerLoop.graphicsSwapBuffers millis: 152
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 174
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Warn: Wav file data size reported is inconsistent with file size, got 17544 but expected 10208
    Warn: Slow asset 0.088 : /plants/trees/tentacle/stem/tentacletree/base3.png
    Warn: Slow asset 0.088 : /plants/trees/tentacle/stem/tentacletree/base3.png
    Warn: Slow asset 0.061 : /sfx/npc/smallbiped/spidermonkey_idle2.wav
    Warn: Slow asset 0.051 : /sfx/blocks/footstep_bone.wav
    Warn: Object statuspod does not have a price set
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Warn: Wav file data size reported is inconsistent with file size, got 86618 but expected 81234
    Warn: Slow asset 0.065 : /sfx/npc/smallbiped/lion_small_idle1.wav
    Warn: Perf: UniverseServer::run.innerloop millis: 151
    Warn: Perf: StarApplicationBase::run.innerLoop.graphicsSwapBuffers millis: 185
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 203
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Warn: Perf: WorldStorage::update millis: 207
    Warn: Perf: WorldServer::update millis: 209
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 209
    Warn: Perf: WorldServerThread::update millis: 210
    Warn: Perf: WorldStorage::update millis: 190
    Warn: Perf: WorldServer::update millis: 196
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 196
    Warn: Perf: WorldServerThread::update millis: 196
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Warn: Perf: WorldStorage::update millis: 155
    Warn: Perf: WorldServer::update millis: 161
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 161
    Warn: Perf: WorldServerThread::update millis: 161
    Warn: Wav file data size reported is inconsistent with file size, got 115150 but expected 109766
    Warn: Slow asset 0.054 : /sfx/npc/smallbiped/lion_small_idle2.wav
    Warn: Wav file data size reported is inconsistent with file size, got 86618 but expected 81234
    Warn: Perf: WorldStorage::update millis: 152
    Warn: Perf: WorldServer::update millis: 158
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 158
    Warn: Perf: WorldServerThread::update millis: 158
    Warn: Object statuspod does not have a price set
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Warn: Wav file data size reported is inconsistent with file size, got 72320 but expected 66936
    Warn: Perf: WorldStorage::update millis: 200
    Warn: Perf: WorldServer::update millis: 202
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 202
    Warn: Perf: WorldServerThread::update millis: 203
    Warn: Wav file data size reported is inconsistent with file size, got 70822 but expected 65438
    Warn: Slow asset 0.053 : /sfx/npc/smallbiped/lion_small_turnhostile.wav
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Warn: Perf: WorldStorage::update millis: 197
    Warn: Perf: WorldServer::update millis: 200
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 200
    Warn: Perf: WorldServerThread::update millis: 200
    Warn: Perf: UniverseServer::run.innerloop millis: 176
    Warn: Wav file data size reported is inconsistent with file size, got 84214 but expected 78830
    Warn: Perf: WorldStorage::update millis: 180
    Warn: Perf: WorldServer::update millis: 183
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 183
    Warn: Perf: WorldServerThread::update millis: 184
    Warn: Perf: StarApplicationBase::run.innerLoop.graphicsSwapBuffers millis: 169
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 234
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Warn: Perf: WorldStorage::update millis: 151
    Warn: Perf: WorldServer::update millis: 158
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 158
    Warn: Perf: WorldServerThread::update millis: 158
    Warn: Perf: WorldStorage::update millis: 182
    Warn: Perf: WorldServer::update millis: 184
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 185
    Warn: Perf: WorldServerThread::update millis: 185
    Warn: Perf: WorldStorage::update millis: 177
    Warn: Perf: WorldServer::update millis: 181
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 181
    Warn: Perf: WorldServerThread::update millis: 181
    Warn: Perf: StarApplicationBase::run.innerLoop.graphicsSwapBuffers millis: 184
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 203
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Error: Failed to place microdungeon StarException: Unknown dungeon: 'fleshhause'
      0064071F
      007AD5F3
      0079EF09
      0079F002
      00796448
      00796404
      007966C7
      0068F5D7
      0069F59D
      0069FC1B
      0094EDCC
      753233AA
      77AE9EF2
      77AE9EC5
    
    Warn: Perf: WorldServerThread::update.clientsOutgoingPackets millis: 386
    Warn: Perf: WorldServerThread::update millis: 433
    Warn: Perf: WorldServerThread::sync millis: 448
    Warn: Perf: UniverseServer::doTriggeredStorage millis: 476
    Warn: Perf: UniverseServer::run.innerloop millis: 608
    Warn: Perf: WorldGenerator::prepareTiles millis: 175
    Warn: Perf: WorldStorage::update millis: 185
    Warn: Perf: WorldServer::update millis: 188
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 188
    Warn: Perf: WorldServerThread::update millis: 188
    Warn: Perf: WorldServer::update millis: 155
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 155
    Warn: Perf: WorldServerThread::update millis: 156
    Warn: Perf: WorldStorage::update millis: 151
    Warn: Perf: WorldServer::update millis: 155
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 155
    Warn: Perf: WorldServerThread::update millis: 155
    Warn: Perf: WorldServerThread::run.sleeping millis: 158
    Warn: Perf: WorldGenerator::prepareTiles millis: 169
    Warn: Perf: WorldStorage::update millis: 172
    Warn: Perf: WorldServer::update millis: 175
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 175
    Warn: Perf: WorldServerThread::update millis: 176
    Warn: Perf: WorldStorage::update millis: 164
    Warn: Perf: WorldServer::update millis: 168
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 168
    Warn: Perf: WorldServerThread::update millis: 168
    Warn: Perf: WorldServer::update millis: 151
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 151
    Warn: Perf: WorldServerThread::update millis: 152
    Warn: Perf: WorldStorage::update millis: 153
    Warn: Perf: WorldServer::update millis: 157
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 157
    Warn: Perf: WorldServerThread::update millis: 157
    Warn: Perf: WorldStorage::update millis: 159
    Warn: Perf: WorldServer::update millis: 165
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 165
    Warn: Perf: WorldServerThread::update millis: 165
    Warn: Perf: WorldStorage::update millis: 261
    Warn: Perf: WorldServer::update millis: 266
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 266
    Warn: Perf: WorldServerThread::update millis: 266
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Warn: Perf: WorldStorage::update millis: 162
    Warn: Perf: WorldServer::update millis: 166
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 166
    Warn: Perf: WorldServerThread::update millis: 166
    Warn: Perf: WorldServerThread::run.sleeping millis: 389
    Warn: Perf: WorldGenerator::prepareTiles millis: 157
    Warn: Perf: WorldStorage::update millis: 164
    Warn: Perf: WorldServer::update millis: 168
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 168
    Warn: Perf: WorldServerThread::update millis: 168
    Warn: Object mushroomseed does not have a price set
    Warn: Perf: WorldStorage::update millis: 166
    Warn: Perf: WorldServer::update millis: 176
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 176
    Warn: Perf: WorldServerThread::update millis: 177
    Warn: Object statuspod does not have a price set
    Warn: Perf: WorldServer::update millis: 156
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 156
    Warn: Perf: WorldServerThread::update millis: 156
    Warn: Perf: WorldServer::update millis: 150
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 150
    Warn: Perf: WorldServerThread::update millis: 151
    Warn: Perf: Assets::loadAudio millis: 237
    Warn: Slow asset 0.237 : /sfx/environmental/moon_underground.ogg
    Warn: Perf: WorldClient::update millis: 242
    Warn: Perf: UniverseClient::update millis: 243
    Warn: Perf: ClientApplication::updateRunning millis: 243
    Warn: Perf: ClientApplication::update millis: 243
    Warn: Perf: StarApplicationBase::run.innerLoop.update millis: 244
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 296
    Warn: Perf: WorldStorage::update millis: 168
    Warn: Perf: WorldServer::update millis: 173
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 173
    Warn: Perf: WorldServerThread::update millis: 173
    Warn: Wav file data size reported is inconsistent with file size, got 72320 but expected 66936
    Warn: Perf: WorldStorage::update millis: 157
    Warn: Perf: WorldServer::update millis: 167
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 167
    Warn: Perf: WorldServerThread::update millis: 168
    Warn: Wav file data size reported is inconsistent with file size, got 92748 but expected 87364
    Warn: Perf: WorldStorage::update millis: 153
    Warn: Perf: WorldServer::update millis: 157
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 157
    Warn: Perf: WorldServerThread::update millis: 158
    Warn: Slow asset 0.057 : /monsters/ground/quadruped/organic/legs/rockgolem/rockgolemblegs.png
    Warn: Slow asset 0.058 : /monsters/ground/quadruped/organic/legs/rockgolem/rockgolemblegs.png:walk.1
    Warn: Slow asset 0.058 : /monsters/ground/quadruped/organic/legs/rockgolem/rockgolemblegs.png:walk.1??replace;a85636=b16232;f32200=ffb632;f7e7b2=7dc8eb;dc1f00=ff7400;be1b00=d52b00;d9c189=549fd5;6f2919=723522;e0975c=d99b4a;951500=891400;a38d59=3c7ca8;ffca8a=dfc171;735e3a=274a65??
    Warn: Slow asset 0.069 : /monsters/ground/quadruped/organic/chest/bulb/bulbchest.png
    Warn: Slow asset 0.07 : /monsters/ground/quadruped/organic/chest/bulb/bulbchest.png:walk.1
    Warn: Slow asset 0.07 : /monsters/ground/quadruped/organic/chest/bulb/bulbchest.png:walk.1??replace;a85636=b16232;f32200=ffb632;f7e7b2=7dc8eb;dc1f00=ff7400;be1b00=d52b00;d9c189=549fd5;6f2919=723522;e0975c=d99b4a;951500=891400;a38d59=3c7ca8;ffca8a=dfc171;735e3a=274a65??
    Warn: Perf: WorldStorage::update millis: 155
    Warn: Perf: WorldServer::update millis: 162
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 162
    Warn: Perf: WorldServerThread::update millis: 162
    Warn: Slow asset 0.125 : /monsters/ground/quadruped/organic/head/crazy/crazyhead.png
    Warn: Slow asset 0.125 : /monsters/ground/quadruped/organic/head/crazy/crazyhead.png:walk.1
    Warn: Slow asset 0.125 : /monsters/ground/quadruped/organic/head/crazy/crazyhead.png:walk.1??replace;a85636=b16232;f32200=ffb632;f7e7b2=7dc8eb;dc1f00=ff7400;be1b00=d52b00;d9c189=549fd5;6f2919=723522;e0975c=d99b4a;951500=891400;a38d59=3c7ca8;ffca8a=dfc171;735e3a=274a65??
    Warn: Perf: WorldPainter::render millis: 304
    Warn: Perf: ClientApplication::render millis: 314
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 314
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 335
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 167
    Warn: Perf: WorldGenerator::prepareSector millis: 227
    Warn: Perf: WorldStorage::update millis: 379
    Warn: Perf: WorldServer::update millis: 382
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 382
    Warn: Perf: WorldServerThread::update millis: 382
    Warn: Perf: UniverseServer::run.innerloop millis: 177
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Warn: Perf: WorldStorage::update millis: 155
    Warn: Perf: WorldServer::update millis: 164
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 164
    Warn: Perf: WorldServerThread::update millis: 164
    Warn: Perf: WorldGenerator::prepareSector millis: 209
    Warn: Perf: WorldStorage::update millis: 319
    Warn: Perf: WorldServer::update millis: 324
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 324
    Warn: Perf: WorldServerThread::update millis: 324
    Warn: Perf: WorldGenerator::prepareTiles millis: 150
    Warn: Perf: WorldStorage::update millis: 153
    Warn: Perf: WorldServer::update millis: 161
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 161
    Warn: Perf: WorldServerThread::update millis: 161
    Warn: Perf: WorldGenerator::prepareSector millis: 208
    Warn: Perf: WorldStorage::update millis: 208
    Warn: Perf: WorldServer::update millis: 212
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 213
    Warn: Perf: WorldServerThread::update millis: 214
    Warn: Perf: WorldGenerator::prepareSector millis: 170
    Warn: Perf: WorldStorage::update millis: 193
    Warn: Perf: WorldServer::update millis: 200
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 200
    Warn: Perf: WorldServerThread::update millis: 201
    Warn: Perf: WorldGenerator::prepareSector millis: 164
    Warn: Perf: WorldStorage::update millis: 164
    Warn: Perf: WorldServer::update millis: 170
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 170
    Warn: Perf: WorldServerThread::update millis: 172
    Warn: Perf: WorldStorage::update millis: 294
    Warn: Perf: WorldServer::update millis: 298
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 298
    Warn: Perf: WorldServerThread::update millis: 298
    Warn: Perf: WorldGenerator::prepareSector millis: 165
    Warn: Perf: WorldStorage::update millis: 165
    Warn: Perf: WorldServer::update millis: 168
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 168
    Warn: Perf: WorldServerThread::update millis: 169
    Warn: Perf: WorldStorage::update millis: 231
    Warn: Perf: WorldServer::update millis: 239
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 239
    Warn: Perf: WorldServerThread::update millis: 239
    Warn: Perf: StarApplicationBase::run.innerLoop.graphicsSwapBuffers millis: 1527
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 1560
    Warn: Perf: WorldGenerator::prepareTiles millis: 155
    Warn: Perf: WorldStorage::update millis: 165
    Warn: Perf: WorldServer::update millis: 169
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 169
    Warn: Perf: WorldServerThread::update millis: 169
    Warn: Wav file data size reported is inconsistent with file size, got 92566 but expected 87182
    Warn: Wav file data size reported is inconsistent with file size, got 28972 but expected 20966
    Warn: Wav file data size reported is inconsistent with file size, got 48084 but expected 40952
    Warn: Wav file data size reported is inconsistent with file size, got 202420 but expected 197538
    Warn: Perf: Assets::loadAudio millis: 191
    Warn: Slow asset 0.276 : /sfx/npc/quadruped/crazyhead_turnhostile.wav
    Warn: Perf: WorldClient::update millis: 280
    Warn: Perf: UniverseClient::update millis: 280
    Warn: Perf: ClientApplication::updateRunning millis: 281
    Warn: Perf: ClientApplication::update millis: 281
    Warn: Perf: StarApplicationBase::run.innerLoop.update millis: 281
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 319
    Warn: Perf: UniverseServer::run.innerloop millis: 187
    Warn: Wav file data size reported is inconsistent with file size, got 28972 but expected 20966
    Warn: Slow asset 0.143 : /sfx/npc/quadruped/crazyhead_pain1.wav
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 251
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Warn: Perf: WorldServer::update millis: 157
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 157
    Warn: Perf: WorldServerThread::update millis: 158
    Warn: Wav file data size reported is inconsistent with file size, got 102224 but expected 96840
    Warn: Perf: WorldServerThread::run.sleeping millis: 271
    Warn: Wav file data size reported is inconsistent with file size, got 119462 but expected 114078
    Warn: Object statuspod does not have a price set
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 152
    Warn: Slow asset 0.061 : /sfx/npc/quadruped/horse_idle1.wav
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 190
    Debug: Dungeon entrance placed at (234, 411)
    Debug: Trying to add part tallbipedminiboss at (234, 411) connectors: 0
    Debug: Settling dungeon water.
    Debug: Flushing dungeon into the worldgen.
    Warn: Slow asset 0.085 : /monsters/ground/tallbiped/tallbipedminiboss.animation
    Warn: Perf: WorldStorage::update millis: 232
    Warn: Perf: WorldServer::update millis: 240
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 240
    Warn: Perf: WorldServerThread::update millis: 240
    Warn: Object mushroomseed does not have a price set
    Warn: Object statuspod does not have a price set
    Warn: Perf: WorldGenerator::prepareSector millis: 153
    Warn: Perf: WorldStorage::update millis: 168
    Warn: Perf: WorldServer::update millis: 179
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 179
    Warn: Perf: WorldServerThread::update millis: 179
    Warn: Perf: WorldStorage::update millis: 156
    Warn: Perf: WorldServer::update millis: 161
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 161
    Warn: Perf: WorldServerThread::update millis: 161
    Warn: Perf: WorldStorage::update millis: 230
    Warn: Perf: WorldServer::update millis: 236
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 236
    Warn: Perf: WorldServerThread::update millis: 236
    Warn: Perf: WorldServerThread::run.sleeping millis: 352
    Warn: Perf: WorldStorage::update millis: 167
    Warn: Perf: WorldServer::update millis: 171
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 171
    Warn: Perf: WorldServerThread::update millis: 171
    Warn: Perf: StarApplicationBase::run.innerLoop.SDL_PollEvent millis: 239
    Warn: Perf: StarApplicationBase::run.innerLoop.SDL_PollEvent millis: 315
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 590
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Warn: Perf: WorldStorage::update millis: 152
    Warn: Perf: WorldServer::update millis: 158
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 158
    Warn: Perf: WorldServerThread::update millis: 158
    Warn: Perf: UniverseServer::run.innerloop millis: 161
    Warn: Perf: WorldServerThread::update.clientsOutgoingPackets millis: 367
    Warn: Perf: WorldServerThread::update millis: 416
    Warn: Perf: UniverseServer::run.innerloop millis: 543
    Warn: Wav file data size reported is inconsistent with file size, got 86618 but expected 81234
    Error: Could not load /monsters/ground/tallbipednight/organic/arms/tallimp/tallimpbarm.png:idle?addmask=/monsters/ground/tallbiped/portraitMask.png??replace;a85636=318275;f32200=ff6932;f7e7b2=f2f2a9;dc1f00=ff3c00;be1b00=be1b00;d9c189=e3e25f;6f2919=156054;e0975c=56a49f;951500=950000;a38d59=ab9e40;ffca8a=7ebbc2;735e3a=8f692d?? asset, attempting to use default.
    ImageException: (0, 32) out of range in Image::get
      007CD61C
      007EB3C5
      004E0CF4
      004E075F
      004EC3B8
      004EA7BB
      004EB04C
      004EB15C
      004EB71A
      0040B635
      0040B7C6
      00412C4A
      00426B95
      00433BCC
      004037FE
      00409E94
      00407C7F
      004D9551
    
    Error: Could not load /monsters/ground/tallbipednight/organic/tail/tallbushy/bushytail.png:idle?addmask=/monsters/ground/tallbiped/portraitMask.png??replace;a85636=318275;f32200=ff6932;f7e7b2=f2f2a9;dc1f00=ff3c00;be1b00=be1b00;d9c189=e3e25f;6f2919=156054;e0975c=56a49f;951500=950000;a38d59=ab9e40;ffca8a=7ebbc2;735e3a=8f692d?? asset, attempting to use default.
    ImageException: (0, 32) out of range in Image::get
      007CD61C
      007EB3C5
      004E0CF4
      004E075F
      004EC3B8
      004EA7BB
      004EB04C
      004EB15C
      004EB71A
      0040B635
      0040B7C6
      00412C4A
      00426B95
      00433BCC
      004037FE
      00409E94
      00407C7F
      004D9551
    
    Error: Could not load /monsters/ground/tallbiped/organic/body/tallzigzag/zigzagchest.png:idle?addmask=/monsters/ground/tallbiped/portraitMask.png??replace;a85636=318275;f32200=ff6932;f7e7b2=f2f2a9;dc1f00=ff3c00;be1b00=be1b00;d9c189=e3e25f;6f2919=156054;e0975c=56a49f;951500=950000;a38d59=ab9e40;ffca8a=7ebbc2;735e3a=8f692d?? asset, attempting to use default.
    ImageException: (0, 32) out of range in Image::get
      007CD61C
      007EB3C5
      004E0CF4
      004E075F
      004EC3B8
      004EA7BB
      004EB04C
      004EB15C
      004EB71A
      0040B635
      0040B7C6
      00412C4A
      00426B95
      00433BCC
      004037FE
      00409E94
      00407C7F
      004D9551
    
    Error: Could not load /monsters/ground/tallbipednight/organic/arms/tallimp/tallimpfarm.png:idle?addmask=/monsters/ground/tallbiped/portraitMask.png??replace;a85636=318275;f32200=ff6932;f7e7b2=f2f2a9;dc1f00=ff3c00;be1b00=be1b00;d9c189=e3e25f;6f2919=156054;e0975c=56a49f;951500=950000;a38d59=ab9e40;ffca8a=7ebbc2;735e3a=8f692d?? asset, attempting to use default.
    ImageException: (0, 32) out of range in Image::get
      007CD61C
      007EB3C5
      004E0CF4
      004E075F
      004EC3B8
      004EA7BB
      004EB04C
      004EB15C
      004EB71A
      0040B635
      0040B7C6
      00412C4A
      00426B95
      00433BCC
      004037FE
      00409E94
      00407C7F
      004D9551
    
    Debug: Correcting path from /items/swords/randomgenerated/broadsword/blade/8.png to /items/swords/randomgenerated/Broadsword/blade/8.png
    Debug: Correcting path from /items/swords/randomgenerated/broadsword/handle/4.png to /items/swords/randomgenerated/Broadsword/handle/4.png
    Debug: Correcting path from /items/swords/randomgenerated/broadsword/handle/4.png to /items/swords/randomgenerated/Broadsword/handle/4.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Warn: Wav file data size reported is inconsistent with file size, got 115150 but expected 109766
    Warn: Object statuspod does not have a price set
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Warn: Perf: WorldStorage::update millis: 273
    Warn: Perf: WorldServer::update millis: 274
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 274
    Warn: Perf: WorldServerThread::update millis: 278
    Warn: Perf: WorldStorage::update millis: 179
    Warn: Perf: WorldServer::update millis: 180
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 181
    Warn: Perf: WorldServerThread::update millis: 181
    Warn: Object mushroomseed does not have a price set
    Warn: Perf: WorldStorage::update millis: 232
    Warn: Perf: WorldServer::update millis: 233
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 233
    Warn: Perf: WorldServerThread::update millis: 234
    Warn: Wav file data size reported is inconsistent with file size, got 115150 but expected 109766
    Warn: Perf: Spawner::update millis: 187
    Warn: Perf: WorldServer::update millis: 192
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 192
    Warn: Perf: WorldServerThread::update millis: 192
    Warn: Perf: WorldStorage::update millis: 232
    Warn: Perf: WorldServer::update millis: 237
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 237
    Warn: Perf: WorldServerThread::update millis: 237
    Warn: Perf: UniverseServer::run.innerloop millis: 161
    Warn: Wav file data size reported is inconsistent with file size, got 70822 but expected 65438
    Warn: Wav file data size reported is inconsistent with file size, got 48084 but expected 40952
    Warn: Wav file data size reported is inconsistent with file size, got 40922 but expected 35538
    Warn: Slow asset 0.07 : /sfx/npc/smallbiped/lion_small_pain2.wav
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Warn: Wav file data size reported is inconsistent with file size, got 114282 but expected 108898
    Warn: Wav file data size reported is inconsistent with file size, got 86618 but expected 81234
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Warn: Perf: WorldServerThread::update.clientsIncommingPackets millis: 265
    Warn: Perf: WorldServerThread::update millis: 274
    Warn: Perf: WorldServerThread::sync millis: 304
    Warn: Perf: UniverseServer::doTriggeredStorage millis: 332
    Warn: Perf: UniverseServer::run.innerloop millis: 511
    Warn: Perf: WorldStorage::update millis: 165
    Warn: Perf: WorldServer::update millis: 181
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 182
    Warn: Perf: WorldServerThread::update millis: 182
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Warn: Perf: StarApplicationBase::run.innerLoop.graphicsSwapBuffers millis: 2071
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 2114
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Warn: Perf: StarApplicationBase::run.innerLoop.graphicsSwapBuffers millis: 2564
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 2617
    Warn: Perf: WorldStorage::update millis: 199
    Warn: Perf: WorldServer::update millis: 215
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 215
    Warn: Perf: WorldServerThread::update millis: 215
    Warn: Perf: UniverseServer::run.innerloop millis: 152
    Warn: Perf: WorldStorage::update millis: 228
    Warn: Perf: WorldServer::update millis: 248
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 248
    Warn: Perf: WorldServerThread::update millis: 248
    Warn: Perf: UniverseServer::run.innerloop millis: 198
    Debug: Correcting path from /items/armors/human/human-cool/fsleeve.png to /items/armors/human/human-cool/FSleeve.png
    Warn: Wav file data size reported is inconsistent with file size, got 235210 but expected 230268
    Warn: Wav file data size reported is inconsistent with file size, got 194428 but expected 189486
    Warn: Perf: WorldServer::update millis: 166
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 166
    Warn: Perf: WorldServerThread::update millis: 166
    Warn: Perf: WorldStorage::update millis: 199
    Warn: Perf: WorldServer::update millis: 218
    Warn: Perf: WorldServerThread::update.worldUpdate millis: 218
    Warn: Perf: WorldServerThread::update millis: 218
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Warn: Perf: StarApplicationBase::run.innerLoop.graphicsSwapBuffers millis: 459
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 572
    Debug: Correcting path from /items/armors/human/human-workout/pants.png to /items/armors/human/human-workout/Pants.png
    Debug: Correcting path from /items/armors/human/human-cool/chestm.png to /items/armors/human/human-cool/ChestM.png
    Debug: Correcting path from /items/armors/human/human-cool/icons.png to /items/armors/human/human-cool/Icons.png
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 236
    Warn: Slow asset 0.105 : /sfx/objects/bunkercabinet_open.wav
    Warn: Perf: WorldClient::update millis: 188
    Warn: Perf: UniverseClient::update millis: 225
    Warn: Perf: ClientApplication::updateRunning millis: 226
    Warn: Perf: ClientApplication::update millis: 226
    Warn: Perf: StarApplicationBase::run.innerLoop.update millis: 226
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 284
    Warn: Perf: UniverseServer::run.innerloop millis: 170
    Warn: Perf: StarApplicationBase::run.innerLoop.graphicsSwapBuffers millis: 192
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 268
    Warn: Perf: UniverseServer::run.innerloop millis: 159
    Warn: Slow asset 0.06 : /sfx/objects/bunkercabinet_close.wav
    Warn: Perf: StarApplicationBase::run.innerLoop.SDL_PollEvent millis: 187
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 503
    Warn: Perf: StarApplicationBase::run.innerLoop.SDL_PollEvent millis: 305
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 368
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 201
    Debug: Correcting path from /items/armors/human/human-cool/bsleeve.png to /items/armors/human/human-cool/BSleeve.png
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 151
    Debug: Correcting path from /interface/escmenu/body.png to /interface/escMenu/body.png
    Debug: Correcting path from /interface/escmenu/saveandquit.png to /interface/escMenu/saveandquit.png
    Debug: Correcting path from /interface/escmenu/options.png to /interface/escMenu/options.png
    Debug: Correcting path from /interface/escmenu/returntogame.png to /interface/escMenu/returntogame.png
    Debug: Correcting path from /interface/escmenu/saveandquit-over.png to /interface/escMenu/saveandquit-over.png
    Info: Client disconnecting...
    Info: Client 'GOKOP' <1> (IODevice <0x179b39a0>) disconnected
    Info: Client received world stop packet, leaving: Removed
    Info: Reaping client 'GOKOP' <1> (IODevice <0x179b39a0>) connection
    Warn: Perf: ClientApplication::update millis: 501
    Warn: Perf: StarApplicationBase::run.innerLoop.update millis: 501
    Warn: Slow asset 0.064 : /celestial/system/terrestrial/biomes/snow/maskie3.png?hueshift=-180?addmask=/celestial/system/terrestrial/dynamics/13.png
    Warn: Slow asset 0.063 : /celestial/system/terrestrial/biomes/snow/maskie2.png?hueshift=-180?addmask=/celestial/system/terrestrial/dynamics/11.png
    Warn: Slow asset 0.063 : /celestial/system/terrestrial/biomes/snow/maskie1.png?hueshift=-180?addmask=/celestial/system/terrestrial/dynamics/34.png
    Warn: Slow asset 0.061 : /celestial/system/horizon/textures/snow_l.png?hueshift=-180?addmask=/celestial/system/horizon/masks/23_l.png+/celestial/system/horizon/masks/20_l.png+/celestial/system/horizon/masks/26_l.png;0;0
    Debug: Correcting path from /interface/title/firstlogo.png to /interface/title/FirstLogo.png
    Warn: Perf: ClientApplication::render millis: 664
    Warn: Perf: StarApplicationBase::run.innerLoop.render millis: 664
    Warn: Perf: StarApplicationBase::run.innerLoop millis: 1222
    Info: Application quitting!
    Info: [ [ "WorldServerThread::run.sleeping", "Cnt#: ", 31581, "Sum(ms)", 519426, "Avg", 16, "SAvg", 1, "Min", 1, "Max", 389, "Last", 5, "Var(avg,us)", 15389, "VMax(ms)", 388, "Parent", "" ], [ "StarApplicationBase::run.innerLoop", "Cnt#: ", 11151, "Sum(ms)", 458591, "Avg", 41, "SAvg", 15, "Min", 12, "Max", 9578, "Last", 12, "Var(avg,us)", 27037.2, "VMax(ms)", 9563, "Parent", "" ], [ "UniverseServer::run.innerloop", "Cnt#: ", 3581, "Sum(ms)", 417012, "Avg", 116, "SAvg", 100, "Min", 43, "Max", 11715, "Last", 132, "Var(avg,us)", 261529, "VMax(ms)", 10452, "Parent", "" ], [ "WorldServerThread::update", "Cnt#: ", 44181, "Sum(ms)", 273433, "Avg", 6, "SAvg", 0, "Min", 0, "Max", 529, "Last", 16, "Var(avg,us)", 6185.1, "VMax(ms)", 529, "Parent", "" ], [ "WorldServerThread::update.worldUpdate", "Cnt#: ", 44169, "Sum(ms)", 265986, "Avg", 6, "SAvg", 0, "Min", 0, "Max", 529, "Last", 16, "Var(avg,us)", 6018.2, "VMax(ms)", 529, "Parent", "" ], [ "WorldServer::update", "Cnt#: ", 44174, "Sum(ms)", 264571, "Avg", 5, "SAvg", 0, "Min", 0, "Max", 527, "Last", 16, "Var(avg,us)", 5985.63, "VMax(ms)", 527, "Parent", "" ], [ "StarApplicationBase::run.innerLoop.update", "Cnt#: ", 24217, "Sum(ms)", 153544, "Avg", 6, "SAvg", 0, "Min", 0, "Max", 9258, "Last", 0, "Var(avg,us)", 3079.08, "VMax(ms)", 9258, "Parent", "" ], [ "ClientApplication::update", "Cnt#: ", 24206, "Sum(ms)", 153363, "Avg", 6, "SAvg", 0, "Min", 0, "Max", 9258, "Last", 0, "Var(avg,us)", 3074.98, "VMax(ms)", 9258, "Parent", "" ], [ "ClientApplication::updateRunning", "Cnt#: ", 22346, "Sum(ms)", 143051, "Avg", 6, "SAvg", 3, "Min", 2, "Max", 426, "Last", 11, "Var(avg,us)", 4462.36, "VMax(ms)", 421, "Parent", "" ], [ "StarApplicationBase::run.innerLoop.render", "Cnt#: ", 11235, "Sum(ms)", 141374, "Avg", 12, "SAvg", 2, "Min", 0, "Max", 2196, "Last", 2, "Var(avg,us)", 7278.86, "VMax(ms)", 2186, "Parent", "" ], [ "ClientApplication::render", "Cnt#: ", 11236, "Sum(ms)", 141348, "Avg", 12, "SAvg", 2, "Min", 0, "Max", 2196, "Last", 2, "Var(avg,us)", 7275.01, "VMax(ms)", 2186, "Parent", "" ], [ "StarApplicationBase::run.innerLoop.graphicsSwapBuffers", "Cnt#: ", 11133, "Sum(ms)", 125112, "Avg", 11, "SAvg", 0, "Min", 0, "Max", 2564, "Last", 5, "Var(avg,us)", 11454.2, "VMax(ms)", 2563, "Parent", "" ], [ "UniverseClient::update", "Cnt#: ", 22351, "Sum(ms)", 114009, "Avg", 5, "SAvg", 2, "Min", 1, "Max", 425, "Last", 10, "Var(avg,us)", 4072.57, "VMax(ms)", 421, "Parent", "" ], [ "WorldClient::update", "Cnt#: ", 22351, "Sum(ms)", 105343, "Avg", 4, "SAvg", 2, "Min", 1, "Max", 368, "Last", 8, "Var(avg,us)", 2939.64, "VMax(ms)", 367, "Parent", "" ], [ "WorldStorage::update", "Cnt#: ", 11045, "Sum(ms)", 90857, "Avg", 8, "SAvg", 0, "Min", 0, "Max", 379, "Last", 3, "Var(avg,us)", 8387.32, "VMax(ms)", 379, "Parent", "" ], [ "WorldGenerator::prepareTiles", "Cnt#: ", 787, "Sum(ms)", 67021, "Avg", 85, "SAvg", 43, "Min", 39, "Max", 220, "Last", 104, "Var(avg,us)", 41808.1, "VMax(ms)", 177, "Parent", "" ], [ "Assets::loadImage", "Cnt#: ", 16231, "Sum(ms)", 60915, "Avg", 3, "SAvg", 0, "Min", 0, "Max", 808, "Last", 1, "Var(avg,us)", 3739.57, "VMax(ms)", 808, "Parent", "" ], [ "WorldPainter::render", "Cnt#: ", 9908, "Sum(ms)", 59216, "Avg", 5, "SAvg", 3, "Min", 2, "Max", 1378, "Last", 7, "Var(avg,us)", 5369.9, "VMax(ms)", 1375, "Parent", "" ], [ "Monster::tickMaster", "Cnt#: ", 220877, "Sum(ms)", 58322, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 74, "Last", 1, "Var(avg,us)", 264.047, "VMax(ms)", 74, "Parent", "" ], [ "Assets::loadBaseImage", "Cnt#: ", 10020, "Sum(ms)", 43405, "Avg", 4, "SAvg", 0, "Min", 0, "Max", 701, "Last", 1, "Var(avg,us)", 4324.75, "VMax(ms)", 701, "Parent", "" ], [ "WorldClient::updateLighting", "Cnt#: ", 9893, "Sum(ms)", 43054, "Avg", 4, "SAvg", 3, "Min", 3, "Max", 41, "Last", 5, "Var(avg,us)", 1351.97, "VMax(ms)", 38, "Parent", "" ], [ "Player::tickMaster", "Cnt#: ", 22340, "Sum(ms)", 37162, "Avg", 1, "SAvg", 1, "Min", 1, "Max", 121, "Last", 2, "Var(avg,us)", 673.277, "VMax(ms)", 120, "Parent", "" ], [ "Assets::loadVariant", "Cnt#: ", 13661, "Sum(ms)", 34131, "Avg", 2, "SAvg", 0, "Min", 0, "Max", 248, "Last", 1, "Var(avg,us)", 2498.43, "VMax(ms)", 248, "Parent", "" ], [ "StarApplicationBase::run.innerLoop.sleeping", "Cnt#: ", 6067, "Sum(ms)", 20778, "Avg", 3, "SAvg", 1, "Min", 1, "Max", 38, "Last", 9, "Var(avg,us)", 2424.76, "VMax(ms)", 37, "Parent", "" ], [ "UniverseServer::createWorld", "Cnt#: ", 4, "Sum(ms)", 20326, "Avg", 5081, "SAvg", 6982, "Min", 260, "Max", 10937, "Last", 260, "Var(avg,us)", 3.89775e+006, "VMax(ms)", 6749, "Parent", "" ], [ "Object::tickMaster", "Cnt#: ", 4.37678e+006, "Sum(ms)", 17367, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 33, "Last", 0, "Var(avg,us)", 3.96798, "VMax(ms)", 33, "Parent", "" ], [ "WorldGenerator::prepareSector", "Cnt#: ", 527, "Sum(ms)", 15002, "Avg", 28, "SAvg", 2, "Min", 1, "Max", 240, "Last", 93, "Var(avg,us)", 27559.8, "VMax(ms)", 238, "Parent", "" ], [ "StarApplicationBase::run.innerLoop.preSleeping", "Cnt#: ", 1271, "Sum(ms)", 14593, "Avg", 11, "SAvg", 1, "Min", 1, "Max", 38, "Last", 9, "Var(avg,us)", 10280.1, "VMax(ms)", 37, "Parent", "" ], [ "MainInterface::update", "Cnt#: ", 22354, "Sum(ms)", 14060, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 202, "Last", 0, "Var(avg,us)", 632.37, "VMax(ms)", 202, "Parent", "" ], [ "UniverseServer::handleQueuedWarps", "Cnt#: ", 3581, "Sum(ms)", 11204, "Avg", 3, "SAvg", 0, "Min", 0, "Max", 10938, "Last", 0, "Var(avg,us)", 3381.18, "VMax(ms)", 10938, "Parent", "" ], [ "Object::tickClient", "Cnt#: ", 1.6635e+006, "Sum(ms)", 7655, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 32, "Last", 0, "Var(avg,us)", 4.60175, "VMax(ms)", 32, "Parent", "" ], [ "StarApplicationBase::run.innerLoop.renderPost", "Cnt#: ", 11149, "Sum(ms)", 7533, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 159, "Last", 0, "Var(avg,us)", 675.935, "VMax(ms)", 159, "Parent", "" ], [ "Npc::tickMaster", "Cnt#: ", 27759, "Sum(ms)", 7528, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 32, "Last", 0, "Var(avg,us)", 271.227, "VMax(ms)", 32, "Parent", "" ], [ "StarApplicationBase::run.innerLoop.postSleeping", "Cnt#: ", 4797, "Sum(ms)", 6202, "Avg", 1, "SAvg", 1, "Min", 1, "Max", 32, "Last", 1, "Var(avg,us)", 292.891, "VMax(ms)", 31, "Parent", "" ], [ "StarApplicationBase::run.innerLoop.SDL_PollEvent", "Cnt#: ", 24214, "Sum(ms)", 6044, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 498, "Last", 0, "Var(avg,us)", 303.832, "VMax(ms)", 498, "Parent", "" ], [ "Player::tickSlave", "Cnt#: ", 21530, "Sum(ms)", 6039, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 21, "Last", 0, "Var(avg,us)", 282.861, "VMax(ms)", 21, "Parent", "" ], [ "WorldServerThread::update.clientsOutgoingPackets", "Cnt#: ", 44174, "Sum(ms)", 5360, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 386, "Last", 0, "Var(avg,us)", 121.429, "VMax(ms)", 386, "Parent", "" ], [ "Assets::loadAudio", "Cnt#: ", 331, "Sum(ms)", 5183, "Avg", 15, "SAvg", 0, "Min", 0, "Max", 341, "Last", 18, "Var(avg,us)", 15652.6, "VMax(ms)", 341, "Parent", "" ], [ "Spawner::update", "Cnt#: ", 44151, "Sum(ms)", 3894, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 441, "Last", 0, "Var(avg,us)", 88.2426, "VMax(ms)", 441, "Parent", "" ], [ "DungeonGenerator::generate", "Cnt#: ", 3, "Sum(ms)", 3872, "Avg", 1290, "SAvg", 1118, "Min", 29, "Max", 2726, "Last", 2726, "Var(avg,us)", 900667, "VMax(ms)", 1614, "Parent", "" ], [ "DungeonDefinition::buildDungeon", "Cnt#: ", 3, "Sum(ms)", 3807, "Avg", 1269, "SAvg", 1108, "Min", 95, "Max", 2605, "Last", 95, "Var(avg,us)", 838333, "VMax(ms)", 1498, "Parent", "" ], [ "UniverseServer::handleQueuedConnections", "Cnt#: ", 3583, "Sum(ms)", 3764, "Avg", 1, "SAvg", 0, "Min", 0, "Max", 2698, "Last", 0, "Var(avg,us)", 165625, "VMax(ms)", 2698, "Parent", "" ], [ "WorldPainter::renderParticles", "Cnt#: ", 29703, "Sum(ms)", 3616, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 198, "Last", 0, "Var(avg,us)", 121.739, "VMax(ms)", 198, "Parent", "" ], [ "UniverseServer::doTriggeredStorage", "Cnt#: ", 3587, "Sum(ms)", 3345, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 1134, "Last", 0, "Var(avg,us)", 61374.4, "VMax(ms)", 1134, "Parent", "" ], [ "Monster::tickSlave", "Cnt#: ", 35633, "Sum(ms)", 3090, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 3, "Last", 0, "Var(avg,us)", 86.7174, "VMax(ms)", 3, "Parent", "" ], [ "WorldServerThread::sync", "Cnt#: ", 7, "Sum(ms)", 2801, "Avg", 400, "SAvg", 334, "Min", 304, "Max", 513, "Last", 304, "Var(avg,us)", 74000, "VMax(ms)", 178, "Parent", "" ], [ "UniverseServer::handleQueuedConnections.one", "Cnt#: ", 1, "Sum(ms)", 2697, "Avg", 2697, "SAvg", 2697, "Min", 2697, "Max", 2697, "Last", 2697, "Var(avg,us)", 0, "VMax(ms)", 0, "Parent", "" ], [ "WorldPainter::updateLighting", "Cnt#: ", 9916, "Sum(ms)", 2432, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 14, "Last", 0, "Var(avg,us)", 245.26, "VMax(ms)", 14, "Parent", "" ], [ "StarApplicationBase::run.innerLoop.graphicsFinish", "Cnt#: ", 11227, "Sum(ms)", 1561, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 9, "Last", 1, "Var(avg,us)", 139.04, "VMax(ms)", 9, "Parent", "" ], [ "WorldClient::queueUpdatePackets", "Cnt#: ", 22343, "Sum(ms)", 1500, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 20, "Last", 0, "Var(avg,us)", 67.1351, "VMax(ms)", 20, "Parent", "" ], [ "Audio::parseWav", "Cnt#: ", 283, "Sum(ms)", 1488, "Avg", 5, "SAvg", 0, "Min", 0, "Max", 157, "Last", 0, "Var(avg,us)", 5257.95, "VMax(ms)", 157, "Parent", "" ], [ "ClientApplication::renderInit", "Cnt#: ", 5, "Sum(ms)", 1436, "Avg", 287, "SAvg", 5, "Min", 1, "Max", 1431, "Last", 1, "Var(avg,us)", 287200, "VMax(ms)", 1430, "Parent", "" ], [ "WorldServerThread::update.clientsIncommingPackets", "Cnt#: ", 44164, "Sum(ms)", 1410, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 265, "Last", 0, "Var(avg,us)", 31.9491, "VMax(ms)", 265, "Parent", "" ], [ "UniverseServer::shutdownInactiveWorlds", "Cnt#: ", 3580, "Sum(ms)", 934, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 677, "Last", 0, "Var(avg,us)", 261.732, "VMax(ms)", 677, "Parent", "" ], [ "Assets::loadBytes", "Cnt#: ", 66, "Sum(ms)", 872, "Avg", 13, "SAvg", 0, "Min", 0, "Max", 238, "Last", 39, "Var(avg,us)", 13212.1, "VMax(ms)", 238, "Parent", "" ], [ "WorldGenerator::generateMicroDungeons", "Cnt#: ", 184, "Sum(ms)", 729, "Avg", 3, "SAvg", 1, "Min", 1, "Max", 100, "Last", 2, "Var(avg,us)", 2733.7, "VMax(ms)", 99, "Parent", "" ], [ "StarApplicationBase::run.innerLoop.graphicsClear", "Cnt#: ", 11225, "Sum(ms)", 687, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 4, "Last", 0, "Var(avg,us)", 61.2027, "VMax(ms)", 4, "Parent", "" ], [ "WorldServerThread::readFullWorld", "Cnt#: ", 9, "Sum(ms)", 627, "Avg", 69, "SAvg", 116, "Min", 17, "Max", 279, "Last", 18, "Var(avg,us)", 85666.7, "VMax(ms)", 156, "Parent", "" ], [ "WorldPainter::updateLighting.setColorMap", "Cnt#: ", 9910, "Sum(ms)", 611, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 4, "Last", 0, "Var(avg,us)", 61.6549, "VMax(ms)", 4, "Parent", "" ], [ "Renderer::setColorMap", "Cnt#: ", 9903, "Sum(ms)", 594, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 4, "Last", 0, "Var(avg,us)", 59.9818, "VMax(ms)", 4, "Parent", "" ], [ "ClientApplication::processInput", "Cnt#: ", 2369, "Sum(ms)", 580, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 305, "Last", 0, "Var(avg,us)", 245.251, "VMax(ms)", 305, "Parent", "" ], [ "Cinematic::render", "Cnt#: ", 11233, "Sum(ms)", 304, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 251, "Last", 0, "Var(avg,us)", 2817.5, "VMax(ms)", 251, "Parent", "" ], [ "Npc::tickSlave", "Cnt#: ", 5309, "Sum(ms)", 246, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 2, "Last", 0, "Var(avg,us)", 46.3364, "VMax(ms)", 2, "Parent", "" ], [ "Projectile::tickMaster", "Cnt#: ", 17115, "Sum(ms)", 241, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 4, "Last", 0, "Var(avg,us)", 14.0812, "VMax(ms)", 4, "Parent", "" ], [ "ClientApplication::updateTitle", "Cnt#: ", 270, "Sum(ms)", 226, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 191, "Last", 0, "Var(avg,us)", 67981.5, "VMax(ms)", 191, "Parent", "" ], [ "Assets::postProcessAudio", "Cnt#: ", 51, "Sum(ms)", 130, "Avg", 2, "SAvg", 0, "Min", 0, "Max", 43, "Last", 3, "Var(avg,us)", 2647.06, "VMax(ms)", 43, "Parent", "" ], [ "UniverseServer::sendContextUpdates", "Cnt#: ", 3584, "Sum(ms)", 121, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 53, "Last", 0, "Var(avg,us)", 41.5737, "VMax(ms)", 53, "Parent", "" ], [ "WorldServerThread::clients", "Cnt#: ", 3292, "Sum(ms)", 107, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 97, "Last", 0, "Var(avg,us)", 32.503, "VMax(ms)", 97, "Parent", "" ], [ "WorldGenerator::convertBiomeMetaMaterials", "Cnt#: ", 526, "Sum(ms)", 54, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 3, "Last", 2, "Var(avg,us)", 102.662, "VMax(ms)", 3, "Parent", "" ], [ "ItemDrop::tickMaster", "Cnt#: ", 2284, "Sum(ms)", 49, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 2, "Last", 0, "Var(avg,us)", 21.4536, "VMax(ms)", 2, "Parent", "" ], [ "UniverseServer::handleQueuedDisconnections", "Cnt#: ", 3587, "Sum(ms)", 46, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 46, "Last", 0, "Var(avg,us)", 12.8241, "VMax(ms)", 46, "Parent", "" ], [ "UniverseServer::sendClockUpdates", "Cnt#: ", 3576, "Sum(ms)", 36, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 4, "Last", 0, "Var(avg,us)", 10.0671, "VMax(ms)", 4, "Parent", "" ], [ "WorldPainter::renderNametags", "Cnt#: ", 9903, "Sum(ms)", 35, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 28, "Last", 0, "Var(avg,us)", 41.5026, "VMax(ms)", 28, "Parent", "" ], [ "WorldGenerator::dirtyCollisionCache", "Cnt#: ", 526, "Sum(ms)", 32, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 2, "Last", 0, "Var(avg,us)", 60.8365, "VMax(ms)", 2, "Parent", "" ], [ "ClientApplication::renderDestroy", "Cnt#: ", 5, "Sum(ms)", 29, "Avg", 5, "SAvg", 0, "Min", 0, "Max", 14, "Last", 6, "Var(avg,us)", 5800, "VMax(ms)", 14, "Parent", "" ], [ "ChatBubbleManager::update", "Cnt#: ", 22356, "Sum(ms)", 27, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 1, "Last", 0, "Var(avg,us)", 1.20773, "VMax(ms)", 1, "Parent", "" ], [ "WorldServerThread::removeClient", "Cnt#: ", 2, "Sum(ms)", 22, "Avg", 11, "SAvg", 4, "Min", 4, "Max", 18, "Last", 18, "Var(avg,us)", 7000, "VMax(ms)", 14, "Parent", "" ], [ "LivingWorldAgent::update", "Cnt#: ", 11039, "Sum(ms)", 20, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 2, "Last", 0, "Var(avg,us)", 1.81176, "VMax(ms)", 2, "Parent", "" ], [ "UniverseServer::handleQueuedConnection.handshake", "Cnt#: ", 1, "Sum(ms)", 11, "Avg", 11, "SAvg", 11, "Min", 11, "Max", 11, "Last", 11, "Var(avg,us)", 0, "VMax(ms)", 0, "Parent", "" ], [ "UniverseServer::handleQueuedConnection.handshake.waitforresponse", "Cnt#: ", 1, "Sum(ms)", 10, "Avg", 10, "SAvg", 10, "Min", 10, "Max", 10, "Last", 10, "Var(avg,us)", 0, "VMax(ms)", 0, "Parent", "" ], [ "Cinematic::update", "Cnt#: ", 46580, "Sum(ms)", 7, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 1, "Last", 0, "Var(avg,us)", 0.150279, "VMax(ms)", 1, "Parent", "" ], [ "UniverseServer::sendPendingChat", "Cnt#: ", 3586, "Sum(ms)", 7, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 2, "Last", 0, "Var(avg,us)", 1.95204, "VMax(ms)", 2, "Parent", "" ], [ "WorldServerThread::addClient", "Cnt#: ", 2, "Sum(ms)", 6, "Avg", 3, "SAvg", 3, "Min", 2, "Max", 4, "Last", 2, "Var(avg,us)", 1000, "VMax(ms)", 2, "Parent", "" ], [ "ChatBubbleManager::render", "Cnt#: ", 9902, "Sum(ms)", 3, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 1, "Last", 0, "Var(avg,us)", 0.302969, "VMax(ms)", 1, "Parent", "" ], [ "ClientApplication::updateSplash", "Cnt#: ", 1581, "Sum(ms)", 2, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 1, "Last", 0, "Var(avg,us)", 1.26502, "VMax(ms)", 1, "Parent", "" ], [ "ItemDrop::tickSlave", "Cnt#: ", 1191, "Sum(ms)", 2, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 1, "Last", 0, "Var(avg,us)", 1.67926, "VMax(ms)", 1, "Parent", "" ], [ "StarApplicationBase::run.innerLoop.graphicsStart", "Cnt#: ", 11242, "Sum(ms)", 1, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 1, "Last", 0, "Var(avg,us)", 0.0889521, "VMax(ms)", 1, "Parent", "" ], [ "Assets::loadFont", "Cnt#: ", 2, "Sum(ms)", 1, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 1, "Last", 1, "Var(avg,us)", 500, "VMax(ms)", 1, "Parent", "" ], [ "MuzzleFlashEffect::tickMaster", "Cnt#: ", 8, "Sum(ms)", 0, "Avg", 0, "SAvg", 0, "Min", 0, "Max", 0, "Last", 0, "Var(avg,us)", 0, "VMax(ms)", 0, "Parent", "" ], [ "UniverseServer::WorldThread::run.innerLoop.clientsOutgoingPackets", "Cnt#: ", 0 ], [ "WorldServer::Generator::generateTiles", "Cnt#: ", 0 ], [ "UniverseServer::WorldThread::run.innerLoop.worldUpdate", "Cnt#: ", 0 ], [ "UniverseServer::WorldThread::run.innerLoop.update", "Cnt#: ", 0 ], [ "UniverseServer::WorldThread::run.innerLoop", "Cnt#: ", 0 ], [ "UniverseServer::WorldThread::run.innerLoop.clientsIncommingPackets", "Cnt#: ", 0 ], [ "WorldRenderer::updateLightMap", "Cnt#: ", 0 ], [ "StarApplicationBase::run.innerLoop.glClear", "Cnt#: ", 0 ], [ "Assets::image", "Cnt#: ", 0 ], [ "Assets::getImage", "Cnt#: ", 0 ], [ "WorldRenderer::updateLightMap.setColorMap", "Cnt#: ", 0 ], [ "WorldRenderer::renderPerf", "Cnt#: ", 0 ], [ "NPC::update", "Cnt#: ", 0 ], [ "", "Cnt#: ", 0 ], [ "StarApplicationBase::run.innerLoop.SDL_GL_SwapBuffers", "Cnt#: ", 0 ], [ "ColorMapQuadRenderer::setColorMap", "Cnt#: ", 0 ], [ "FlowingWaterAgent::update", "Cnt#: ", 0 ], [ "WorldRenderer::render", "Cnt#: ", 0 ], [ "WorldRenderer::renderParticles", "Cnt#: ", 0 ], [ "Assets::process", "Cnt#: ", 0 ], [ "Object::update", "Cnt#: ", 0 ], [ "Assets::loadFromDisk", "Cnt#: ", 0 ], [ "UniverseServer::WorldThread::run.innerLoop.sleeping", "Cnt#: ", 0 ], [ "MuzzleFlashEffect::update", "Cnt#: ", 0 ], [ "DungeonGenerator::generateNearZero", "Cnt#: ", 0 ], [ "NPCSpawner::step", "Cnt#: ", 0 ], [ "Player::update", "Cnt#: ", 0 ], [ "WorldServer::Generator::generateEntities", "Cnt#: ", 0 ], [ "Projectile::update", "Cnt#: ", 0 ], [ "server_17056080098384908954_entities", "0" ], [ "server_17056080098384908954_sectors", "0" ], [ "server_17056080098384908954_planet", "alpha:53742602:-28831866:-12629229:1" ], [ "server_17056080098384908954_world_time", "30.0467" ], [ "universe_time", "112955" ], [ "server_15874876715905698467_entities", "0" ], [ "server_15874876715905698467_sectors", "0" ], [ "server_15874876715905698467_planet", "null" ], [ "server_15874876715905698467_world_time", "338.157" ], [ "universe_time_client", "112955" ], [ "client_entities", "237" ], [ "client_sectors", "28" ], [ "client_incoming_bps", "1473.63" ], [ "client_outgoing_bps", "810.945" ], [ "client_worst_incoming", "43:1238" ], [ "client_worst_outgoing", "12:423" ], [ "render_fps", "14.802" ], [ "update_rate", "56.4217" ], [ "player_pos", "1642.47 427.50" ], [ "player_vel", "0.00 -0.96" ], [ "player_aim", "1644.00 426.67" ], [ "light_level", "0.437908" ], [ "liquid_level", "0" ], [ "version", "Beta v. Offended Koala" ], [ "server_14383896779960446118_entities", "0" ], [ "server_14383896779960446118_sectors", "0" ], [ "server_14383896779960446118_planet", "alpha:-31288450:-57676932:2875919:5" ], [ "server_14383896779960446118_world_time", "30.0167" ], [ "server_12578813889332624898_entities", "560" ], [ "server_12578813889332624898_sectors", "54" ], [ "server_12578813889332624898_planet", "alpha:-40941267:-70013841:-7694303:4:5" ], [ "server_12578813889332624898_world_time", "318.637" ] ]
    Info: Shutting down Star::Root
    
    
     
  20. tifel100

    tifel100 Void-Bound Voyager

    humanmechtech.recipe has an error around line 7.
    I think some recipe using keytar, which doesn't exist.

    And your dungeon problem seems to be related to fleshhause dummy apparently it's fleshhause/ fleshhause dummy (remove the space infront fleshhause dummy)
    "Unknown dungeon color: #ff00ddff (/dungeons/microdungeons/fleshhause/ fleshhause dummy)"
     
    Nightmares likes this.

Share This Page