Welcome to the work f o r c e !

This is where i keep some of my stuff. It will be expanded upon over time.

More, fancier prefabs should be set up eventually.

Hang around, you may find something special.

 

   LINKS:

       Steam

       Gamebanana

       Patreon

       Discord: luffaren

       Youtube

       Email

       Bodygroup Calculator

       ze_collective

       ZeGuesser

================================================================

    CSGO hammer prefabs:

        AutoRatioSlay

              a .nut script which auto-slays CT's when a specific ct/t player ratio is met

              read the included .nut file for more information

 

        NutEnt

              A script+prefab package allowing you to hot-spawn ents via a global vscript function

              You can easily add/remove the entity-classes available for spawning in the prefab .vmf

              It also includes some extra general-purpose helper functions

 

        PackBSP

              A simple .bat-file .bsp packer, you simply drag+drop a .bsp into it.

              It packs everything within the 'csgo' folder that's next to the .bsp file.

 

        VtfOptimizer

              An app that handles mass-resizing .vtf files with a max-size-cap and a DXT1/DXT5 toggle.

              Can be used to reduce filesize on maps, just read the included instructions and save backups/be careful.

 

        levelsystem

              A copy+paste prefab for an easy-to-use level system, also including an example .vmf to help you understand it.

              It supports up to 16 stages as it uses a logic_case.

 

        moving_npc

              A barebones physbox+thruster npc base that picks a random CT-target every X seconds and then moves towards the target.

              This is by no means a complete system, but rather a base to start working your own NPC from.

 

        weapon_handler

              A standalone script to handle keeping the targetname of weapons + detecting when a weapon has been dropped.

              Just add the .nut to the "Entity Scripts" property of any weapon-entity and it'll work automatically.

 

================================================================

    CSGO plugins:

        luffarenmaps_v1_8

              This plugin allows for instant Vscript-based hotfixes, QoL-tweaks, special events and VIP/patron-updates for Luffaren-maps.

              The Vscripts are set up/managed by Luffaren centrally, and can be previewed below (in "CSGO Vscript configs").

              If a Vscript config exists for the current map on the server, it will load in once as the map starts.

 

================================================================

    CSGO Vscript configs:

        ze_best_korea_v1

        ze_castlevania_p1_7

        ze_collective_v1_9

        ze_crazykart_v4

        ze_diddle_v3

        ze_eternal_grove_v3

        ze_frostdrake_tower_v1

        ze_magmadrake_b5

        ze_pizzatime_v9

        ze_predator_ultimate_p7

        ze_santassination_v3

        ze_toaster_p3

     These Vscript configs gets loaded in through the LuffarenMaps plugin as the map starts. Click on them to view a preview of the code below.

================================================================

--------------------------------------------------------------------------------------------------------

//============[ NOTE: permanent script scope > "luffarenmapsplugin_manager" ]============\\

scinit<-false;CDATA<-[];function InitializeScriptValidate(){if(!scinit)//Safety wrapper to retry loading the Vscript

{printl("[LuffarenMaps] Vscript ERROR - script not initialized!");if(Entities.FindByName(null,"luffarenmapsplugin_reload")==null)

{local e=Entities.CreateByClassname("info_target");e.__KeyValueFromString("targetname","luffarenmapsplugin_reload");}}}

EntFireByHandle(self,"RunScriptCode"," InitializeScriptValidate(); ",5.00,null,null);

//Called once when the script is initialized/reloaded

function Initialize()

{

    if(scinit)return;scinit=true;printl("[LuffarenMaps] Vscript initialized!");

    local h = null;while(null!=(h=Entities.FindByName(h,"luffarenmapsplugin_reload")))

    {EntFireByHandle(h,"Kill","",0.00,null,null);}if(Entities.FindByName(null,"luffarenmapsplugin_success")==null)

    {local e = Entities.CreateByClassname("info_target");e.__KeyValueFromString("targetname","luffarenmapsplugin_success");}

    EntFireByHandle(self,"RunScriptCode"," InitializeCDATA(); ",0.01,null,null);

    EntFireByHandle(self,"RunScriptCode"," RoundStart(true); ",0.02,null,null);

    //XXXXXXXXXXXXXXX>   init code goes here...

}

//Called once every round start (also just after 'Initialize' has been called)

function RoundStart(justinitalized=false)

{

    printl("[LuffarenMaps] Vscript RoundStart() called!");

    //XXXXXXXXXXXXXXX>   roundstart code goes here (bool:justinitalized)...

    

    local man = Entities.FindByName(null,"manager");

    man.ValidateScriptScope();

    local mansc = man.GetScriptScope();

    if("webmaps" in this)mansc.webmaps <- webmaps;

    

    EntFire("spawninfoboard_plugintext","AddOutput","message This server DOES have the plugin installed",0.00,null);

    EntFire("spawninfoboard_plugintext","AddOutput","message This server DOES have the plugin installed",2.00,null);

    EntFire("spawninfoboard_plugintext","AddOutput","message This server DOES have the plugin installed",5.00,null);

    EntFire("spawninfoboard_plugintext","AddOutput","color 50 255 50",0.00,null);

    EntFire("spawninfoboard_plugintext","AddOutput","color 50 255 50",2.00,null);

    EntFire("spawninfoboard_plugintext","AddOutput","color 50 255 50",5.00,null);

    

        //TODO - remove/implement once v2 hits (hard-rejects solofagging for the ascend-ending, it was a mistake to allow it))

    EntFireByHandle(self,"RunScriptCode","Ascend_NoSoloFagging();",7.00,null,null);

    

        //TODO - remove once v2 hits (tweaks some conflict ending variables to make it more lenient for humans, less z-items, closer flag)

    ::ENDINGS.CONFLICT.item_flag_range = 700;        //2000 in base v1_9

    ::ENDINGS.CONFLICT.items_zombie = [

            "puller",

            "pizzabaker",

            "destructo_hammer",

            "rift",

            "flight",

            "flight",

            "flight",

            "flight",

            "flight",

            "flight",

            "flight",

            "flight",

            "flight",

            "bomb_chuck",

            "stone",

            "stone",

            "stone",

            "stone",

            "stone",

            "stone"];

    

        //TODO - remove once v2 hits (tweaks some variables to make the silenthill-theme light/dark world transition smoother)

    ::silenthill_darkworld_tickbuffer <- 2;

    ::silenthill_tfade_amt <- 51;

    ::silenthill_tfade_rate <- 0.10;

    

        //TODO - remove once v2 hits (fixes potential server-specific issue where spectators can trigger the purple pixel-stage end)

    mansc.TickStageEndPos <- function()

    {

        EntFireByHandle(self,"RunScriptCode"," TickStageEndPos(); ",TickStageEndPos_TICKRATE,null,null);

        if(TickStageEndPos_COOLDOWN)return;

        if(TickStageEndPos_DISABLEFORCE)return;

        if(stage_end_pos==null)return;

        if(::finale_checkout_processed)return;

        if(DEBUG)DebugDrawBox(stage_end_pos,Vector(-(stage_end_pos_range),-(stage_end_pos_range),-(stage_end_pos_range)),

        Vector((stage_end_pos_range),(stage_end_pos_range),(stage_end_pos_range)),163,73,164,100,TickStageEndPos_TICKRATE+0.05)

        for(local h;h=Entities.FindByClassnameWithin(h,"player",stage_end_pos,stage_end_pos_range);)

        {

            if(h==null||!h.IsValid()||h.GetHealth()<=0)

                continue;

            if(h.GetTeam()==2||h.GetTeam()==3){}else continue;        //v2 FIX HERE

            if(!stage_end_pos_allowdifh)

            {

                if(h.GetOrigin().z < (0 + stage_end_pos.z - 8))continue;        //too far below end-trigger

                if(h.GetOrigin().z > (0 + stage_end_pos.z + 155))continue;        //too far above end-trigger

            }

            if(stage_end_pos_mustbeinstage)

            {

                local stagecenter = Vector()+::MAPDATA[mapspawnindex].center_pos;

                stagecenter.z = 0.00;

                local playerpos = Vector()+h.GetOrigin();

                playerpos.z = 0.00;

                if(        playerpos.x < (stagecenter.x + ((MAP_SIZE/2)*GRID_SIZE))    &&

                        playerpos.x > (stagecenter.x - ((MAP_SIZE/2)*GRID_SIZE))    &&

                        playerpos.y < (stagecenter.y + ((MAP_SIZE/2)*GRID_SIZE))    &&

                        playerpos.y > (stagecenter.y - ((MAP_SIZE/2)*GRID_SIZE))

                ){}else continue;

            }

            EndFound(false);

            TickStageEndPos_COOLDOWN = true;

            EntFire("manager","RunScriptCode","TickStageEndPos_COOLDOWN=false;",TickStageEndPos_COOLDOWN_SET,null);

            break;

        }

    }

    

    

        //UPDATE - hardcoded events for specific maps:

    ::ListenCustomEvent("map_spawned",{

        function EventFired(name,data){

            if(data.map.id == "#1660527778")//'My Thighs' by 'Shellbert'

            {

                local pq = [{qrate=4.50,function Run(){}}];

                for(local i=0;i<50;i++)

                    pq.push({qrate=RandomFloat(0.01,1.00),function Run(){::Sound("*luffaren/popgasm.mp3",Vector(),null,0,0.20,RandomInt(60,110),10);}});

                EntFire("server","Command","say Oh my god these thighs",5.00,null);

                EntFire("server","Command","say I wish to dive deep into them",6.00,null);

                EntFire("server","Command","say Let me explore them",6.00,null);

                EntFire("server","Command","say Deeper",7.00,null);

                EntFire("server","Command","say Deeper...",8.00,null);

                EntFire("server","Command","say Lord forgive me for what i'm about to do to Shellbert",9.00,null);

                ::Process(pq,0.05);

                local pos = ::MAPDATA[::manager.GetScriptScope().mapspawnindex].end_pos - 

                            (::MAPDATA[::manager.GetScriptScope().mapspawnindex].direction_next * 530) +

                            (::MAPDATA[::manager.GetScriptScope().mapspawnindex].direction_current * 40) +

                            Vector(0,0,0);

                for(local i=0;i<10;i++)

                    ::TRAPS.thigh_spider.Spawn(pos);

            }

            else if(data.map.id == "#1658255300")//'Maze Game' by 'Niikos'

            {

                local pos = ::MAPDATA[::manager.GetScriptScope().mapspawnindex].end_pos - (::MAPDATA[::manager.GetScriptScope().mapspawnindex].direction_next * 500);

                ::Ent(pos,Vector(),"trigger_multiple",{

                        spawnflags = 1,

                        targetname = "block_"+::manager.GetScriptScope().mapspawnindex.tostring()+"_jumpscare",

                    },{

                    touchers = [],

                    function Touch(){

                        if(activator==null||!activator.IsValid()||activator.GetHealth()<=0||activator.GetTeam()!=3)return;

                        foreach(t in touchers){if(activator==t)return;}

                        touchers.push(activator);

                        EntFire("client","Command","r_screenoverlay luffaren/poise",0.00,activator);

                        EntFire("client","Command","r_screenoverlay xxx_xxx_xxx",0.70,activator);

                        EntFire("client","Command","r_screenoverlay ",0.70,activator);

                        EntFire("client","Command","r_screenoverlay ",0.75,activator);

                        EntFire("client","Command","r_screenoverlay ",1.00,activator);

                        ::Sound("*luffaren/shellbert_despair.mp3",Vector(),activator,-1,0.20,100,10);

                        EntFire("server","Command","say HOLY SHIT",0.00,null);

                    },function Run(){

                        EntFireByHandle(self,"AddOutput","mins -100 -100 -100",0.00,null,null);

                        EntFireByHandle(self,"AddOutput","maxs 100 100 200",0.00,null,null);

                        EntFireByHandle(self,"AddOutput","solid 3",0.00,null,null);

                        EntFireByHandle(self,"AddOutput","collisiongroup 10",0.00,null,null);

                        EntFireByHandle(self,"AddOutput","OnStartTouch !self:RunScriptCode:Touch();:0:-1",0.00,null,null);

                        EntFireByHandle(self,"Enable","",0.05,null,null);

                        EntFire("server","Command","say What a nice looking maze",5.00,null);

                        EntFire("server","Command","say Let's go through it",6.00,null);

                        EntFire("server","Command","say What could go wrong?",7.00,null);

                    }});

            }

        }});

}

//TODO - remove/implement once v2 hits (hard-rejects solofagging for the ascend-ending, it was a mistake to allow it)

function Ascend_NoSoloFagging()

{

    ::ENDINGS.ASCEND.solodetected <- false;

    ::ENDINGS.ASCEND.Tick <- function()

    {

        if(!ascend_win_delay)return;

        EntFire("manager","RunScriptCode"," ENDINGS.ASCEND.Tick(); ",ascend_rate,null);

        local ecount_total = 0;

        local ecount_ct = 0;

        for(local h;h=Entities.FindByClassname(h,"player");)

        {

            if(h==null||!h.IsValid())continue;

            ecount_total++;

            if(h.GetHealth()<=0||h.GetTeam()!=3)

                continue;

            ecount_ct++;

            local vel = h.GetVelocity();

            if(::ENDINGS.ASCEND.solodetected)

                vel.z = 0.00-ascend_zvel;

            else

                vel.z = 0.00+ascend_zvel;

            h.SetVelocity(vel);

        }

        if(!::ENDINGS.ASCEND.solodetected && ecount_total > 15 && ecount_ct <= 1)

        {

            ::ENDINGS.ASCEND.solodetected = true;

            EntFire("server","Command","say YOU ARE NOT WORTHY TO ASCEND",0.00,null);

            EntFire("server","Command","say YOU ARE NOT WORTHY TO ASCEND",0.01,null);

            EntFire("server","Command","say YOU ARE NOT WORTHY TO ASCEND",0.02,null);

            EntFire("server","Command","say YOU ARE NOT WORTHY TO ASCEND",0.03,null);

            EntFire("server","Command","say YOU ARE NOT WORTHY TO ASCEND",0.04,null);

        }

    }

}

//Called once when the script is initialized/validated

function DateTimeReceived(datetime)

{

    printl("[LuffarenMaps] Vscript Datetime received! ("+datetime+")");

    //XXXXXXXXXXXXXXX>   DateTime code goes here (string:datetime "YYYY-MM-DD-MM-SS")...

}

//Called once when the script is initialized/validated

function ServerInfoReceived(info)

{

    printl("[LuffarenMaps] Vscript ServerInfo received! ("+info+")");

    //XXXXXXXXXXXXXXX>   ServerInfo code goes here (string:info "serverIP-serverNAME")...

    

    local ip = split(info,"-");

    ::SERVER_IP <- ""+ip[0];

    ::SERVER_NAME <- ""+ip[1];

    if(ip.len()>=2){for(local i=2;i<ip.len();i++){::SERVER_NAME = ::SERVER_NAME+"-"+ip[i];}}

    local invalids = [    " ","!","\"","@","#","€","%","&","/","\\","{","[","]","}","=","+",

                        "-","_",".",",",":",";","^","¨","~","*","'","´","`","|","<",">","½","§","$","¤","(",")"];

    local validname = "";

    foreach(l in ::SERVER_NAME)

    {

        local invalid = false;

        foreach(il in invalids){if(l.tochar()==il){invalid=true;break;}}

        if(invalid)validname = validname+"_";

        else validname = validname+l.tochar();

    }

    ::SERVER_NAME = validname;

}

//Called once when the script is initialized/validated

function InitializeCDATA()

{

    local man = Entities.FindByName(null,"manager");

    if(man==null||!man.IsValid())return;

    man.ValidateScriptScope();

    local sc = man.GetScriptScope();

    if(!("VIPS" in sc))return;

    foreach(data in CDATA)

    {

        if(data.len()<=0)continue;local dds="";foreach(dd in data){dds=dds+"|"+dd;}dds=dds+"|";

        printl("[LuffarenMaps] Vscript CustomData loaded! ("+dds+")");

        if(data[0]=="VIP" && data.len()>1)

        {

            sc.VIPS.clear();

            for(local i=1;i<data.len();i++){sc.VIPS.push(data[i]);}

            ::VIPS_SET <- true;

            EntFire("manager","RunScriptCode"," ::VIPS_SET <- true; ",0.00,null);

            EntFire("manager","RunScriptCode"," ::VIPS_SET <- true; ",0.05,null);

            EntFire("manager","RunScriptCode"," ::VIPS_SET <- true; ",0.50,null);

        }

    }

}

//Called every time a client is validated/connected with name, userid and steamid

function ClientValidated(userid,steamid,name)

{

    userid = userid.tointeger();

    local s = [];for(local i=0;i<steamid.len();i++)

    {

        local ceil = 1+i;if(ceil>steamid.len())break;

        local c = steamid.slice(i,ceil);if(c=="c")c=":";s.push(c);

    }

    steamid = "";foreach(ss in s)steamid = steamid+ss;

    if(("PLAYERS" in this)&&("GetPlayerClass" in this))

    {

        local pc = ::GetPlayerClass(steamid);if(pc==null)pc=::GetPlayerClass(userid);

        if(pc==null)

        {    

            pc={userid=userid,steamid=steamid,name=name,handle=null,_rt=false};

            ::PLAYERS.push(pc);

            printl("[LuffarenMaps ze_collective]: no playerclass found - adding: "+userid+"|"+steamid+"|"+name);

        }

        else

        {

            pc.userid = userid;

            pc.steamid = steamid;

            pc.name = name;

            printl("[LuffarenMaps ze_collective]: playerclass found - updating it: "+userid+"|"+steamid+"|"+name);

        }

    }

    if(steamid == "STEAM_1:1:22521282")

    {

        ::DEVID <- userid;

        EntFire("manager","RunScriptCode"," ::DEVID <- "+userid.tostring(),0.00,null);

        EntFire("manager","RunScriptCode"," ::DEVID <- "+userid.tostring(),0.05,null);

        EntFire("manager","RunScriptCode"," ::DEVID <- "+userid.tostring(),0.50,null);

    }

    printl("[LuffarenMaps] Vscript client validated! ("+userid.tostring()+"|"+steamid+"|"+name+")");

    //XXXXXXXXXXXXXXX>   Client data connecting code goes here (int:userid, string:steamid, string:name)...

}

Initialize();//=============[RESERVED_CUSTOMDATA_BELOW]=============\\

CDATA.push(["VIP","STEAM_1:1:22521282","STEAM_1:0:5225233","STEAM_1:0:45564798","STEAM_1:1:73344846","STEAM_1:1:11715703","STEAM_1:1:31574014","STEAM_1:1:523970","STEAM_1:1:44083262","STEAM_1:0:481397

71","STEAM_1:1:437584735","STEAM_1:0:23006811","STEAM_1:1:92712277","STEAM_1:0:5680239","STEAM_1:1:76518687","STEAM_1:0:123998228","STEAM_1:0:1726051","STEAM_1:1:57774125","STEAM_1:0:145949752","STEAM

_1:1:19059031","STEAM_1:0:87605592","STEAM_1:1:53399461","STEAM_1:1:90927558","STEAM_1:1:146402862","STEAM_1:1:161646505","STEAM_1:1:2359822","STEAM_1:1:36935027","STEAM_1:0:40225637","STEAM_1:0:73964

697","STEAM_1:1:420487994","STEAM_1:1:224693752","STEAM_1:0:166202549","STEAM_1:1:187387685","STEAM_1:1:431361032","STEAM_1:1:530769946","STEAM_1:1:421423581","STEAM_1:0:589738117","STEAM_1:1:68906947

","STEAM_1:1:209579010","STEAM_1:0:172104190","STEAM_1:0:82257199","STEAM_1:0:110034693","STEAM_1:1:32256533","STEAM_1:1:103714298","STEAM_1:1:194987240","STEAM_1:1:232637165","STEAM_1:1:20450857","ST

EAM_1:1:94436119","STEAM_1:0:513101242","STEAM_1:1:450658765","STEAM_1:0:737862615","STEAM_1:0:225146037","STEAM_1:1:435443801","STEAM_1:0:80773872","STEAM_1:0:142970189","STEAM_1:0:534443260"]);

CDATA.push(["IDENTIFIER","data1","data2","data3"]);

CDATA.push([""]);

webmaps <- [

{function Run(){maps.push({name="Sky",author="Wordexe",id="#1650651676",direction="forward",cost=44,elevation=13,map=[0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,5,5,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,94,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,7,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,8,8,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13

,0,0,0,0,0,0,0,0,0,0,18,18,0,0,0,13,13,13,93,13,0,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Teamwork Dreamwork",author="chinny",id="#1650651689",direction="forward",cost=246,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,

0,0,0,0,0,0,0,0,0,0,0,1,22,1,15,19,14,14,17,19,1,24,1,0,0,0,0,0,0,0,0,20,14,14,14,14,14,14,14,14,14,14,16,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,14,14,14,24,0,0,0,0,0,0,0,0,19,14,14,1,16,18,18,16,1,14

,14,1,0,0,0,0,1,21,22,1,1,14,14,1,0,24,24,0,17,14,14,1,21,22,1,21,0,14,14,14,14,14,14,17,0,24,24,0,1,14,14,14,14,14,14,0,0,14,14,14,14,14,14,1,18,18,18,18,23,14,14,14,14,14,14,0,0,14,14,20,22,0,24,1,1

8,93,94,18,1,24,0,19,0,14,14,0,0,14,14,17,0,0,0,24,18,18,18,18,22,0,0,0,0,14,14,0,18,14,14,0,0,0,0,1,24,24,24,24,1,0,0,0,0,14,14,1,1,14,14,0,0,0,0,1,0,0,0,0,1,0,0,0,17,14,14,22,23,14,14,0,18,23,0,19,0

,0,0,0,1,19,0,20,18,14,14,1,1,14,14,86,96,14,14,1,0,0,0,0,22,14,14,98,86,14,14,24,24,14,14,86,96,14,14,21,0,0,0,0,1,14,14,98,86,14,14,22,18,0,1,20,1,14,14,14,14,14,14,14,14,14,14,1,22,1,0,17,0,0,0,0,0

,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,34,0,0,0,0,22,20,0,14,14,0,20,24,0,0,0,0,34,0,0,99,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,97,0]});}},

{function Run(){maps.push({name="ZEPIXELPENISv2",author="Jblah",id="#1650651746",direction="forward",cost=233,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5

,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,90,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,90,5,90,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,90,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,90,5,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,90

,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,5,5,7,5,5,5,5,5,5,5,90,5,90,0,0,0,0,0,5,5,5,5,7,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,97,87,5,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,3,5,5,5,7,5,5,5,5,5,5,5

,5,5,5,0,0,0,0,0,24,0,5,5,7,5,5,5,5,5,5,5,5,5,96,96,96,0,0,0,24,0,0,0,0,0,0,0,0,96,96,96,96,96,96,5,5,5,0,0,24,24,0,0,0,0,0,0,0,0,5,90,5,5,5,5,90,5,0,0,24,24,24,0,0,0,0,0,0,0,5,5,5,5,90,5,5,5,0,0,24,2

4,24,24,24,0,0,0,0,0,5,90,5,5,5,5,90,5,0,0,0,24,24,24,24,0,0,0,0,0,5,5,5,90,5,90,5,5,0,0,0,0,24,24,24,24,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,24,93,0,0,0,0,0,0,0,2,2,0,0,0,0,0]});}},

{function Run(){maps.push({name="SUS",author="Suspect",id="#1650654523",direction="forward",cost=682,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,0,0,

0,0,0,0,0,5,5,76,76,76,76,76,76,76,5,5,0,0,0,0,0,0,0,0,0,5,76,76,76,76,76,76,76,76,76,5,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,5,5,5,76,76,76,76,76,76,76,76,76,76,76,76,76,5,5,0,5,5,76,76,7

6,76,76,76,76,76,76,76,76,76,76,76,76,5,5,5,5,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,5,5,96,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,5,97,96,76,76,76,76,76,5,100,5,76,76,76,76,76,76

,5,5,5,5,0,5,76,76,76,5,5,5,5,5,5,76,76,76,76,76,5,5,0,0,0,5,76,76,76,5,5,74,74,74,5,5,76,76,76,76,76,98,98,0,0,5,76,76,76,5,71,71,74,74,74,5,76,76,76,76,76,76,5,5,0,5,5,76,76,5,65,71,71,74,74,5,76,76

,76,76,76,76,76,5,5,0,5,76,76,5,65,65,71,74,74,5,76,76,76,76,76,76,76,5,5,0,99,101,76,5,65,65,71,74,74,5,76,76,76,76,76,76,76,5,5,0,0,101,5,5,65,65,71,74,5,76,76,76,76,76,76,76,76,5,5,0,0,0,5,5,5,65,7

1,74,5,76,76,76,76,76,76,5,5,5,0,0,0,0,0,0,5,5,5,5,5,101,101,102,5,5,5,5,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Item Room",author="issic",id="#1650655624",direction="forward",cost=170,elevation=4,map=[0,0,0,0,0,0,0,0,0,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,32,32,94,0,0,0

,0,0,0,0,0,0,0,0,0,93,0,0,54,54,24,32,32,0,0,0,0,0,0,0,0,0,0,0,0,14,0,20,54,54,24,3,32,1,1,0,0,0,0,0,0,0,0,0,0,14,0,20,54,54,24,32,32,95,32,0,0,0,0,0,0,0,0,14,89,14,0,20,54,54,32,32,94,1,32,0,0,0,0,0,

0,0,0,14,0,0,0,1,54,54,1,1,1,1,92,0,0,0,0,0,0,0,0,14,0,0,1,1,54,54,0,0,0,1,0,0,0,0,0,0,97,14,14,14,0,0,92,34,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,1,1,35,35,0,0,0,0,0,32,0,0,0,0,0,0,0,18,0,0,0,1,36,3

6,0,0,0,1,0,30,94,0,0,0,0,0,96,18,96,0,0,0,37,37,0,0,0,0,0,28,0,0,0,0,0,0,0,96,0,0,0,96,38,38,96,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,96,96,0,0,0,1,32,0,0,0,0,0,0,0,0,19,0,0,0,0,38,38,92,32,32,32,32,0,0

,0,0,0,0,20,89,20,21,22,91,91,38,38,0,0,0,0,0,0,0,0,0,0,93,20,89,20,0,0,0,98,38,38,98,0,0,0,0,0,0,0,0,0,0,20,20,20,0,0,0,0,98,98,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="zeOuO",author="DailyFirefuck",id="#1650656199",direction="forward",cost=150,elevation=0,map=[0,0,0,5,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,5,5,5,5,0,0,0,0,0,0,

0,0,0,0,0,0,0,5,0,5,76,76,76,76,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,76,76,76,76,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,76,76,76,76,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,76,76,76,76,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,

5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9

4,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,76,76,76,76,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,76,76,76,76,5,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,5,76,76,76,76,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,76,76,76,76,5,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Void Elevation",author="Morell",id="#1650656680",direction="forward",cost=187,elevation=14,map=[90,19,19,19,19,19,0,0,0,2,2,0,0,0,0,0,0,0,0,0,19,19,19,90,19,19,0,0,0,5

,5,0,0,0,0,0,7,7,7,7,19,19,0,0,0,0,0,0,0,5,5,0,0,0,0,0,6,6,8,8,92,92,0,0,0,0,0,0,0,5,5,0,0,0,0,0,5,5,9,9,0,0,0,0,92,92,0,0,0,90,5,5,5,5,91,5,5,5,10,10,0,0,0,0,23,23,0,0,0,93,5,5,90,5,91,5,5,90,11,11,1

9,19,0,0,23,23,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,19,19,19,0,0,0,0,0,0,0,0,0,0,0,12,12,19,19,0,0,19,19,19,19,92

,13,13,13,90,0,0,0,0,0,12,12,0,92,0,0,0,19,19,19,80,13,13,13,13,0,0,0,0,0,92,92,0,0,0,0,0,0,19,19,92,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,12,12,0

,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,92,12,12,12,19,19,0,0,0,0,0,0,0,0,0,12,12,0,0,0,92,12,12,94,2,2,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="zesnake",author="DailyFirefuck",id="#1650657339",direction="left",cost=169,elevation=9,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,76,0,76,0,0,0,0,0,0,0,0,0,0,5,5

,5,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,15,15,15,0,0,0,0,0,0,0,0,0,0,0,6,6,6,0,0,15,15,15,15,0,0,0,11,11,10,10,0,0,0,0,6,6,6,0,0,15,65,15,15,0,0,11,11,11,10,10,10,0,0,7,7,7,7,0,0,15,15,15,15

,0,0,11,11,11,10,10,10,0,0,7,7,7,7,0,0,15,15,15,15,0,0,11,11,11,10,10,10,0,0,7,7,7,0,0,0,0,14,14,14,0,12,11,11,0,10,10,10,0,0,8,8,8,0,0,0,2,14,14,14,0,12,12,12,0,10,10,9,9,0,8,8,8,0,0,0,2,14,14,13,13,

12,12,12,0,0,9,9,9,9,8,8,8,0,0,0,0,14,13,13,13,12,12,0,0,0,9,9,9,9,8,8,8,0,0,0,0,0,13,13,13,13,0,0,0,0,9,9,9,9,8,8,8,0,0,0,0,0,0,13,13,0,0,0,0,0,0,9,9,9,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,8,0,0,0

,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,33,0,33,0,33,0,31,31,31,0,0,0,0,0,0,33,33,0,0,0,0,0,0,0,0,0,31,94,31,0,0,0,0,0,0,93,33,0,0,0,0,0,0,0,0,

0,31,31,31,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="oavuemhksj",author="no",id="#1650660189",direction="right",cost=227,elevation=0,map=[1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,1,14,14,14,14,14,14,14,95,14,14,14,14,1

4,14,14,14,14,93,14,1,14,14,14,14,14,14,14,95,14,14,14,14,14,14,14,14,14,14,14,0,13,13,0,34,34,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,12,12,0,0,85,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,11,11,0,0,34,34,0,0,0,0,0,0,

0,0,0,0,14,14,0,0,10,10,0,0,0,34,34,91,34,34,0,0,0,0,0,0,14,14,0,0,9,9,0,0,0,0,0,0,0,34,34,0,0,0,0,0,14,14,0,0,8,8,0,0,0,0,0,0,0,0,85,0,0,0,0,0,91,91,0,0,7,7,0,0,0,0,0,0,0,0,34,34,0,0,0,0,91,91,0,0,6,

6,0,0,25,25,25,25,0,0,0,34,34,86,34,0,91,91,0,0,25,25,25,25,25,0,0,92,0,0,0,0,0,0,34,0,14,14,0,0,0,25,0,0,0,0,0,29,0,0,0,0,0,0,34,0,95,95,0,25,25,0,0,0,0,0,0,29,29,29,0,0,0,0,91,0,14,14,0,0,0,25,0,0,0

,0,0,0,0,91,0,0,0,0,34,34,14,14,0,0,25,0,25,0,0,0,0,0,0,29,29,29,0,0,0,34,14,14,1,0,25,0,5,5,5,5,5,0,0,0,0,29,0,0,0,0,14,14,1,0,0,5,5,75,75,75,5,5,6,7,8,9,10,11,12,13,14,14,2,0,0,5,5,75,75,75,5,5,6,7,

8,9,10,11,12,13,14,14,2,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,1,1,1]});}},

{function Run(){maps.push({name="trapescape",author="Fara",id="#1650660620",direction="forward",cost=185,elevation=0,map=[0,0,0,0,0,0,0,13,2,2,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,89,13,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,89,13,13,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,89,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,89,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13

,89,13,89,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,13,13,13,89,0,0,0,95,0,0,0,0,0,33,33,33,98,0,0,0,89,13,89,13,0,0,0,95,41,41,41,0,0,33,93,33,98,33,33,0,13,13,13,13,92,41,41,95,41,97,41,0,0,33,33,33,98,0,0,0

,89,13,13,89,0,0,0,95,41,41,41,0,0,0,0,0,98,0,0,0,13,89,13,13,0,0,0,95,0,0,42,0,0,0,0,0,0,0,0,0,13,13,13,89,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,89,13,89,13,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,13,13,13,89,0,

0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,89,13,89,13,0,0,0,0,0,42,42,42,0,0,0,0,0,0,0,0,13,13,13,13,0,0,0,0,0,42,99,42,0,0,0,0,0,0,0,0,89,13,13,89,0,0,0,0,0,42,42,42,0,0,0,0,0,0,96,96,96,96,96,96,96,96,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,13,2,2,89,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="spiral tower",author="yesme",id="#1650664567",direction="right",cost=255,elevation=18,map=[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,

0,0,5,9,9,9,9,8,8,8,8,8,7,7,7,7,7,6,5,0,24,24,5,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,24,5,10,0,14,14,14,14,14,13,13,13,13,13,12,12,12,12,0,77,24,5,10,0,15,0,0,0,0,0,0,0,97,37,0,0,0,12,0,24,24,5,10,0,1

5,0,18,18,18,17,96,96,17,17,16,16,0,11,0,77,24,5,10,0,15,0,18,0,0,0,0,0,0,0,0,16,0,11,0,77,24,5,10,0,15,0,18,0,21,20,20,19,19,19,0,16,0,11,0,24,23,5,11,0,15,0,19,23,22,23,23,23,23,19,23,16,23,11,23,23

,2,5,11,0,16,0,19,23,23,23,23,22,23,19,23,15,23,11,23,23,2,5,11,0,16,0,19,19,19,20,20,21,0,18,0,15,0,10,0,24,23,5,11,0,16,0,0,0,0,0,0,0,0,18,0,15,0,10,0,77,24,5,11,0,16,16,17,17,98,98,17,18,18,18,0,15

,0,10,0,77,24,5,12,0,0,0,37,99,0,0,0,0,0,0,0,15,0,10,0,24,24,5,12,12,12,12,13,13,13,13,13,14,14,14,14,14,0,10,0,77,24,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,77,24,6,7,7,7,7,7,8,8,8,8,8,8,9,9,9,9,9,0,24,2

4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="vauffs feet",author="you know who",id="#1650665624",direction="forward",cost=175,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,5

,5,1,0,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,5,5,5,1,0,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,5,5,5,1,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,5,5,1,1,0,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,1,0,0

,0,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,5,5,5,1,0,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,5,5,5,5,1,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,5,5,5,5,5

,1,0,0,0,0,0,0,0,0,1,5,5,5,5,5,5,5,5,5,5,1,0,0,0,0,0,0,0,0,1,5,5,5,5,5,5,5,5,5,5,1,0,0,0,0,0,0,0,0,0,1,5,5,5,5,5,5,5,5,1,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,5,5,5,5,1,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,95,1,

0,0,0,0,0,0,0,0,0,0,0,1,5,1,5,1,5,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,1,1,5,1,5,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,2,2,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Hold Em v11",author="fantasy",id="#1650667602",direction="forward",cost=104,elevation=0,map=[0,0,0,0,0,0,0,0,24,2,2,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,54,54,24,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,95,95,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,54,97,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,54,54,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,96,96,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,24,54,54,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,54,99,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,54,54,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,98,98,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,54,54,24,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,24,54,102,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,54,54,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,101,101,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,54,54,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,24,54,104,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,54,54,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,103,103,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,54,54,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,2,2,24,0,0,0,0,

0,0,0,0]});}},

{function Run(){maps.push({name="Whats going on here",author="lamp",id="#1650667895",direction="right",cost=276,elevation=3,map=[0,0,0,0,0,2,2,0,0,0,0,0,0,9,9,9,9,9,9,0,0,0,0,0,0,5,5,92,0,0,0,0,0,5,6,

7,7,7,9,0,0,0,0,0,0,6,6,0,0,0,0,0,0,9,9,9,9,7,9,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,9,7,9,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,9,9,9,9,0,0,0,0,0,0,9,9,92,0,0,25,25,25,25,25,9,87,97,9,0,0,27,0,27,0,9,9,0,0,0,

25,0,0,0,0,9,9,9,9,0,0,0,0,0,0,8,8,0,0,101,101,101,0,0,0,0,0,9,0,0,0,26,0,0,0,8,8,0,0,0,25,0,0,0,0,98,98,98,98,98,0,0,0,0,0,8,8,0,0,25,25,25,1,0,0,0,0,9,0,0,0,25,0,0,0,8,8,0,0,25,3,25,1,0,0,0,0,8,0,0,

0,0,0,0,0,8,8,8,8,8,8,96,8,8,8,8,8,8,8,2,0,25,0,0,0,8,8,8,8,8,8,96,8,8,8,8,8,8,8,2,0,0,0,0,0,0,0,0,0,1,1,1,1,5,4,5,8,102,8,0,5,5,5,0,0,5,5,5,5,5,5,5,5,103,5,5,8,8,8,0,5,4,5,0,0,5,5,5,5,5,5,5,5,5,103,5

,8,66,8,0,24,24,24,0,0,5,5,5,5,5,5,5,5,1,1,1,8,8,8,0,24,24,24,0,1,1,1,1,24,1,24,1,24,24,96,24,24,24,24,24,24,24,24,0,0,0,92,0,24,1,24,1,24,24,96,24,99,104,93,24,24,24,24,0,0,0,0,0,24,1,24,1,24,24,96,2

4,24,24,24,24]});}},

{function Run(){maps.push({name="3 ways up",author="Wolfdiman",id="#1650668682",direction="forward",cost=434,elevation=11,map=[1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,10,10,10,10,1,1,1

,1,1,1,1,1,1,1,1,1,1,1,1,1,10,1,1,10,1,1,1,1,1,1,1,1,1,16,16,15,14,13,12,11,10,1,1,10,11,12,14,13,15,16,16,1,1,16,16,15,14,13,12,11,10,10,10,10,11,12,13,14,15,16,16,1,1,1,17,1,1,1,1,1,1,10,10,1,1,1,1,

1,1,17,1,1,1,1,18,1,1,1,1,1,1,10,10,1,1,1,1,1,1,18,1,1,1,19,19,19,1,1,1,1,1,10,10,1,1,1,1,1,19,19,19,1,1,19,1,19,97,1,1,1,1,10,10,1,1,1,1,97,19,1,19,1,1,19,19,19,1,1,1,1,1,10,10,1,1,1,1,1,19,19,19,1,1

,1,19,1,1,1,10,10,10,96,96,10,10,10,1,1,1,19,1,1,1,1,96,1,1,1,10,1,10,92,92,10,1,10,1,1,1,96,1,1,1,1,19,1,1,1,10,1,21,21,21,21,1,10,1,1,1,19,1,1,1,1,20,1,1,1,10,4,21,21,21,21,4,10,1,1,1,20,1,1,1,1,21,

1,1,1,1,1,21,21,21,21,1,1,1,1,1,21,1,1,1,21,21,21,1,1,1,1,1,98,98,1,1,1,1,1,21,21,21,1,1,21,21,21,1,1,1,21,21,21,21,21,21,1,1,1,21,21,21,1,1,21,21,21,98,75,21,21,21,21,21,21,21,21,75,98,21,21,21,1,1,2

1,99,21,1,1,1,21,100,21,21,100,21,1,1,1,21,99,21,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="splitv2",author="skidward",id="#1650669261",direction="forward",cost=410,elevation=5,map=[0,2,2,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,24,5,5,24,24,10,10,10,

10,10,10,12,14,16,18,19,19,19,24,24,24,6,6,24,10,10,10,10,10,10,10,12,14,16,18,19,19,19,19,24,24,7,7,24,10,10,10,10,21,21,21,21,22,23,24,24,19,19,19,24,24,66,66,24,9,24,10,10,10,10,10,10,10,10,10,24,1

9,90,19,24,24,68,68,24,9,24,9,10,10,10,10,10,10,10,10,24,19,19,19,24,24,68,68,24,9,24,9,24,24,24,24,24,24,10,10,24,19,19,19,24,24,68,68,24,9,24,9,24,24,0,0,24,24,10,10,24,19,19,90,24,24,68,68,24,9,9,9

,8,24,0,24,10,10,10,10,24,19,19,19,24,24,66,66,24,8,8,8,8,24,24,10,91,10,10,10,24,19,19,19,24,24,7,7,24,24,7,7,7,24,24,10,10,24,10,10,24,19,19,19,24,24,7,7,96,7,7,7,24,24,24,91,91,24,10,10,24,90,19,19

,24,24,7,7,96,7,7,24,24,0,24,10,10,24,10,10,24,19,19,19,24,24,7,7,24,24,24,24,24,24,24,91,91,24,10,10,24,19,19,19,24,24,8,8,24,14,8,8,15,15,24,10,10,24,10,10,24,19,19,90,24,24,10,24,24,8,8,15,15,93,24

,10,91,10,10,10,21,19,19,19,24,24,8,8,8,8,13,8,15,94,24,24,10,10,10,10,21,19,19,19,24,24,8,11,8,8,8,8,15,97,24,0,24,24,10,10,24,19,100,19,24,24,8,8,8,12,8,8,15,15,24,0,0,24,10,10,24,24,24,24,24,24,24,

24,24,24,24,24,24,24,24,0,0,0,2,2,0,0,0,0,0]});}},

{function Run(){maps.push({name="Over and Under",author="tilgep",id="#1650670860",direction="right",cost=229,elevation=-10,map=[0,0,22,24,24,23,24,1,2,2,0,0,0,0,0,1,1,1,1,1,0,0,14,14,15,15,16,17,17,17

,0,0,0,0,0,1,45,100,45,1,0,14,14,14,14,15,16,16,17,17,0,0,0,0,0,1,45,45,45,1,0,14,14,13,13,15,15,16,16,0,0,0,0,0,0,0,32,46,32,0,23,14,12,12,0,0,1,0,0,0,0,0,1,0,0,0,32,46,32,0,22,14,11,0,1,0,0,0,0,1,0,

0,0,0,0,1,47,47,47,1,24,14,10,1,0,0,0,0,0,0,0,0,0,0,0,1,47,47,47,1,24,14,9,35,35,36,36,36,24,37,37,36,36,36,35,1,47,47,47,1,24,48,48,49,49,50,50,50,51,51,51,23,50,50,49,49,48,48,48,1,23,48,48,49,24,50

,24,50,51,51,51,50,50,24,49,49,48,48,48,1,24,48,48,49,49,50,50,23,51,51,51,50,50,50,49,49,48,24,48,1,24,48,48,49,49,50,50,50,51,24,51,50,50,50,49,49,48,48,48,1,23,0,0,35,35,36,36,36,37,24,37,36,36,36,

35,35,34,48,48,1,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,33,47,47,1,0,0,0,0,0,0,0,0,0,0,0,0,37,23,0,0,33,47,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,47,7,2,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,33,47,47,1,0,0,0,0,0

,0,0,0,0,0,0,0,0,24,0,0,33,33,33,1,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,39,100,39,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Cover The Triggers",author="DankArab",id="#1650671339",direction="forward",cost=227,elevation=12,map=[2,2,0,0,0,28,28,28,28,28,9,0,0,9,0,0,0,0,0,0,28,28,0,0,0,28,28,28

,28,28,0,0,0,0,0,0,0,0,0,0,28,28,28,28,28,28,28,93,28,28,0,0,0,0,9,0,0,0,0,0,28,28,28,28,28,28,28,94,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,28,28,28,28,0,0,0,0,9,0,0,0,9,9,0,0,0,0,0,28,28,28,28,28,0,0

,0,0,0,0,9,0,0,97,0,0,0,0,0,96,96,96,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,28,28,28,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,0,0,0,0,98,98,0,0,0,0,0,40,40,91,91,91,91,40,40,40,40,40,40

,40,98,40,0,0,0,0,0,40,40,91,91,91,91,40,40,40,40,40,40,40,98,40,0,0,0,0,0,99,40,91,91,91,91,40,40,40,40,40,40,40,98,40,40,40,40,40,40,40,40,91,91,91,91,40,40,40,40,40,40,40,98,40,0,0,0,40,40,40,40,91

,91,91,91,40,40,40,40,40,40,40,98,40,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,98,98,0,0,0,2,2]});}},

{function Run(){maps.push({name="The Great Migration",author="lamp",id="#1650671680",direction="forward",cost=290,elevation=17,map=[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,5,5,6,6,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,7,7,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,8,8,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,9,9,92,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,9,9,10,10,92,0,0,0,5,5,77,77

,77,5,5,5,5,0,0,0,10,10,11,11,92,0,0,0,5,77,0,76,76,77,5,5,5,0,0,0,11,11,12,12,92,0,0,0,5,77,76,76,76,76,77,5,5,0,0,0,12,12,13,13,92,0,0,0,5,5,77,76,76,76,76,77,5,0,0,0,13,13,14,14,92,0,0,0,5,77,76,76

,76,76,77,5,5,0,0,0,14,14,15,15,92,0,0,0,5,77,76,76,76,77,5,5,5,0,0,0,15,15,16,16,92,0,0,0,5,5,77,77,77,5,5,5,5,0,0,0,16,16,17,17,92,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,17,17,18,18,92,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,18,18,19,19,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,20,20,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,21,21,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,22,22,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2]});}},

{function Run(){maps.push({name="Elevated",author="SEAL",id="#1650673179",direction="forward",cost=272,elevation=19,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,5,5,5,5,5,5,10,85,85,

10,0,0,0,0,0,0,10,99,85,10,92,5,5,5,5,92,10,10,97,10,0,0,0,0,0,0,85,10,10,10,5,5,5,5,5,5,10,85,10,10,0,0,0,0,0,0,10,10,85,10,5,5,5,5,5,5,10,10,10,10,0,0,0,0,0,0,96,96,0,0,24,24,24,24,24,24,0,0,98,98,0

,0,0,0,0,96,10,10,96,0,94,24,87,87,24,93,0,98,10,10,98,0,0,0,0,0,10,10,0,0,0,95,24,24,95,0,0,0,10,10,0,0,0,0,0,0,92,10,0,0,103,0,95,95,0,101,0,0,10,92,0,0,0,0,0,0,16,16,16,20,103,20,24,24,20,101,20,16

,16,16,0,0,0,0,0,0,16,92,20,103,20,92,24,24,92,20,101,20,92,16,0,0,0,0,16,0,16,16,16,20,103,20,24,24,20,101,20,16,16,16,0,16,0,0,35,0,0,0,0,0,103,0,92,92,0,101,0,0,0,0,0,35,0,0,34,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,34,0,0,34,34,33,33,12,85,0,0,0,0,0,0,85,12,33,33,34,34,0,0,0,0,0,0,0,12,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,5,0,0,0,9,0,0,24,24,0,0,9,0,0,0,5,5,0,0,102,5

,5,3,9,9,0,0,24,24,0,0,9,9,3,5,5,104,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Slippery Slope",author="tilgep",id="#1650673479",direction="forward",cost=172,elevation=-16,map=[0,0,0,0,0,0,24,24,24,2,2,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,

24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,67,22,22,22,1,22,22,22,22,67,0,0,0,0,0,0,0,0,0,0,0,21,21,21,21,21,21,21,1,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20

,20,0,0,0,0,0,0,0,0,0,0,0,0,19,19,21,21,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,18,18,22,22,18,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,17,17,23,23,1,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,0,0,0

,0,0,0,0,0,0,0,0,0,1,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,1,0,0,0,0,0,0,0,0,0,0,0,77,13,13,1,13,13,13,13,13,77,0,0,0,0,0,0,

0,0,0,0,0,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,10,10,1,10,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8

,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,2,2,8,8,8,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="go trigger guys",author="niku",id="#1650675289",direction="forward",cost=196,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,5,5,5,5,25,25,25,25,5,5,5,5,0,0,0,0,0,0,0,0,5,5,5,25,25,25,25,25,

25,5,5,5,0,0,0,0,0,0,0,0,5,5,5,25,85,5,5,5,25,5,5,5,0,0,0,0,1,1,1,1,25,25,25,25,5,5,5,85,25,25,25,25,1,1,1,1,1,1,1,1,25,0,0,25,5,85,5,5,25,0,0,25,1,1,1,1,1,1,1,1,25,0,0,25,5,5,85,5,25,0,0,25,1,1,1,1,0

,0,25,25,0,0,0,25,5,85,5,5,25,0,0,0,25,25,0,0,25,0,0,0,0,0,0,25,5,5,5,85,25,0,0,0,0,0,0,25,25,0,0,0,0,0,0,25,85,5,5,5,25,0,0,0,0,0,0,25,25,0,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,25,0,0,0,25

,0,0,0,5,5,5,5,5,5,0,0,0,25,0,0,0,5,5,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,5,5,5,5,5,0,0,0,0,0,0,5,5,0,0,0,0,0,0,5,5,5,5,100,5,0,0,0,0,0,0,5,5,0,0,0,0,0,0,5,100,5,5,5,5,0,0,0,0,0,0,2,2,0,0,0,0,0,0,5,5,5]})

;}},

{function Run(){maps.push({name="zepokemononix",author="Jussy",id="#1650677682",direction="forward",cost=106,elevation=11,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,14,14,14,0,0,0,0,0,

0,0,0,8,8,0,0,0,0,0,0,0,14,14,14,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,16,16,14,14,14,13,0,0,0,0,0,0,0,8,8,0,0,0,0,16,16,16,0,0,13,13,0,0,0,0,0,9,9,8,8,0,0,0,16,16,16,16,0,0,13,13,0,0,0,0,0,9,9,0,0,16,16,16,1

6,16,16,16,0,0,0,12,12,0,0,10,10,9,9,0,0,0,0,16,16,91,16,16,0,0,0,12,12,0,0,10,10,0,0,0,0,0,0,0,16,16,16,16,0,0,0,12,11,11,11,10,10,0,0,0,0,0,0,0,0,16,16,16,0,0,0,0,11,11,11,0,0,0,0,0,0,0,0,0,0,0,91,9

1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Budget Crazy Escape",author="DankArab",id="#1650681347",direction="forward",cost=861,elevation=0,map=[2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,44,44,81,44,81,44,81,81

,81,81,81,81,81,81,81,81,81,81,1,1,44,44,81,81,81,44,81,81,81,81,44,44,81,44,44,44,81,81,1,1,81,81,81,81,81,81,81,81,81,81,44,44,81,81,44,44,81,81,1,1,44,81,81,81,44,81,81,81,81,81,44,44,81,81,44,44,8

1,81,1,1,81,81,81,81,81,44,44,44,44,81,44,44,81,81,44,44,81,81,1,1,44,44,44,81,81,44,44,44,44,81,81,81,81,81,81,81,81,81,1,1,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,44,44,44,1,1,81,81,81,81,81,81

,81,81,81,81,81,81,81,81,81,44,44,44,1,1,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,1,1,81,44,44,44,81,81,81,44,44,44,44,81,81,44,44,44,81,81,1,1,81,44,44,44,81,44,81,44,44,44,44,81,81,44,4

4,44,81,81,1,1,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,1,1,81,81,81,44,44,81,81,81,81,81,81,44,44,81,81,81,81,81,1,1,81,81,81,44,44,81,81,81,81,81,81,44,44,81,81,81,81,81,1,1,81,81,81,81

,81,81,81,81,81,81,81,44,44,81,81,81,81,81,1,1,44,44,44,81,81,81,81,81,81,81,81,81,81,81,44,44,44,44,1,1,44,93,44,81,81,81,81,81,81,81,81,81,81,81,44,44,44,44,1,1,97,44,44,81,81,81,81,81,81,81,81,81,8

1,81,44,44,44,96,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2]});}},

{function Run(){maps.push({name="lava land",author="issic",id="#1650682142",direction="right",cost=299,elevation=-7,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,21,21,0,0,0,0,0,0,77

,0,0,0,97,24,77,0,0,0,0,0,22,22,0,0,0,0,0,77,24,97,0,0,0,77,0,0,0,0,0,0,23,23,0,0,0,0,0,0,77,0,0,0,0,44,0,0,0,0,0,92,24,24,92,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,96,24,24,96,0,0,0,0,0,0,0,0,0,99,44,0,0,0

,98,0,77,96,96,0,0,77,77,77,77,77,0,0,0,0,0,24,24,98,24,24,76,24,24,0,77,1,1,1,1,1,77,0,0,0,0,24,24,98,24,24,76,24,76,77,0,77,77,77,77,77,100,0,0,0,0,24,24,0,98,0,77,0,77,77,0,51,51,51,51,37,37,0,0,0,

77,76,76,77,0,0,0,0,0,0,0,51,51,0,51,0,38,0,0,0,0,24,24,0,0,0,0,0,0,17,17,51,51,0,51,0,39,0,0,0,0,24,24,0,101,0,0,0,0,17,77,51,51,0,3,0,40,0,0,0,0,24,24,24,24,101,24,22,20,18,16,14,14,14,14,14,14,2,0,

0,24,24,24,24,24,101,24,22,20,18,16,14,14,14,14,85,14,2,0,0,24,0,0,0,101,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,77,0,0,0,0,0,77,77,77,77,0,0,0,0,0,77,0,0,0,102,24,77,0,0,0,77,1,1,1,1,77,0,0,0,77,14,100,0,0,0,

77,0,0,0,0,0,77,77,77,77,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Get The Buttons",author="DankArab",id="#1650682848",direction="forward",cost=436,elevation=18,map=[24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,2,2,24,23,22,21,2

0,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,64,64,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,64,64,64,64,90,64,64,64,64,64,64,90,64,64,64,90,64,99,1,1,64,90,64,64,87,64,90,64,64,64,64,64,64,64,64,64,64,64,1,

1,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,90,64,64,1,1,64,64,64,90,64,64,64,64,87,64,90,64,64,90,64,64,64,64,1,1,64,90,64,64,64,90,64,64,64,64,64,64,87,64,64,64,64,64,1,1,64,64,64,64,64,64,64,64,

64,64,64,64,64,64,90,64,64,64,1,1,64,64,64,64,64,64,64,64,64,90,64,64,64,64,64,64,90,64,1,1,64,64,90,64,87,64,90,64,64,64,64,64,64,64,64,64,64,64,1,1,64,64,64,64,64,64,64,64,64,64,64,64,90,64,64,64,64

,64,1,1,64,90,64,64,64,64,64,90,64,64,64,64,64,64,64,87,64,64,1,1,64,64,64,90,64,64,64,64,64,64,64,64,90,64,64,64,64,64,1,1,64,64,64,64,64,64,64,64,64,90,64,64,64,64,64,64,64,64,1,1,64,87,64,64,64,87,

90,64,64,64,64,64,64,64,64,64,64,64,1,1,64,64,90,64,64,64,64,64,64,64,87,64,90,64,64,64,64,64,1,1,64,64,64,64,64,64,64,90,64,64,64,64,64,64,64,64,96,96,1,1,97,64,64,64,64,64,64,64,64,64,64,64,64,64,64

,64,96,98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2]});}},

{function Run(){maps.push({name="up or down",author="blasian",id="#1650684347",direction="forward",cost=140,elevation=12,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,94,5,5,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,93,85,0,12,3,0,0,5,4,5,5,4,5,0,0,0,0,0,0,0,97,47,90,47,47,47,47,12,12,47,95,12,0,0,0,0,0,0,0,0,0,47,47,7,47,47,8

5,47,47,47,47,47,0,0,0,0,0,0,0,0,0,47,47,47,47,47,47,47,47,3,47,93,0,0,0,0,0,0,0,0,0,96,96,0,0,0,0,0,33,33,33,0,0,0,0,0,0,0,0,0,3,47,47,0,0,0,0,0,33,33,33,0,0,0,0,0,0,0,0,0,12,47,47,0,0,0,0,0,33,33,33

,0,0,0,0,0,0,0,0,0,0,47,47,47,47,47,33,98,33,90,90,0,0,0,0,0,0,0,0,0,0,47,47,47,47,92,33,98,33,90,99,0,0,0,0,0,0,0,0,0,0,0,0,0,37,37,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,37,37,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,37,37,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,37,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,37,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,2,2,0,0,0,0,0,

0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="trust",author="blasian",id="#1650685186",direction="forward",cost=164,elevation=0,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,96,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,99,5,5,5,96,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,5,5,0,0,0,25,25,25,0,97,0,0,5,5,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,5,5,0

,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,5,5,0,0,0,5,5,5,0,0,0,0,98,98,0,0,0,0,0,0,5,5,0,0,0,95,95,95,0,0,0,0,5,5,0,0,0,0,0,0,5,5,0,0,0,95,95,95,0,0,0,0,5,5,0,0,0,0,0,0,5,5,0,0,0,0,95,0,0,0,

0,0,5,5,0,0,0,0,0,0,5,5,0,0,0,0,95,0,0,0,0,0,5,5,0,0,0,0,0,0,5,5,0,0,0,0,95,0,0,0,0,0,5,5,0,0,0,0,0,0,85,5,5,5,5,101,5,5,103,5,5,5,85,5,0,0,0,0,0,0,5,5,5,5,5,101,5,5,103,5,5,5,5,5,0,0,0,0,0,0,0,104,0,

0,0,0,100,5,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="agility or strength",author="blasian",id="#1650685510",direction="left",cost=52,elevation=0,map=[0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,90,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,90,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,91,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,91,90,91,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,90,91,90,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="slip n slide",author="issic",id="#1650686009",direction="left",cost=262,elevation=15,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0

,0,0,9,9,9,14,14,14,14,9,70,9,0,0,0,0,0,0,0,0,0,0,9,97,9,66,69,69,69,66,71,9,0,0,0,0,0,0,0,0,0,0,9,9,9,14,14,14,14,9,71,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,9,71,9,0,0,0,0,0,0,0,0,0,0,0,0,15,13,11,9,9

6,9,71,9,0,0,0,0,0,0,0,0,0,0,0,15,15,13,11,9,96,9,71,9,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,16,71,16,16,17,18,0,0,0,0,0,0,0,0,15,15,0,0,0,16,16,71,16,16,17,18,19,0,0,0,0,0,0,67,73,74,67,0,67,16,16,71,1

6,16,67,19,19,0,0,0,0,0,0,0,15,15,71,16,71,16,16,71,16,67,21,20,20,0,0,0,0,0,0,0,15,15,71,16,71,24,24,71,23,22,21,21,0,0,0,0,0,0,2,24,24,24,71,24,71,24,24,71,23,22,22,0,0,0,0,0,0,0,2,24,24,24,71,24,71

,24,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,24,67,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,67,0,67,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,24,71,24,71,24,24,71,24,24,100,0,0,0,0,0,0,0,0,0,0,24,72,24,72,24,24,72,24,24,

0,0,0,0,0,0,0,0,0,0,0,0,67,0,67,0,0,67,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="well deserved break",author="blasian",id="#1650686389",direction="left",cost=34,elevation=0,map=[0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,2,5,5,95,5,5,5,5,5,0,0,0,0,0,0

,0,0,0,0,0,2,5,5,95,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="falls",author="pasas",id="#1650686701",direction="forward",cost=460,elevation=0,map=[0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,12,12,12,1,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,1,12,12,12,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,12,12,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,12,12,12,1,1,0,0,0,0,0,5,5,5,5,5,5,5,7,76,76,92,92,76,76,7,5,5,5,5,5,76,76,76,76,76,76,76

,77,76,76,76,76,76,76,77,76,76,76,76,76,76,76,76,76,76,76,76,77,76,76,76,76,76,76,77,76,76,76,76,76,76,76,76,76,76,76,76,77,76,76,76,76,76,76,77,76,76,76,76,76,76,76,76,76,76,76,76,77,76,76,76,76,76,7

6,77,76,76,76,76,76,76,76,76,76,76,76,76,77,76,76,76,76,76,76,77,76,76,76,76,76,5,5,5,5,5,5,5,7,76,76,76,76,76,76,7,5,5,5,5,5,0,0,0,0,0,0,0,1,1,12,12,12,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,12,12,12,12,12

,12,1,0,0,0,0,0,0,0,0,0,0,0,0,1,12,12,12,12,12,12,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,91,91,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,12,12,12,12,12,12,1,0,0,0,0,0,0,0,0,0,0,0,0,1,12,12,12,12,12,12,1,0,0,0,0,0,0,0,

0,0,0,0,0,1,1,1,91,91,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Multi side defending",author="Temmie",id="#1650687463",direction="forward",cost=236,elevation=0,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,10,1

0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,10,70,70,11,11,70,70,10,0,0,0,0,0,0,0,0,0,0,0,0,10,71,71,12,12,71,71,10,0,0,0,0,0,0,0,0,0,0,0,0,10,71,71,13,13,71,71,10,0,0,0,0,0,0,0,28,27,0,0,30,10,71,71,14,14,71,71,

10,30,0,0,27,28,0,0,28,27,0,0,30,10,71,71,14,14,71,71,10,30,0,0,27,28,0,0,0,0,0,0,0,10,71,71,13,13,71,71,10,0,0,0,0,0,0,0,28,0,0,0,0,10,71,71,12,12,71,71,10,0,0,0,0,28,0,0,0,0,0,0,0,10,71,71,11,11,71,

71,10,0,0,0,0,0,0,0,28,0,0,0,0,10,10,10,10,10,10,10,10,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,96,10,10,96,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,96,96,0,0,0,0,0,0,0,0,0,0,

28,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,28,0,0,29,0,0,0,0,0,0,0,85,10,0,0,0,0,0,0,0,29,0,0,30,0,0,0,0,96,0,0,10,85,0,0,96,0,0,0,0,30,0,0,30,85,30,0,30,30,96,10,10,10,10,96,30,30,0,30,85,30,0,0,91,0,0,0,0

,96,0,0,10,10,0,0,96,0,0,0,0,91,0,0,97,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,97,0,0]});}},

{function Run(){maps.push({name="Lava and Water",author="fantasy",id="#1650687537",direction="forward",cost=432,elevation=11,map=[0,0,0,0,0,0,0,0,0,2,2,0,67,24,24,24,24,24,24,24,0,12,12,12,12,12,12,12

,12,12,12,0,67,67,67,67,67,67,24,24,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,67,67,0,12,0,0,67,67,67,67,67,67,67,67,67,67,67,67,0,0,0,0,0,12,12,92,54,55,56,57,58,59,59,58,57,56,55,54,65,12,12,12,0,12,12,

92,54,55,56,57,58,59,59,58,57,56,55,54,65,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,12,0,0,0,19,20,21,22,23,23,24,24,23,23,22,21,20,19,0,0,1

2,12,13,14,54,55,56,57,58,58,59,59,58,58,57,56,55,54,14,13,12,12,13,14,54,55,56,57,58,58,59,59,58,58,57,56,55,54,14,13,12,12,0,0,19,20,21,22,23,23,24,24,23,23,22,21,20,19,0,0,0,12,0,0,77,77,77,77,77,7

7,77,77,77,77,77,77,77,77,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,92,54,55,56,57,58,59,59,58,57,56,55,54,65,12,12,12,12,12,12,92,54,55,56,57,58,59,59,58,57,56,55,54,65,12,12,12,0,0,0,0

,67,67,67,67,67,67,67,67,67,67,67,67,0,0,0,12,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,24,24,77,77,77,77,77,77,0,23,23,23,23,22,22,21,21,20,20,19,24,24,24,24,24,24,24,77,0,2,2,0,0,0,0,0,0,0,0,0]});}

},

{function Run(){maps.push({name="Unlucky",author="DankArab",id="#1650689277",direction="forward",cost=382,elevation=17,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,

5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,94,8,94,8,94,8,94,8,94,8,94,8,94,8,94,8,94,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,94,10,94,10,94,10,94,10,

94,10,94,10,94,10,94,10,94,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,94,12,94,12,94,12,94,12,94,12,94,12,94,12,94,12,94,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13

,13,13,13,13,14,94,14,94,14,94,14,94,14,94,14,94,14,94,14,94,14,94,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,94,16,94,16,94,16,94,16,94,16,94,16,94,16,94,16,94,16,16,17,17,1

7,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,94,18,94,18,94,18,94,18,94,18,94,18,94,18,94,18,94,18,18,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,20,94,20,94,20,94,20,94,20,

94,20,94,20,94,20,94,20,94,20,20,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,22,94,22,94,22,94,22,94,22,94,22,94,22,94,22,94,22,94,22,22,23,23,23,23,23,23,23,23,2,2,23,23,23,23,23,23,2

3,23,23,23]});}},

{function Run(){maps.push({name="Descent into Madness",author="fantasy",id="#1650689378",direction="right",cost=293,elevation=-2,map=[1,18,17,0,15,14,13,13,0,1,0,0,13,0,0,1,0,2,2,0,1,18,17,0,15,14,13,

13,1,0,13,0,0,0,13,0,0,7,7,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,19,19,0,0,0,1,0,13,13,0,0,1,0,11,0,0,7,7,0,0,19,19,0,0,0,0,1,0,0,1,0,0,0,11,0,0,7,7,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1

9,19,0,0,0,0,0,0,0,0,0,0,0,10,10,0,7,1,0,0,19,19,0,0,0,77,0,0,0,0,0,0,0,10,10,0,8,0,0,0,0,0,0,0,77,24,77,0,0,0,0,0,0,0,0,1,0,0,0,0,0,40,0,0,0,77,0,0,0,77,0,0,1,1,1,1,0,0,0,40,40,40,0,0,0,0,0,0,77,22,7

7,0,16,16,18,18,1,0,0,40,0,0,0,0,0,0,0,0,0,77,0,0,12,12,14,14,21,1,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,22,1,40,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,1,1,40,40,40,39,38,37,36,35,34,33,

32,31,30,29,28,27,26,25,25,2,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,22,1,0,0,0,0,0,77,0,0,0,0,77,0,0,12,12,14,14,21,1,0,77,77,77,0,77,23,77,0,0,

77,19,77,0,16,16,18,18,1,0,0,24,24,24,0,0,77,0,0,0,0,77,0,0,1,1,1,1,0,0,0]});}},

{function Run(){maps.push({name="Head Bumper",author="DankArab",id="#1650691332",direction="left",cost=84,elevation=0,map=[0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,45,45,1,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,1,47,47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,49,49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,51,51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,53,53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,55,55,1,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,61,61,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,63,63,1,0,0,0,0,0,0,0,0,0,2,45,46,49,52,55,

58,61,64,64,1,0,0,0,0,0,0,0,0,0,2,45,46,49,52,55,58,61,64,64,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Watch your step",author="Bomberman",id="#1650696754",direction="left",cost=317,elevation=6,map=[100,91,86,16,93,1,1,1,1,1,1,1,1,1,0,1,2,2,1,0,0,85,16,86,1,0,14,14,14,1

4,14,13,13,13,1,0,10,10,10,1,0,86,76,16,0,0,14,14,14,14,14,13,13,13,1,0,85,10,10,1,0,91,91,16,0,0,14,14,14,86,14,13,13,13,1,0,10,10,85,1,0,16,16,85,0,0,14,14,14,0,0,12,12,12,0,0,10,10,10,1,0,85,16,16,

0,0,18,18,14,0,0,12,12,12,0,0,10,10,85,1,0,88,85,86,0,0,14,14,14,0,0,12,90,12,0,0,85,10,10,1,1,16,16,16,0,0,14,18,18,0,0,12,12,12,0,0,10,10,10,1,2,16,16,16,0,0,14,14,14,0,0,12,12,90,0,0,10,85,10,1,2,1

6,16,16,0,0,18,18,14,0,0,90,12,90,0,0,85,10,10,1,1,16,16,16,0,0,14,14,14,0,0,12,12,12,0,0,10,10,10,1,0,16,16,16,0,0,14,18,18,0,0,12,90,12,0,0,10,85,10,1,0,1,95,1,0,0,14,14,14,0,0,90,12,12,0,0,10,10,85

,1,1,16,16,16,1,1,14,14,14,1,0,12,12,12,0,0,10,10,10,1,0,16,16,16,0,0,1,95,1,0,0,12,12,12,0,0,10,86,10,1,0,85,16,16,0,0,14,14,14,0,0,12,12,12,0,0,10,10,10,1,0,16,16,16,16,16,15,15,15,1,0,12,12,12,12,1

2,11,11,11,1,0,16,16,16,16,16,15,15,15,1,0,12,12,12,12,12,11,11,11,1,0,16,16,16,86,16,15,15,15,1,0,12,12,12,12,12,11,11,11,1,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0]});}},

{function Run(){maps.push({name="shiny button",author="Fara",id="#1650711246",direction="right",cost=191,elevation=1,map=[0,0,0,0,0,0,0,35,2,2,35,35,0,0,0,0,0,0,0,0,0,0,0,0,35,35,0,35,35,35,35,35,0,0,

35,35,0,0,0,0,0,0,0,0,35,35,0,35,35,35,35,35,0,0,35,36,0,0,0,0,0,0,0,0,0,0,0,35,35,35,35,35,0,0,0,0,0,0,0,0,0,35,35,0,0,0,0,35,35,35,35,35,0,0,0,0,0,0,0,0,0,35,35,0,0,0,1,35,35,35,35,35,1,0,0,0,0,35,3

5,0,0,0,0,0,0,0,1,96,96,96,96,96,1,0,0,0,0,36,36,0,0,0,0,0,0,0,1,35,35,35,35,35,1,0,0,0,0,0,0,0,0,35,35,0,0,0,0,35,36,36,36,35,0,0,0,0,0,0,0,0,0,35,35,0,0,0,0,35,36,97,36,35,0,0,0,35,35,0,0,0,0,0,0,0,

0,0,0,35,36,36,36,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,35,35,35,35,0,35,0,0,0,0,0,0,0,35,35,0,0,0,0,35,35,35,35,35,0,0,0,0,0,0,0,0,0,35,35,0,0,0,0,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,0,3

5,36,36,36,35,34,34,34,35,36,36,36,35,0,0,0,0,35,35,0,35,36,37,36,35,34,33,34,35,36,37,36,2,0,0,0,0,35,35,0,35,36,37,36,35,34,33,34,35,36,37,36,2,0,0,0,0,0,0,0,35,36,36,36,35,34,34,34,35,36,36,36,35,0

,0,0,0,0,0,0,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="mild overdefense",author="Fara",id="#1650711302",direction="left",cost=211,elevation=7,map=[0,99,0,0,1,0,0,0,17,2,2,17,0,0,0,0,0,0,0,0,0,37,37,37,96,37,37,0,17,17,17,1

7,0,0,0,44,0,44,0,0,0,37,37,37,96,37,37,0,17,17,17,17,0,44,0,0,0,0,0,0,0,99,0,0,1,0,0,0,17,17,17,17,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,1,95,95,95,95,1,44,0,0,0,0,102,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,0,

0,0,0,0,0,0,0,0,17,0,0,0,17,17,17,17,0,44,0,17,0,0,0,0,0,97,17,0,0,0,17,0,17,17,17,17,0,17,0,0,0,17,97,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,98,98,98,98,1,0,44,0,0,0,0,0,0,0,0,

0,0,0,0,1,95,95,95,95,1,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,39,39,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,39,39,39,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,0,0

,0,0,0,0,44,0,0,0,1,104,0,1,0,0,44,44,44,44,0,0,1,1,0,0,0,0,2,44,101,44,44,95,44,44,44,44,44,44,44,44,103,95,44,44,0,0,2,44,101,44,44,95,44,44,44,44,44,44,44,44,103,95,44,44,0,0,0,0,1,104,0,1,0,0,44,4

4,44,44,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="CSO",author="CSO",id="#1650717031",direction="forward",cost=399,elevation=-18,map=[0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24

,0,0,0,0,0,0,0,23,66,66,66,66,66,66,66,66,66,66,66,23,0,0,0,0,0,0,0,22,66,66,66,66,66,66,66,66,66,66,66,22,0,0,0,0,0,0,0,21,66,66,21,21,21,21,21,21,21,66,66,21,0,0,0,0,0,0,0,20,66,66,20,20,20,20,20,20

,20,66,66,20,0,0,0,0,0,0,0,19,66,66,19,19,19,19,19,19,19,66,66,19,0,0,0,0,0,0,0,18,67,67,18,18,18,18,18,18,18,67,67,18,0,0,0,0,24,0,0,17,66,66,66,66,66,66,17,17,17,66,66,17,0,0,0,0,0,0,0,16,66,66,66,6

6,66,66,16,16,16,66,66,16,0,0,0,0,0,0,0,15,66,66,15,15,66,66,15,15,15,66,66,15,0,0,0,0,0,0,0,14,66,66,14,14,66,66,66,66,66,66,66,14,0,0,0,0,24,0,0,13,66,66,13,13,66,66,66,66,66,66,66,13,0,0,0,0,0,0,0,

12,67,67,12,12,67,67,67,67,67,67,67,12,0,0,0,0,0,0,0,11,66,66,66,66,66,66,66,66,66,66,66,11,0,0,0,0,0,0,0,10,66,66,66,66,66,66,66,66,66,66,66,10,0,0,0,0,0,0,0,9,66,66,9,9,9,9,9,9,9,66,66,9,0,0,0,0,0,0

,0,8,66,66,66,66,66,66,66,66,66,66,66,8,0,0,0,0,0,0,0,7,66,66,66,66,66,66,66,66,66,66,66,7,0,0,0,0,0,0,0,6,6,6,6,2,2,6,6,6,6,6,6,6,0,0,0,0]});}},

{function Run(){maps.push({name="skull",author="FLaN KS",id="#1650719640",direction="forward",cost=294,elevation=0,map=[12,2,2,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,1

2,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,12,12,0,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,12,12,12,12,0,12,12,12,12,

12,12,12,12,12,12,12,0,0,0,0,12,12,12,12,0,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,12,100,12,12,0,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,12,12,12,0,0,0,0,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,12,12,0,0,0

,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,12,12,0,0,0,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,0,0,0,0,0,12,12,12,0,0,0,0,0,0,12,12,12,12,12,12,12,0,0,0,0,12,100,12,12,0,0,0,0,0,12

,12,12,12,12,12,12,0,0,0,0,12,12,12,12,0,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,12,12,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,1

2,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,

12,2,2,12]});}},

{function Run(){maps.push({name="gfl",author="gfl",id="#1650720794",direction="right",cost=362,elevation=0,map=[2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,70,73,73,73,71,74,74,74,70,0,0,0,0,0

,0,1,0,0,0,Vector(0,70,170),5,5,5,5,5,5,5,5,5,71,0,0,0,0,5,1,0,72,73,5,7,7,6,6,6,6,7,7,5,5,71,0,0,0,0,1,0,70,5,5,7,8,0,0,0,8,8,7,7,5,5,71,0,0,6,1,70,5,5,6,7,0,0,8,8,0,8,7,6,7,5,71,0,0,0,1,71,5,8,6,8,0

,8,8,8,0,8,8,6,8,8,5,71,0,7,1,5,6,8,6,8,0,0,8,0,0,8,8,6,8,8,6,5,0,0,1,5,6,8,6,8,8,8,8,8,8,8,8,6,8,8,6,5,5,8,1,5,6,5,6,8,0,0,0,0,0,8,8,6,5,5,6,5,2,0,1,5,6,5,6,8,0,8,0,8,8,8,8,6,5,5,6,5,2,9,1,5,6,8,6,8,

0,8,0,8,8,8,8,6,8,8,6,5,5,0,1,5,6,8,6,8,8,8,8,8,8,8,8,6,8,8,6,5,0,10,1,72,5,8,6,8,0,0,0,0,0,8,8,6,8,8,5,72,0,0,1,70,5,8,6,7,8,8,8,8,0,8,7,6,7,5,5,72,0,11,1,8,70,5,5,7,8,8,8,8,0,8,7,7,5,5,72,0,0,0,1,0,

71,73,5,7,7,6,6,6,6,7,7,5,5,72,0,0,0,12,1,11,1,72,73,5,5,5,5,5,5,5,5,5,72,0,0,0,0,0,1,0,0,1,0,70,73,73,73,72,74,74,74,70,0,0,0,0,0,13,0,12,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Bomb",author="Bomberman",id="#1650721449",direction="forward",cost=180,elevation=10,map=[0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,5,5,23,23,5,5,5,5,5,0,0,0,0,0,0,0,0,0,5,5,23,23,5,5,23,23,5,5,5,0,0,0,0,0,0,5,5,5,5,23,5,5,5,5,5,5,23,

5,5,5,0,0,0,0,6,5,0,5,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,7,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,8,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,9,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,10,0,0,0,0,5,5,5,5,5,5,5,5

,5,0,0,0,0,0,76,32,76,0,76,0,0,5,5,5,5,5,5,5,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,76,0,0,0,76,0,0,0,0,0,7,7,7,0,0,0,0,0,0,0,0,0,76,76,0,76,0,0,0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,2,2,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Hot dynamite",author="Bomberman",id="#1650723504",direction="forward",cost=342,elevation=6,map=[0,0,0,0,0,0,0,0,0,0,0,0,5,76,5,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,76,76,

76,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,76,76,76,5,76,5,0,0,0,0,0,0,0,0,0,0,0,0,5,76,5,76,5,76,76,76,5,0,0,0,0,0,0,0,0,0,0,5,76,76,76,5,76,76,76,5,76,5,0,0,0,0,0,0,0,0,5,76,76,76,5,76,5,76,5,76,76,76,5,0,0

,0,0,0,0,5,76,76,76,5,76,76,76,5,76,76,76,5,0,0,0,0,0,0,5,76,76,76,5,76,76,76,5,76,5,76,5,0,0,0,0,0,0,5,76,5,76,5,76,76,76,5,76,76,76,5,0,0,0,0,0,0,5,76,76,76,5,76,76,76,5,76,76,76,5,0,0,0,0,0,0,5,76,

76,76,5,76,5,76,5,76,76,76,5,0,0,0,0,0,0,0,0,5,76,5,76,76,76,5,76,76,76,5,0,0,0,0,0,0,0,0,0,0,5,76,76,76,5,76,5,76,5,0,0,0,0,0,0,0,0,0,0,0,6,5,76,5,76,76,76,5,0,0,0,0,0,0,0,0,0,0,0,0,7,6,5,76,76,76,5,

0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,5,76,5,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="god not flex againv1",author="Fara",id="#1650724254",direction="forward",cost=169,elevation=0,map=[0,0,0,0,0,14,14,14,2,2,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,

14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,24,91,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,91

,24,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,91,24,24,91,24,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,0,0,

0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,91,24,24,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,0,0,0,0,0,0,

0,0,0,0,0,0,24,91,24,24,91,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,24,24,91,24,24,24,91,24,0,0,0,0,0,0,0,0,0,0,

0,0,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,2,2,14,14,14,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="guess the map",author="Fara",id="#1650725572",direction="right",cost=204,elevation=13,map=[0,0,0,0,0,0,26,25,2,2,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,25,25,25,25,26,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,26,25,25,25,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,25,25,25,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,25,25,25,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,25,25,25,25,26,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,26,25,25,25,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,25,25,25,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,25,25,25,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,25,25,25,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,25,

25,25,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,25,25,25,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,25,25,25,25,26,0,0,0,0,0,0,0,0,24,39,39,39,39,39,26,25,3,3,25,26,39,39,39,39,24,24,24,24,24,38,38,38,38,38,38,3

8,38,38,38,38,38,38,38,38,24,58,58,58,24,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,95,58,58,2,24,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,95,58,58,2,24,38,38,38,38,38,38,38,38,38,38,38,38,38,38

,38,24,58,58,58,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="can you spot it",author="Fara",id="#1650726286",direction="left",cost=157,elevation=4,map=[0,0,97,39,0,0,0,0,0,0,0,39,97,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,0,0,0,0,0,39,0,0,0,0,0,39,0,0,0,0,0,0,33,33,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,34,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,34,34,34,0,0,0,0,0,0,0,0,18

,18,0,0,0,0,0,36,35,34,34,0,0,0,0,17,18,17,17,18,18,18,18,18,17,18,17,36,35,35,0,0,0,0,0,18,65,18,17,18,65,18,18,17,18,65,18,36,36,0,0,0,0,0,0,17,18,17,17,18,65,18,18,18,17,18,17,17,0,0,0,0,0,0,0,0,0,

0,0,0,0,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,37,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,37,37,37,0,

0,0,0,0,0,37,37,37,37,37,37,37,37,96,100,1,37,37,37,0,0,0,0,0,0,2,36,36,36,36,36,36,37,1,1,1,37,37,37,0,0,0,0,0,0,2,36,36,36,36,36,36,37,37,37,37,37,37,0,0,0,0,0,0,0,37,37,37,37,37,37,37,37,37,37,37,3

7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,37,37,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Defend baboons",author="Wolfdiman",id="#1650727571",direction="forward",cost=507,elevation=0,map=[1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,5,5,5,1,1,1

,1,1,1,1,1,1,1,1,1,45,45,45,45,5,5,5,5,45,5,5,75,1,1,1,1,1,1,1,45,45,45,1,1,93,5,5,94,1,75,5,5,75,1,1,1,1,1,45,45,45,45,45,1,1,6,6,1,1,1,75,5,5,75,1,1,1,1,45,1,1,1,45,1,1,7,7,1,1,1,1,75,5,5,1,1,1,1,45

,45,45,45,45,1,1,8,8,1,1,1,1,1,75,75,1,1,1,1,1,45,45,45,1,1,1,0,0,1,1,1,1,75,5,5,1,1,1,1,1,1,45,1,1,1,1,8,8,1,1,1,75,5,5,75,1,1,1,97,45,45,45,93,1,1,1,7,7,1,1,75,5,5,75,1,1,1,1,1,96,1,1,1,1,1,1,6,6,1,

1,1,96,96,1,1,1,1,1,5,5,5,5,5,5,5,76,96,96,76,5,5,5,5,5,5,5,1,1,5,5,75,75,75,5,5,76,5,5,76,5,5,75,75,75,5,5,1,1,5,5,75,75,75,5,5,1,1,1,1,5,5,75,75,75,5,5,1,1,99,5,5,5,5,5,1,5,100,100,5,1,5,5,5,5,5,99,

1,1,1,1,98,98,1,1,5,5,5,5,5,5,1,1,98,98,1,1,1,1,5,5,5,5,5,5,5,5,75,75,5,5,5,5,5,5,5,5,1,1,5,76,76,76,76,5,5,75,5,5,75,5,5,76,76,76,76,5,1,1,5,5,5,5,5,5,5,75,5,5,75,5,5,5,5,5,5,5,1,1,1,1,1,1,1,1,1,1,2,

2,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Not Mountain Escape",author="GandalfThePimp",id="#1650727764",direction="forward",cost=283,elevation=19,map=[0,2,2,1,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,

5,19,19,19,20,21,22,23,24,24,24,0,5,5,5,5,5,5,5,5,5,19,19,19,20,21,22,23,24,24,24,0,5,5,5,5,5,5,5,5,5,19,19,19,20,21,22,23,24,24,24,0,5,5,5,5,5,5,5,90,5,19,19,19,20,21,22,23,24,24,24,0,5,5,5,5,5,5,5,5

,5,19,19,19,0,0,0,0,24,24,24,0,6,6,6,5,5,90,5,5,5,18,18,18,0,0,0,0,24,24,24,0,7,7,7,5,5,5,5,5,5,17,17,17,0,0,0,0,24,24,24,0,8,8,8,5,5,5,5,90,5,16,16,16,0,0,0,0,24,24,24,0,9,9,9,5,5,5,5,5,1,15,15,15,0,

0,0,0,24,24,24,0,9,9,9,10,11,12,13,14,1,14,14,14,0,0,0,1,1,95,1,0,9,9,9,10,11,12,13,14,95,14,14,14,0,0,0,0,24,24,85,0,9,9,9,10,11,12,13,14,95,14,14,14,0,0,0,0,24,24,24,0,9,9,9,10,11,12,13,14,1,14,14,1

4,0,0,0,0,24,24,24,0,92,0,92,0,0,0,0,0,1,0,0,0,0,0,0,0,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,0,0,0,0,0,0,0,0,0,0,0,19,19,19,85,19,19,24,24,24,0,0,0,0,0,0,0,0,0,0,0,100,19,88,19,19,19,4,2

4,24,0,10,10,10,0,0,0,0,0,0,0,19,19,19,85,19,19,24,24,24,0,93,10,94,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,24]});}},

{function Run(){maps.push({name="SKY FALL",author="MUHAMMETS7",id="#1650728371",direction="forward",cost=252,elevation=-14,map=[0,0,0,0,0,0,0,0,24,2,2,24,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,

24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,2

0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19

,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,10,10,10,10,10,10,

10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,2,2,10,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="god not flex againv3",author="Fara",id="#1650728537",direction="forward",cost=258,elevation=5,map=[0,0,0,0,0,0,5,5,2,2,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,3,3,3,3,10,10,10,10,0,0,0,0,0,0,0,0,10,66,66,10,10,10,10,10,10,66,66,10,0,0,0,0,0,0,0,0,10,66,66,10,10,10,10,10,10,66,66,10,0,0,0,

0,0,0,0,0,14,69,69,14,14,14,14,14,14,69,69,14,0,0,0,0,0,0,0,0,14,69,69,14,14,14,14,14,14,69,69,14,0,0,0,0,0,0,0,0,14,69,69,69,69,69,69,69,69,69,69,14,0,0,0,0,0,0,0,0,14,69,69,69,69,69,69,69,69,69,69,1

4,0,0,0,0,0,0,0,0,14,14,14,10,10,69,69,10,10,14,14,14,0,0,0,0,0,0,0,0,0,0,0,14,14,69,69,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,69,69,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,66,66,10,10,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,10,66,66,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,91,91,91,91,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,91,

91,91,91,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,2,2,10,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="god not flex againv2",author="Fara",id="#1650729893",direction="forward",cost=280,elevation=5,map=[0,0,0,0,0,0,5,5,2,2,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,

0,0,0,0,0,0,0,15,15,15,15,15,5,5,5,5,5,5,15,15,15,15,15,0,0,0,0,15,15,15,15,15,15,92,92,92,92,15,15,15,15,15,15,0,0,0,0,15,92,92,92,15,15,15,15,15,15,15,15,92,92,92,15,0,0,0,0,24,24,24,24,24,24,24,24,

24,24,24,24,24,24,24,24,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,0,0,0,21,18,15,12,9,7,7,7,7,7,7,9,12,15,18,21,0,0,0,0,0,0,0,0,7,75,75,7,7,75,75,7,0,0,0,0,0,0,0,0,0,0,0,0,7,75,75,7,75

,75,75,7,0,0,0,0,0,0,0,0,0,0,0,0,7,75,75,7,75,75,75,7,0,0,0,0,0,0,0,0,0,0,0,0,7,75,75,7,7,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,7,75,75,7,7,0,0,0,0,0,0,0,0,0,0,0,0,7,75,75,75,75,75,75,7,0,0,0,0,0,0,0,0,

0,0,0,0,7,75,75,75,75,75,75,7,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,7,7,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="2 way",author="nutwoomy",id="#1650730728",direction="forward",cost=231,elevation=10,map=[99,20,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,8,97,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0

,0,0,0,0,0,20,20,19,18,17,16,15,14,76,76,14,13,12,11,10,9,8,8,0,0,20,20,19,18,17,16,15,14,76,76,14,13,12,11,10,9,8,8,0,0,20,20,0,0,0,0,0,14,14,14,14,0,0,0,0,0,8,8,0,98,20,20,98,0,1,1,0,0,89,89,0,0,1,1

,0,96,8,8,96,0,98,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,96,0,0,20,20,0,104,0,0,22,3,20,20,3,22,0,0,104,0,8,8,0,0,21,21,0,42,0,0,0,0,19,19,0,0,0,0,42,0,7,7,0,0,21,21,0,0,0,22,0,0,3,3,0,0,22,0,0,0,7,7,0,0,2

1,21,0,0,22,22,0,0,15,15,0,0,22,22,0,0,7,7,0,0,0,0,0,0,23,23,0,0,15,15,0,0,23,23,0,0,0,0,0,0,41,41,0,0,0,23,23,0,91,91,0,23,23,0,0,0,27,27,0,0,0,0,0,0,0,0,24,91,15,15,91,24,0,0,0,0,0,0,0,0,21,21,0,14,

0,0,24,14,15,15,14,24,0,0,14,0,7,7,0,0,21,21,0,14,0,34,24,14,0,0,14,24,34,0,14,3,7,7,0,0,21,21,0,14,0,0,24,14,0,0,14,24,0,0,14,0,7,7,0,0,0,0,0,0,0,0,24,24,24,24,24,24,0,0,0,0,0,0,0,0,89,89,0,1,1,0,0,0

,103,103,0,0,0,0,1,1,0,89,0,0,0,0,0,0,0,0,0,103,2,2,103,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="MyHeart",author="FLaN KS",id="#1650731340",direction="forward",cost=340,elevation=0,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,12,12,0,0,0,0,0,12,12,12,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,12,76,76,76,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,12,76,76,76,76,76,12,0,0,0,0,0,0,0,0,12,0,0,0,12,76,76,76,76,76,76,76,12,0,0,0,0,0,0,0,12,0

,0,0,12,76,76,76,76,76,76,76,76,12,0,0,0,0,0,0,12,0,0,0,12,76,76,76,76,76,76,76,76,76,12,0,0,0,0,0,12,0,0,0,0,12,76,76,76,76,76,76,76,76,76,12,0,0,0,0,12,12,12,12,12,12,76,76,76,76,76,76,76,76,76,76,1

2,12,0,0,0,0,0,0,0,12,76,76,76,76,76,76,76,76,76,12,0,12,0,0,0,0,0,0,12,76,76,76,76,76,76,76,76,76,12,0,0,12,0,0,0,0,0,0,12,76,76,76,76,76,76,76,76,12,0,0,0,12,0,0,0,0,0,0,12,76,76,76,76,76,76,76,12,0

,0,0,0,12,0,0,0,0,0,0,0,12,76,76,76,76,76,12,0,0,0,0,0,12,0,0,0,0,0,0,0,0,12,76,76,76,12,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,12,12,12,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0]});}},

{function Run(){maps.push({name="Volcanic Valley",author="wo0",id="#1650732382",direction="forward",cost=560,elevation=0,map=[1,1,1,1,1,1,21,5,2,2,5,21,1,1,1,1,1,1,1,1,1,1,1,1,1,1,21,5,5,5,5,21,1,1,1,

1,1,1,1,1,1,1,1,1,1,21,17,5,5,6,5,21,1,1,1,1,1,1,1,1,1,1,1,1,1,21,5,5,5,5,5,17,21,1,1,1,1,1,1,1,1,1,1,1,1,21,5,5,6,5,5,17,21,1,1,1,1,1,1,1,1,1,1,1,1,21,91,91,5,5,91,91,21,1,1,1,1,1,1,1,1,1,1,1,1,21,5,

5,91,91,6,5,21,1,1,1,1,1,1,1,76,76,1,1,1,5,5,5,5,5,5,5,21,21,1,1,1,1,1,76,76,76,76,76,76,76,76,26,26,5,5,5,5,5,1,1,76,76,76,76,76,76,76,76,76,76,76,26,26,76,76,26,76,76,76,76,76,76,76,76,76,76,76,76,7

6,76,76,26,76,76,76,26,76,76,76,76,76,76,76,76,76,76,76,76,1,5,26,26,76,76,76,26,26,76,76,76,76,76,76,76,76,76,1,1,1,5,5,5,5,5,5,5,26,76,76,76,76,76,76,76,76,1,1,1,1,21,5,5,5,5,5,5,5,5,1,1,1,76,76,76,

1,1,1,1,1,21,5,6,5,5,6,5,17,1,1,1,1,1,1,1,1,1,1,1,1,21,5,5,5,5,5,5,21,1,1,1,1,1,1,1,1,1,1,1,1,21,5,5,5,5,6,5,21,1,1,1,1,1,1,1,1,1,1,1,1,21,17,17,17,95,17,17,21,1,1,1,1,1,1,1,1,1,1,1,1,1,21,5,5,5,5,21,

1,1,1,1,1,1,1,1,1,1,1,1,1,1,21,5,2,2,5,21,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="is this a bossfight",author="Fara",id="#1650733582",direction="forward",cost=188,elevation=0,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,16,16,16,6,6,16,16,16,0,0,0,0,0,0,0,0,0,0,0,16,16,6,6,6,6,6,6,16,16,0,0,0,0,0,0,0,0,0,16,16,6,6,6,6,6,6,6,6,16,16,0,0,0,0,0,0,0,16,16,6,6,6,0,26,26,0,6,6,6,16,16,0,0,0,0,0,16,16,6

,6,6,0,0,26,26,0,0,6,6,6,16,16,0,0,0,0,16,6,6,6,0,0,26,26,26,26,0,0,6,6,6,16,0,0,0,0,16,6,6,0,0,26,26,0,0,26,26,0,0,6,6,16,0,0,0,0,16,6,6,26,26,26,0,0,0,0,26,26,26,6,6,16,0,0,0,0,16,6,6,26,26,26,0,0,0

,0,26,26,26,6,6,16,0,0,0,0,16,6,6,0,0,26,26,0,0,26,26,0,0,6,6,16,0,0,0,0,16,6,6,6,0,0,26,26,26,26,0,0,6,6,6,16,0,0,0,0,16,16,6,6,6,0,0,26,26,0,0,6,6,6,16,16,0,0,0,0,0,16,16,6,6,6,0,26,26,0,6,6,6,16,16

,0,0,0,0,0,0,0,16,16,6,6,6,6,6,6,6,6,16,16,0,0,0,0,0,0,0,0,0,16,16,6,6,6,6,6,6,16,16,0,0,0,0,0,0,0,0,0,0,0,16,16,16,95,95,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,2,2,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Temptation",author="lamp",id="#1650736357",direction="left",cost=156,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,2,34,34,0,0,77,77,77,77,77,77,77,77,77,77

,0,0,34,34,0,2,34,34,0,77,91,29,29,91,29,29,91,29,29,91,77,0,34,34,0,0,34,34,0,0,77,77,77,77,77,77,77,77,77,77,0,0,34,34,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,34,34,0,0,34,34,0,0,0,0,0,0,0,96,0,0,0,0,0,0,34,34,0,0,34,34,34,34,34,34,34,34,96,34,34,34,34,34,34,34,34,34,0,0,34,34,34,34,34,34,34,34,96,34,34,34,34,34,34,34,34,34,0,0,0,0,0,0,0,0,0,0,0,96,0,97,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Criss Cross",author="tilgep",id="#1650736669",direction="forward",cost=184,elevation=-4,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,24,17,17,24,0,0,0,0,0,0,0,0,0,0,0,15,15,15,16,16,16,17,17,18,18,18,19,19,19,0,0,0,0,0,0,15,15,15,16,16,16,17,17,18,18,18,19,19,19,0,0,0,0,0,0,14,14,0,0,0,24,24,24,24,0,0,0,20,2

0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,20,20,20,20,0,0,0,0,38,53,53,38,38,38,38,24,24,38,38,38,38,53,53,38,0,0,0,0,38,53,53,53,53,53,53,53,53,53,53,53,53,53,

53,38,0,0,0,0,38,53,53,53,53,53,53,53,53,53,53,53,53,53,53,38,0,0,0,0,1,0,1,38,38,38,38,53,53,38,38,38,24,53,24,0,0,0,0,0,0,20,0,0,0,0,39,53,53,39,0,24,53,53,24,0,0,0,0,0,0,0,0,0,0,0,39,53,53,39,0,24,

53,24,24,24,24,24,0,0,0,21,0,0,0,0,39,53,53,39,0,24,52,24,51,51,51,24,0,0,0,0,0,0,0,0,39,53,53,39,0,24,52,52,51,100,51,24,0,0,0,42,0,0,0,0,39,53,53,39,0,24,24,24,51,51,51,24,0,0,0,100,0,0,0,0,0,13,13,

0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Funny trigger",author="fantasy",id="#1650738265",direction="right",cost=412,elevation=-16,map=[24,2,2,24,24,24,24,24,24,24,24,24,24,99,24,24,24,24,24,24,24,22,22,22,94

,22,22,94,22,22,22,22,22,22,22,22,22,22,22,24,24,22,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,93,24,24,94,20,18,18,18,18,18,18,18,18,18,18,18,18,18,18,20,22,24,24,22,20,18,16,16,16,16,16,16,16,1

6,16,16,16,16,18,20,22,24,24,22,20,18,16,14,14,14,14,14,14,14,14,14,14,16,18,20,22,24,24,94,20,18,16,14,12,12,12,12,12,12,12,12,14,16,18,20,22,24,24,22,20,18,16,14,12,10,10,10,10,10,10,12,14,16,18,20,

22,24,97,22,20,18,16,14,12,10,8,8,8,8,10,12,14,16,18,20,22,24,24,22,20,18,16,14,12,10,8,6,6,8,10,12,14,16,18,20,22,24,24,22,20,18,16,14,12,10,8,6,6,1,10,12,14,16,18,20,22,104,24,22,20,18,16,14,12,10,8

,1,6,96,1,12,14,16,18,20,22,24,24,22,20,18,16,14,12,10,10,10,1,6,6,1,14,16,18,20,22,24,24,22,20,18,16,14,12,12,12,12,12,1,6,98,1,16,93,20,22,24,24,22,93,18,16,14,14,14,14,14,14,14,1,6,6,1,18,20,22,24,

24,22,20,18,16,16,16,16,16,16,16,93,16,1,6,101,1,20,22,24,24,22,20,18,18,18,18,18,18,18,18,18,18,18,1,6,6,1,1,1,24,22,20,20,20,20,20,20,20,20,20,20,20,20,20,1,6,103,6,2,24,22,22,22,22,22,22,22,22,22,2

2,22,22,22,22,22,1,1,6,2,24,24,24,24,24,24,24,24,24,102,24,24,24,24,24,24,24,24,1,1]});}},

{function Run(){maps.push({name="strafe strafe",author="Fara",id="#1650739318",direction="left",cost=171,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,0,0,2,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,0,0,2,34,34,34,34,34,34,34,34,34,34,34,34,3

4,34,34,34,34,0,0,34,34,34,34,34,34,34,0,0,0,98,0,0,0,0,34,34,34,0,0,0,0,0,96,0,0,0,0,0,0,98,0,0,0,0,0,34,0,0,0,0,0,0,96,0,0,0,0,0,0,98,0,0,0,0,0,34,0,0,0,0,0,0,96,0,0,0,0,0,0,98,0,0,0,0,0,19,0,0,0,0,

0,0,96,0,0,0,0,0,0,98,0,0,0,0,0,34,0,0,0,34,34,34,34,34,0,0,0,0,0,98,0,0,0,0,0,34,0,0,0,34,100,34,34,34,0,0,0,0,99,34,34,34,0,0,0,19,0,0,0,34,97,34,34,34,0,0,0,67,34,34,34,34,67,0,0,34,0,0,0,0,0,0,34,

0,0,0,0,0,67,67,67,67,0,0,0,34,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,34,19,34,19,34,19,34,19,34,19,34,19,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Unleashed",author="tilgep",id="#1650739631",direction="right",cost=248,elevation=-5,map=[0,0,0,0,0,19,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,0,0,0,0,0,19,19,0,0,0,0,0,0,0,96,19,19,64,19,19,19,0,0,0,19,19,19,0,0,0,0,0,0,0,0,

96,19,19,19,19,19,19,19,19,19,96,19,0,0,0,0,0,0,0,0,19,96,19,19,64,19,19,19,19,96,19,19,0,0,0,0,0,0,0,0,19,19,96,19,19,96,96,96,96,19,19,19,0,0,0,0,0,0,0,0,19,19,19,96,96,19,19,19,19,19,19,0,0,0,0,0,0

,0,0,0,19,19,19,19,19,19,64,19,19,19,98,0,0,0,0,0,0,0,0,0,19,19,64,19,19,19,19,19,98,98,0,0,0,0,0,0,0,0,40,0,19,19,19,19,19,19,98,98,19,0,0,0,0,0,0,0,0,0,0,1,0,19,19,19,19,98,19,19,18,18,0,0,0,0,0,0,0

,41,0,0,1,96,96,96,1,19,0,64,18,18,18,0,0,0,0,0,0,97,0,1,19,19,19,19,19,1,98,0,0,18,18,17,16,15,14,14,0,0,1,0,19,19,19,19,19,18,18,98,18,18,18,17,16,15,14,2,0,0,0,0,0,19,19,19,19,99,18,98,18,18,18,17,

16,15,14,2,0,0,0,0,0,0,19,19,19,18,18,98,18,18,18,17,16,15,14,14,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Throw Grenades",author="fantasy",id="#1650739974",direction="right",cost=435,elevation=-9,map=[1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,24,24,24,24,24,24,24,24,24,24,

24,24,24,24,24,24,24,24,1,1,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,1,1,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,5,5,5,3,5,5,5,3,

5,5,3,5,5,5,3,5,5,5,1,1,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,1,1,24,24,19,66,19,24,24,24,24,24,24,24,24,19,66,19,24,24,1,1,0,24,24,69,24,24,0,0,0,0,0,0,24,24,69,24,24,0,1,1,0,24,24,69

,24,24,0,0,0,0,0,0,24,24,69,24,24,0,1,1,24,24,19,66,19,24,24,24,24,24,24,24,24,19,66,19,24,24,1,1,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,1,1,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16

,16,16,16,1,1,24,24,16,66,16,24,24,24,24,24,24,24,24,16,66,16,24,24,1,1,0,24,21,69,21,24,0,0,0,0,0,0,24,21,69,21,24,0,1,1,0,24,21,69,21,24,0,0,0,0,0,0,24,21,69,21,24,0,1,1,24,24,16,66,16,24,24,24,24,2

4,24,24,24,16,66,16,24,24,1,1,1,1,16,16,16,16,16,16,16,16,16,16,16,16,16,16,1,1,2,1,97,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,96,15,2,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,1,1,1]});}},

{function Run(){maps.push({name="ay Race",author="tilgep",id="#1650741966",direction="left",cost=297,elevation=-14,map=[24,24,24,24,24,0,1,0,2,2,22,22,0,0,0,0,0,0,0,0,24,7,7,7,7,0,0,0,22,22,22,22,21,2

1,21,21,21,21,21,0,24,7,7,7,7,0,0,0,22,22,22,22,21,21,21,21,21,21,21,0,24,7,4,7,24,0,0,1,22,22,22,22,21,21,21,21,21,20,20,0,100,24,24,24,24,0,0,0,1,0,0,0,1,1,1,0,0,20,20,20,24,24,24,24,24,0,0,0,0,1,1,

1,0,0,0,1,0,20,20,20,8,3,8,3,8,1,0,13,13,14,14,14,14,14,0,1,0,20,20,20,8,8,8,8,8,0,1,13,13,14,14,14,14,14,14,1,0,20,20,20,8,8,44,8,8,1,13,13,13,13,0,1,14,14,14,1,0,0,20,20,8,8,8,8,8,1,13,13,0,0,1,0,15

,15,15,1,0,0,20,20,2,8,8,8,1,0,13,13,0,1,0,15,15,15,0,1,0,0,19,19,2,8,44,8,1,13,13,13,1,0,15,15,15,15,0,1,0,0,19,19,8,8,8,1,13,13,13,13,1,0,15,15,15,0,1,0,0,19,19,19,24,8,8,1,13,13,0,1,0,15,15,15,15,0

,1,0,19,19,19,19,24,9,9,1,12,12,1,0,0,15,15,15,0,0,1,0,19,19,19,19,24,3,9,1,12,12,0,1,16,16,0,0,0,1,0,0,19,19,19,0,24,9,9,1,11,11,1,0,16,16,0,1,1,0,0,0,18,18,0,0,0,10,10,10,11,11,0,1,16,16,16,0,0,0,0,

18,18,18,0,0,0,10,10,10,11,11,1,0,16,16,16,17,17,17,17,18,18,18,0,0,0,0,0,0,0,1,0,0,16,16,16,17,17,17,17,18,18,18,0,0]});}},

{function Run(){maps.push({name="Inferno v1",author="fantasy",id="#1650742365",direction="left",cost=267,elevation=-12,map=[0,18,20,22,24,24,24,24,24,24,95,24,99,0,0,0,0,2,2,0,0,16,1,0,0,0,24,0,0,0,1,

0,0,0,0,0,0,44,44,0,0,14,0,1,0,0,24,0,0,1,0,0,0,0,0,0,0,44,44,0,0,12,0,0,1,0,96,0,1,0,0,0,0,0,0,0,0,92,92,0,0,12,0,0,0,1,64,1,0,0,0,0,0,77,0,0,0,0,0,0,2,12,0,0,1,64,64,64,0,0,0,0,77,24,77,0,0,0,0,0,2,

12,0,1,64,64,64,64,0,0,0,0,0,77,0,0,0,0,0,0,0,12,0,1,93,64,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,1,64,64,64,0,0,0,77,0,0,0,0,0,0,0,0,0,14,0,77,24,1,64,1,0,0,77,24,77,0,0,0,0,44,44,0,0,15,0,77,24,1,44

,0,0,0,0,77,0,0,0,0,0,64,64,1,0,16,0,77,24,1,44,0,0,0,0,0,0,0,0,0,0,64,64,1,0,17,0,77,24,1,44,44,0,0,0,0,0,0,92,44,64,64,64,1,0,18,0,77,24,1,44,44,0,0,0,0,0,0,92,44,64,64,64,0,1,19,1,77,24,1,0,0,0,0,0

,0,0,0,0,0,0,64,64,0,1,98,1,77,24,1,0,0,0,0,0,0,0,0,0,0,0,44,44,0,1,19,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,19,19,19,19,9,76,76,9,9,9,9,9,9,9,0,0,0,0,0,0,19,19,19,19,3,9,9,9,76,76,76,76,76,9,0,0,0,65,6

5,0,94,19,19,19,9,76,76,9,97,9,9,9,9,9,9,9,9,9,9,0]});}},

{function Run(){maps.push({name="rotate",author="issic",id="#1650744761",direction="right",cost=145,elevation=-5,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,44,85,44,0,0,0,0,14,14,0,0,0,92,44,0,4

4,0,0,0,44,100,1,85,0,0,0,0,12,12,0,0,0,0,0,1,100,44,0,0,44,1,67,44,0,0,0,0,12,12,0,0,0,0,0,67,1,0,0,0,0,44,44,0,0,0,0,0,10,10,0,0,0,0,0,0,0,44,0,0,0,92,0,0,0,0,0,0,12,12,0,0,0,0,0,0,44,0,0,0,0,0,0,0,

0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,14,14,0,0,0,0,0,0,44,0,0,0,25,25,25,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,25,97,25,0,0,0,0,0,14,14,36,0,38,0,40,0,42,0,0,0,25,25,25,0,0,0,0,0,12,12,0,0

,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,14,14,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,96,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0

,0,0,0,14,14,0,0,0,0,0,1,0,0,0,0,44,1,67,0,0,0,0,0,14,89,12,12,10,10,9,95,89,9,2,0,44,100,1,0,0,0,0,0,14,14,12,12,10,10,9,95,9,86,2,0,0,44,0,44,0,44,0,44,0,0,0,0,0,0,0,1,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,100,0]});}},

{function Run(){maps.push({name="santa",author="FLaN KS",id="#1650745147",direction="forward",cost=245,elevation=0,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,92,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,76,76,5,76,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,76,76,76,5,5,5,5,5,0,0,0,0,0,0,0,0,0,5,76,76,76,76,5,5,0,0,0,0,5,

5,0,0,0,0,0,0,0,5,76,76,76,76,76,0,91,45,45,0,0,0,5,0,0,0,0,0,5,76,76,76,76,76,76,0,45,1,45,0,0,0,0,5,0,0,0,0,5,76,76,76,76,76,76,0,45,45,45,0,0,0,0,0,5,0,0,0,5,76,76,76,76,76,76,0,45,45,100,0,0,0,0,0

,5,5,0,0,5,76,76,76,76,76,76,0,45,45,45,0,0,0,0,0,5,0,0,0,5,76,76,76,76,76,76,0,45,1,45,0,0,0,0,5,0,0,0,0,0,5,76,76,76,76,76,0,91,45,45,0,0,0,5,0,0,0,0,0,0,0,5,5,5,5,5,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,

0,0,0,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0]});}},

{function Run(){maps.push({name="Cold Hold",author="Midran Kidran",id="#1650745358",direction="forward",cost=254,elevation=9,map=[2,2,1,1,0,0,0,0,14,14,0,14,0,0,14,0,14,14,14,0,5,5,1,1,0,0,0,0,14,14,0

,14,0,14,14,0,0,14,14,14,5,5,1,1,0,0,0,0,14,14,0,0,0,0,0,0,0,14,14,14,5,1,1,1,0,0,0,0,14,14,1,1,1,0,0,0,0,14,14,0,5,5,5,1,0,0,0,0,14,14,14,14,1,1,1,0,0,0,14,14,5,5,5,1,0,0,0,0,0,0,1,96,1,97,1,0,0,14,1

4,14,5,5,5,1,0,0,0,0,0,0,1,14,1,15,1,0,0,14,14,0,5,5,5,1,0,0,0,0,0,0,1,14,1,0,1,0,0,14,14,14,1,1,5,1,0,0,1,1,1,1,1,14,1,15,1,0,0,1,95,1,5,5,5,1,0,0,0,0,0,0,0,14,1,0,1,0,0,1,14,1,5,5,5,1,1,0,0,0,0,15,1

,14,1,14,1,0,0,1,14,1,0,0,0,1,1,0,0,0,0,0,1,14,1,0,1,0,0,1,14,1,0,0,0,1,1,0,0,0,0,0,1,14,1,0,1,0,0,0,14,14,5,5,5,1,1,0,0,0,0,14,14,95,1,14,1,0,0,0,14,14,5,5,5,1,1,0,0,0,0,1,1,14,1,0,1,0,0,0,14,0,5,1,1

,1,0,0,0,0,0,1,14,14,14,14,1,0,0,0,14,14,5,1,1,1,1,1,1,1,1,1,14,14,1,1,1,0,0,0,0,14,5,1,1,1,5,5,1,5,5,14,14,14,1,0,0,0,0,0,14,14,5,1,1,1,5,5,95,5,3,14,14,14,1,0,0,0,0,0,14,14,5,5,5,5,5,5,1,5,5,14,14,1

4,1,0,0,0,0,0,2,2]});}},

{function Run(){maps.push({name="I Dont Even Know",author="DankArab",id="#1650746318",direction="right",cost=427,elevation=3,map=[1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,1,1,1,1,

1,1,1,1,1,1,1,1,1,1,1,1,1,1,48,3,1,1,66,66,66,66,66,66,48,1,1,48,48,48,66,66,66,66,66,48,48,66,66,1,1,1,1,1,100,1,1,48,48,48,1,1,1,1,1,1,48,1,1,1,1,1,1,1,1,1,1,93,48,0,1,1,1,1,1,1,48,48,1,1,1,1,1,1,1,

1,1,1,1,1,1,1,1,1,1,1,1,48,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,48,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,48,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,95,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,85,1,1,1,1,1

,1,1,1,1,1,1,1,1,1,1,1,1,1,1,48,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,48,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,48,1,1,1,1,1,1,1,1,1,94,48,0,1,1,1,1,1,1,48,48,1,1,1,1,1,1,1,1,1,48,48,48,1,1,1,1,1,1,48,

1,1,1,1,1,1,1,1,1,1,48,48,48,66,66,66,66,66,48,48,66,66,66,1,1,1,1,2,1,1,1,1,1,1,1,1,1,48,1,1,1,1,66,66,66,66,48,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}}

,

{function Run(){maps.push({name="Moldy Boldy",author="Midran Kidran",id="#1650748252",direction="forward",cost=228,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,10,10,0,0,

0,0,0,1,1,1,1,97,10,10,1,0,0,0,0,0,0,0,0,0,0,0,0,1,10,10,99,0,1,0,1,0,0,0,0,10,10,10,10,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,10,1,10,1,0,10,0,10,10,10,10,10,10,0,10,0,1,10,1,10,0,1,

0,1,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,0,0,1,10,10,0,10,1,1,10,10,10,10,1,1,10,0,10,10,1,0,10,1,1,1,1,1,1,1,10,10,10,10,1,1,1,1,1,1,1,10,95,1,0,0,0,0,0,1,1,95,95,1,1,0,0,0,0,0,1,95,10,1,0,0,1,1,1,1,10,0,0,

10,1,1,1,1,0,0,1,10,10,1,0,0,1,10,10,10,10,10,10,10,10,10,10,1,0,0,1,10,0,1,1,1,1,10,1,1,1,10,10,1,1,1,10,1,1,1,1,0,10,10,10,10,10,10,1,0,1,10,10,1,0,1,10,10,10,10,10,10,1,1,1,1,1,1,1,0,1,10,10,1,0,1,

1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,10,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,95,95,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,98,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,96,96,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,

2,1,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Parkour PARKOUR",author="WrexGigarton",id="#1650750505",direction="forward",cost=922,elevation=5,map=[2,2,1,102,76,43,76,42,76,41,41,76,39,76,36,76,34,76,33,104,7,7,44

,44,76,43,76,42,76,41,41,76,39,76,36,76,34,76,33,33,7,7,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,7,90,76,76,76,76,76,76,76,43,43,1,43,76,44,100,44,76,34,34,7,7,6,5,76,76,76,76,76,76,76,1,

76,76,76,76,76,76,76,76,90,7,6,5,76,76,76,76,76,42,42,1,42,76,40,76,38,76,36,36,7,7,76,76,76,76,76,76,76,76,76,1,42,76,40,76,38,76,36,36,90,7,76,76,76,76,76,76,76,40,40,76,1,1,1,1,1,1,76,76,7,7,76,76,

76,76,76,76,76,76,76,76,76,76,76,76,76,76,12,12,7,92,35,35,76,36,76,37,76,58,58,76,36,76,35,76,34,76,12,12,7,92,35,35,76,36,76,37,76,58,58,76,36,76,35,76,34,76,12,12,7,7,76,76,76,76,76,76,76,76,76,76,

76,76,76,76,76,76,103,103,7,7,76,76,76,76,76,76,76,36,36,76,76,76,76,76,76,76,12,12,91,91,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,101,101,7,7,6,5,76,76,76,76,76,34,34,76,76,76,76,76,76,76,12,1

2,91,91,6,5,76,76,76,76,76,76,76,76,76,76,76,76,76,76,98,98,7,7,76,76,76,76,76,76,76,32,32,76,76,76,76,76,76,76,12,12,91,91,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,96,96,7,7,76,76,76,76,76,76,

76,31,31,76,76,76,76,76,76,76,12,12,97,7,76,28,76,29,76,30,76,31,99,76,76,76,76,76,76,76,2,2]});}},

{function Run(){maps.push({name="Tetris",author="tilgep",id="#1650751009",direction="left",cost=149,elevation=-10,map=[0,0,0,0,0,0,0,0,21,0,0,0,23,0,2,2,0,0,0,0,19,0,0,20,20,20,20,0,21,21,0,0,23,0,23,

23,0,23,23,23,19,0,1,0,0,0,0,0,21,0,0,23,23,0,23,23,0,0,0,23,19,19,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,21,21,21,0,0,21,21,21,0,0,0,1,0,19,19,19,0,20,20,0,0,21,0,1,0,0,21,0,0,17,

0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,1,17,0,17,17,0,1,1,0,20,0,1,0,20,0,0,0,20,0,0,0,17,0,0,17,0,0,0,0,0,0,0,20,20,0,0,20,20,20,0,0,17,0,0,17,0,17,0,0,0,19,0,20,0,0,0,0,0,0,0,19,0,0,1,0,0,17,0,19,19,1

9,0,0,0,19,19,0,0,0,19,19,1,0,0,0,0,17,0,0,0,0,0,0,0,19,19,0,19,0,19,0,0,15,15,15,0,17,0,1,1,0,17,17,0,0,0,1,19,0,0,0,0,15,0,0,1,0,0,1,1,0,17,17,0,0,0,0,19,19,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,2

0,20,2,13,13,0,0,0,17,17,0,1,0,0,0,19,0,1,0,20,20,0,2,13,13,0,0,1,0,17,17,0,0,18,0,19,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,18,18,0,19,19,0,20,20,20,20,1,0,15,15,15,0,17,17,17,0,0,18,0,0,0,0,0,0,0,0,0,0,0,

0,0,1,0,0,17,0,0,0,0,0,19,19,19,19,0,0]});}},

{function Run(){maps.push({name="Foxy Boxy",author="Midran Kidran",id="#1650751615",direction="right",cost=415,elevation=19,map=[2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,5,1,1,1,1,1,1,1,1,1,24,24,24,

24,90,24,24,1,1,5,5,1,1,1,5,5,5,5,5,1,24,1,24,1,24,1,24,98,2,5,5,1,1,1,95,1,5,5,5,1,24,24,24,24,24,24,24,98,2,5,5,1,1,1,5,1,5,90,5,1,24,1,24,1,24,1,24,1,1,5,5,1,97,1,5,1,5,90,5,1,24,24,24,24,24,24,24,

1,0,5,5,1,5,1,5,1,5,5,90,1,24,1,24,1,24,1,24,1,0,5,5,1,0,1,5,1,5,5,5,1,90,24,24,24,24,24,24,1,0,90,5,1,0,1,5,1,5,5,5,1,24,1,24,1,24,1,24,1,0,90,5,1,5,1,5,1,5,3,5,1,24,24,24,24,24,24,24,1,0,5,5,1,0,1,5

,1,90,19,19,1,24,1,24,1,24,1,24,1,0,5,5,1,0,1,5,1,19,19,19,1,24,24,24,24,24,24,24,1,0,5,90,1,5,1,5,1,19,90,19,1,24,1,24,1,24,1,24,1,1,5,5,1,0,1,5,1,19,19,19,1,24,24,24,24,24,24,24,1,99,5,5,1,5,1,5,1,1

9,90,19,1,24,1,24,1,90,1,24,1,24,5,5,5,5,1,5,1,19,19,19,1,24,24,24,24,24,24,24,1,0,5,5,1,0,1,5,1,1,95,1,1,1,1,91,91,91,1,1,1,24,5,5,1,1,1,5,1,19,19,19,24,24,24,24,24,24,24,24,1,0,5,5,96,5,5,5,1,19,19,

3,24,24,24,24,24,24,24,24,1,0,5,5,96,5,5,5,1,19,19,19,24,24,24,24,24,24,24,24,24,24]});}},

{function Run(){maps.push({name="Squiddysquad tryouts",author="stu",id="#1650755073",direction="forward",cost=38,elevation=0,map=[0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Pillars",author="Wolfdiman",id="#1650755719",direction="left",cost=194,elevation=10,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,2,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,3,5,3,1

1,0,0,0,0,0,0,55,55,55,0,0,0,0,0,0,11,45,45,45,11,0,0,0,0,0,55,55,55,55,55,0,0,0,0,0,45,45,45,45,45,0,15,15,15,55,55,21,21,21,55,55,0,0,0,45,45,11,11,11,45,45,2,15,15,55,55,21,41,21,55,55,0,0,0,45,45,

11,31,11,45,45,2,15,15,55,55,21,21,21,55,55,0,0,0,45,45,11,11,11,45,45,0,0,0,0,55,55,55,55,55,0,0,0,0,0,45,45,45,45,45,0,0,0,0,0,0,55,55,55,0,0,0,0,0,0,0,45,45,45,0,0,0,0,0,0,0,54,54,54,0,0,0,0,0,0,0,

46,46,46,0,0,0,0,0,0,0,53,53,53,0,0,0,0,0,0,0,47,47,47,0,0,0,0,0,0,0,52,52,52,0,0,0,0,0,0,0,48,48,48,0,0,0,0,0,0,52,52,52,52,52,0,0,0,0,0,48,48,48,48,48,0,0,0,0,52,52,18,18,18,52,52,51,50,49,48,48,14,

14,14,48,48,0,0,0,52,52,18,38,18,52,52,51,50,49,48,48,14,34,14,48,48,0,0,0,52,52,18,18,18,52,52,51,50,49,48,48,14,14,14,48,48,0,0,0,0,52,52,52,52,52,0,0,0,0,0,48,48,48,48,48,0,0,0,0,0,0,52,52,52,0,0,0

,0,0,0,0,48,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="hobs",author="FLaN KS",id="#1650758524",direction="forward",cost=401,elevation=0,map=[24,2,2,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,23,23,23,23,23,23,23

,23,23,23,23,23,23,23,23,23,23,23,24,24,23,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,23,24,24,23,22,21,21,21,21,21,21,21,21,21,21,21,21,21,21,22,23,24,24,23,22,21,21,19,19,19,19,19,19,19,19,19,1

9,19,21,22,23,24,24,23,22,21,21,19,18,18,18,18,18,18,18,18,18,19,21,22,23,24,24,23,22,21,21,19,18,17,17,17,17,17,17,17,18,19,21,22,23,24,24,23,22,21,21,19,18,17,16,16,16,16,16,17,18,19,21,22,23,24,24,

23,22,21,21,19,18,17,16,15,15,15,16,17,18,19,21,22,23,24,24,23,22,21,21,19,18,17,16,15,14,15,16,17,18,19,21,22,23,24,24,23,22,21,21,19,18,17,16,15,100,15,16,17,18,19,21,22,23,24,24,23,22,21,21,19,18,1

7,16,15,15,15,16,17,18,19,21,22,23,24,24,23,22,21,21,19,18,17,16,16,16,16,16,17,18,19,21,22,23,24,24,23,22,21,21,19,18,17,17,17,17,17,17,17,18,19,21,22,23,24,24,23,22,21,21,19,18,18,18,18,18,18,18,18,

18,19,21,22,23,24,24,23,22,21,21,19,19,19,19,19,19,19,19,19,19,19,21,22,23,24,24,23,22,21,21,21,21,21,21,21,21,21,21,21,21,21,21,22,23,24,24,23,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,23,24,24

,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,2,2,24]});}},

{function Run(){maps.push({name="trust",author="stu",id="#1650759240",direction="forward",cost=550,elevation=5,map=[102,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,102,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,

9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,1,1,1,1,1,96,96,1,1,98,98,1,1,1,1,1,9,9,9,9,9,9,9,1,9,9,9,1,1,9,9,9,1,9,9,9,9,9,9,9,9,9,9,1,9,76,9,1,1,9,76,9,1,9,9,

9,9,9,9,9,9,9,9,1,14,79,14,1,1,14,79,14,1,9,9,9,9,9,9,9,9,9,9,1,14,79,14,1,1,14,79,14,1,9,9,9,9,9,101,101,9,9,9,1,14,79,14,1,1,14,79,14,1,9,9,9,101,101,101,101,9,9,9,1,14,79,14,1,1,14,79,14,1,9,9,9,10

1,101,101,101,9,9,9,1,14,79,14,1,1,14,79,14,1,9,9,9,101,101,101,101,9,9,9,1,14,79,14,1,1,14,79,14,1,9,9,9,101,101,101,101,9,9,9,1,9,76,9,1,1,9,76,9,1,9,9,9,101,101,101,101,9,9,9,24,9,9,9,1,1,9,9,9,24,

9,9,9,101,101,101,101,9,9,9,24,3,9,9,1,1,9,9,3,24,9,9,9,101,101,101,101,1,99,9,24,9,9,9,1,1,9,9,9,24,9,97,1,101,101,101,101,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,101,101,9,9,9,9,9,9,9,95,95,95,95,95,95,9,9,

9,9,9,9,9,9,9,9,9,9,9,9,95,95,2,2,95,95,9,9,9,9,9,9,9]});}},

{function Run(){maps.push({name="Divided Holds",author="Skadoosh",id="#1650760738",direction="forward",cost=377,elevation=0,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0

,0,0,0,0,24,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,24,24,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,3,24,24,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,24,24,0,0,67,0,0,0,67,0,0,

0,67,0,0,0,67,0,0,4,24,1,1,1,65,1,1,1,65,1,1,1,65,1,1,1,65,1,1,1,1,1,1,1,65,1,1,1,65,1,1,1,65,1,1,1,65,1,1,1,1,1,100,1,65,1,100,1,65,1,100,1,65,1,100,1,65,1,100,1,1,1,95,1,65,1,95,1,65,1,95,1,65,1,95,

1,65,1,95,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,

5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,2,2,5,5,5,5,5,5,5,5,5,5]});}},

{function Run(){maps.push({name="IDK if this works",author="Skadoosh",id="#1650763806",direction="right",cost=553,elevation=12,map=[5,2,2,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,1,5,5,5,5,1,1,1,1,1,1,1,1,1,1,

1,1,1,1,66,2,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,66,2,9,9,9,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,66,37,45,45,45,45,1,1,67,67,66,5,5,66,66,66,66,66,66,66,66,37,45,45,45,45,25,25,67,92,66,5,5,66,66,66,66,66,66

,66,66,37,45,45,45,45,25,25,67,67,66,5,5,66,66,66,66,66,66,66,66,37,46,46,46,46,26,26,67,92,66,5,5,66,66,66,66,66,66,66,66,37,47,47,47,47,27,27,67,67,66,5,5,67,67,67,67,67,67,67,67,37,48,48,48,48,28,2

8,67,92,66,5,5,37,37,37,37,37,37,37,37,37,49,49,49,49,29,29,67,67,66,5,5,37,0,0,0,0,0,0,0,0,50,50,50,50,30,30,67,92,66,5,5,37,0,0,0,0,0,0,0,0,51,51,51,51,31,31,67,67,66,5,5,37,0,0,0,0,0,0,0,0,52,52,52

,52,32,32,67,92,66,5,5,37,0,0,0,0,0,0,0,0,53,53,53,53,33,33,67,67,66,5,5,37,37,37,37,37,37,37,37,37,54,54,54,54,34,34,67,92,66,5,5,67,67,67,67,67,67,67,67,37,54,54,54,54,34,34,67,67,66,5,5,66,66,66,66

,66,66,66,66,37,54,54,54,54,35,35,67,92,66,5,5,66,66,66,66,66,66,66,66,37,54,54,54,54,36,36,67,67,66,5,5,66,66,66,66,66,66,66,66,37,54,54,54,54,37,37,95,95,95,95,37,37,37,37,37,37,37,37,37,37]});}},

{function Run(){maps.push({name="wholettheboxout",author="iProbie",id="#1650764869",direction="forward",cost=163,elevation=0,map=[0,0,0,0,0,0,0,5,5,2,2,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,5,90,5,90,5,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,5,90,5,90,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,90,5,90,5,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,5,90,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,5,

5,5,90,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,90,5,90,5,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,90,5,90,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,90,5,90,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,5,5,5,90,90,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,5,90,90,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,5,5,90,90,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,90,5,5,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,90,5,5,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,5,90,5,90,90,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,5,5,5,90,5,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,90,90,5,90,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,2,2,5,5,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Cursed Sloper",author="Skadoosh",id="#1650768362",direction="forward",cost=732,elevation=17,map=[5,5,5,5,5,5,5,5,5,2,2,5,5,5,5,5,5,5,5,5,67,6,6,6,6,6,6,6,6,6,6,6,6,6,6

,6,6,6,6,67,67,66,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,66,67,67,66,66,8,8,8,8,8,8,8,8,8,8,8,8,8,8,66,66,67,67,66,66,67,9,9,9,9,9,9,9,9,9,9,9,9,67,66,66,67,67,66,66,67,9,10,10,10,10,10,10,10,10,10,10,9,67,6

6,66,67,67,66,66,67,9,66,11,11,11,11,11,11,11,11,66,9,67,66,66,67,67,66,66,67,9,66,66,12,12,12,12,12,12,66,66,9,67,66,66,67,67,66,66,67,9,66,66,66,13,13,13,13,66,66,66,9,67,66,66,67,67,66,66,67,9,66,6

6,66,67,14,14,67,66,66,66,9,67,66,66,67,67,66,66,67,9,66,66,66,67,15,15,67,66,66,66,9,67,66,66,67,67,66,66,67,9,66,66,66,67,16,16,67,66,66,66,9,67,66,66,67,67,66,66,67,9,66,66,66,67,17,17,67,66,66,66,

9,67,66,66,67,67,66,66,67,9,66,66,66,67,18,18,67,66,66,66,9,67,66,66,67,67,66,66,67,9,66,66,66,67,19,19,67,66,66,66,9,67,66,66,67,67,66,66,67,9,66,66,66,67,20,20,67,66,66,66,9,67,66,66,67,67,66,66,67,

9,66,66,66,67,21,21,67,66,66,66,9,67,66,66,67,67,66,66,67,9,66,66,66,67,22,22,67,66,66,66,9,67,66,66,67,67,66,66,67,9,66,66,66,67,23,23,67,66,66,66,9,67,66,66,67,67,66,66,67,9,66,66,66,67,2,2,67,66,66

,66,9,67,66,66,67]});}},

{function Run(){maps.push({name="Traversal",author="tormacoy",id="#1650798819",direction="forward",cost=238,elevation=10,map=[0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,24,24,24,0,0,0,0,0

,0,0,0,0,0,0,0,5,5,0,0,0,77,77,24,24,24,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,77,77,77,24,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,77,77,0,0,0,67,24,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,67,24,24,0,0,0,0,5,5,0,0,0

,0,0,0,0,0,0,0,0,67,67,24,24,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,12,13,14,95,15,15,15,3,44,44,1,0,0,0,7,7,0,0,0,0,12,13,14,95,15,15,15,0,44,44,100,0,0,0,7,7,0,0,0,0,12,13,0,0,15,

15,15,3,44,44,1,0,0,0,8,8,9,9,10,10,12,13,0,0,0,35,35,0,0,0,0,24,77,0,8,8,9,9,10,10,10,0,0,0,33,0,33,0,0,0,0,24,77,0,9,9,1,67,67,24,10,0,0,0,32,0,0,32,0,0,0,24,77,0,9,10,1,24,67,67,4,0,0,33,32,55,55,0

,0,0,0,24,77,0,11,11,12,12,13,13,14,95,34,0,32,55,55,0,0,0,0,24,77,0,11,11,12,12,13,13,14,95,34,0,32,69,69,0,0,0,0,24,77,0,0,0,0,0,0,0,0,0,0,33,0,69,69,0,0,0,0,24,77,77,77,0,0,0,0,0,0,0,0,0,0,55,55,0,

0,0,0,24,24,24,77,77,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0]});}},

{function Run(){maps.push({name="ladders",author="chong",id="#1650801231",direction="forward",cost=458,elevation=14,map=[1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1

,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,65,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,65,1,1,3,3,3,3,3,3,3,3,3

,3,3,3,3,3,3,3,3,3,1,1,24,24,24,24,24,24,24,24,65,65,24,24,24,24,24,24,24,24,1,1,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,1,1,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,1,1,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,1,1,14,14,14,14,14,14,14,14,1

4,14,14,14,14,14,14,14,14,14,1,1,14,14,14,14,13,13,13,13,13,13,13,13,13,13,14,14,14,14,1,1,14,14,14,14,13,15,15,15,15,15,15,15,15,13,14,14,14,14,1,1,14,14,14,14,13,15,17,17,17,17,17,17,15,13,14,14,14,

14,1,1,14,14,14,14,13,15,17,19,19,19,19,17,15,13,14,14,14,14,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Mountain Waterfalls",author="tormacoy",id="#1650807158",direction="right",cost=399,elevation=0,map=[24,77,0,2,2,0,24,24,24,0,0,0,0,24,24,24,24,24,24,24,24,77,0,5,5,0,7

7,77,77,0,0,0,0,18,18,18,18,20,20,24,24,77,0,5,5,0,0,0,0,0,0,0,0,9,9,9,18,20,20,23,24,77,0,5,5,0,0,0,0,0,5,5,5,5,5,9,13,13,20,24,24,77,0,5,5,85,5,5,5,5,5,11,11,11,5,5,5,13,17,24,24,77,5,5,0,5,5,5,5,5,

5,5,5,5,16,16,5,9,17,24,24,77,5,0,0,0,0,0,11,5,23,17,0,5,5,16,8,5,9,24,0,0,5,67,67,67,67,67,67,5,23,17,0,0,5,8,8,5,85,0,0,5,5,67,24,24,24,24,67,5,23,13,13,0,0,5,9,9,5,0,0,5,0,67,24,24,24,24,67,93,5,5,

5,5,5,85,9,9,5,0,0,85,5,67,24,24,24,24,67,0,0,67,67,67,67,5,5,5,5,0,0,5,5,67,24,24,24,24,67,0,67,24,24,24,24,5,5,5,5,0,0,5,94,5,67,67,67,67,67,0,67,24,24,24,24,24,5,0,5,5,0,5,5,5,5,5,0,0,0,0,67,24,24,

24,24,24,5,0,0,5,0,11,5,67,24,5,5,0,23,23,67,24,24,24,24,24,5,5,0,85,23,11,5,5,67,67,5,5,85,0,0,67,67,67,67,67,0,5,0,5,23,11,0,5,5,24,67,24,5,5,5,5,0,0,0,0,0,5,5,5,23,11,11,0,85,5,24,67,24,67,24,5,5,5

,0,0,0,0,85,2,18,18,11,11,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,2,24,24,24,11,11,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Dont Shoot Baboons",author="MacBlub",id="#1650807998",direction="left",cost=256,elevation=-10,map=[0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,77,91,91,77,77,77,77,77,0,0,24,24,1,19,1

9,19,1,1,1,1,76,75,75,76,76,76,76,19,19,19,24,59,59,19,94,19,76,78,78,78,76,75,75,76,76,76,76,19,93,19,24,59,1,19,19,19,1,1,1,1,76,75,75,76,76,76,76,19,19,19,24,59,1,1,1,1,1,0,0,0,77,19,19,77,77,77,77

,77,39,0,0,32,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,39,0,0,33,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,39,0,0,0,0,0,39,0,34,0,77,77,77,0,

0,0,0,19,19,19,0,0,39,0,39,0,0,2,14,14,75,75,75,91,91,14,19,19,87,19,0,0,0,0,0,0,0,2,14,14,75,75,75,91,91,14,19,19,19,19,0,0,0,0,0,0,0,0,0,0,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Tea Break",author="lamp",id="#1650810623",direction="left",cost=51,elevation=0,map=[0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,1,1,34,34,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,54,54,54,1,0,0,0,0,0,0,0,0,0,0,0,2,34,34,96,54,54,54,54,1,0,0,0,0,0,0,0,0,0,0,0,2,34,34,96,54,54,54,54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,97,54,54,1

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Press buttons 2",author="WrexGigarton",id="#1650811125",direction="forward",cost=852,elevation=0,map=[65,65,65,65,65,65,65,65,65,2,2,65,65,65,65,65,65,65,65,65,65,65,6

5,65,65,65,65,65,65,15,15,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,15,15,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,15,15,65,65,65,65,65,65,65,65,65,65,65,100,24,24,23,20,19,16

,15,15,16,19,20,23,24,24,100,65,65,65,65,24,24,24,22,21,18,17,15,15,17,18,21,22,24,24,24,65,65,65,65,24,24,75,75,75,75,75,15,15,75,75,75,75,75,24,24,65,65,65,65,91,91,75,75,75,75,75,15,15,75,75,75,75,

75,91,91,65,65,65,65,24,24,75,75,75,75,75,15,15,75,75,75,75,75,24,24,65,65,65,65,91,91,75,75,75,75,75,15,15,75,75,75,75,75,91,91,65,65,65,65,24,24,75,75,75,75,1,96,96,1,75,75,75,75,24,24,65,65,65,65,9

1,91,75,75,75,75,75,15,15,75,75,75,75,75,91,91,65,65,65,65,24,24,75,75,75,75,75,15,15,75,75,75,75,75,24,24,65,65,65,65,91,91,75,75,75,75,75,15,15,75,75,75,75,75,91,91,65,65,65,65,24,24,75,44,75,38,75,

15,15,75,38,75,44,75,24,24,65,65,65,65,97,24,75,44,75,38,75,15,15,75,38,75,44,75,24,97,65,65,65,65,75,75,75,75,75,75,75,15,15,75,75,75,75,75,75,75,65,65,65,65,75,75,75,75,75,75,1,96,96,1,75,75,75,75,7

5,75,65,65,65,65,75,75,75,75,75,75,75,15,15,75,75,75,75,75,75,75,65,65,65,65,75,75,75,75,75,75,75,2,2,75,75,75,75,75,75,75,65,65]});}},

{function Run(){maps.push({name="Turn",author="Bucket Head",id="#1650811855",direction="forward",cost=466,elevation=4,map=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,9,9,9,9,9,9,1,9,9,9,9,9,9,9,1,5,5,1

,1,1,9,9,9,9,9,9,1,9,9,9,9,9,9,9,1,5,5,1,1,1,9,9,1,9,9,9,1,9,9,9,1,9,9,9,1,5,5,1,1,1,9,9,1,9,9,9,1,9,9,9,1,9,9,9,1,5,5,1,1,1,9,9,1,9,9,9,1,9,9,9,1,9,9,9,1,5,5,1,1,1,9,9,1,1,95,1,1,92,75,92,1,3,5,3,1,5

,5,1,1,1,9,9,1,9,9,9,1,75,75,75,1,5,5,5,1,5,5,1,1,1,9,9,1,9,9,9,1,75,75,75,1,66,66,66,1,5,5,1,1,1,9,9,1,9,9,9,1,75,75,75,1,66,66,66,1,5,5,1,1,1,9,9,1,9,9,9,1,9,9,9,1,66,66,66,1,5,5,1,1,1,9,9,1,9,9,9,1

,9,9,9,1,66,66,66,1,5,5,1,1,1,91,91,1,9,9,9,1,9,9,9,1,66,66,66,1,5,5,1,1,1,91,91,1,9,9,9,1,9,9,9,1,66,66,66,1,5,5,1,1,1,91,91,1,9,9,9,1,97,9,9,1,66,66,66,1,5,5,1,1,1,91,91,1,9,9,9,1,9,9,9,1,5,5,5,1,5,

5,1,1,1,9,9,1,9,9,9,1,96,96,96,1,5,5,5,1,5,5,1,1,1,9,9,1,9,9,9,9,9,9,9,1,5,5,5,5,5,5,1,1,1,9,9,1,9,9,9,9,9,9,9,1,5,5,5,5,5,5,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Delevation",author="GoGoShooter",id="#1650811964",direction="left",cost=252,elevation=-19,map=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,5,5,0,1,0,14,14,3,5,0,15,15,0,

1,0,24,24,0,1,2,5,5,0,1,0,14,14,0,1,0,15,15,0,1,0,24,24,0,1,1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,6,6,0,1,0,13,13,0,1,0,16,16,0,1,0,23,23,0,1,1,6,6,0,1,0,13,13,0,1,0,16,16,0,1,0,23,23,0,1,1,6,6,0,

1,0,13,13,0,1,0,16,16,0,1,0,23,23,0,1,1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,7,7,0,1,0,12,12,0,1,0,17,17,0,1,0,22,22,0,1,1,7,7,0,1,0,12,12,0,1,0,17,17,0,1,0,22,22,0,1,1,7,7,0,1,0,12,12,0,1,0,17,17,

0,1,0,22,22,0,1,1,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,8,8,0,1,0,11,11,0,1,0,18,18,0,1,0,21,21,0,1,1,8,8,0,1,0,11,11,0,1,0,18,18,0,1,0,21,21,0,1,1,8,8,0,1,0,11,11,0,1,0,18,18,0,1,0,21,21,0,1,1,0,0,

0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,9,9,0,1,0,10,10,0,1,0,19,19,0,1,0,20,20,0,1,1,9,9,3,5,0,10,10,0,1,0,19,19,3,5,0,20,20,0,1,1,9,9,3,5,0,10,10,0,1,0,19,19,3,5,0,20,20,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,

1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Cascade room",author="Fantasy",id="#1650812391",direction="left",cost=452,elevation=-11,map=[14,14,14,8,8,67,0,67,24,67,0,0,0,0,0,2,2,0,0,0,2,8,98,8,8,67,0,67,24,67,0,

19,19,19,19,19,19,19,19,19,2,8,98,8,90,67,0,67,24,67,0,19,0,0,0,0,0,0,0,19,14,14,14,8,8,67,0,67,24,67,0,19,0,0,0,67,0,0,0,19,8,8,8,8,8,67,0,67,24,67,0,19,0,0,67,24,67,0,0,19,8,90,8,8,90,67,0,67,24,67,

0,19,0,67,24,1,24,67,0,19,8,8,8,8,90,67,0,67,24,67,0,19,0,0,67,24,67,0,0,19,93,8,90,8,8,67,0,67,24,67,0,0,0,0,0,67,0,0,0,0,8,8,8,8,8,67,0,67,24,67,0,0,0,0,0,0,0,0,0,0,8,90,8,8,90,67,0,67,24,67,0,15,0,

0,0,67,0,0,0,15,8,8,8,90,8,67,0,67,24,67,0,15,0,0,67,24,67,0,0,15,8,8,8,8,8,67,0,67,24,67,0,15,0,67,24,1,24,67,0,15,8,90,8,8,8,67,0,67,24,67,0,15,0,0,67,24,67,0,0,15,8,8,8,8,8,67,0,67,24,67,0,15,0,0,0

,67,0,0,0,15,8,8,8,8,8,67,0,67,24,67,0,15,0,0,0,0,0,0,0,15,8,90,8,90,8,67,0,67,24,67,0,15,15,15,15,15,15,15,15,15,8,8,8,8,8,1,1,1,1,1,1,1,1,1,1,15,15,1,1,1,8,8,8,8,8,96,8,8,8,9,10,11,12,13,14,15,15,0,

35,94,24,3,8,8,8,96,8,8,8,9,10,11,12,13,14,15,15,0,35,97,99,3,8,8,90,1,67,67,67,67,67,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Dont fall",author="Wolfdiman",id="#1650812946",direction="forward",cost=171,elevation=19,map=[25,2,2,25,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,25,25,25,25,0,0,0,0,0,36,0,0,0

,37,37,0,0,37,38,0,25,25,25,25,0,0,0,0,0,0,0,98,36,36,1,1,1,1,38,0,0,25,1,25,0,0,0,0,0,0,35,1,1,1,1,35,35,1,0,0,0,26,1,0,0,0,0,0,0,0,0,1,34,34,98,0,0,1,0,0,0,0,1,26,0,0,0,0,0,0,34,1,0,0,0,0,36,1,38,0,

0,26,1,0,0,0,0,0,0,33,1,1,0,0,0,0,37,1,0,0,0,27,1,26,0,0,0,0,0,33,1,34,34,0,0,0,0,1,39,0,0,27,1,27,0,0,0,0,0,0,1,34,0,0,0,38,37,1,39,0,0,0,1,0,0,0,0,0,32,32,1,33,0,0,0,38,1,1,40,0,0,28,1,27,0,0,0,96,1

,1,1,0,0,0,0,39,1,40,0,0,0,0,1,28,0,0,0,31,1,32,33,33,0,0,0,40,1,0,0,0,0,28,1,29,29,0,0,0,1,0,0,0,0,0,0,41,1,41,0,0,0,29,1,1,30,0,30,31,1,96,0,0,0,0,0,42,1,42,0,0,0,29,29,1,1,1,1,1,1,96,0,0,0,0,0,0,1,

42,0,0,0,0,0,29,0,30,30,0,31,31,0,0,0,0,0,43,43,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,44,44,44,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,44,44,44,44,44,0,0,0,0,0,0,97

,0,0,0,0,0,0,0,0,44,44,2,2,44]});}},

{function Run(){maps.push({name="Alien Mountain Escap",author="Fantasy",id="#1650813226",direction="forward",cost=406,elevation=17,map=[6,6,5,5,5,5,5,5,5,2,2,5,5,5,5,23,23,5,22,22,6,6,5,5,5,5,5,5,5,5,

5,5,5,5,5,23,23,5,22,22,5,5,5,5,5,44,44,44,5,5,5,5,5,5,5,5,5,5,5,5,7,7,5,5,5,44,100,44,5,5,5,5,5,5,24,23,5,5,21,21,7,7,5,5,5,44,44,44,5,5,5,5,5,5,24,24,5,5,21,21,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,

5,8,8,5,5,5,5,5,5,5,5,5,5,5,5,24,24,5,5,20,20,8,8,5,5,5,5,44,44,5,5,5,5,5,5,24,24,5,5,20,20,5,5,5,5,5,1,96,96,1,5,5,5,5,5,5,5,5,5,5,5,9,9,5,5,5,5,44,44,5,5,5,5,5,5,24,24,5,5,19,19,9,9,5,5,5,5,44,44,5,

5,5,5,5,5,24,24,5,5,19,19,5,5,5,44,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,9,9,44,97,5,5,44,44,5,5,44,5,44,5,23,24,5,5,18,18,10,10,5,44,5,5,44,44,5,44,5,44,5,5,24,24,5,5,18,18,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,

5,5,5,5,11,11,5,5,5,5,5,5,5,5,5,5,5,5,24,24,5,5,17,17,10,10,5,5,5,5,5,5,5,5,5,5,5,5,24,24,17,5,17,17,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,12,12,5,13,13,5,14,14,5,15,15,5,16,16,5,17,5,22,22,5,12,12,

5,13,13,5,14,14,5,15,15,5,16,16,5,17,22,2,2,22]});}},

{function Run(){maps.push({name="iknowyouwantit",author="iProbie",id="#1650813907",direction="left",cost=170,elevation=0,map=[0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,98,98,2,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,98,93,2,5,5,5,5,5,5,5,5,97,5,5,5,5,5,5,5,5,98,94,5,5,5,5,5,5,5,5,5,5,5,5,5,5

,5,5,5,5,98,98,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,96,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,99,5,96,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Just Jump",author="MacBlub",id="#1650814680",direction="left",cost=146,elevation=-19,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,2,2,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24

,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,58,58,58,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,58,97,58,24,0,0,0,0,0,0,0,0,

0,24,24,24,0,0,0,24,58,58,58,24,0,0,0,0,0,0,0,0,0,24,93,24,0,44,0,24,24,24,58,24,0,0,0,0,0,0,0,0,0,24,24,24,0,0,0,0,0,24,58,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,58,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,23,58,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,58,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,58,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,58,20,0,0,0,0,5,5,5,5,5,0,0,0,0,0,0,0,0,19,58,19,0,5,5,0,5,66,66

,66,5,0,0,0,96,24,18,90,18,18,18,18,0,2,5,5,5,66,66,66,5,0,0,24,96,24,3,18,90,18,94,18,0,2,5,5,5,66,66,66,5,0,0,0,96,24,18,90,18,18,18,18,0,5,5,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Unbreakable",author="chinny",id="#1650814683",direction="left",cost=264,elevation=-1,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0

,0,0,0,0,11,6,6,10,5,6,16,10,11,10,11,5,10,11,11,6,0,0,0,0,6,11,5,16,6,10,16,10,16,6,11,10,6,16,11,5,0,0,0,0,6,11,6,11,16,10,11,10,16,6,16,10,6,11,10,6,0,0,0,0,6,16,6,11,6,10,10,6,10,5,6,10,6,16,6,6,0

,0,0,0,6,11,5,10,6,6,11,10,6,6,11,6,11,10,6,5,0,0,0,0,10,16,6,5,6,10,16,10,6,10,16,6,10,5,10,16,0,0,0,0,16,11,6,10,6,10,16,10,10,6,16,10,6,10,6,16,0,0,0,0,11,16,6,16,10,6,11,6,10,10,6,11,6,6,6,11,0,0,

0,0,10,6,16,10,6,6,10,6,11,6,5,16,11,6,10,6,0,0,0,0,16,16,6,10,6,5,11,5,16,11,6,16,16,6,11,10,0,0,0,0,10,16,10,6,11,10,16,6,16,10,16,10,6,5,16,11,0,0,0,0,6,11,10,6,16,10,16,6,11,6,16,11,6,6,16,5,0,0,0

,0,6,5,10,6,16,6,11,10,16,6,16,11,6,10,10,6,0,0,2,10,10,6,16,6,11,6,16,6,16,6,11,16,6,11,6,6,0,0,2,10,6,10,10,6,11,5,6,11,16,16,6,16,6,16,6,10,0,0,0,0,10,6,11,10,6,6,5,10,16,11,6,5,10,16,10,11,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="menage a trois",author="iProbie",id="#1650816258",direction="forward",cost=158,elevation=0,map=[0,0,0,0,0,0,0,5,5,2,2,5,5,0,0,0,0,0,0,0,0,0,0,7,5,5,5,5,5,5,5,5,5,5,5,5

,0,0,0,0,0,0,0,9,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,11,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,13,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,15,0,0,0,0,0,5,0,0,0,0,0,5,0,92,0,5,0,0,1,17,1,0,0,0,1,4,1,0,0,

0,1,1,1,0,0,5,0,0,1,17,1,0,0,0,1,8,1,0,0,0,1,1,1,0,0,5,0,0,1,97,1,0,0,0,1,97,1,0,0,0,97,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,17,1,0,0,0,1,8,1,0,0,0,5,5,5,0,0,5,0,0,1,17,1,0,0,0,1,8,

1,0,0,0,1,1,1,0,0,5,0,0,1,17,1,0,0,0,1,65,1,0,0,0,1,1,1,0,0,5,0,0,0,15,0,0,0,0,0,5,0,0,0,0,0,5,0,92,0,5,0,0,0,13,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,11,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,9,0,0,0,

0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,7,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,5,96,96,96,96,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,96,2,2,96,5,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Bladder Ladder",author="Midran Kidran",id="#1650820291",direction="forward",cost=440,elevation=19,map=[5,5,5,5,5,5,5,5,5,2,2,5,5,5,5,5,5,5,5,5,7,7,1,5,5,5,5,5,5,5,5,5,

5,5,5,5,5,1,7,7,9,9,1,5,5,3,5,5,3,5,5,3,5,5,3,5,5,1,9,9,11,11,1,11,11,11,11,11,11,11,11,11,11,11,11,11,11,1,11,11,13,13,1,11,11,11,11,11,11,11,11,11,11,11,11,11,11,1,13,13,15,15,1,11,11,3,11,11,3,11,1

1,3,11,11,3,11,11,1,15,15,17,17,1,18,18,18,18,18,18,18,18,18,18,18,18,18,18,1,17,17,19,19,1,18,18,18,18,18,18,18,18,18,18,18,18,18,18,1,19,19,21,21,1,18,18,3,18,18,3,18,18,3,18,18,3,18,18,1,21,21,23,2

3,1,24,24,24,24,24,24,24,24,24,24,24,24,24,24,1,23,23,24,24,1,24,24,24,24,24,24,24,24,24,24,24,24,24,24,1,24,24,97,24,24,24,1,24,24,24,24,24,24,24,24,24,24,1,24,24,24,97,91,91,1,1,1,91,1,1,1,96,96,1,1

,1,91,1,1,1,91,91,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24

,1,1,1,1,1,1,1,1,98,98,1,1,1,1,1,1,1,1,24,24,91,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,91,24,24,1,24,24,24,24,24,24,24,95,95,24,24,24,24,24,24,24,1,24,99,1,24,24,24,24,24,24,95,2,2,95,24,24,2

4,24,24,24,1,99]});}},

{function Run(){maps.push({name="Water Temple v3",author="Squidward",id="#1650820845",direction="forward",cost=436,elevation=-4,map=[1,24,24,24,24,24,24,24,24,24,24,24,24,24,1,1,0,0,2,2,1,24,13,66,69,

69,66,13,90,19,19,19,13,19,19,24,1,0,24,24,1,24,13,24,24,24,90,13,13,67,92,67,13,19,100,24,1,0,24,24,1,24,91,24,1,24,90,13,13,13,13,90,13,19,19,24,1,0,23,23,1,13,13,24,1,24,65,13,65,65,13,13,13,65,24,

1,0,0,22,23,1,99,13,24,1,24,13,13,90,13,90,13,13,24,24,1,0,22,22,22,1,24,24,24,24,24,13,13,65,13,13,13,90,24,1,1,0,22,22,0,1,24,20,90,20,13,98,65,65,13,24,14,24,24,1,0,0,22,22,0,1,24,65,20,20,3,13,98,

13,24,12,13,24,1,1,0,0,0,0,0,1,24,90,20,20,13,3,13,24,10,11,24,24,1,0,0,0,0,0,0,1,24,20,20,90,20,20,13,24,9,24,24,1,1,0,7,7,7,7,0,1,24,65,65,20,90,20,24,8,8,24,1,1,0,0,7,65,65,7,7,1,24,65,65,20,20,20,

24,96,96,24,1,0,0,7,90,65,65,65,7,1,24,20,90,90,20,90,24,7,7,24,1,1,24,7,65,65,65,7,0,1,24,20,20,20,20,20,24,7,7,24,24,1,24,7,65,65,65,7,0,1,24,20,90,20,24,24,6,7,7,7,24,24,24,7,66,66,65,7,0,1,24,65,6

5,20,24,6,97,7,66,68,69,69,69,68,68,66,90,7,0,1,24,20,20,100,24,24,6,7,7,7,24,24,24,7,7,7,5,0,0,1,24,20,20,24,1,24,24,24,24,24,24,1,24,0,0,0,0,0,0,1,24,2,2,24,1,1,1,1,1,1,1,1,24,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="watchurstep",author="chong",id="#1650821620",direction="forward",cost=490,elevation=4,map=[1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,

5,5,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,9,9,9,76,9,9,9,9,9,76,9,9,9,9,9,9,76,9,9,9,76,10,10,10,10,76,10,10,10,10,10,76,10,76,10,10,10,10,10,10,12,12,76,12,12,12,12,76,12,76,12,12,12,12,12,76,12,12

,76,12,14,14,14,76,14,14,14,14,14,14,14,76,76,14,14,14,76,14,14,14,15,15,76,15,15,15,76,15,15,76,15,15,15,76,15,15,15,15,15,15,17,17,17,17,76,17,17,17,17,17,17,17,17,17,76,17,17,17,76,17,19,19,76,19,1

9,19,76,19,76,19,19,76,19,19,19,19,76,19,19,19,20,20,20,20,76,20,20,20,20,20,20,20,20,76,20,20,20,76,20,20,76,22,22,22,22,22,22,76,22,22,76,22,22,22,22,22,22,22,22,76,24,24,24,24,24,24,24,24,24,24,24,

24,24,24,24,24,24,24,24,24,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,2

5,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,27,27,27,27,27,27,25,25,25,25,25,25,25,25,25,25,25,25,25,25,27,29,29,29,29,27,25,25,25,25,25,25,25,25,25,25,25,25,25,25,27,29,2,2,29

,27,25,25,25,25,25,25,25]});}},

{function Run(){maps.push({name="gosword",author="FLaN KS",id="#1650823664",direction="forward",cost=177,elevation=1,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,

12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,66,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,52,66,12,12,0,0,0,0,0,0,0,0,0,0,12,0,0,0,12,52,66,52,12,0,0,0,0,0,0,0,0,0,0,0,12,12,0,12,52,66,52,12,0,0,0,0,0,0,0,0,0,0

,0,0,0,12,12,52,66,52,12,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,12,12,52,12,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,74,76,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,74,76,73,13,12,12,0,0,0,0,0,0,0,0,0,0,0,13,13,74,76,73,

13,13,0,12,12,0,0,0,0,0,0,0,0,0,13,13,74,76,73,13,13,0,0,0,0,0,0,0,0,0,0,0,0,13,13,74,76,73,13,13,0,0,0,0,0,0,0,0,0,0,0,0,13,13,74,76,73,13,13,0,0,0,0,0,0,0,0,0,0,0,0,13,13,74,76,73,13,13,0,0,0,0,0,0,

0,0,0,0,0,0,13,13,74,76,73,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,13,74,76,73,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,76,73,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="down to up",author="Bucket Head",id="#1650824669",direction="forward",cost=423,elevation=10,map=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,15,15,15,15,15,15,15,15,1,12

,12,12,12,12,1,1,5,5,1,1,15,15,15,15,15,15,15,15,1,12,12,12,12,12,1,1,5,5,1,1,15,15,1,1,1,15,15,15,1,12,12,1,12,12,1,1,5,5,1,1,15,15,1,1,1,0,0,0,1,12,12,1,12,12,1,1,5,5,1,1,15,15,1,1,1,0,0,0,1,12,12,1

,12,12,1,1,5,5,1,1,15,15,1,1,1,0,0,0,1,12,12,1,12,12,1,1,3,3,1,1,91,91,1,1,1,92,0,92,1,13,13,1,12,12,1,1,8,8,1,1,91,91,1,1,1,15,15,15,1,13,13,1,12,12,1,1,8,8,1,1,91,91,1,1,1,15,15,15,1,14,14,1,4,4,1,1

,8,8,1,1,91,91,1,1,1,0,0,0,1,14,14,1,8,8,1,1,8,8,1,1,1,15,1,1,1,0,0,0,1,15,15,1,98,98,1,1,8,8,1,1,1,15,1,1,1,0,0,0,1,15,15,1,8,8,1,1,97,8,1,1,1,91,1,1,1,92,0,92,1,15,15,1,99,8,1,1,8,8,1,1,1,91,1,1,1,1

5,15,15,1,15,15,1,8,8,1,1,96,96,1,1,15,15,1,1,1,15,15,15,1,15,15,1,8,8,1,1,8,8,1,1,91,1,1,1,1,15,15,15,1,15,15,1,8,8,1,1,8,8,1,1,91,1,1,1,1,15,15,15,101,15,15,1,8,8,8,8,8,8,1,1,15,15,1,1,1,15,15,15,10

1,102,15,1,8,8,8,8,8,8,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Just run and hold",author="WrexGigarton",id="#1650834110",direction="right",cost=274,elevation=19,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,0,0,0,0,0,

0,0,0,0,0,0,5,5,1,58,58,58,57,56,55,14,14,14,13,12,11,10,9,8,7,6,5,5,1,58,58,58,57,56,55,14,14,14,13,12,11,10,9,8,7,6,5,5,1,58,58,58,57,56,55,14,14,14,13,12,11,10,9,8,7,6,5,5,1,58,58,58,1,1,1,0,0,0,0,

0,0,0,0,0,0,0,5,5,1,58,58,58,1,0,0,0,0,24,24,89,24,0,0,0,0,0,5,5,1,58,58,58,1,0,0,0,0,89,93,93,89,0,0,0,0,0,5,5,1,58,58,58,1,0,0,0,0,24,89,24,89,0,0,0,0,0,5,5,1,58,58,58,1,0,0,0,0,24,24,89,24,0,0,0,0,

5,5,5,1,58,58,58,1,0,0,0,0,24,24,24,24,0,0,0,0,5,94,5,1,58,58,58,1,0,0,0,0,91,91,91,91,0,0,0,0,5,5,5,1,58,58,58,24,24,24,85,85,24,24,24,24,24,24,24,24,0,0,0,1,58,58,58,24,24,24,85,85,24,24,24,24,24,24

,24,24,0,0,0,1,58,58,58,24,24,24,85,85,24,24,24,24,24,24,24,24,0,0,0,1,58,58,58,18,18,0,0,0,0,0,0,0,0,24,24,24,0,0,0,1,58,58,58,18,18,0,0,0,0,0,0,0,0,24,24,24,0,0,0,1,24,24,24,18,18,0,0,0,0,0,0,0,0,95

,95,95,0,0,0,1,18,3,18,18,18,0,40,0,42,0,44,0,42,24,24,24,95,24,2,1,18,18,18,18,18,0,40,0,42,0,44,0,42,24,24,24,95,24,2]});}},

{function Run(){maps.push({name="Super Star",author="Big Smoke",id="#1650838643",direction="forward",cost=169,elevation=-2,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41

,41,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,41,41,1,0,0,0,0,0,0,0,0,1,40,1,0,0,0,0,0,1,1,40,1,0,0,0,0,0,0,0,0,1,40,40,1,0,0,1,1,40,40,40,1,0,0,0,0,0,0,0,0,1,40,40,40,1,1,40,40,40,40,1,0,0,0,0,0,0,0,0,0,1,

40,40,40,40,40,40,40,40,40,1,0,0,0,0,0,0,0,0,1,1,40,40,40,40,40,40,40,40,1,0,0,0,0,0,0,0,1,1,40,40,40,1,1,1,40,40,40,40,1,0,0,0,0,0,0,1,40,40,40,40,40,40,40,40,40,40,40,1,0,0,0,0,0,0,0,1,40,40,40,40,4

0,40,40,40,40,40,40,1,0,0,0,0,0,0,0,0,1,1,40,40,40,1,1,1,40,40,40,40,1,0,0,0,0,0,0,0,0,0,1,1,40,40,40,40,40,40,40,40,1,0,0,0,0,0,0,0,0,0,0,1,40,40,40,40,40,40,40,40,40,1,0,0,0,0,0,0,0,0,0,1,40,40,40,1

,1,40,40,40,40,1,0,0,0,0,0,0,0,0,0,1,40,40,1,0,0,1,1,40,40,40,1,0,0,0,0,0,0,0,0,1,40,1,0,0,0,0,0,1,1,40,1,0,0,0,0,0,0,0,0,1,39,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Broken Fountain",author="Jando",id="#1650844136",direction="forward",cost=149,elevation=0,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,20,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,20,20,20,17,17,0,0,0,0,0,0,0,0,0,0,0,0,17,17,20,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,17,17,20

,0,0,0,0,17,17,0,0,0,0,17,17,0,0,0,0,0,17,20,0,0,0,0,0,17,17,0,0,0,0,0,17,17,0,0,0,0,17,20,0,0,0,0,17,17,17,17,0,0,0,0,17,17,17,0,0,0,17,20,0,0,0,17,17,65,65,17,17,0,0,0,98,97,98,0,0,0,17,20,0,0,0,17,

17,65,65,17,17,0,0,0,98,98,98,0,0,0,17,20,0,0,0,0,17,17,17,17,0,0,0,0,0,17,0,0,0,0,17,20,0,0,0,0,0,17,99,0,0,0,0,0,0,0,0,0,0,0,17,17,17,0,0,0,0,0,0,0,0,0,20,17,0,17,0,0,0,0,0,20,17,20,0,0,0,0,0,0,0,0,

0,0,17,0,0,0,0,0,0,0,17,17,17,0,0,0,0,0,0,17,17,17,0,0,0,0,0,0,0,0,0,20,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,96,96,96,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,96,2,2,96,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="pusheen w donut",author="NekoAndRew",id="#1650850250",direction="forward",cost=292,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,11,

11,19,19,19,11,1,0,0,0,0,0,0,1,1,1,11,11,19,19,11,19,19,19,19,19,11,1,0,0,0,1,1,11,19,19,19,19,19,19,19,19,19,19,19,19,19,1,0,1,1,11,19,19,19,19,19,19,19,1,19,1,19,21,21,19,19,1,1,94,19,19,19,19,1,19,

19,19,19,1,19,1,19,19,19,19,1,1,0,1,11,19,19,21,19,19,19,19,19,60,1,60,19,19,19,19,1,1,0,0,1,11,19,21,19,19,1,19,60,86,86,86,60,19,19,19,11,1,0,0,1,11,19,19,19,1,19,19,60,86,93,86,60,19,19,19,11,1,0,0

,1,11,19,19,19,19,1,19,60,86,86,86,60,19,19,19,11,1,0,1,11,19,19,19,19,19,19,19,19,60,1,60,19,19,19,19,11,1,1,94,19,19,19,19,1,19,19,19,19,1,19,1,19,19,19,21,1,1,0,1,1,11,19,19,19,19,19,19,19,1,19,1,1

9,19,19,21,1,1,0,0,0,1,1,11,19,21,21,21,19,19,19,19,19,19,19,19,19,1,0,0,0,0,0,1,1,1,11,11,19,11,19,19,19,11,11,19,19,1,0,0,0,0,0,0,0,0,1,1,1,11,11,19,1,1,1,19,19,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,19,100,

1,19,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,1,1,95,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,19,19,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,1,0,0]});}},

{function Run(){maps.push({name="water park",author="fantasy",id="#1650851475",direction="right",cost=433,elevation=1,map=[65,2,2,65,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,5,5,5,5,65,0,0,1,14,14,14,14,24,24,

24,64,64,24,24,1,5,5,5,5,65,0,0,1,14,14,14,14,24,93,24,1,1,24,24,1,5,87,87,5,65,0,14,96,14,87,14,14,24,24,24,64,64,24,24,1,5,5,5,5,65,0,85,1,14,14,14,14,24,24,24,64,64,24,24,1,5,5,5,5,65,0,13,1,14,14,

14,14,24,94,24,1,1,24,24,1,5,5,5,5,65,0,85,1,14,14,14,14,24,24,24,64,64,24,24,1,65,45,45,65,0,0,12,1,1,92,92,0,1,66,1,1,1,24,24,1,65,45,45,65,11,11,11,1,1,0,0,0,1,66,1,0,67,24,24,67,65,45,45,65,0,0,14

,14,1,0,0,0,1,66,1,0,67,22,22,67,5,5,5,5,65,0,0,14,1,0,0,0,1,66,1,0,67,20,20,67,5,11,11,5,65,0,0,14,1,0,0,0,1,66,1,0,67,18,18,67,5,5,5,5,65,0,0,14,1,0,0,0,1,24,1,0,67,16,16,67,65,45,45,65,65,0,0,14,1,

0,0,0,1,66,1,0,67,14,14,67,65,45,45,65,65,0,14,14,1,0,0,0,1,66,1,0,67,12,12,67,65,46,46,65,65,0,14,24,1,0,0,0,1,66,1,0,67,10,10,67,65,8,8,65,11,0,14,24,1,14,14,1,1,66,1,0,67,8,8,67,65,8,8,65,10,0,14,2

4,1,3,3,1,1,66,1,1,67,6,6,2,65,8,8,65,9,0,97,24,1,24,24,24,24,24,24,1,67,6,6,2,65,65,65,65,0,0,14,24,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="easy split",author="fantasy",id="#1650852119",direction="forward",cost=233,elevation=19,map=[0,0,0,0,0,0,0,0,0,2,2,1,1,1,1,0,0,0,0,0,20,20,20,0,0,24,24,19,19,5,5,19,89

,19,24,24,0,0,0,24,20,20,0,0,0,24,24,3,19,3,5,19,19,4,24,24,92,0,0,24,20,20,0,0,0,24,24,3,19,5,3,19,89,19,24,24,0,0,0,24,20,20,20,0,0,24,24,19,19,5,5,19,19,4,24,24,92,0,0,24,20,20,0,0,0,24,24,24,24,24

,24,24,24,24,24,24,0,0,0,24,19,19,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,44,44,44,17,17,0,0,0,0,0,0,44,44,0,62,62,62,62,0,1,44,87,44,16,16,0,0,0,0,0,0,0,0,0,0,0,62,62,

0,1,44,94,44,95,1,0,0,0,0,0,0,44,44,0,0,0,62,62,0,1,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,62,62,0,1,0,0,0,15,15,0,0,0,0,0,0,44,44,0,0,0,62,62,0,1,44,44,44,3,3,0,0,0,0,0,0,0,0,0,0,0,62,62,0,1,44,87,44,24,2

4,0,0,0,0,0,0,85,24,0,0,0,62,62,0,1,44,93,44,64,64,0,0,0,0,0,0,24,85,0,0,0,63,63,0,1,0,0,0,64,64,0,0,0,0,0,0,85,24,0,0,0,64,64,0,1,0,0,0,64,64,64,64,64,85,24,85,24,85,0,0,0,64,64,0,1,44,44,44,64,100,6

4,64,64,24,85,24,85,24,0,0,0,24,24,0,0,44,87,44,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,0,1,44,93,44]});}},

{function Run(){maps.push({name="twin towers",author="iProbie",id="#1650864465",direction="forward",cost=128,elevation=19,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,96,24,24,24,24,24,92,5,0,0,0,0,0,0,0,0,0,0,0,0,96,24,24,24,24,24,5,5,0,0,0,0,0,0,0,0,5,5,65,65,96

,24,24,97,24,24,3,5,0,0,0,0,0,0,0,0,5,0,0,0,96,24,24,24,24,24,5,5,0,0,0,0,0,0,0,0,5,0,0,0,96,24,24,24,24,24,92,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,5,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,5,3,5,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,2,2,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Bucket Head",author="Bucket Head",id="#1650868651",direction="forward",cost=302,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,5,5,

1,0,0,0,0,0,0,0,0,0,1,1,7,6,6,6,5,5,5,5,59,1,0,0,0,0,0,0,0,1,7,7,7,6,12,12,12,12,12,12,59,59,1,1,0,0,0,0,1,7,7,12,12,12,12,12,12,15,15,15,59,59,59,59,1,0,1,1,8,8,12,12,12,12,12,15,15,15,15,15,59,59,59

,59,1,0,1,10,9,12,12,12,15,15,15,15,15,15,15,15,1,59,59,59,1,0,1,10,10,12,12,15,15,15,15,15,15,15,15,15,59,59,59,59,1,0,1,10,10,12,15,15,15,15,15,15,15,15,15,15,59,59,1,59,1,0,1,10,10,12,15,15,15,15,1

5,15,15,15,15,15,59,59,59,1,1,0,1,10,10,12,15,15,15,15,15,15,15,15,15,15,59,59,59,1,1,0,1,10,10,12,15,15,15,15,15,15,15,15,15,15,59,59,1,59,1,0,1,10,10,12,15,15,15,15,15,15,15,15,15,15,59,59,59,59,1,0

,1,9,9,12,12,12,12,15,15,15,15,15,15,15,1,59,59,59,1,0,1,1,8,8,7,12,12,12,12,15,15,15,15,15,59,59,76,59,1,0,0,1,1,1,7,7,7,6,12,12,12,12,12,15,59,59,59,59,1,0,0,0,0,1,1,1,1,6,6,6,5,5,12,12,59,59,59,1,1

,0,0,0,0,0,0,0,1,1,1,1,5,5,5,5,59,59,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,5,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0]});}},

{function Run(){maps.push({name="FYS",author="FYS",id="#1650870558",direction="forward",cost=165,elevation=0,map=[0,0,0,0,0,0,0,2,2,0,Vector(188,32,80),Vector(189,32,81),Vector(190,34,81),0,0,0,0,0,0,

0,0,0,0,0,0,0,Vector(186,32,81),Vector(189,34,81),Vector(188,29,78),Vector(214,115,147),0,Vector(189,33,81),Vector(189,33,81),Vector(188,32,80),Vector(178,8,62),0,0,0,0,0,0,0,0,0,0,Vector(188,37,82),V

ector(188,32,81),Vector(189,32,80),Vector(188,31,80),Vector(198,60,103),Vector(209,100,131),0,Vector(187,27,77),Vector(195,54,97),Vector(212,108,139),Vector(216,128,157),0,0,0,0,0,0,0,0,Vector(190,34,

82),Vector(188,33,81),Vector(189,33,81),Vector(188,33,80),0,Vector(197,61,103),Vector(197,59,101),Vector(182,27,73),0,Vector(189,33,81),Vector(194,50,95),Vector(187,33,81),0,0,0,0,0,0,0,Vector(204,51,

102),Vector(188,30,77),Vector(189,33,81),Vector(189,33,79),0,0,0,0,Vector(209,97,131),0,0,Vector(189,33,81),Vector(189,33,81),Vector(186,35,82),0,0,0,0,0,0,Vector(216,114,147),Vector(198,63,105),Vecto

r(186,24,74),Vector(188,27,74),Vector(186,22,73),0,Vector(193,50,93),0,Vector(212,109,141),Vector(183,17,72),0,Vector(189,33,81),Vector(189,33,81),Vector(189,34,81),0,0,0,0,0,0,Vector(186,24,74),Vecto

r(202,77,115),Vector(210,105,137),Vector(206,91,126),Vector(210,105,139),Vector(205,93,128),0,Vector(211,107,139),Vector(194,48,93),Vector(188,35,81),0,Vector(189,33,81),Vector(189,33,81),Vector(188,3

3,80),0,0,0,0,0,0,Vector(189,34,70),Vector(188,30,81),Vector(187,27,77),Vector(189,33,81),Vector(186,26,75),Vector(186,21,76),0,Vector(213,113,144),Vector(190,34,82),Vector(189,35,81),0,Vector(189,33,

81),Vector(189,33,81),Vector(188,33,80),0,0,0,0,0,0,Vector(190,33,42),Vector(189,33,81),Vector(189,33,81),Vector(188,32,81),Vector(191,35,81),0,Vector(186,22,71),Vector(213,113,143),Vector(191,38,85),

Vector(184,35,78),0,Vector(189,33,81),Vector(189,33,81),Vector(187,33,82),0,0,0,0,0,0,Vector(185,35,35),Vector(189,33,64),Vector(187,33,83),0,0,Vector(189,33,81),Vector(188,30,78),Vector(205,84,121),V

ector(204,83,121),0,Vector(189,34,80),Vector(189,33,81),Vector(189,33,81),Vector(187,33,81),0,0,0,0,0,0,0,Vector(189,32,42),0,Vector(184,28,85),Vector(189,32,81),Vector(189,33,81),Vector(189,33,81),Ve

ctor(188,34,81),Vector(221,144,168),0,Vector(188,32,80),Vector(189,33,81),Vector(189,33,81),0,0,0,0,0,0,0,0,0,0,Vector(187,32,80),Vector(189,33,81),Vector(189,33,81),Vector(189,33,81),Vector(188,27,76

),0,Vector(217,128,157),Vector(194,47,92),Vector(187,25,75),Vector(186,28,76),0,0,0,0,0,0,0,0,0,Vector(185,31,85),Vector(189,33,81),Vector(189,33,81),Vector(188,33,81),Vector(188,37,82),0,Vector(186,3

1,79),Vector(192,43,89),Vector(214,117,147),Vector(214,118,147),0,0,0,0,0,0,0,0,0,0,Vector(190,32,60),Vector(189,33,83),Vector(188,33,81),Vector(191,32,80),0,Vector(189,34,80),Vector(189,33,81),Vector

(189,33,81),Vector(187,26,75),Vector(191,37,85),0,0,0,0,0,0,0,0,0,0,0,Vector(189,32,66),Vector(189,32,83),0,Vector(191,35,81),Vector(188,33,81),Vector(189,33,81),Vector(189,33,81),Vector(189,32,80),0,

0,0,0,0,0,0,0,0,0,0,0,Vector(190,33,40),0,Vector(182,36,73),Vector(188,33,80),Vector(189,33,81),Vector(189,33,81),Vector(188,33,81),Vector(170,42,85),0,0,0,0,0,0,0,0,0,0,0,0,0,Vector(191,32,32),Vector

(190,34,81),Vector(189,33,81),Vector(189,33,81),Vector(190,31,80),Vector(182,36,73),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Vector(188,32,69),Vector(189,33,84),Vector(189,33,81),Vector(187,34,85),0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,Vector(188,35,35),Vector(189,33,76),Vector(190,34,83),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="koronesuki",author="chong",id="#1650880337",direction="right",cost=225,elevation=0,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,60,60,60,60,60,60,60,0,0,0,0,0,0,0,0,0,0,0,60,60,60,60,60,60,60,60,60,60,0,0,0,0,0,0,0,0,0,60,60,60,60,60,60,60,60,60,60,60,60,0,0,0,0,0,0,0,60,

60,60,5,60,60,60,60,60,60,60,60,60,60,0,0,0,0,0,60,60,60,5,60,60,60,60,60,60,60,60,60,60,60,96,0,0,0,0,60,60,60,5,66,66,60,60,60,0,0,60,60,60,60,60,96,60,60,60,60,60,60,5,60,60,60,60,0,0,0,0,60,60,60,

60,96,60,60,60,60,60,60,60,5,60,60,60,0,0,0,0,60,60,60,60,96,60,60,2,60,60,60,60,60,60,60,60,0,0,0,0,60,60,60,60,96,60,60,2,60,60,60,60,60,60,60,60,0,0,0,0,60,60,60,60,96,60,60,60,60,60,60,60,60,60,60

,60,0,0,0,0,60,60,60,60,96,60,60,60,60,60,60,60,60,60,60,60,0,0,0,0,60,60,60,96,0,0,0,0,0,60,60,60,60,60,60,60,0,0,0,0,60,60,60,0,0,0,0,0,0,0,60,60,60,60,60,60,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0,60,60,91

,60,60,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,91,97,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="pressE",author="chong",id="#1650880366",direction="forward",cost=856,elevation=0,map=[1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,5,95,95,95,95,95,95,1,5,5,1,95,95,95,95

,95,95,5,1,1,5,1,95,95,95,95,95,1,5,5,1,95,95,95,95,95,1,5,1,1,5,1,95,95,95,95,95,1,5,5,1,95,95,95,95,95,1,5,1,1,5,1,5,5,5,5,5,1,5,5,1,5,5,5,5,5,1,5,1,1,5,1,95,95,95,95,95,5,95,95,5,95,95,95,95,95,1,5

,1,1,95,1,95,95,95,95,95,95,95,95,95,95,95,95,95,95,1,95,1,1,95,1,95,95,95,95,95,95,95,95,95,95,95,95,95,95,1,95,1,1,5,1,95,95,95,95,95,95,95,95,95,95,95,95,95,95,1,5,1,1,5,1,93,95,95,95,95,95,95,95,9

5,95,95,95,95,94,1,5,1,1,5,1,95,95,95,95,95,95,95,95,95,95,95,95,95,95,1,5,1,1,5,1,95,95,95,95,95,95,95,95,95,95,95,95,95,95,1,5,1,1,5,1,95,95,95,95,95,95,95,95,95,95,95,95,95,95,1,5,1,1,5,1,95,95,95,

95,95,95,95,95,95,95,95,95,95,95,1,5,1,1,5,1,95,95,95,95,95,95,95,95,95,95,95,95,95,95,1,5,1,1,5,1,95,95,95,95,95,95,95,95,95,95,95,95,95,95,1,5,1,1,5,1,95,95,95,95,95,95,95,95,95,95,95,95,95,95,1,5,1

,1,5,1,95,95,95,95,95,95,95,95,95,95,95,95,95,95,1,5,1,1,5,5,95,95,95,95,95,95,95,95,95,95,95,95,95,95,5,5,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="kzorswim",author="chong",id="#1650880465",direction="right",cost=423,elevation=-18,map=[2,2,1,1,1,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,23,90,1,1,69,69,69,1,69,69,69,1,

0,0,0,0,0,0,0,0,23,23,1,1,69,1,69,1,69,1,69,1,0,0,0,0,0,0,0,0,90,23,1,1,69,1,69,1,69,1,69,1,0,0,0,0,0,0,0,0,23,23,1,1,69,1,69,1,69,1,69,1,0,0,0,0,0,0,0,0,23,90,1,1,69,1,69,1,69,1,69,1,0,0,0,0,0,0,0,0,

23,23,1,1,69,1,69,1,69,1,69,1,0,0,0,0,0,0,0,0,90,23,1,1,69,1,69,1,69,1,69,1,0,0,0,0,0,0,0,0,23,23,1,1,69,1,69,1,69,1,69,1,0,0,0,0,0,0,0,0,23,23,1,1,69,1,69,1,69,1,69,1,0,0,0,0,0,0,0,0,23,23,1,1,69,1,6

9,1,69,1,69,1,0,0,0,0,0,0,0,0,23,23,1,1,69,1,69,1,69,1,69,1,0,0,0,0,0,0,0,0,23,23,66,69,69,1,69,69,69,1,69,24,24,24,0,0,0,0,0,0,23,23,1,1,24,1,1,1,1,1,69,69,66,1,0,0,0,0,0,0,23,23,0,0,1,1,1,1,1,1,1,1,

24,1,0,0,0,0,0,0,23,23,65,5,5,5,5,5,96,5,5,5,65,5,5,5,5,5,5,2,23,23,65,5,5,5,5,5,96,5,5,5,5,5,5,5,5,5,5,2,62,62,65,5,1,1,1,1,5,5,5,5,5,5,5,5,5,5,5,5,62,64,3,5,73,73,73,65,5,5,5,5,5,5,5,5,5,5,5,5,62,64

,3,5,73,73,73,65,5,5,5,5,5,5,5,5,5,5,97,5]});}},

{function Run(){maps.push({name="Did you trigger",author="DVC",id="#1650884627",direction="right",cost=231,elevation=6,map=[0,0,0,0,0,0,14,3,2,2,3,14,1,1,1,1,1,1,0,0,0,0,0,0,0,1,14,5,5,5,5,14,96,12,12

,12,12,12,0,0,0,0,0,0,0,1,14,6,6,6,6,14,1,0,0,0,12,12,0,0,0,0,0,0,0,1,14,7,7,7,7,14,1,0,0,0,12,12,0,0,0,0,0,0,0,1,14,8,8,8,8,14,1,0,0,0,12,12,0,0,0,0,0,0,0,1,14,9,9,9,9,14,1,0,0,0,12,12,0,0,0,0,0,0,0,

1,14,10,10,10,10,14,1,0,0,0,12,12,0,0,0,0,0,0,0,0,14,11,11,11,11,14,0,0,0,0,12,12,0,0,0,0,0,0,0,0,14,11,11,11,11,14,0,0,0,0,96,11,96,1,97,0,0,0,0,0,14,11,11,11,11,11,92,0,0,0,11,96,95,2,17,17,17,17,17

,17,17,11,11,11,11,11,92,0,0,0,11,96,95,2,17,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,96,11,96,1,17,4,12,0,0,0,92,12,12,12,12,0,0,0,0,0,0,0,0,0,17,12,12,0,0,0,92,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,

92,92,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,21,21,21,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,66,16,66,14,66,12,12,12,12,0,0,0,0,0,0,0

,0,0,100,18,66,16,66,14,66,12,12,12,12,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="93x",author="93x",id="#1650885873",direction="right",cost=102,elevation=-15,map=[20,2,2,20,20,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,20,0,0,0,20,0,0,0,0,0,0,5,5,5,5,2

,20,0,0,0,20,0,0,0,20,0,0,0,0,0,0,0,0,0,0,2,20,0,0,0,20,0,0,0,20,0,0,0,0,0,0,0,0,0,0,5,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,6,6,6,6,6,19,0,0,0,19,0,0,0,19,0,0,0,0,0,0,6,0,6,0,0,19,0,0,0,19,0,0,0,19,0,0,0,0,0,0,6,0,6,0,0,19,0,0,0,19,0,0,0,19,0,0,0,0,0,0,6,6,6,0,0,19,0,0,0,19,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,

19,19,19,19,19,0,0,0,0,0,0,7,7,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,9,0,0,0,0,0,18,0,0,0,18,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,17,0,17,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,11,11,11,11,11,0,0,0,0,0,15,0,15,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,14,0,0,0,14,0,0,0,0,0,0,0,13,0,13,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,14,0,0,0,14]});}},

{function Run(){maps.push({name="Sooooo trigger",author="DVC",id="#1650885904",direction="forward",cost=146,elevation=9,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,100,31,0,0,0,0,0,0,0,5,5,0,0,0,0,0,

0,0,31,100,31,31,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,31,31,0,0,0,29,0,0,0,0,0,5,5,0,0,0,0,0,29,0,0,0,0,0,29,29,0,0,0,0,0,5,5,0,0,0,0,0,29,29,0,0,0,0,0,0,0,27,0,0,0,5,5,0,0,0,27,0,0,0,0,0,0,0,0,0,27,27,0,0

,0,5,5,0,0,0,27,27,0,0,0,0,0,0,0,0,0,0,0,25,0,5,5,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,0,5,5,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,97,33,32,31,30,29,28,27,26,5,5,26,27,28,29,30,3

1,32,33,97,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,0,5,5,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,25,1,96,96,1,25,0,0,0,0,0,0,0,0,0,0,0,27,27,0,0,1,91,91,1,0,0,27,27,0,0,0,0,0,0,0,0,0,27,0,

0,1,95,95,1,0,0,27,0,0,0,0,0,0,0,29,29,0,0,0,0,1,5,5,1,0,0,0,0,29,29,0,0,0,0,0,29,0,0,0,0,1,92,92,1,0,0,0,0,29,0,0,0,31,31,0,0,0,0,0,0,1,14,14,1,0,0,0,0,0,0,31,31,100,31,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,

0,31,100]});}},

{function Run(){maps.push({name="LITERALLY NOTHING",author="iProbie",id="#1650887009",direction="forward",cost=400,elevation=0,map=[24,2,2,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,2

4,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,

24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24

,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,2

4,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,

24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24

,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,2,2,24]});}},

{function Run(){maps.push({name="The Bridge",author="DVC",id="#1650888319",direction="forward",cost=616,elevation=1,map=[0,0,74,74,74,66,5,5,2,2,5,5,66,73,73,73,0,0,0,0,0,0,71,71,71,71,5,7,5,5,7,5,71,

71,71,71,0,0,0,0,0,0,71,71,71,71,5,8,6,89,8,5,71,71,71,71,0,0,0,0,0,0,71,71,71,71,5,9,7,7,9,5,71,71,71,71,0,0,0,0,0,0,71,71,71,71,5,10,89,8,10,5,71,71,71,71,0,0,0,0,0,0,71,71,71,71,5,11,89,9,11,5,71,7

1,71,71,0,0,0,0,0,0,71,71,71,71,5,12,10,89,12,5,71,71,71,71,0,0,0,0,0,0,71,71,71,71,5,13,11,11,13,5,71,71,71,71,0,0,0,0,0,0,71,71,71,71,73,14,89,12,14,74,71,71,71,71,0,0,0,0,28,28,71,26,71,25,3,14,12,

12,14,3,25,71,26,71,28,28,0,0,97,28,71,26,71,25,3,14,12,12,14,3,25,71,26,71,28,100,0,0,0,5,71,71,71,71,73,14,12,89,14,74,71,71,71,71,5,0,0,0,0,5,71,71,71,71,5,13,11,11,13,5,71,71,71,71,5,0,0,0,0,5,71,

71,71,71,5,12,89,10,12,5,71,71,71,71,5,0,0,0,0,5,71,71,71,71,5,11,9,89,11,5,71,71,71,71,5,0,0,0,0,5,71,71,71,71,5,10,8,8,10,5,71,71,71,71,5,0,0,0,0,5,71,71,71,71,5,9,7,7,9,5,71,71,71,71,5,0,0,0,0,5,71

,71,71,71,5,8,46,46,8,5,71,71,71,71,5,0,0,0,0,6,71,71,71,71,5,7,96,96,7,5,71,71,71,71,6,0,0,0,0,97,6,6,6,6,6,96,2,2,96,6,6,6,6,6,97,0,0,0]});}},

{function Run(){maps.push({name="dontcrouch",author="chong",id="#1650889019",direction="forward",cost=89,elevation=0,map=[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,1,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,1,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,70,1,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,1,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,70,1,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,1,66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="the seven islands",author="iProbie",id="#1650891316",direction="forward",cost=574,elevation=0,map=[0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,

0,0,0,0,0,0,0,66,66,5,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,0,0,66,5,97,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,0,0,66,66,5,5,66,66,66,66,66,66,66,66,66,5,97,5,66,66,0,0,66,66,66,66,66,66,

66,66,66,66,66,66,66,66,5,5,66,66,0,0,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,5,66,66,0,0,66,66,66,5,66,66,66,66,66,66,66,66,66,66,66,66,66,66,0,0,66,66,97,5,5,66,66,66,66,66,5,66,66,66,66,66,66,

66,0,0,66,66,66,66,66,66,66,66,66,97,5,66,66,66,66,66,66,66,0,0,66,66,66,66,66,66,66,66,66,66,5,66,66,66,5,5,97,66,0,0,66,66,66,66,66,66,66,66,66,66,5,66,66,66,66,66,66,66,0,0,66,5,5,66,66,66,66,66,66

,66,66,66,66,66,66,66,66,66,0,0,66,5,97,5,66,66,66,66,66,66,66,66,66,66,66,66,66,66,0,0,66,66,5,5,66,66,66,66,66,66,66,66,66,66,66,5,66,66,0,0,66,66,66,66,66,66,66,66,66,66,66,66,66,66,5,97,5,66,0,0,6

6,66,66,66,66,66,66,66,66,66,66,66,66,66,66,5,66,66,0,0,66,66,66,66,66,66,5,5,5,5,5,5,66,66,66,66,66,66,0,0,0,0,0,0,0,0,5,96,96,96,96,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,96,2,2,96,5,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Criss Cross",author="lamp",id="#1650891337",direction="forward",cost=176,elevation=0,map=[44,43,43,43,43,43,43,0,43,2,2,43,0,43,43,43,43,43,43,44,44,0,0,92,0,92,0,0,0,

0,0,0,0,92,0,92,0,92,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,44,44,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,44,44,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,44,44,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,44,44,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,92,44,44,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,44,44,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,44,44,92,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,44,44,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,92,0,92,0,92,0,0,0,0,0,0,0,92,0,92,0,0,44,44,43,43,43,43,43,43,0,43,2,2,43,0,43,4

3,43,43,43,43,44]});}},

{function Run(){maps.push({name="4youreyesonly",author="GandalfThePimp",id="#1650893603",direction="forward",cost=186,elevation=0,map=[0,0,25,2,2,25,25,25,25,25,92,0,0,0,0,0,25,25,25,25,0,0,25,25,25,2

5,25,25,25,25,92,0,0,0,0,0,25,25,25,25,0,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,26,26,0,0,0,25,25,25,25,25,26,0,0,0,0,0,0,26,26,26,26,26,0,0,0,25,25,0,0,0,27

,0,0,0,0,0,0,26,26,26,26,26,27,0,0,26,26,0,0,94,27,0,0,0,0,0,0,26,26,26,26,26,27,0,0,26,26,0,0,0,0,0,0,0,0,0,0,27,27,0,0,0,27,27,26,26,26,0,0,0,0,0,0,0,0,0,0,27,27,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,

0,27,27,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,28,28,27,27,27,0,0,0,0,0,0,19,19,39,39,0,0,0,0,0,0,0,0,27,27,0,0,0,0,0,0,39,39,39,39,0,0,0,0,0,0,0,0,92,92,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0

,0,5,66,66,5,0,0,0,0,0,5,5,39,39,39,39,0,0,0,0,0,5,66,66,5,0,25,25,25,5,66,66,19,39,0,40,0,0,0,25,25,25,5,5,25,25,25,25,25,5,66,66,19,39,0,40,93,0,0,0,0,0,25,25,25,25,25,25,0,0,5,5,0,0,0,0,0,0,0,0,0,0

,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,2,2,25,25,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="DARE",author="GandalfThePimp",id="#1650893945",direction="left",cost=159,elevation=1,map=[1,1,1,0,0,25,2,2,25,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25,25,25,25,0,0,0,0,0,0,0

,0,1,1,1,1,1,1,0,0,0,25,25,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,85,0,0,26,26,0,0,0,0,0,0,0,0,0,1,1,1,0,85,0,0,0,0,26,26,27,27,27,28,28,28,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,28,0,0,0,0,0,0,85,0,34,35,35,35

,35,36,95,37,38,38,1,29,0,0,0,0,0,0,0,0,33,0,0,0,1,1,1,0,0,38,1,29,0,0,0,0,0,0,0,85,33,0,0,0,0,0,1,0,0,39,1,29,0,0,0,0,0,0,0,0,33,33,32,32,31,0,1,0,0,39,1,30,0,0,0,0,0,0,0,0,0,0,0,0,31,0,1,38,38,39,1,

30,0,0,0,0,0,0,0,0,85,0,30,30,30,0,1,38,1,1,1,31,0,0,0,0,0,0,0,0,0,0,29,0,0,0,1,38,1,32,32,31,0,0,0,0,0,0,26,26,27,28,29,0,1,1,0,37,1,32,0,0,0,0,0,0,0,0,2,26,0,0,0,1,0,0,0,37,1,32,0,0,0,0,0,0,0,0,2,26

,0,0,1,0,35,36,36,36,1,33,0,0,0,0,1,1,1,0,26,26,0,1,0,0,35,1,1,1,1,33,0,0,0,0,1,0,1,0,0,0,0,0,0,0,35,35,35,34,34,33,0,0,0,0,1,1,1,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="The holy cross",author="Flandre Scarlet",id="#1650894210",direction="forward",cost=352,elevation=0,map=[76,76,76,67,0,0,0,14,14,2,2,14,14,0,0,0,67,76,76,76,76,1,76,67,

0,0,0,0,91,91,91,91,0,0,0,0,67,76,1,76,76,76,76,67,0,0,0,0,0,91,91,0,0,0,0,0,67,76,76,76,67,67,67,67,0,0,0,0,0,14,14,0,0,0,0,0,67,67,67,67,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1

4,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,14,74,74,74,74,74,74,14,14,14,14,73,73,73,73,73,73,14,0,14,14,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,14,14,93,14,0,0,14,14,0,0,14,14,14,

14,0,0,14,14,0,0,14,93,14,14,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,14,14,0,14,74,74,74,74,74,74,14,14,14,14,73,73,73,73,73,73,14,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,91,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,67,67,67,67,0,0,0,0,0,14,14,0,0,0,0,0,67,67,67,67,76,76,76,67,0,0,0,0,0,14,14,0,0,0,0,0,67,76,76,76,76,

1,76,67,0,0,0,0,14,14,14,14,0,0,0,0,67,76,1,76,76,76,76,67,0,0,0,14,14,2,2,14,14,0,0,0,67,76,76,76]});}},

{function Run(){maps.push({name="defense1337",author="GandalfThePimp",id="#1650895168",direction="right",cost=357,elevation=0,map=[0,0,0,19,19,2,2,19,19,19,19,19,19,19,19,19,0,0,0,0,0,0,0,19,5,5,5,5,5

,5,0,5,5,5,0,5,19,19,19,0,0,0,19,5,5,5,5,5,5,5,0,5,5,5,0,0,5,5,19,0,0,19,5,5,5,5,0,5,5,5,5,5,5,5,5,0,0,5,0,19,0,19,5,0,5,5,5,5,5,5,5,5,5,5,10,10,10,5,5,19,19,5,5,5,6,6,6,6,5,5,5,5,0,6,10,45,45,10,5,19

,19,5,5,10,10,45,45,10,10,5,5,5,5,6,45,45,45,10,5,19,19,5,5,10,45,45,45,45,10,5,5,5,5,6,10,45,45,10,5,19,19,5,5,10,45,45,45,45,10,5,5,5,5,5,10,10,10,5,5,19,19,5,5,10,45,45,45,45,10,5,5,5,5,5,5,5,5,5,5

,19,19,5,5,5,10,10,10,10,5,5,5,0,5,5,5,5,5,5,5,2,19,5,5,5,5,0,5,5,5,5,5,5,5,5,5,5,5,5,5,2,19,0,5,5,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,19,19,5,5,15,100,15,26,27,5,5,5,5,6,6,6,6,5,5,5,19,19,5,5,5,15,1,1,28,

5,5,5,5,10,45,45,10,5,5,0,19,19,5,5,5,34,1,1,29,5,5,5,5,10,45,45,10,5,5,5,19,19,5,5,5,33,32,31,30,5,5,5,0,5,10,10,5,5,5,5,19,19,14,5,5,5,5,5,5,5,5,5,5,5,5,5,5,19,19,19,19,4,15,5,5,0,5,0,5,5,5,5,5,19,1

9,19,19,0,0,0,93,19,19,19,19,19,19,19,19,19,19,19,19,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Death Star",author="GandalfThePimp",id="#1650895363",direction="forward",cost=340,elevation=0,map=[97,25,0,25,25,0,0,0,0,2,2,0,0,0,0,25,0,0,25,99,0,0,0,0,0,0,5,5,5,5,5

,5,5,5,0,0,0,0,0,0,0,25,0,0,0,5,5,5,5,5,5,5,5,5,5,0,0,25,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,25,25,0,0,5,5,5,1,1,5,5,5,5,1,1,5,5,5,0,0,25,0,0,5,5,5,1,1,1,5,5,5,5,1,1,1,5,5,5,0,0,0,5,5,5,1,1,1,1,

5,92,92,5,1,1,1,1,5,5,5,0,1,5,5,1,1,1,1,19,19,19,19,19,19,1,1,1,1,5,5,1,1,5,5,1,1,1,1,19,19,19,19,19,19,1,1,1,1,5,5,1,1,5,5,1,1,1,1,95,95,24,24,95,95,1,1,1,1,5,5,1,1,96,96,1,1,1,1,19,19,94,19,19,19,1,

1,1,1,98,98,1,1,5,5,1,1,1,1,91,91,91,91,91,91,1,1,1,1,5,5,1,1,5,5,1,1,1,1,19,19,19,19,19,19,1,1,1,1,5,5,1,0,5,5,5,1,1,1,1,5,92,92,5,1,1,1,1,5,5,5,0,0,0,5,5,5,1,1,1,5,5,5,5,1,1,1,5,5,5,0,0,25,0,0,5,5,5

,1,1,5,5,5,5,1,1,5,5,5,0,0,25,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,25,0,0,25,25,0,0,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,0,0,25,0,0,0,100,25,0,0,25,0,0,0,0,2,2,0,0,0,0,0,0,0,25,88]

});}},

{function Run(){maps.push({name="Split",author="Jando",id="#1650898560",direction="forward",cost=118,elevation=4,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,20,17,17,20,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,17,17,21,0,0,21,17,17,0,0,0,0,0,0,0,0,0,0,0,0,96,96,0,

0,0,0,17,97,0,0,0,0,0,0,0,0,0,0,0,0,96,96,0,0,0,21,17,17,0,0,0,0,0,0,0,0,0,0,0,0,99,17,0,0,0,0,98,98,0,0,0,0,0,0,0,0,0,0,0,0,17,17,21,0,0,0,98,98,0,0,0,0,0,0,0,0,0,0,0,0,101,101,0,0,0,21,17,102,0,0,0,

0,0,0,0,0,0,0,0,0,101,101,21,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,104,17,0,0,0,0,103,103,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,23,23,0,103,103,0,0,0,0,0,0,0,0,0,0,0,21,17,17,17,17,17,17,17,17,21,0,0,0,0,0,0,

0,0,0,0,0,21,0,0,18,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,

0,0,0]});}},

{function Run(){maps.push({name="TheFloorAggresiveIs",author="Kaiser Pepe",id="#1650907123",direction="right",cost=187,elevation=14,map=[0,0,0,0,0,0,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,25,25,0,0,0

,1,28,28,0,0,0,0,0,0,0,0,0,0,0,0,26,26,0,27,1,1,28,94,0,0,0,0,0,0,0,0,0,0,0,0,27,27,28,87,28,28,28,28,0,0,0,0,0,0,0,0,0,0,0,1,85,85,0,27,1,1,28,94,0,0,0,0,0,0,0,0,0,0,0,1,27,27,0,0,0,1,28,28,0,0,0,0,0

,0,0,34,34,0,0,1,29,30,0,0,0,1,1,1,0,0,0,0,0,0,0,93,34,0,0,1,31,32,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,34,86,34,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,93,34,1,0,0,96,96,91,35,35,35,35,35,35,35,35,35,35,0,0,34,34

,1,0,0,33,33,0,0,0,0,0,0,0,1,35,87,35,0,34,34,1,1,0,0,86,86,0,0,0,0,0,0,0,1,35,35,35,0,34,34,0,0,0,0,35,35,1,1,1,0,0,0,0,1,1,1,91,0,34,34,0,0,0,0,35,35,85,35,35,0,35,0,36,99,0,1,91,0,0,0,0,0,0,0,35,35

,35,35,85,0,35,0,36,36,0,1,37,0,0,34,0,0,0,0,85,36,1,1,1,0,0,0,0,0,0,1,38,0,0,0,0,0,0,0,38,38,1,0,0,0,0,0,0,0,0,0,0,0,34,97,0,0,0,0,38,38,1,0,0,0,39,0,91,39,39,85,39,2,0,0,0,0,0,0,98,98,39,39,39,0,0,0

,39,85,39,39,39,2,0,0,0,0,0,0,39,39,39,39,39,0,39,0,91,39,85,39,39,0]});}},

{function Run(){maps.push({name="GoGoParkour",author="GoGoShooter",id="#1650916909",direction="forward",cost=212,elevation=-10,map=[1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,24,24,24,0,0,0,24,24,0

,0,0,24,24,24,0,0,1,1,0,24,24,24,24,3,5,3,24,24,3,5,3,24,24,24,24,0,1,1,0,92,24,24,24,0,0,0,0,0,0,0,0,24,24,24,92,0,1,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,1,

0,0,0,3,0,0,0,0,97,93,0,0,0,0,3,0,0,0,1,1,0,0,22,22,22,0,0,0,20,20,0,0,0,22,22,22,0,0,1,1,0,22,22,22,22,3,5,0,3,3,0,5,3,22,22,22,22,0,1,1,0,0,22,22,22,0,0,0,5,5,0,0,0,22,22,22,0,0,1,1,0,0,0,22,0,0,0,0

,0,0,0,0,0,0,22,0,0,0,1,1,0,0,0,96,0,0,0,0,100,94,0,0,0,0,96,0,0,0,1,1,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,1,1,0,18,18,0,0,0,0,0,14,14,0,0,0,0,0,18,18,0,1,1,0,18,18,0,0,0,0,0,14,14,0,0,0,0,0,18,18,0

,1,1,0,18,18,0,0,0,16,0,14,14,0,16,0,0,0,18,18,0,1,1,0,0,0,0,16,16,16,0,14,14,0,16,16,16,0,0,0,0,1,1,0,0,0,0,16,0,0,0,14,14,0,0,0,16,0,0,0,0,1,1,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1

,1,2,2,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="denebe",author="FLaN KS",id="#1650984011",direction="forward",cost=400,elevation=0,map=[5,24,5,24,5,24,5,24,5,2,2,24,5,24,5,24,5,24,5,24,24,5,24,5,24,5,24,5,24,5,5,5,2

4,5,24,5,24,5,24,5,5,24,5,24,5,24,5,24,5,5,5,5,5,24,5,24,5,24,5,24,24,5,24,5,24,5,24,5,5,5,24,5,5,5,24,5,24,5,24,5,5,24,5,24,5,24,5,5,5,24,5,24,5,5,5,24,5,24,5,24,24,5,24,5,24,5,5,5,24,5,24,5,24,5,5,5

,24,5,24,5,5,24,5,24,5,5,5,24,5,24,5,24,5,24,5,5,5,24,5,24,24,5,24,5,5,5,24,5,24,5,24,5,24,5,24,5,5,5,24,5,5,24,5,5,5,24,5,24,5,24,5,24,5,24,5,24,5,5,5,24,24,5,5,5,24,5,24,5,24,5,24,5,24,5,24,5,24,5,5

,24,24,5,5,24,5,24,5,24,5,24,5,24,5,24,5,24,5,24,5,24,24,5,5,5,24,5,24,5,24,5,24,5,24,5,24,5,24,5,5,24,5,24,5,5,5,24,5,24,5,24,5,24,5,24,5,24,5,5,5,24,24,5,24,5,5,5,24,5,24,5,24,5,24,5,24,5,5,5,24,5,5

,24,5,24,5,5,5,24,5,24,5,24,5,24,5,5,5,24,5,24,24,5,24,5,24,5,5,5,24,5,24,5,24,5,5,5,24,5,24,5,5,24,5,24,5,24,5,5,5,24,5,24,5,5,5,24,5,24,5,24,24,5,24,5,24,5,24,5,5,5,24,5,5,5,24,5,24,5,24,5,5,24,5,24

,5,24,5,24,5,5,5,5,5,24,5,24,5,24,5,24,24,5,24,5,24,5,24,5,24,2,2,24,24,5,24,5,24,5,24,5]});}},

{function Run(){maps.push({name="Steps Down",author="Hichatu",id="#1650986669",direction="forward",cost=200,elevation=-19,map=[0,2,2,0,21,0,18,0,15,0,12,0,9,0,6,0,5,5,0,0,0,24,24,0,21,0,18,0,15,0,12,0

,9,0,6,0,5,5,0,0,0,24,24,0,21,0,18,0,15,0,12,0,9,0,6,0,5,5,0,0,0,24,24,0,21,0,18,0,15,0,12,0,9,0,6,0,5,5,0,0,0,24,24,0,21,0,18,0,15,0,12,0,9,0,6,0,5,5,0,0,0,24,24,0,21,0,18,0,15,0,12,0,9,0,6,0,5,5,0,0

,0,24,24,0,21,0,18,0,15,0,12,0,9,0,6,0,5,5,0,0,0,24,24,0,21,0,18,0,15,0,12,0,9,0,6,0,5,5,0,0,0,24,24,0,21,0,18,0,15,0,12,0,9,0,6,0,5,5,0,0,0,24,24,0,21,0,18,0,15,0,12,0,9,0,6,0,5,5,0,0,0,24,24,0,21,0,

18,0,15,0,12,0,9,0,6,0,5,5,0,0,0,24,24,0,21,0,18,0,15,0,12,0,9,0,6,0,5,5,0,0,0,24,24,0,21,0,18,0,15,0,12,0,9,0,6,0,5,5,0,0,0,24,24,0,21,0,18,0,15,0,12,0,9,0,6,0,5,5,0,0,0,24,24,0,21,0,18,0,15,0,12,0,9

,0,6,0,5,5,0,0,0,24,24,0,21,0,18,0,15,0,12,0,9,0,6,0,5,5,0,0,0,24,24,0,21,0,18,0,15,0,12,0,9,0,6,0,5,5,0,0,0,24,24,0,21,0,18,0,15,0,12,0,9,0,6,0,5,5,0,0,0,24,24,0,21,0,18,0,15,0,12,0,9,0,6,0,5,5,0,0,0

,24,24,0,21,0,18,0,15,0,12,0,9,0,6,0,2,2,0,0]});}},

{function Run(){maps.push({name="Downwards",author="tormacoy",id="#1650986756",direction="right",cost=308,elevation=-12,map=[1,2,2,24,24,23,23,22,1,1,0,0,0,0,0,0,0,0,0,0,1,24,24,24,24,23,23,22,22,1,1,

0,0,0,0,0,0,0,0,0,1,24,24,24,24,23,86,22,22,21,1,1,0,0,0,0,0,0,0,0,1,23,23,86,23,23,23,22,22,21,21,1,1,0,0,0,0,0,0,0,1,23,23,23,23,23,23,22,22,86,21,20,1,0,0,0,0,0,0,0,1,22,22,22,22,22,86,22,22,21,21,

20,1,1,0,0,0,0,0,0,1,22,22,86,22,22,22,22,22,86,21,20,20,1,0,0,0,0,0,0,1,86,21,21,21,86,21,21,21,21,21,20,86,1,1,0,0,0,0,0,1,21,21,21,21,21,21,21,21,21,86,20,20,19,1,1,0,0,0,0,1,20,20,20,20,20,20,86,2

0,20,20,20,20,19,1,1,0,0,0,0,1,20,86,20,86,20,20,20,20,20,20,20,20,19,19,1,1,0,0,0,1,1,19,19,19,19,19,19,19,19,86,19,19,86,19,18,1,1,0,0,0,1,19,19,19,19,19,19,86,19,19,19,19,19,19,18,1,1,1,0,0,1,1,18,

86,18,86,18,18,18,18,18,86,18,18,18,17,1,1,1,0,0,1,17,86,17,17,17,86,17,17,17,17,86,17,17,86,1,1,1,0,0,1,15,15,15,15,15,15,15,15,86,15,15,15,15,15,15,1,1,0,0,0,1,1,1,1,1,14,86,14,14,14,14,14,14,14,14,

86,12,0,0,0,1,1,1,1,1,1,1,13,13,13,86,13,13,86,13,12,2,0,0,0,0,1,1,1,1,1,1,1,12,12,12,12,12,12,12,12,2,0,0,0,0,1,1,1,1,1,1,1,1,1,12,12,86,12,12,12,12]});}},

{function Run(){maps.push({name="Steps Down 2",author="Hichatu",id="#1650987041",direction="right",cost=96,elevation=-12,map=[0,2,2,0,0,0,0,0,10,10,10,10,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,10,94,93,10,

0,0,0,0,0,12,12,2,0,24,24,0,0,0,0,0,10,10,10,10,0,0,0,0,0,12,12,2,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,23,23,0,0,0,0,0,0,12,12,0,0,0,0,0,0,13,13,0,0,23

,23,0,0,0,0,0,0,12,12,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,0,14,14,0,0,0,0,0,0,14,14,0,0,22,22,0,0,0,0,0,0,14,14,0,

0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,21,21,0,0,0,0,0,0,16,16,0,0,0,0,0,0,15,15,0,0,21,21,0,0,0,0,0,0,16,16,0,0,0,0,0,0,15,15,0,0,0,0,

0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,20,20,0,0,19,19,0,0,18,18,0,0,17,17,0,0,16,16,0,0,20,20,0,0,19,19,0,0,18,18,0,0,17,17,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Duel of the Fates",author="Gemzis",id="#1651008302",direction="right",cost=586,elevation=3,map=[24,77,0,2,2,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,77,0,5,5,0,7

7,77,77,77,77,77,77,77,77,77,77,77,77,24,24,77,0,5,5,76,76,76,0,0,0,0,0,0,0,0,0,0,77,24,24,77,0,6,6,76,76,76,9,5,5,5,88,5,5,5,0,0,77,24,24,77,0,6,6,76,76,6,9,6,85,5,5,88,7,7,0,0,77,24,24,77,0,7,7,76,6

,93,9,6,6,76,76,76,7,7,0,0,77,24,24,77,0,7,7,76,76,6,9,47,47,76,76,95,95,95,0,0,77,24,24,77,0,48,48,76,6,76,76,91,91,76,76,9,9,0,0,0,77,24,24,77,0,48,48,76,6,76,76,91,91,76,76,10,10,0,0,0,77,24,24,77,

0,49,49,76,6,76,76,48,48,76,76,10,10,30,30,9,8,2,24,77,0,95,95,95,49,48,48,48,48,76,76,10,10,30,30,9,8,2,24,67,0,49,49,49,49,48,48,48,48,76,76,51,51,0,0,0,67,24,24,67,0,49,49,6,70,70,6,70,70,6,70,51,5

1,0,0,0,67,24,24,67,0,49,49,70,70,6,70,6,70,70,6,51,51,0,0,0,67,24,24,67,0,50,50,70,6,70,6,70,6,70,70,51,51,0,0,0,67,24,24,67,0,92,92,6,70,6,70,70,70,70,6,51,51,94,0,0,67,24,24,67,0,36,36,36,37,38,92,

0,0,38,92,51,51,0,0,0,67,24,24,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,24,24,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24]});}},

{function Run(){maps.push({name="Pool Day",author="qw0x",id="#1651008329",direction="left",cost=327,elevation=0,map=[24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,24,2,2,24,24,90,20,20,85,20,85,91,20

,20,20,90,20,90,24,0,24,20,20,24,24,20,20,85,91,20,20,85,20,20,20,20,20,20,24,0,24,20,20,24,24,20,20,24,24,24,24,24,24,24,24,24,20,20,24,0,24,20,90,24,24,20,20,24,0,0,0,0,0,0,0,24,20,20,24,0,24,20,20,

24,24,20,20,24,20,20,20,20,20,20,0,24,90,20,24,0,24,20,20,24,24,20,20,24,20,66,66,66,66,20,0,24,85,20,24,0,24,90,20,24,24,20,20,20,20,71,70,66,66,20,0,24,91,85,24,0,24,20,20,24,24,95,95,20,20,74,70,66

,66,20,0,24,20,20,24,0,24,20,20,24,0,0,0,24,24,71,70,72,66,20,0,24,20,20,24,0,24,20,20,24,0,0,0,0,24,71,70,66,66,20,0,24,20,20,24,0,24,20,20,24,0,92,0,0,20,66,66,66,66,20,0,24,96,96,24,0,24,91,91,24,2

4,20,20,20,20,20,20,20,20,20,0,24,20,20,24,24,24,20,20,24,2,20,24,0,0,0,0,0,0,0,24,20,73,66,66,20,20,20,20,24,2,20,24,0,0,0,0,0,0,0,24,20,73,66,66,20,20,20,90,24,24,24,24,0,0,0,0,0,0,0,20,97,24,24,24,

24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Cute Roads",author="qw0x",id="#1651008364",direction="right",cost=214,elevation=0,map=[0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,100,0,0,0,0,0,0,0,

0,0,0,0,8,8,0,0,0,27,27,27,27,90,27,27,0,0,0,0,0,0,0,0,4,4,0,0,0,3,0,0,0,0,0,27,27,27,27,0,0,0,32,0,12,12,0,0,0,33,0,0,0,0,0,28,0,0,27,27,0,0,3,0,13,13,0,0,0,33,33,32,31,30,29,28,0,77,0,27,0,0,36,0,0,

13,0,0,0,33,0,0,0,0,0,0,77,25,77,27,0,0,100,0,0,92,0,0,0,88,0,0,0,0,0,0,0,77,0,28,2,0,0,0,0,0,0,0,0,33,0,52,52,52,52,0,50,49,48,28,2,0,67,67,0,0,0,0,0,33,0,52,0,0,0,92,0,0,0,28,0,67,28,28,66,68,68,68,

68,68,68,68,66,28,28,28,28,28,28,28,0,0,67,67,0,0,0,0,0,33,0,52,0,0,0,0,100,0,0,0,0,0,0,0,0,33,0,0,0,33,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,33,33,33,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,

0,67,0,67,0,0,0,0,77,0,77,0,33,0,0,0,0,52,0,0,67,25,0,25,67,0,0,77,25,0,25,77,4,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,52,0,0,67,25,0,25,67,0,0,77,25,0,25,77,100,37,52,52,52,52,0,0,0,67,0,6

7,0,0,0,0,77,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Nice and Perky",author="qw0x",id="#1651008430",direction="right",cost=235,elevation=-2,map=[1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,59,59,58,58,58,58,58,58,57,57,57,

56,1,1,0,0,0,0,0,1,59,59,58,58,58,58,58,58,57,57,57,56,55,1,0,0,0,0,0,1,59,59,58,58,58,58,58,58,57,57,57,56,55,54,1,0,0,0,0,1,59,59,59,58,58,58,58,58,57,57,57,56,55,54,53,1,0,0,0,1,1,58,59,58,58,58,58

,58,57,57,57,56,55,54,53,1,0,0,0,0,1,1,58,58,58,58,58,58,57,57,57,56,55,54,53,1,0,0,0,0,0,1,1,58,58,58,58,58,57,57,57,56,55,54,53,1,0,0,0,0,0,0,1,1,58,58,58,58,57,57,57,56,55,54,53,1,0,0,0,0,0,0,0,1,1

,58,58,58,57,57,57,56,55,54,53,1,0,0,0,0,0,0,0,0,1,58,58,58,57,57,57,56,55,54,53,1,0,0,0,0,0,0,0,0,1,1,58,58,57,57,57,56,55,54,53,1,0,0,0,0,0,0,0,0,0,1,58,58,57,57,57,56,55,1,1,18,17,17,2,0,0,0,0,0,0,

1,1,58,57,57,57,56,1,18,18,17,17,17,2,0,0,0,0,0,0,0,1,58,57,57,1,1,18,17,17,17,0,0,0,0,0,0,0,0,0,0,1,86,86,86,1,18,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,86,86,18,18,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,18,1

7,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="747",author="qw0x",id="#1651008455",direction="left",cost=206,elevation=-10,map=[0,76,10,10,3,19,0,2,2,0,19,0,18,0,0,17,0,0,0,0,0,10,76,10,0,19,19,19,19,19,19,0,18,18,

0,0,17,0,0,0,0,76,9,76,0,19,0,0,0,0,19,0,18,0,17,0,0,0,0,0,0,9,76,9,0,19,0,0,90,0,19,0,0,17,0,0,16,0,0,0,0,76,8,76,0,19,0,0,0,0,19,0,17,0,93,15,0,0,0,0,0,8,76,8,4,19,0,0,0,0,19,0,0,14,0,0,17,0,0,0,96,

76,8,76,0,19,90,0,90,0,19,0,14,0,0,76,18,18,19,0,7,96,76,8,0,18,0,0,0,0,18,0,15,76,17,17,0,0,19,0,0,8,96,76,0,16,0,0,0,0,17,0,16,16,0,0,0,19,19,0,0,0,9,96,0,15,0,90,0,90,16,0,15,0,0,0,18,19,0,0,0,0,0,

12,12,14,0,0,0,0,15,14,0,0,97,17,18,0,0,0,7,0,0,0,12,13,0,90,0,0,14,0,0,0,17,17,0,0,0,0,7,7,0,0,0,12,0,0,0,90,14,0,0,16,17,0,0,0,0,0,7,10,9,0,0,11,0,0,0,0,14,0,14,15,0,0,0,0,0,0,0,9,9,10,0,11,0,32,32,

0,13,14,0,0,0,0,0,0,0,0,0,0,10,10,11,11,0,0,0,0,12,0,0,0,0,0,0,0,0,0,96,96,96,0,0,0,10,0,0,12,0,0,0,0,0,0,0,0,0,0,2,9,96,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,2,9,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="de escalate",author="iProbie",id="#1651038774",direction="forward",cost=80,elevation=-17,map=[0,0,0,0,0,24,2,2,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,23,23,23,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1

8,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9

,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="needle in haystack",author="iProbie",id="#1651043696",direction="forward",cost=388,elevation=0,map=[0,0,0,0,0,0,0,1,25,2,2,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,25,25,25,

25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,25,25,25,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,25,25,25,25,1,0,0,0,0,0,0,0,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,25,26,26,26,26,26,26,26,26,26,26,

26,26,26,26,26,26,25,0,0,25,26,97,97,97,97,97,97,97,97,97,97,97,97,97,97,26,25,0,0,25,26,97,97,97,97,97,97,97,97,97,97,97,97,97,97,26,25,0,0,25,26,97,97,97,97,97,97,97,97,97,97,97,97,97,97,26,25,0,0,2

5,26,97,97,97,97,97,97,97,97,97,97,97,97,97,97,26,25,0,0,25,26,97,97,97,97,97,97,97,97,97,97,97,97,97,97,26,25,0,0,25,26,97,97,97,97,97,97,97,97,97,97,97,97,97,97,26,25,0,0,25,26,97,97,97,97,97,97,97,

97,97,99,97,97,97,97,26,25,0,0,25,26,97,97,97,97,97,97,97,97,97,97,97,97,97,97,26,25,0,0,25,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,25,0,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25

,0,0,0,0,0,0,0,0,1,25,25,25,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,25,25,25,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,98,98,98,98,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,98,2,2,98,1,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="KItty",author="Kitty Cat",id="#1651054666",direction="forward",cost=377,elevation=0,map=[0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,0,0,0,1,1,9,9,9,9,9,9,9,9,9,1,0,0,1,5,

5,0,0,1,1,30,9,9,9,9,9,9,9,9,9,9,1,0,1,5,5,0,1,1,31,30,9,1,1,1,9,9,9,9,9,9,9,1,1,85,85,1,1,97,31,30,9,1,66,1,9,9,9,9,9,9,9,9,1,6,6,0,1,1,31,30,9,1,1,1,90,90,9,9,9,9,9,9,1,85,85,0,0,1,1,30,9,9,9,9,90,9

0,1,1,9,9,9,9,1,7,7,0,0,0,1,1,9,9,9,9,9,9,9,1,9,9,9,9,98,8,8,0,0,0,1,9,1,9,9,9,1,9,9,1,91,1,1,9,98,8,99,0,0,0,1,9,1,96,96,96,1,1,1,1,49,49,94,1,1,1,1,0,0,0,1,9,1,96,96,96,1,1,1,1,49,49,49,1,1,1,1,0,0,

0,1,9,1,9,9,9,1,9,9,1,1,1,1,9,9,8,8,0,0,0,1,1,9,9,9,9,9,9,9,1,9,9,9,9,9,8,8,0,0,1,1,10,9,9,9,90,90,90,1,1,9,9,9,9,1,7,7,0,1,1,12,10,9,9,1,90,90,90,9,9,9,9,9,9,1,7,7,1,1,93,12,10,9,9,1,90,90,90,9,9,9,9

,9,9,1,6,6,0,1,1,12,10,9,9,1,9,9,9,9,9,9,9,9,1,1,6,6,0,0,1,1,10,9,9,9,9,9,9,9,9,9,9,1,0,1,5,5,0,0,0,1,1,9,9,9,9,9,9,9,9,9,1,0,0,1,5,5,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2]});}},

{function Run(){maps.push({name="bigL",author="iProbie",id="#1651077725",direction="right",cost=108,elevation=-19,map=[0,0,0,0,0,24,2,2,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,65,65,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,15,15,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,15,15,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,15,15,

19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,15,15,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,15,15,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,15,15,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,15,15,15,15,14,13,12,11,10,9,8,7,6,5,5,0,0,0,0,0,15,15,15,15,65,5,5,5,5,5,5,5,5,5,2,0,0,0,0,0,15,15,15,15,65,5,5,5,5,5,5,5,5,5,2,0,0,0,0,0,15,15,15,15,14,13,12,11,10,9,8,7,6,5,5,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Squid is a furry",author="Papaj",id="#1651128157",direction="forward",cost=58,elevation=0,map=[2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Ze4Life",author="gxp",id="#1651151973",direction="right",cost=470,elevation=7,map=[67,5,2,2,5,67,67,67,67,1,67,67,67,67,67,67,67,67,67,67,67,0,5,5,0,0,9,10,67,1,36,92,

12,12,12,12,12,12,12,2,67,0,6,0,0,9,0,11,67,1,0,0,67,67,67,67,67,67,12,2,67,0,7,0,9,0,0,12,67,1,35,0,0,0,0,0,0,67,12,67,67,0,8,9,0,0,0,13,67,1,0,0,0,0,0,0,0,67,12,67,67,0,0,0,0,0,0,0,67,1,34,0,0,0,0,0

,0,0,92,67,67,0,14,14,14,14,14,14,67,1,0,0,21,0,0,0,0,0,21,67,67,0,13,0,0,11,0,13,67,1,33,92,21,21,21,21,21,21,21,67,67,0,12,0,0,11,0,12,67,1,0,0,21,67,67,67,67,67,21,67,67,0,11,0,0,11,0,11,67,1,32,0,

0,0,0,0,0,0,0,67,67,0,0,0,0,0,0,0,67,1,0,0,23,23,23,23,23,23,23,67,67,0,0,0,0,0,0,0,67,1,32,92,23,67,67,23,67,67,67,67,67,0,30,30,30,0,0,0,67,1,0,0,23,0,0,23,0,0,0,67,67,0,0,0,30,0,0,0,67,1,31,0,0,0,0

,0,0,0,0,67,67,0,0,0,30,0,0,0,67,1,0,0,24,24,24,24,24,24,24,67,67,0,30,30,30,30,30,30,30,103,30,92,24,67,67,24,67,67,24,67,67,0,0,0,30,0,0,0,67,1,0,0,24,0,0,24,0,0,24,67,24,24,24,0,92,0,0,0,67,1,0,0,2

4,0,0,24,0,0,24,67,24,104,24,24,24,0,0,0,67,1,0,0,24,0,0,24,0,0,24,67,24,24,24,67,67,67,67,67,67,1,67,67,67,67,67,67,67,67,67,67]});}},

{function Run(){maps.push({name="Lbg",author="beach escape guy",id="#1651177397",direction="forward",cost=483,elevation=0,map=[1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,5,5,6,6,6,6,6,6,6,76,66,1,1,1

,1,1,1,1,1,5,5,5,6,66,66,66,66,66,6,76,66,1,1,1,1,1,1,1,1,5,5,5,6,6,6,6,6,66,6,76,66,1,1,1,1,1,1,1,1,5,5,5,6,6,6,6,6,66,6,76,66,1,1,1,1,1,1,1,1,5,5,5,6,6,6,6,6,6,6,76,66,1,1,1,1,1,1,1,1,5,5,5,6,6,6,6,

6,6,6,76,66,1,1,1,1,1,1,1,1,5,5,5,6,66,66,66,66,66,6,76,66,1,1,1,1,1,1,1,1,5,5,5,6,66,6,66,6,66,6,76,66,1,1,1,1,1,1,1,1,5,5,5,6,66,66,6,66,66,6,76,66,1,1,1,1,1,1,1,1,5,5,5,6,6,6,6,6,6,6,76,66,1,1,1,1,

1,1,1,1,5,5,5,6,6,6,6,6,6,6,76,66,1,1,1,1,1,1,1,1,5,5,5,6,66,66,66,66,66,6,76,66,5,5,5,5,5,5,1,1,5,5,5,6,66,6,6,6,66,6,76,66,5,5,5,5,5,5,1,1,5,5,5,6,66,6,66,6,66,6,76,66,5,5,5,5,5,5,1,1,5,5,5,6,66,6,6

6,66,66,6,76,66,5,5,5,5,5,5,1,1,5,5,5,6,6,6,6,6,6,6,76,66,5,5,5,5,5,5,1,1,5,5,5,6,6,6,6,6,6,6,6,66,5,5,5,5,5,5,1,1,5,5,5,6,6,6,6,6,6,6,6,66,5,5,5,5,5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1]});}},

{function Run(){maps.push({name="tom hanks",author="CoolDude",id="#1651283446",direction="left",cost=345,elevation=0,map=[0,16,2,2,19,19,19,24,24,16,16,16,16,16,0,0,0,0,0,0,0,16,13,13,66,68,68,68,68,6

8,68,68,68,66,13,13,13,0,0,0,0,16,13,13,66,68,68,68,68,68,68,68,68,66,13,13,13,33,0,0,0,16,96,96,19,19,19,24,24,16,16,16,16,16,13,13,13,0,0,0,0,0,13,13,19,13,13,13,24,0,0,0,0,40,3,13,13,0,34,0,0,0,13,

13,19,13,99,13,24,0,40,40,0,0,13,13,13,0,0,0,0,0,13,13,19,13,13,13,24,0,0,0,0,0,13,13,13,0,0,35,0,0,13,13,19,76,76,76,24,0,40,0,0,0,13,13,13,0,0,0,0,0,13,13,19,76,13,76,24,0,97,0,0,24,96,96,96,0,0,36,

0,0,13,13,19,76,76,76,24,0,0,0,24,0,0,13,13,1,0,0,0,98,98,98,19,13,13,13,24,24,24,24,24,0,0,13,13,1,0,17,0,13,13,13,98,13,13,13,13,76,13,76,13,76,13,13,13,1,0,97,0,13,13,13,98,13,13,13,76,13,76,13,76,

13,13,13,13,13,1,0,0,13,13,13,98,98,98,19,0,0,0,0,0,0,0,13,13,13,13,1,0,13,13,13,13,13,13,19,0,0,0,0,0,0,0,0,13,13,13,0,2,13,13,13,13,13,13,19,0,0,0,0,0,0,0,0,0,13,13,0,2,13,13,13,13,13,13,19,0,0,0,0,

0,0,0,0,0,13,13,0,0,13,13,13,13,13,13,98,34,0,0,0,35,0,0,33,0,13,13,0,0,13,13,13,13,13,13,98,99,0,36,0,0,0,0,0,0,13,13,0,0,13,13,13,13,13,13,98,34,0,0,0,0,34,0,0,0,13,13,0]});}},

{function Run(){maps.push({name="The Great Wall",author="tilgep",id="#1651340418",direction="forward",cost=289,elevation=-2,map=[0,0,0,0,0,0,7,7,7,2,2,7,7,7,0,0,0,0,0,0,0,0,0,0,5,6,7,7,7,7,7,7,7,7,6,5

,0,0,0,0,0,0,0,5,5,6,6,6,6,6,6,6,6,6,6,5,5,0,0,0,0,0,0,5,5,5,5,5,5,0,0,5,5,5,5,5,90,0,0,0,0,0,5,5,90,5,5,5,0,0,0,0,5,5,90,5,5,5,0,0,77,96,90,5,5,90,5,0,0,77,77,0,0,5,5,90,5,5,98,77,24,105,1,92,1,5,0,1

,0,24,24,0,1,0,5,1,92,1,105,24,1,3,1,124,1,1,1,1,1,1,1,1,1,1,1,1,124,1,3,1,1,124,1,97,124,0,124,0,123,123,124,1,124,124,0,124,99,1,124,1,1,124,124,124,124,124,0,124,1,122,123,123,0,124,124,124,124,124

,124,1,1,1,1,124,124,1,1,1,1,124,124,1,1,1,1,124,124,1,1,1,0,1,0,1,1,0,0,1,1,24,24,1,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,24,1,65,65,1,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,1,65,65,1,77,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,77,5,65,65,5,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,5,65,65,5,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,5,5,5,5,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,5,5,5,5,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,5,5,5,5,77,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,77,5,2,2,5,77,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="A Hazardous Crossing",author="tilgep",id="#1651340817",direction="right",cost=323,elevation=-6,map=[0,0,0,0,20,2,2,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,20,20,90,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,0,0,77,0,0,0,77,0,0,0,0,0,0,0,20,20,20,20,64,0,0,77,24,77,0,77,24,77,0,0,0,0,0,0,20,20,20,20,0,0,0,0,77,0,0,0,77,0,0,

0,0,0,0,0,20,90,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,90,0,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,20,20,20,20,20,83,76,83,76,76,76,20,19,18,17,16,15,14,14,14,0,20,90,20,20,83,76,83,76,76,76,20,19

,90,90,16,15,14,14,2,0,0,20,20,20,83,76,83,76,83,83,20,64,18,17,16,15,14,14,2,0,0,0,20,20,83,76,83,76,83,83,20,19,18,17,16,15,14,14,14,0,0,0,96,0,77,76,83,76,77,77,0,0,97,0,0,0,0,0,0,0,0,0,40,96,0,76,

83,76,0,0,39,0,0,0,0,77,35,77,0,0,0,0,41,0,0,76,76,76,0,0,0,0,0,0,0,0,36,0,0,0,96,0,0,0,0,76,76,76,0,39,0,0,77,77,0,0,37,0,0,0,40,96,0,41,0,76,76,76,0,0,0,0,24,24,0,0,38,0,0,0,41,40,96,0,0,40,40,40,0,

0,0,0,77,77,0,0,39,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,41,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0]});}},

{function Run(){maps.push({name="Water Slaughter",author="Midran Kidran",id="#1651343741",direction="forward",cost=496,elevation=7,map=[5,5,5,5,66,5,66,66,5,2,2,5,66,66,5,66,5,5,5,5,5,1,5,66,66,66,66,

66,5,5,5,5,66,66,66,66,66,5,1,5,5,1,5,66,66,66,66,66,66,66,66,66,66,66,66,66,66,5,1,5,5,1,5,66,66,5,66,66,66,66,66,66,66,66,5,66,66,5,1,5,5,1,5,5,66,66,66,66,5,66,66,5,66,66,66,66,5,5,1,5,97,1,5,5,66,

66,66,66,66,66,66,66,66,66,66,66,5,5,1,97,1,1,5,5,5,5,5,5,66,66,66,66,5,5,5,5,5,5,1,1,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,1,1,1,1,5,5,5,5,5,5,5,5,5,5,5,5,1,1,1,1,5,5,5,1,1,1,1,1,1,96,96,1,1,1,1,1,

1,5,5,5,6,1,5,5,5,5,5,5,95,95,95,95,5,5,5,5,5,5,1,6,7,1,1,1,1,1,5,5,5,5,5,5,5,5,1,1,1,1,1,7,8,1,12,12,12,1,1,1,1,1,1,1,1,1,1,12,12,12,1,8,9,1,12,1,12,12,12,12,12,12,12,12,12,12,12,12,1,12,1,9,10,1,12,

1,1,1,1,1,1,95,95,1,1,1,1,1,1,12,1,10,11,1,12,1,12,12,12,12,12,12,12,12,12,12,12,12,1,12,1,11,12,1,12,1,12,15,15,15,15,15,15,15,15,15,15,12,1,12,1,12,12,12,12,1,12,12,12,12,12,12,12,12,12,12,12,12,1,1

2,12,12,1,1,1,1,12,12,12,12,1,98,98,1,12,12,12,12,1,1,1,1,1,99,12,12,12,1,1,1,98,2,2,98,1,1,1,12,12,12,99,1]});}},

{function Run(){maps.push({name="Manic Panic",author="Midran Kidran",id="#1651345495",direction="forward",cost=433,elevation=0,map=[5,5,5,5,5,5,5,5,5,2,2,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,

5,5,5,5,5,5,5,5,5,24,5,9,6,6,6,6,6,6,6,6,9,5,24,5,5,5,5,5,5,24,5,10,7,7,7,7,7,7,7,7,10,5,24,5,5,5,5,5,5,24,5,11,8,8,8,8,8,8,8,8,11,5,24,5,5,5,5,5,5,24,5,12,9,9,9,9,9,9,9,9,12,5,24,5,5,5,3,3,5,24,5,13,

10,10,10,10,10,10,10,10,13,5,24,5,3,3,11,11,11,24,5,14,11,11,11,11,11,11,11,11,14,5,24,11,11,11,66,66,66,5,5,97,66,66,66,66,66,66,66,66,97,5,5,66,66,66,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,97,5,5,5

,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,97,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,1,1,1,1,1,1,1,96,96,1,1,1,1,1,1,1,1,1,1,5,5,5,5,5,5,5,1,5,5,5,5,5,5,5,5,5,5,1,1,1,1,1,1,1,1,5,1,1,1,1,1,1,1,1,1,1,5,1,5,5,

5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,5,90,5,5,5,90,5,1,5,5,5,95,5,1,5,5,5,5,5,1,5,5,5,90,5,5,5,1,5,5,5,1,5,95,5,5,1,5,5,5,5,5,5,5,5,5,5,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1

]});}},

{function Run(){maps.push({name="Stair Lair",author="Midran Kidran",id="#1651346708",direction="forward",cost=414,elevation=19,map=[5,5,5,5,5,5,5,5,5,5,5,5,2,2,5,5,5,5,5,1,1,1,1,1,1,1,1,1,1,1,5,5,5,5,

5,5,5,1,5,1,1,15,15,96,15,15,15,14,14,1,5,5,5,5,5,5,5,1,95,1,1,15,15,96,15,15,15,14,14,1,5,5,5,5,5,5,5,1,5,1,1,16,16,1,15,1,1,13,13,1,5,5,5,5,5,5,5,1,5,5,1,16,16,1,5,5,1,13,13,1,1,1,1,1,5,5,5,1,6,6,1,

17,1,1,5,5,1,12,12,1,24,24,24,1,5,5,5,1,6,6,1,17,1,5,15,5,1,12,12,1,24,99,24,1,5,5,5,1,6,6,1,18,1,15,15,5,1,11,11,1,24,24,24,1,5,5,5,1,7,7,1,18,1,97,15,5,1,11,11,1,1,24,1,1,1,1,1,1,7,7,1,19,1,15,15,5,

1,10,10,9,9,8,8,8,8,8,7,7,7,7,1,19,1,5,5,5,1,10,10,9,9,8,8,8,8,8,7,7,7,7,1,20,1,5,5,5,1,1,1,1,1,24,1,1,1,1,1,1,1,1,1,20,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,20,1,1,5,5,5,1,1,5,5,5,1,1,1,1,5,5,5,5,1,2

0,21,21,22,1,22,23,23,23,1,24,24,98,24,24,5,24,5,5,1,20,21,21,22,22,22,23,1,23,24,24,24,98,24,24,5,5,5,24,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,24,24,24,24,24,95,24,24,24,24,24,24,24,24,24,24,24,24,

5,24,24,24,2,2,24,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Hanging About",author="tilgep",id="#1651408037",direction="right",cost=210,elevation=-1,map=[0,0,0,0,27,2,2,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,27,0,0,0,0,0,96

,0,0,28,0,0,0,0,0,0,0,27,27,27,27,27,0,0,0,0,28,96,28,28,28,28,0,0,0,0,0,0,27,27,27,27,27,27,28,28,28,96,28,28,28,28,0,0,0,0,0,0,27,27,27,27,27,27,28,28,28,96,28,28,28,28,29,0,0,0,0,0,27,27,27,27,27,2

7,28,28,28,96,28,28,28,29,29,0,0,0,0,0,27,27,27,27,27,27,28,28,28,96,28,28,28,29,29,0,0,0,0,0,0,28,0,0,0,0,0,28,28,96,28,28,28,29,29,0,0,0,0,0,0,29,0,28,0,0,0,0,96,0,0,29,29,29,29,0,1,3,0,0,29,29,0,0,

0,0,0,0,0,0,0,29,29,29,29,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,29,29,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,98,29,29,29,98,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,98,98,98,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,27,27,27,0,0

,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,27,27,0,0,1,0,0,0,1,0,0,0,0,0,0,3,0,0,0,27,27,26,26,0,1,3,0,0,1,0,3,0,0,0,0,0,0,0,0,27,27,26,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,44,44,27,27,26,2,0,0,0,0,38,96,0,0,0,0,0,0,

3,44,99,44,3,27,26,26,0,97,39,0,1,1,37,0,0,0,0,0,0,0,44,44,27,27,0,0]});}},

{function Run(){maps.push({name="Water surf",author="Luffaren",id="#1651490449",direction="right",cost=436,elevation=5,map=[9,9,2,2,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,0,93,24,0,0,0,0,0,0,0,0,

0,0,0,0,127,127,127,127,9,0,94,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,67,0,96,0,0,67,0,0,0,0,0,0,0,0,0,67,67,67,67,11,12,13,96,0,9,9,0,0,0,0,0,0,0,0,24,14,14,14

,14,24,24,24,24,96,0,9,67,0,0,0,0,0,0,0,24,66,66,66,66,24,100,89,24,96,0,9,9,9,0,0,0,0,0,0,1,66,66,66,66,24,24,24,24,96,44,44,43,9,0,0,0,0,0,0,1,66,66,66,66,1,1,1,1,1,95,1,42,9,0,0,0,0,0,0,24,66,66,66

,66,1,124,85,0,67,124,1,41,9,0,0,0,0,0,0,100,24,66,66,66,67,92,97,0,0,85,1,40,9,0,67,67,67,67,0,24,14,66,66,66,1,85,124,67,0,124,1,39,9,9,9,9,9,9,9,1,72,66,66,66,1,1,1,1,1,1,1,38,9,17,9,16,9,3,92,1,72

,66,66,66,24,24,24,24,24,24,24,24,24,24,24,14,14,14,14,24,72,66,66,66,66,66,66,66,66,66,66,66,66,66,66,14,85,14,85,24,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,14,14,14,2,24,66,66,66,66,66,66,66,66

,66,66,66,66,66,66,66,14,85,14,2,24,74,74,74,74,74,66,66,66,66,66,66,66,66,66,66,14,14,14,14,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,14,14,14,85]});}},

{function Run(){maps.push({name="Gato fertlilzing",author="Kitty Cat",id="#1651492613",direction="forward",cost=249,elevation=0,map=[0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,5,5,5,1,5,5,5,5,5,5,5,1,5

,5,5,0,0,0,0,0,5,5,5,1,5,5,5,5,5,5,5,1,5,5,5,0,0,0,0,0,5,5,5,1,5,5,5,5,5,5,5,1,5,5,5,0,0,0,0,0,5,5,5,1,5,5,5,5,5,5,5,1,5,5,5,0,0,0,0,0,5,5,5,1,97,5,5,5,5,5,5,1,5,5,5,6,0,0,0,0,5,5,5,1,1,1,1,96,1,1,1,1

,5,5,6,6,6,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,6,6,6,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,5,0,0,6,6,6,0,0,5,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,6,86,0,0,0,5,5,5,5,5,5,5,5,5,1,1,0,0,0,0,0,93,0,0,0,5,5,5,5,5,5,5,5,5

,25,25,25,0,25,25,25,25,0,0,0,0,0,5,5,5,5,5,5,0,0,25,0,25,0,25,25,25,0,0,0,0,0,0,5,5,45,45,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,5,5,0,45,45,0,0,0,0,0,0,0,0,0,25,0,0,0,0,5,5,0,0,45,45,0,0,0,0,0,0,0,0,0,25,0,

0,0,5,5,0,0,0,45,45,0,0,0,0,0,0,0,0,0,25,0,0,5,5,0,0,0,0,45,45,0,45,45,45,45,0,45,45,45,45,0,5,5,0,25,0,25,0,45,45,0,45,45,45,45,0,45,45,45,45,100,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0]});}},

{function Run(){maps.push({name="zeramp",author="Kitty Cat",id="#1651495591",direction="left",cost=151,elevation=16,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,13,13,13,12,12,11,11,10,10,9,9,8,8,7,

7,6,6,5,5,0,13,13,13,12,12,11,11,10,10,9,9,8,8,7,7,6,6,5,5,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,15,15,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,7,7,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,18,

18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,99,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,96,96,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,12,12,1,20,20,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,2,21,21,20,98,20,19,19,18,18,17,17,16,16,15,15,14,14,13,13,2,21,21,20,98,20,19,19,18,18,17,17,16,16,15,15,14,14,13,13,0,0,0,1,0,97,0,0,0,0,0

,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Booster go weee",author="Kitty Cat",id="#1651498539",direction="left",cost=105,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,1,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,1,66,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,66,69,68,66,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,66,69,69,1,1,0,0,0,0,0,0,0,0,0,0,0,0

,0,5,5,66,66,66,5,1,2,5,5,5,5,5,5,0,0,0,0,0,0,128,5,5,5,5,5,5,2,5,5,5,5,5,5,0,0,0,0,0,0,128,5,5,5,5,5,5,0,0,0,5,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,126,5,5,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,100,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Trust the booster",author="Kitty Cat",id="#1651499619",direction="right",cost=44,elevation=14,map=[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,129,0,0,0,0,14,14,129,0,0,0,0,19,19,19,19,19,2,9,9,129,0,0,0,0,14,14,129,0,0,0,0,19,19,19,19,19,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Leaps of faith",author="Kitty Cat",id="#1651501176",direction="right",cost=120,elevation=0,map=[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,0,0,34,34,34,34,34,34,34,34,34,34,34,34,34,

34,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,36,36,0,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,36,36,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,36,36,36,36,0,0,0,0,0,34,34,34,34,0,0,0,0,0

,0,0,36,36,36,36,0,0,0,0,0,34,34,34,34,0,0,0,0,0,0,0,36,36,93,36,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,36,36,36,36,0,0,0,0,0,34,34,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,34,34,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,34,34,0,34,34,0,34,34,0,34,34,0,34,34,0,34,34,34,34,2,34,34,0,34,34,0,34,34,0,34,34,0,34,34,0,34,34,34,34,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Mess",author="Mooyoung",id="#1651507767",direction="forward",cost=217,elevation=16,map=[0,0,34,0,34,0,0,34,1,2,2,0,0,0,0,0,0,0,0,0,0,34,1,1,1,1,1,0,1,5,5,0,0,0,0,0,0,0

,0,0,0,1,1,14,4,24,99,0,1,5,5,0,0,0,0,0,0,0,0,0,34,0,34,0,0,44,1,34,1,5,5,0,0,0,0,0,0,0,0,0,1,1,0,0,41,1,0,0,1,5,5,0,0,0,0,0,0,0,0,0,0,0,37,1,1,1,0,34,1,5,5,0,0,0,0,0,0,0,0,0,0,34,1,1,0,34,0,0,1,95,95

,0,0,0,0,0,0,0,0,0,34,1,1,34,0,0,0,1,1,5,5,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1,11,3,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,11,11,11,11,0,0,0,0,0,0,0,0,13,13,13,12,11,96,10,10,11,11,11,11,11,12,13,14,92,

0,0,14,13,13,13,12,11,96,10,10,11,11,11,11,11,12,13,14,92,0,0,14,0,0,0,0,0,0,0,0,11,11,11,11,1,1,1,1,1,0,0,0,13,13,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,35,1,13,13,0,0,0,0,0,0,1,0,0,35,0,0,0,0,0,0,0,1,98,98

,0,0,0,0,0,0,1,0,0,0,0,35,0,35,0,35,0,1,13,13,0,0,0,0,0,0,1,35,0,0,0,0,0,0,0,0,1,1,3,21,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,21,21,21,20,19,18,17,98,15,0,0,0,1,1,1,1,1,1,1,1,2,2,21,20,19,18,17,98,15,0,

35,0,35,0,35,0,35,15,97,1]});}},

{function Run(){maps.push({name="Spread",author="tilgep",id="#1651590944",direction="forward",cost=263,elevation=-1,map=[122,122,122,0,0,0,0,0,0,0,123,2,2,123,0,0,0,0,0,0,122,102,122,0,0,0,0,0,0,0,123

,123,123,123,0,0,0,0,0,0,122,122,122,0,0,0,0,0,0,0,123,123,123,123,0,0,0,0,0,0,122,122,122,0,0,0,0,0,0,0,123,123,123,123,0,0,0,0,0,0,1,122,1,0,0,0,0,0,0,0,123,123,123,123,0,0,0,0,123,99,1,98,1,0,0,0,0

,0,0,0,123,123,123,123,0,0,0,0,123,123,1,122,1,0,0,0,0,0,0,0,123,105,123,123,0,0,0,1,123,123,122,122,122,0,0,0,0,0,0,1,123,123,123,123,1,0,0,1,123,123,122,122,122,0,0,1,0,0,1,1,123,123,123,123,1,1,0,1

,123,123,121,121,121,121,121,105,121,121,122,122,122,122,122,122,122,122,123,105,123,123,121,121,121,121,121,95,121,121,122,122,122,122,122,122,122,122,123,96,123,123,121,121,121,121,121,95,121,121,12

2,122,122,122,107,122,122,122,123,96,123,123,121,121,121,121,121,105,121,121,122,122,122,122,122,122,122,122,123,105,123,123,120,120,120,0,0,1,0,0,1,1,122,122,122,122,1,1,0,1,0,0,120,120,120,0,0,0,0,0

,0,1,122,122,122,122,1,0,0,0,0,0,120,120,120,0,0,0,0,0,0,0,122,122,122,122,0,0,0,0,0,0,120,97,120,0,0,0,0,0,1,1,105,101,101,105,1,0,0,0,0,0,120,120,120,120,1,1,1,121,121,121,122,122,122,122,0,0,0,0,0,

0,120,120,120,120,120,101,120,121,121,121,122,122,122,122,0,0,0,0,0,0,120,120,120,120,1,1,1,121,121,121,122,2,2,122,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Pools",author="tilgep",id="#1651606730",direction="forward",cost=421,elevation=-2,map=[0,14,14,0,0,0,12,12,12,2,2,12,12,12,0,10,10,10,0,0,0,14,13,0,0,0,12,12,12,12,12,

12,12,0,10,10,10,10,10,0,0,14,12,0,0,0,12,12,12,12,12,12,0,10,10,66,66,66,66,67,0,14,11,0,10,11,11,11,11,11,11,11,10,10,10,66,66,66,66,67,0,14,10,10,10,11,11,11,11,11,11,11,10,10,66,66,66,66,66,67,0,1

4,10,10,10,11,11,11,11,11,11,11,10,10,66,66,66,66,10,0,0,14,10,10,10,11,11,11,11,11,11,11,10,65,66,66,66,10,10,0,0,15,15,15,10,10,10,10,10,10,10,10,10,10,68,10,10,10,10,0,0,15,15,15,38,10,37,10,10,10,

10,10,10,10,68,10,10,10,0,0,0,0,92,0,10,10,10,10,10,10,10,10,10,10,68,10,10,0,0,0,0,10,0,10,39,10,36,10,10,10,10,10,10,10,68,10,0,0,0,0,10,10,10,10,10,10,10,10,10,65,65,65,65,10,68,10,0,0,0,0,10,10,10

,10,15,15,65,65,65,65,66,66,66,66,66,10,0,0,0,0,10,10,10,10,19,65,66,66,66,66,66,66,66,66,66,74,67,0,0,0,0,10,10,10,10,66,66,66,66,66,66,66,66,66,66,74,67,0,0,0,100,40,10,10,20,66,66,66,66,66,66,66,24

,66,66,74,67,0,0,0,0,10,10,10,10,66,66,66,66,66,66,66,72,72,10,10,0,0,0,0,0,0,0,67,73,66,66,66,66,10,10,10,67,67,0,0,0,0,0,0,0,9,15,15,10,10,10,10,10,10,10,0,0,0,0,0,0,0,0,0,9,3,15,14,13,10,10,2,2,10,

10,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Gap",author="tilgep",id="#1651607907",direction="forward",cost=360,elevation=-2,map=[108,108,108,108,1,1,1,1,2,2,1,1,1,1,108,108,108,108,108,108,108,114,114,114,114,11

4,114,114,114,114,114,114,114,114,114,114,114,114,114,108,108,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,108,108,114,114,114,114,114,114,114,114,114,114,114,114,114,114,11

4,114,114,114,108,108,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,108,1,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,1,1,114,114,114,114,114,114,

114,114,114,114,114,114,114,114,114,114,114,114,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,

112,1,1,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,1,106,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,106,106,112,112,112,112,112,112,112,112,11

2,112,112,112,112,112,112,112,112,112,106,106,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,106,106,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,10

6,106,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,106,106,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,106,106,112,112,112,112,112,112,112,112,11

2,112,112,112,112,112,112,112,112,112,106,106,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,106,106,106,106,106,106,106,106,106,106,2,2,106,106,106,106,106,106,106,106,106]})

;}},

{function Run(){maps.push({name="Water Hazard",author="tilgep",id="#1651679489",direction="right",cost=508,elevation=-1,map=[0,0,0,0,0,19,19,19,2,2,19,19,0,19,19,19,0,0,0,0,0,0,0,0,19,19,19,19,19,19,1

9,19,19,19,19,19,0,0,0,0,0,0,0,19,19,19,19,90,19,19,19,19,19,90,19,19,19,19,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,0,0,0,19,19,19,19,19,19,19,127,19,19,65,65,65,65,65,66,74,67,0,0,1

9,19,19,65,65,65,65,65,65,65,65,65,65,66,66,66,74,67,0,19,19,19,65,66,66,66,66,66,66,66,66,66,66,66,66,66,74,67,0,19,19,65,66,66,66,66,66,66,66,66,66,66,66,66,68,66,74,67,0,19,19,65,66,68,68,68,68,68,

68,68,68,68,68,68,68,68,74,67,0,19,19,65,66,68,68,68,68,68,68,68,68,68,68,68,68,68,68,67,0,19,19,66,68,68,69,69,68,22,22,22,22,69,68,68,68,68,68,67,0,0,19,66,68,69,69,68,68,22,22,22,22,69,68,68,69,68,

68,67,0,0,19,19,66,66,68,68,68,68,68,68,68,68,68,68,68,68,66,67,0,0,0,19,19,66,66,66,68,68,68,69,69,68,68,66,66,66,19,25,0,0,0,0,19,19,74,74,66,66,66,66,66,66,66,66,19,19,92,25,0,0,0,0,0,19,19,65,65,6

5,65,65,65,65,19,19,19,19,19,19,0,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,18,18,0,0,0,0,0,0,0,0,19,19,19,19,90,19,19,19,19,19,18,2,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,90,19,19,18,2,0,0,0,0,0,0,0,

0,0,0,0,0,19,19,19,19,19,19,18,18]});}},

{function Run(){maps.push({name="strayfe jhyomp",author="stu",id="#1651740322",direction="forward",cost=169,elevation=0,map=[0,0,0,0,0,14,2,2,14,13,12,11,10,109,109,109,1,0,0,0,0,0,0,0,0,14,14,14,14,0

,0,0,1,110,110,110,1,0,0,0,0,0,0,0,0,19,19,19,19,0,0,0,1,111,111,111,1,0,0,97,0,0,0,0,0,14,14,14,14,0,0,0,1,112,112,112,1,0,0,24,0,0,0,0,0,0,19,19,0,0,0,0,1,113,113,113,1,0,0,124,0,0,0,0,0,0,14,14,0,0

,0,0,1,114,114,114,116,118,120,122,0,0,0,0,0,0,19,19,0,0,0,0,1,14,14,14,1,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,1,14,14,14,1,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,1,96,96,96,1,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,1,

14,127,14,1,0,0,0,0,0,0,0,0,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,14,14,14,98,98,98,98,0,0,0,0,0,0,14,14,0,0,0,0,0,14,99,14,98,14,14,14,0,0,0,0,0,0,14,14,14,14,

14,14,14,14,14,14,98,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,14,2,2]});}},

{function Run(){maps.push({name="A Cigarette",author="Tastysaw",id="#1651907432",direction="forward",cost=186,elevation=2,map=[0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,5,5,5,5,5,5,0,0,0,0,0,

0,0,0,0,0,0,11,11,0,5,75,75,75,75,5,0,0,0,0,0,0,0,0,0,11,11,11,0,0,5,75,75,75,75,5,0,0,0,0,0,0,0,0,0,0,0,0,11,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,11,11,0,5,65,65,65,65,5,0,0,0,0,0,0,0,0,0,11,11,11,0,0

,5,65,65,65,65,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,65,65,65,65,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,65,65,65,65,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,65,65,65,65,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,65,65,65,65,5,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,5,65,65,65,65,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,65,65,65,65,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,65,65,65,65,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,65,65,65,65,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,6

5,65,65,65,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,26,26,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,28,2,2,28,28,0,0,0,0

,0,0,0,0,0]});}},

{function Run(){maps.push({name="fraz ladder def",author="fraz",id="#1652131021",direction="right",cost=230,elevation=15,map=[5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,1,1,95,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15

,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,15,15,15,15,15,15,15,15,15,22,20,20,20,1,20,95,20,1,0,0,15,15,15,15,15,15,15,15,3,22,20,20,20,1,20,1,20,1,0,0,15,15,15,15,15,15,15,15,15,22,20,20,20,1,20,1,20,1,0,0,15

,15,15,15,15,15,15,15,3,22,20,20,20,1,20,1,20,1,0,0,15,15,15,15,15,15,15,15,15,22,20,20,20,1,20,1,20,1,20,20,15,15,15,15,15,15,15,15,3,22,20,20,20,1,20,1,20,1,20,2,15,15,15,15,15,15,15,15,15,22,20,20,

20,95,20,1,20,95,20,2,15,15,15,15,15,15,15,15,3,22,20,20,20,1,1,1,1,1,20,20]});}},

{function Run(){maps.push({name="JumpJump",author="Jando",id="#1652453864",direction="left",cost=103,elevation=-15,map=[0,0,0,0,0,0,0,0,0,0,0,101,24,0,2,2,0,0,0,0,0,0,127,16,0,0,0,0,0,0,0,128,101,24,2

4,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,19,19,24,19,19,19,0,0,0,0,0,0,9,9,9,0,0,0,0,0,95,95,0,0,0,0,0,0,0,0,0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,21,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,102,0,0,0,0,0,0,0,0,2,95,95,9,9,9,0,0,0,101,101,101,0,0,0

,0,0,0,0,0,2,95,95,9,9,9,9,0,0,101,101,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="defend tp and think",author="blasian",id="#1652493928",direction="forward",cost=218,elevation=0,map=[0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,14,14,14,14,94,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,91,90,14,90,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,91,90,91,90,91,0,0,0,0,0,0,0,0,0,0,0,0,9,0,14,14,14,14,14,14,0,0,0,1,1,1,1,1,0,

0,0,0,92,0,14,14,14,14,14,14,0,0,0,1,30,30,30,1,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,30,0,14,14,1,1,1,1,90,14,14,0,30,30,30,0,9,0,0,0,0,0,14,14,96,91,91,91,90,14,14,0,0,0,0,0,92,0,0,0

,30,0,14,14,96,14,14,90,14,14,14,0,30,30,30,0,0,0,0,0,0,0,14,14,96,14,90,14,14,14,14,0,0,0,0,0,0,0,0,0,0,96,96,96,96,91,91,91,90,14,14,0,0,0,0,0,0,0,0,0,0,0,14,14,1,1,1,1,90,14,14,0,0,0,0,0,9,0,0,0,0,

0,14,14,0,0,0,0,0,14,14,0,0,0,9,9,99,97,9,9,9,92,14,93,0,0,0,0,98,98,98,98,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,92,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,98,98,98,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1

4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="simple",author="blasian",id="#1652495248",direction="right",cost=125,elevation=0,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,19,19,0,16,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,92,0,19,19,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,92,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,97,16,0,92,16,16,92,19,

19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,19,19,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,98,19,19,19,19,19,2,0,0,0,0,0,0,0,0,19,19,19,19,19,98,19,19,19,19,19,2,0,0,0,0,0,0,0,0,0,0,0,92,1,0,0,0,0,0,0,0,0,0,0,0,0,0,96,96,96,96,

0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,96,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,96,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Headquarters",author="Luffaren",id="#1652698615",direction="left",cost=370,elevation=-9,map=[1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,10,11,12,13,99,14,14,1,119,119,1

19,119,119,119,119,90,1,93,19,2,10,11,12,13,14,14,14,1,119,1,119,119,119,119,1,119,1,97,131,10,10,11,12,13,14,14,0,1,119,119,18,18,18,18,119,119,1,19,19,0,0,0,0,0,0,0,0,1,90,119,18,18,18,18,119,119,1,

0,0,0,0,0,0,0,0,0,0,1,119,1,18,65,65,18,1,119,1,18,0,0,0,33,33,0,0,0,0,1,119,18,18,65,65,18,18,119,1,0,0,1,1,98,98,1,1,67,0,1,119,18,18,65,65,18,18,119,1,17,0,1,113,113,113,113,1,67,0,1,119,1,18,65,65

,18,1,119,1,0,0,1,113,114,114,114,114,0,0,1,119,119,18,18,18,18,119,119,1,16,0,1,113,114,90,114,114,0,0,1,90,119,18,18,18,18,119,90,1,0,0,1,113,114,114,90,1,0,0,1,119,1,119,119,119,119,1,119,1,15,0,1,

1,114,114,1,1,0,0,1,119,119,119,119,119,119,119,119,1,0,0,0,0,0,0,0,0,0,92,1,98,119,118,118,118,118,1,1,1,35,0,0,67,0,0,0,36,35,34,94,34,1,117,117,117,117,1,0,0,0,0,1,1,114,114,1,1,1,1,1,1,1,116,116,1

16,116,1,35,0,0,0,1,90,114,114,114,114,114,90,114,96,114,115,115,115,115,1,0,0,0,0,1,90,114,114,114,114,114,114,114,96,114,115,115,115,115,115,0,0,0,0,1,114,114,90,114,90,114,114,114,96,114,132,115,90

,115,1,67,0,0,0,1,1,114,114,1,1,114,114,1,1,1,1,1,1,1,1,67,0,0,0]});}},

{function Run(){maps.push({name="Skater snake",author="Luffaren",id="#1652700886",direction="forward",cost=500,elevation=-5,map=[0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,2,2,0,0,14,14,1,1,1,1,

1,1,1,1,1,1,1,1,1,1,127,127,0,14,14,1,1,135,135,135,1,1,0,0,0,0,0,0,1,135,135,135,0,14,1,1,135,135,135,135,135,1,1,0,0,0,0,0,1,135,135,135,135,14,1,135,135,135,135,135,135,135,1,1,0,0,0,0,1,135,135,13

5,135,14,1,135,135,135,135,135,135,135,135,1,0,0,0,0,1,135,135,135,135,14,1,135,135,135,135,135,135,135,135,1,1,0,0,0,1,1,135,135,135,14,1,135,135,135,1,1,135,135,135,135,1,0,0,0,0,1,135,135,135,14,1,

135,135,1,1,1,135,135,135,135,1,0,0,0,0,1,135,135,135,14,1,135,135,1,0,1,135,135,135,1,1,0,0,0,0,1,135,135,135,14,1,135,135,1,0,1,135,135,135,1,0,0,0,0,1,1,135,135,135,14,1,135,135,1,0,1,135,135,1,1,0

,0,0,0,1,135,135,135,135,14,1,135,135,1,0,1,135,135,1,0,0,0,0,0,1,135,135,135,135,14,1,135,135,1,1,1,135,135,1,1,0,0,0,1,1,135,135,135,135,14,1,14,14,1,1,135,135,135,135,1,1,1,1,1,135,135,135,135,135,

14,1,16,16,1,1,135,135,135,135,135,135,135,135,135,135,135,135,135,135,14,1,16,16,1,1,1,135,135,135,135,135,135,135,135,135,135,135,135,0,16,16,16,16,1,0,1,135,135,135,135,135,135,135,135,135,135,135,

135,0,9,9,9,3,1,0,0,1,1,135,135,135,135,135,135,135,135,135,0,0,9,2,2,9,1,0,0,0,1,1,1,135,135,135,135,135,0,0,0,0]});}},

{function Run(){maps.push({name="Crossings",author="Luffaren",id="#1652703993",direction="left",cost=339,elevation=-10,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,2,2,19,67,0,0,1,1,1,1,1,19,0,0,0,0,0,0,0,19,1

9,19,19,67,0,0,1,124,24,100,24,19,92,0,0,0,0,0,0,19,19,19,19,67,0,0,1,124,24,24,24,19,92,0,0,0,0,0,0,19,19,19,19,67,0,0,1,123,1,24,24,19,92,0,0,0,0,0,0,19,19,19,19,67,0,0,1,122,1,19,19,19,92,0,0,0,0,0

,0,19,19,19,19,67,0,0,1,121,1,97,19,19,92,0,0,0,0,0,0,19,19,19,19,67,0,0,1,120,1,1,19,19,0,0,0,0,0,0,0,19,19,19,19,67,0,0,1,119,119,1,19,67,0,0,0,0,0,0,0,19,19,19,19,67,0,0,1,119,119,1,19,0,0,0,0,0,0,

0,0,19,19,19,19,67,0,9,9,9,10,11,12,13,14,14,14,15,16,17,18,19,19,19,19,67,0,2,9,9,10,11,12,13,14,14,14,15,16,17,18,19,19,19,19,67,0,2,9,9,10,11,12,13,14,14,14,15,16,17,18,19,19,19,19,67,0,9,9,9,10,11

,12,13,14,14,14,15,16,17,18,19,19,19,19,67,0,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,119,119,1,1,0,1,1,92,92,1,1,1,119,1,119,1,119,1,1,119,119,119,119,1,0,1,119,19,19,119,96,119,119,119,119,119,119,119,119,119,

19,19,119,119,0,1,119,19,19,119,96,119,119,119,119,119,119,119,119,119,19,19,119,119,0,1,119,119,119,119,1,1,1,1,1,1,1,1,1,119,119,119,119,1,0,1,1,119,119,1,1,0,0,0,0,0,0,0,1,1,119,119,1,1,0]});}},

{function Run(){maps.push({name="Leap and catch",author="Luffaren",id="#1652704443",direction="forward",cost=362,elevation=-19,map=[0,0,0,0,0,0,0,24,2,2,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,135,135,135,135,135,135,0,0,0,0,0,0,0,0,0,0,0,135,135,135,135,135,135,135,13

5,135,135,0,0,0,0,0,0,0,0,0,0,135,135,135,135,135,135,135,135,135,135,0,0,0,0,0,0,0,0,0,135,135,135,135,135,135,135,135,135,135,135,135,0,0,0,0,0,0,0,0,135,135,135,135,135,135,135,135,135,135,135,135,

0,0,0,0,0,0,0,0,135,135,135,135,135,135,135,135,135,135,135,135,0,0,0,0,0,0,0,0,135,135,135,135,135,135,135,135,135,135,135,135,0,0,0,0,0,0,0,0,135,135,135,135,135,135,135,135,135,135,135,135,0,0,0,0,

0,0,0,0,135,135,135,135,135,135,135,135,135,135,135,135,0,0,0,0,0,0,0,0,135,135,135,135,135,135,135,135,135,135,135,135,0,0,0,0,0,0,0,0,135,135,135,135,135,135,135,135,135,135,135,135,0,0,0,0,0,0,0,0,

135,135,135,135,135,135,135,135,135,135,135,135,0,0,0,0,0,0,0,0,135,135,135,135,135,5,5,135,135,135,135,135,0,0,0,0,0,0,0,0,135,135,135,135,5,5,5,5,135,135,135,135,0,0,0,0,0,0,0,0,135,135,135,135,5,5,

5,5,135,135,135,135,0,0,0,0,0,0,0,0,5,5,5,5,5,2,2,5,5,5,5,5,0,0,0,0,0]});}},

{function Run(){maps.push({name="Funky flight",author="Luffaren",id="#1652705541",direction="forward",cost=323,elevation=-10,map=[1,2,2,1,1,1,1,1,1,1,90,19,19,19,19,19,90,19,19,90,1,24,24,3,19,19,90,1

9,19,19,19,19,90,19,19,19,19,19,19,19,1,14,24,3,19,1,1,1,1,1,1,1,1,1,1,1,1,1,90,19,1,127,1,1,1,1,67,0,129,67,67,0,118,0,67,127,0,1,19,90,1,0,1,0,0,1,67,0,0,0,0,0,1,0,0,0,0,1,19,19,1,0,0,0,0,1,0,0,0,0,

0,0,1,0,0,0,0,1,19,19,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,90,19,1,67,0,0,0,1,67,0,0,0,0,1,0,0,0,0,0,1,19,19,1,67,0,0,0,1,67,0,0,0,0,1,0,0,0,0,0,1,19,90,1,0,0,0,0,1,67,0,0,0,0,1,0,0,0,0,0,1,19,19,1,127

,0,0,0,1,67,0,126,0,0,1,0,0,0,127,0,1,90,19,1,0,0,0,0,1,67,0,0,0,0,1,0,0,0,0,0,1,90,19,1,0,0,0,0,1,67,0,0,0,0,1,67,0,0,0,0,1,19,90,1,0,0,0,67,1,1,1,118,1,1,1,67,0,0,0,0,1,19,19,1,0,0,0,67,1,67,67,67,6

7,0,1,67,0,0,0,0,1,19,19,1,0,0,0,67,1,0,0,0,0,67,1,0,0,0,0,0,1,19,90,1,0,0,0,0,1,0,0,0,0,67,1,0,0,0,67,67,1,19,19,1,129,0,0,0,0,0,0,126,0,67,1,0,90,14,14,14,90,3,1,1,0,0,0,0,0,0,0,0,0,67,1,0,14,90,14,

14,90,14,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1]});}},

{function Run(){maps.push({name="Gravity strafe",author="Luffaren",id="#1652707111",direction="forward",cost=282,elevation=-10,map=[0,0,0,0,24,2,2,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,24,24,85,24,24,24,24,24,24,85,24,24,24,24,24,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,89,24,0,0,0,0,24,24,24,24,24,90,24,2

4,85,24,24,90,24,24,24,24,0,0,0,1,124,124,1,1,1,1,1,1,1,1,1,1,1,23,23,23,0,0,0,1,90,124,1,24,85,24,85,130,130,130,130,130,1,22,22,22,0,0,0,1,124,124,1,85,0,0,24,130,130,130,130,130,1,21,21,21,0,0,0,1,

124,90,1,24,0,1,1,1,1,1,130,130,1,20,20,20,0,0,0,1,90,124,1,85,0,1,0,0,0,1,130,130,1,19,19,19,0,0,0,1,90,124,24,85,0,1,1,1,1,1,130,130,1,18,18,18,0,0,0,1,124,124,24,0,0,1,1,19,19,130,130,130,1,17,17,1

7,0,0,0,1,1,1,1,1,1,1,1,19,19,130,130,130,1,16,16,16,0,0,0,0,0,0,0,0,0,0,1,119,119,1,1,1,1,15,15,15,0,0,0,0,0,0,0,0,0,0,1,90,19,93,19,1,90,14,14,14,0,0,0,0,0,0,0,0,0,0,1,19,19,19,90,119,14,14,14,85,0,

0,0,0,0,0,0,0,0,0,1,19,100,19,19,119,14,14,14,14,0,0,0,0,0,0,0,0,0,0,1,90,90,19,94,1,90,14,14,14,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,14,2,2,14,0,0]});}},

{function Run(){maps.push({name="Moist sanctuary",author="Luffaren",id="#1652708799",direction="forward",cost=700,elevation=0,map=[0,0,0,0,0,67,67,67,14,2,2,14,67,67,67,0,0,0,0,0,0,0,0,67,67,65,65,65,

14,14,14,14,65,65,65,67,67,0,0,0,0,0,67,65,65,65,65,65,65,65,65,65,65,65,65,65,65,67,0,0,0,67,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,67,0,0,67,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,

67,0,67,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,67,67,65,65,65,65,65,65,65,65,14,14,65,65,65,65,65,65,65,65,67,67,65,65,65,65,65,65,65,14,14,14,14,65,65,65,65,65,65,65,67,67,65,65,65,65,

65,65,14,1,115,115,1,14,65,65,65,65,65,65,67,67,65,65,65,65,65,14,14,115,116,116,115,14,14,65,65,65,65,65,67,67,65,65,65,65,65,14,14,115,116,116,115,14,14,65,65,65,65,65,67,67,65,65,65,65,65,65,14,1,1

15,115,1,14,65,65,65,65,65,65,67,67,65,65,65,65,65,65,65,14,14,14,14,65,65,65,65,65,65,65,67,67,65,65,65,65,65,65,65,65,14,14,65,65,65,65,65,65,65,65,67,67,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65

,65,65,65,67,0,67,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,67,0,0,67,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,67,0,0,0,67,65,65,65,65,65,65,65,65,65,65,65,65,65,65,67,0,0,0,0,0,67,67,65,

65,65,14,14,14,14,65,65,65,67,67,0,0,0,0,0,0,0,0,67,67,67,14,2,2,14,67,67,67,0,0,0,0,0]});}},

{function Run(){maps.push({name="Fly you fools",author="Luffaren",id="#1652711020",direction="left",cost=201,elevation=5,map=[0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,119,119,1,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,90,19,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,19,19,90,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,1,130,90,19,19,20,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,130,0,19,39,130,0,1,1,0,0,0,0,0,0,1,1,1

,1,1,0,130,0,39,0,130,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,130,0,39,0,130,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,130,0,39,0,130,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,39,0,130,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,39,0,0,0,0,

0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,39,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,19,20,1,19,19,39,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,19,19,90,19,19,19,20,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,95,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,

0,1,1,119,90,1,0,0,0,0,0,1,1,90,124,124,124,90,123,1,1,1,90,119,119,1,0,0,0,0,0,2,124,24,90,24,90,124,123,122,121,120,119,119,90,1,0,0,0,0,0,2,124,124,24,124,24,124,123,122,121,120,119,119,1,1,0,0,0,0

,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Pyramid halfling",author="Luffaren",id="#1652711672",direction="forward",cost=400,elevation=0,map=[0,67,67,0,0,0,0,0,14,2,2,14,0,0,0,67,67,67,67,0,0,14,14,14,14,14,14,

14,14,14,14,14,14,14,14,14,14,14,14,67,0,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,67,0,14,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,14,67,67,14,15,16,17,17,17,17,17,17,17,17,17,17,1

7,17,16,15,14,0,67,14,15,16,17,18,18,18,18,18,18,18,18,18,18,17,16,15,14,0,0,14,15,16,17,18,19,19,19,19,19,19,19,19,18,17,16,15,14,0,0,14,15,16,17,18,19,9,9,9,9,4,9,19,18,17,16,15,14,0,0,14,15,16,17,1

8,19,4,7,7,7,7,9,19,18,17,16,15,14,0,0,14,15,16,17,18,19,9,7,5,93,7,9,19,18,17,16,15,14,0,0,14,15,16,17,18,19,94,7,100,5,7,9,19,18,17,16,15,14,0,0,14,15,16,17,18,19,9,7,7,7,7,4,19,18,17,16,15,14,0,0,1

4,15,16,17,18,19,9,4,9,9,89,9,19,18,17,16,15,14,67,0,14,15,16,17,18,19,19,19,19,19,19,19,19,18,17,16,15,14,67,0,14,15,16,17,18,18,18,18,18,18,18,18,18,18,17,16,15,14,67,0,14,15,16,17,17,17,17,17,17,17

,17,17,17,17,17,16,15,14,67,0,14,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,14,67,0,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,67,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,1

4,0,0,0,67,67,67,0,0,67,14,2,2,14,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Dark Fantasy",author="Luffaren",id="#1652783362",direction="forward",cost=171,elevation=5,map=[0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,105,105,1,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,88,105,105,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,105,105,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,106,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,107,1,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,1,108,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,109,1,1,1,1,1,0,0,0,0,0,0,0,0,1,10,10,10,10,10,10,10,10,10,10,1,0,0,0,0,0,0,0,0,1,10,10,10,10,10,10,10,10,10,10,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,10,

0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,3,0,1,96,10,96,1,3,0,1,0,0,0,0,0,0,0,0,1,1,119,1,1,0,96,0,1,0,0,1,0,0,0,0,0,0,0,0,1,3,0,0,1,0,10,0,1,0,0,1,0,0,0,0,0,0,0,0,1,105,1,1,1,0,10,0,1,0,3,1,0,0,0,0,0,0,0,0,1,0,

0,0,1,0,10,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,3,10,1,0,10,0,1,10,0,1,0,0,0,0,0,0,0,0,1,97,1,1,1,0,10,0,1,1,97,1,0,0,0,0,0,0,0,0,1,10,96,10,10,10,10,10,10,96,10,1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,0,0

,0,0,0]});}},

{function Run(){maps.push({name="Danger detour",author="Luffaren",id="#1652785039",direction="right",cost=453,elevation=-10,map=[0,0,1,1,1,24,2,2,24,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,24,24,24,24,24,24,1,1

,5,90,5,5,0,0,0,0,0,24,24,24,24,24,24,24,24,24,90,5,5,5,5,5,5,0,0,0,24,24,24,24,24,24,24,24,24,3,5,5,5,5,5,5,5,5,0,0,24,24,24,24,5,5,24,24,5,5,5,5,5,5,5,5,5,5,5,0,23,23,23,5,5,5,5,90,5,5,5,5,5,89,5,5,

5,5,5,5,22,22,22,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,20,20,20,5,5,5,5,5,5,5,5,5,5,5,5,5,5,84,84,77,20,20,20,5,5,5,5,5,5,5,84,84,84,84,84,84,84,84,84,77,75,75,77,84,84,84,82,5,5,84,84,81,5,5,84,84,84,84,

84,77,17,75,77,84,84,84,84,84,84,84,81,5,5,5,5,5,5,5,5,5,17,17,17,5,5,5,5,5,82,5,5,5,5,5,5,5,5,5,90,5,14,14,14,5,5,5,5,5,84,82,5,5,5,5,5,5,5,4,14,14,14,14,14,5,5,5,5,5,5,82,5,5,5,5,5,5,4,14,14,2,14,14

,14,14,5,5,90,5,5,82,5,5,90,5,5,4,14,14,14,2,14,14,14,14,14,14,14,14,5,82,5,14,14,14,14,14,14,14,14,14,0,14,14,14,14,89,14,14,14,82,14,14,89,14,14,90,14,14,14,1,0,0,14,90,14,14,14,14,14,82,14,14,14,14

,90,14,14,90,1,1,0,0,0,0,0,0,0,0,0,77,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Above and beyond",author="Luffaren",id="#1652796980",direction="right",cost=387,elevation=0,map=[67,67,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,21,21,21,20,19,18,17,16,15,

14,13,12,11,10,9,8,7,6,5,5,21,21,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,85,21,21,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,5,21,21,21,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,5,22,22,22,1,1,124,130,

0,0,3,0,0,3,67,65,109,1,1,96,96,23,23,23,1,124,124,0,0,0,0,0,0,0,0,67,109,97,1,96,96,24,24,24,1,124,124,0,0,0,0,0,0,0,0,0,109,109,1,5,5,85,24,24,1,124,24,24,0,0,0,67,67,0,0,0,9,109,1,5,5,24,85,24,95,1

24,24,24,24,0,67,1,1,67,0,9,9,109,96,9,5,24,24,24,95,124,24,24,24,0,67,1,1,67,0,9,9,109,96,9,5,85,24,85,1,124,24,24,0,0,0,67,67,0,0,0,9,109,1,100,5,24,24,24,1,124,124,0,0,0,0,0,0,0,0,0,109,109,1,5,5,2

3,23,23,1,124,124,0,0,0,0,0,0,0,0,67,109,97,1,96,96,22,22,22,1,1,124,130,0,0,3,0,0,3,67,65,109,1,1,96,96,21,21,21,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,5,21,21,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,

2,21,21,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,2,21,21,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,5,67,67,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,67]});}},

{function Run(){maps.push({name="Boring Left Turn",author="Hichatu",id="#1652804059",direction="left",cost=144,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,

1,5,5,1,2,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,2,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Lottery",author="tilgep",id="#1652805849",direction="right",cost=274,elevation=-4,map=[0,12,2,2,12,12,0,0,0,0,0,0,0,0,8,8,8,8,8,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,8,8,

8,8,8,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,8,8,132,8,8,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,8,8,8,8,8,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,8,8,8,8,8,0,0,12,12,131,12,12,0,0,0,0,0,0,0,0,8,8,8,8,8,0,0,12,12,1

2,12,12,0,0,0,0,0,0,0,0,8,8,8,8,8,0,0,0,12,12,12,0,0,0,0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,8,8,8,8,8,95

,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,8,8,8,8,8,0,10,10,10,10,10,0,0,0,0,0,8,8,95,8,8,8,8,8,8,0,10,132,132,10,10,10,9,8,8,8,8,8,95,8,8,8,8,8,2,0,10,132,132,1

0,10,10,9,8,8,8,8,8,95,8,8,8,8,8,2,0,10,132,132,10,10,10,9,8,8,8,8,8,95,8,8,8,8,8,8,0,10,132,132,10,10,10,9,8,8,8,8,8,95,8,8,8,8,8,0,0,10,132,132,10,10,10,9,8,8,8,8,8,95,8,8,8,0,0,0,0,10,10,10,10,10,0

,0,0,0,0,0,0,95,8,0,0,0,0,0]});}},

{function Run(){maps.push({name="lava lover",author="Spaick",id="#1652807647",direction="left",cost=458,elevation=-4,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,23,23,23,23,0,0,1,1,1,1,1,1,1,1,1,0,24

,24,0,0,23,66,66,23,0,0,20,76,76,76,76,76,18,76,20,0,24,24,0,0,23,66,66,23,0,0,20,76,76,17,76,76,76,19,20,0,23,23,0,0,23,23,23,23,0,0,20,76,18,76,76,17,76,76,20,0,22,22,0,0,0,0,0,0,0,0,20,76,76,76,16,

76,76,76,20,0,21,21,0,0,0,16,16,16,16,0,20,19,76,76,76,76,18,76,20,20,20,20,0,0,0,16,66,66,16,0,20,76,76,17,76,76,76,76,20,20,20,20,0,0,0,16,66,66,16,0,20,76,18,76,76,17,76,76,20,0,0,0,0,0,0,16,16,16,

16,0,20,76,76,76,76,76,18,76,20,0,0,13,13,13,0,0,0,0,0,0,20,76,76,76,16,76,76,76,20,0,0,13,66,13,0,0,0,0,0,0,20,19,76,17,76,76,76,76,20,0,0,13,13,13,0,16,15,14,13,0,20,76,76,76,76,17,76,76,20,0,0,0,0,

0,0,17,0,0,0,0,20,76,18,76,76,76,76,19,20,0,0,0,0,0,0,18,0,0,0,0,20,76,76,76,16,76,76,76,20,0,0,0,0,0,0,19,0,20,20,0,20,76,76,76,76,17,76,76,20,0,0,0,0,0,0,0,0,0,0,0,20,19,76,17,76,76,76,19,20,0,24,24

,24,24,2,20,0,20,0,0,20,76,18,76,16,76,18,76,20,0,24,66,66,24,2,20,0,20,0,0,20,76,76,76,76,17,76,76,20,0,24,66,66,24,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,24,24,24,24]});}},

{function Run(){maps.push({name="Slide",author="Jando",id="#1652828974",direction="left",cost=201,elevation=6,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,17,1

7,0,0,0,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,17,17,0,0,0,23,23,0,0,0,0,0,23,23,0,0,0,0,0,0,17,17,0,0,0,23,23,0,0,0,0,0,23,23,0,0,0,0,0,0,17,17,0,0,0,23,23,0,0,0,0,0,23,23,0,0,0,0,0,0,91,91,0,0,0,23,

23,0,0,0,0,0,23,23,0,0,0,0,0,0,91,91,0,0,0,23,23,0,0,0,0,0,23,23,0,0,0,0,0,0,91,91,0,0,0,23,23,0,0,0,0,0,23,23,0,0,0,0,0,0,17,17,0,0,2,23,23,0,0,0,0,0,23,23,0,130,130,130,130,130,17,17,0,0,2,23,23,0,0

,0,0,0,135,135,0,130,130,130,130,130,17,17,0,0,0,135,135,0,0,0,0,0,135,135,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,0,0,135,135,0,0,0,0,0,0,0,0,0,0,0,135,135,23,0,0,0,0,135,135,23,0,0,0,0,0,0,0,0,0,0,135,1

35,0,0,0,0,0,135,135,0,0,0,0,0,0,0,0,0,0,23,135,135,0,0,0,0,0,135,135,0,0,0,0,0,0,0,0,0,0,23,135,135,23,23,23,23,23,135,135,0,0,0,0,0,0,0,0,0,0,0,135,135,135,135,135,135,135,135,135,0,0,0,0,0,0,0,0,0,

0,0,135,135,135,135,135,135,135,135,135,0,0,0,0,0,0,0,0,0,0,23,0,0,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Slope",author="Jando",id="#1652829043",direction="left",cost=205,elevation=-19,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,2

4,24,24,24,24,24,0,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,0,0,0,0,0,21,21,21,21,21,21,21,21,21,21,21,21,21,21,0,0,0,0,0,0,0,20,20,2

0,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,18,18,18,18,18,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,

16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,

12,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,10,10,10,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,9,9,9,22,0,0,0,0,0,0,0,0,2,5,95,6,6,7,7,7,8,8,22,0,0,0,0,0,0,0,0,0,2,5,95

,6,6,7,7,7,8,8,22,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,22,22,22,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Fuck fortress",author="Luffaren",id="#1652892910",direction="right",cost=313,elevation=0,map=[1,1,112,1,112,1,112,1,1,77,77,0,0,0,0,2,2,0,0,0,1,90,109,90,109,109,109,9

0,1,9,9,8,7,6,5,5,5,0,0,0,1,109,109,109,109,109,89,109,109,9,9,8,7,6,5,5,5,0,0,0,1,30,97,24,9,9,109,109,109,9,9,0,0,0,0,96,96,0,0,0,1,31,24,100,9,9,109,90,1,90,9,77,0,0,0,96,96,0,0,0,1,32,0,0,9,90,109

,109,1,0,0,0,0,0,0,96,96,0,0,0,1,33,0,0,9,9,9,9,124,44,0,0,0,0,0,5,5,0,0,0,1,34,0,24,9,9,24,9,1,44,0,0,0,0,67,5,5,0,0,0,1,35,0,0,9,90,9,9,124,44,0,0,0,67,65,5,5,0,0,0,1,36,0,0,9,9,109,109,1,0,0,44,44,

67,65,5,5,96,5,2,1,37,0,0,90,9,109,109,1,1,1,1,44,0,67,5,5,96,5,2,1,38,0,0,0,9,0,0,0,0,24,1,0,0,0,96,96,0,0,0,1,39,0,0,77,9,77,0,0,0,0,124,0,0,0,96,96,0,0,0,1,40,0,0,77,9,77,0,0,0,0,124,0,0,0,5,85,0,0

,0,1,41,0,0,0,9,0,0,0,0,24,1,0,0,0,5,5,77,0,0,1,42,0,93,9,89,9,9,8,7,6,105,5,5,5,89,5,77,0,0,1,43,0,94,9,9,90,9,8,7,6,105,5,5,5,5,5,77,0,0,1,44,44,0,0,0,0,0,0,0,24,1,0,0,0,5,5,77,0,0,1,24,44,24,0,24,0

,24,0,24,24,1,0,0,0,94,5,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Drop the damn ring",author="MacBlub",id="#1652913383",direction="forward",cost=469,elevation=0,map=[0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,77,5,5,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,77,5,5,5,5,6,7,76,8,77,77,77,0,0,0,0,0,0,0,0,77,76,5,5,5,6,76,76,8,8,8,8,77,0,0,0,0,0,0,0,77,76,76,5,1,1,76,76,76,76,8,8,77,0,0,0,

0,0,77,77,77,1,77,1,1,1,1,76,76,9,9,10,77,0,0,0,0,0,77,76,76,1,76,76,76,1,1,1,10,10,11,10,77,0,0,0,77,77,77,76,76,1,21,21,76,76,1,1,14,14,12,12,77,0,12,0,77,21,21,21,21,21,21,100,21,76,1,14,14,14,14,1

2,77,0,4,0,77,21,1,20,20,1,21,21,76,76,77,76,76,76,77,0,0,0,19,0,77,76,1,19,19,1,1,21,76,76,77,76,76,76,77,0,0,0,19,0,77,76,1,1,18,17,1,76,76,1,1,14,14,76,77,0,0,0,19,0,77,76,1,1,15,15,1,77,77,1,1,1,1

5,15,15,77,0,0,0,0,0,65,1,1,15,15,76,76,76,76,76,76,76,15,15,77,0,0,0,0,0,65,1,1,1,15,15,15,15,76,76,76,76,76,15,77,0,19,19,0,0,6,1,1,1,15,15,15,15,15,15,76,76,76,15,77,0,19,19,0,0,5,5,1,1,1,0,77,0,77

,15,96,96,15,15,77,0,97,19,0,0,5,5,5,1,1,0,0,0,0,77,0,0,77,77,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Dont Be Hasty",author="tilgep",id="#1652915042",direction="right",cost=280,elevation=-2,map=[0,21,21,2,2,21,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,21,21,21,21,21,0,0,0,

0,0,0,0,0,0,0,0,0,0,21,21,21,21,21,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,21,21,21,21,21,0,0,0,0,0,0,92,0,0,92,0,0,0,21,21,21,21,21,21,21,0,0,0,0,0,0,0,0,0,0,0,44,0,21,21,21,21,21,21,21,96,0,0,0,0,0,96

,0,0,0,0,100,0,21,21,21,21,21,21,21,96,0,0,0,0,96,24,96,0,0,0,44,0,1,1,21,21,21,1,1,0,0,0,0,0,0,24,0,0,0,0,43,0,0,1,95,95,95,1,1,22,22,22,0,0,0,24,0,0,0,0,43,0,0,1,21,21,21,1,1,22,22,22,22,0,0,23,0,0,

0,0,0,0,0,1,92,1,92,1,1,22,22,22,22,22,0,23,0,0,0,0,0,0,0,1,110,50,110,50,1,22,22,22,22,22,22,22,22,21,20,19,19,0,0,1,50,50,50,50,1,22,22,22,22,22,22,22,22,21,20,19,19,0,0,1,50,50,50,50,1,22,22,22,22,

22,22,22,22,21,20,19,19,0,0,1,50,50,50,50,1,22,22,22,22,97,22,22,22,21,20,19,2,0,0,1,50,50,50,110,92,22,22,22,22,22,22,22,22,21,20,19,2,0,0,1,96,50,50,50,1,22,22,22,22,22,22,22,22,21,20,19,19,0,0,1,11

0,96,50,50,1,22,22,22,22,22,22,22,22,21,20,19,19,0,0,1,3,1,1,1,44,22,0,0,0,0,0,0,0,0,0,0,0,0,0,1,44,44,44,44,44,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Straight or Strafe",author="MacBlub",id="#1652996875",direction="forward",cost=192,elevation=0,map=[25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,14,2,2,14,25,65,65,0,0,0,0,0,0,0

,0,0,0,0,0,0,14,14,14,14,25,65,65,0,0,0,130,130,130,130,130,130,130,130,130,0,0,0,128,14,25,65,65,0,0,0,130,130,130,130,130,130,130,130,130,0,0,0,128,14,25,65,65,0,0,0,0,0,130,130,0,0,0,0,0,0,0,14,14,

14,25,25,25,0,0,0,0,0,130,130,0,0,0,0,0,0,0,14,94,14,0,90,25,0,0,0,0,0,130,130,0,0,0,0,0,0,0,14,14,14,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,26,0,0,0,0,25,65,65,25,0,0,0,0,0,0,0,0,0,0,27,27,0,0,0,0,25,65,65,25,26,27,28,29,30,31,32,33,0,0,28,28,0,0,0,0,25,25,25,25,0,0,0,0,0,0,0,33,0,0,29,29,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,34,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,32,32,0,0,0,0,0,0,0,0,0,39,39,39,0,0,0,37,0,0,33,33,34,34,34,0,0,0,0,0,0,39,93,39,39,39,39,38,

0,34,34,34,34,34,65,0,0,0,0,0,0,39,128,39,39,39,39,39,0,34,2,2,34,34,34,0,0,0,0,0,0,39,39,39,0,0,0,0,0]});}},

{function Run(){maps.push({name="funcmapfix",author="mattaka",id="#1653053841",direction="right",cost=214,elevation=18,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,2,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,

6,0,0,0,0,15,15,90,15,130,130,130,130,9,0,8,90,6,6,90,0,0,0,0,15,90,15,15,15,130,130,130,130,0,0,8,8,7,7,0,0,0,0,15,15,15,15,15,15,130,130,130,130,0,0,8,8,90,0,0,0,0,91,15,15,15,15,15,90,130,130,130,1

30,9,0,8,8,0,0,0,0,0,14,91,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,99,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,13,13,0

,0,0,0,0,0,0,0,0,0,1,24,24,24,24,24,95,2,96,96,0,0,0,0,0,0,0,0,0,0,1,132,24,24,24,24,95,2,98,98,0,0,0,0,13,13,0,13,93,0,1,1,1,1,1,1,1,1,98,98,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,13,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,90,12,12,90,13,13,13,13,19,19,19,19,0,0,0,0,0,0,0,0,0,12,12,13,13,13,13,92,19,19,19,131,0,0,0,0,0,0,0,0,0,0,90,13,13,90,13,13,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Free Your Mind Neo",author="tilgep",id="#1653070943",direction="forward",cost=434,elevation=-1,map=[0,0,0,15,15,15,15,15,15,2,2,15,15,15,15,15,15,0,0,0,0,0,0,15,15,15,

15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,130,130,130,130,130,130,130,130,130,130,130,130

,130,130,0,0,0,0,0,0,130,130,130,130,130,130,130,130,130,130,130,130,130,130,0,0,0,0,0,0,130,130,130,130,130,130,130,130,130,130,130,130,130,130,0,0,0,0,0,0,130,130,130,130,130,130,130,130,130,130,130

,130,130,130,0,0,0,0,0,0,130,130,130,130,130,130,130,130,130,130,130,130,130,130,0,0,0,0,0,0,130,130,130,130,130,130,130,130,130,130,130,130,130,130,0,0,0,0,0,0,130,130,130,130,130,130,130,130,130,130

,130,130,130,130,0,0,0,0,0,0,130,130,130,130,130,130,130,130,130,130,130,130,130,130,0,0,0,0,0,0,130,130,130,130,130,130,130,130,130,130,130,130,130,130,0,0,0,0,0,0,130,130,130,130,130,130,130,130,130

,130,130,130,130,130,0,0,0,0,0,0,130,130,130,130,130,130,130,130,130,130,130,130,130,130,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0

,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,14,14,14,14,14,14,2,2,14,14,14,14,14,14,0,0,0]});}},

{function Run(){maps.push({name="Surround",author="tilgep",id="#1653072639",direction="forward",cost=254,elevation=12,map=[28,28,28,28,28,28,28,28,28,2,2,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,2

8,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,28,28,28,28,28,0,0,0,0,0,0,92,92,0,0,0,0,0,0,28,28,28,28,28

,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,28,28,28,28,28,0,0,92,0,120,120,120,120,120,120,0,92,0,0,28,28,28,28,28,28,0,0,0,0,120,120,120,120,120,120,0,0,0,0,28,28,28,28,28,28,0,0,0,0,0,1,120,120,1,0,0,0,0,0,

28,28,28,28,28,28,0,0,0,0,0,1,120,120,1,0,0,0,0,0,28,28,28,28,28,28,0,0,0,0,0,120,120,120,120,0,0,0,0,0,28,28,28,28,28,28,0,0,92,0,0,120,1,1,120,0,0,92,0,0,28,28,28,28,28,28,0,0,0,0,0,120,120,120,120,

0,0,0,0,0,28,28,28,28,28,28,0,0,0,0,0,1,120,120,1,0,0,0,0,0,28,28,28,28,28,28,0,0,0,0,0,1,120,120,1,0,0,0,0,0,28,28,28,28,28,28,0,0,0,0,0,1,120,120,1,0,0,0,0,0,28,28,28,28,28,28,0,0,0,0,0,120,120,120,

120,0,0,0,0,0,28,28,28,28,28,28,0,0,92,0,0,120,120,120,120,0,0,92,0,0,28,28,28,28,28,28,0,0,0,0,0,120,120,120,120,0,0,0,0,0,28,28,28,28,28,28,0,0,0,0,0,1,2,2,1,0,0,0,0,0,28,28,28]});}},

{function Run(){maps.push({name="Down the Hatch",author="tilgep",id="#1653073139",direction="forward",cost=300,elevation=-15,map=[0,0,0,0,0,0,0,0,42,2,2,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42

,42,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,42,0,0,0,0,0,0,0,0,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,0,0,0,0,42,42,42,42,42,42,42,22,22,42,42,42,42,42,42,42,0,0,0,0,42,42,1,1,1,1,1,92

,92,1,1,1,1,1,42,42,0,0,0,0,42,42,1,33,107,107,107,107,107,107,107,33,107,1,42,42,0,0,0,0,42,42,1,107,107,107,107,107,107,107,107,107,107,1,42,42,0,0,0,0,42,42,1,107,107,107,107,107,33,107,107,107,107

,1,42,42,0,0,0,0,42,22,92,107,107,107,107,33,33,107,107,107,107,92,22,42,0,0,0,0,42,42,1,107,107,107,107,107,107,107,107,107,107,1,42,42,0,0,0,0,42,42,1,107,107,107,107,107,107,107,107,107,107,1,42,42

,0,0,0,0,42,42,1,107,107,33,107,107,107,107,107,33,107,1,42,42,0,0,0,0,42,42,1,33,107,33,107,107,107,107,107,33,107,1,42,42,0,0,0,0,42,42,1,107,107,107,107,107,33,107,107,107,107,1,42,42,0,0,0,0,42,42

,1,107,107,107,107,107,107,107,107,107,107,1,42,42,0,0,0,0,42,22,92,107,107,107,107,107,107,107,107,107,107,92,22,42,0,0,0,0,42,42,1,107,107,33,107,107,107,107,107,107,107,1,42,42,0,0,0,0,0,0,1,107,10

7,107,107,107,107,107,107,107,33,1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,0,0,0,0]});}},

{function Run(){maps.push({name="ez climb",author="Schnouf",id="#1653075850",direction="left",cost=246,elevation=9,map=[0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,

0,1,0,12,0,11,0,10,0,9,0,8,0,7,0,6,0,0,92,92,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,13,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,1,0,0,0,0,0,67,67,67,67,67,0,0,0,0,0,1,0,0,0,1,0,14,0,0,67,24,24,24,24,2

4,67,0,0,6,0,1,0,0,1,1,0,14,0,0,67,24,24,24,24,24,67,0,0,0,0,1,0,0,0,0,0,14,0,0,67,24,24,94,24,24,67,0,0,6,0,1,0,0,2,14,14,14,0,92,67,24,24,24,24,24,67,0,0,0,0,5,5,5,2,14,14,14,0,92,67,24,24,24,24,24,

67,0,0,0,0,5,5,5,0,0,0,14,0,0,67,24,24,93,24,24,67,0,0,6,0,1,1,1,1,1,0,14,0,0,67,24,24,24,24,24,67,0,0,0,0,1,0,0,0,1,0,14,0,0,67,24,24,24,24,24,67,0,0,6,0,1,0,0,0,1,0,0,0,0,0,67,67,67,67,67,0,0,0,0,0,

1,0,0,0,1,0,13,0,0,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,12,0,11,0,10,0,9,0,8,0,7,0,6,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,

1,1,1,0,0]});}},

{function Run(){maps.push({name="Jumping Madness",author="MacBlub",id="#1653335060",direction="forward",cost=804,elevation=-10,map=[0,0,0,0,0,0,0,24,2,2,24,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,24,24,24,24,

1,1,1,1,1,1,1,1,1,1,124,124,124,124,124,1,1,24,24,1,1,124,124,124,124,124,124,124,1,1,124,125,127,125,125,125,125,128,129,125,125,125,125,125,125,127,125,124,1,1,124,126,125,125,125,125,125,125,125,12

5,125,125,125,125,125,125,125,124,1,1,124,125,125,126,125,128,125,129,125,125,129,125,125,127,125,125,125,124,1,1,124,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,124,1,1,124,125,12

5,125,125,125,126,125,125,125,125,125,125,125,125,125,125,124,1,1,124,125,129,125,125,125,125,125,125,127,126,125,125,125,125,128,125,124,1,1,124,125,125,125,128,125,125,125,125,125,125,125,125,125,12

5,125,125,124,1,1,124,129,125,125,125,125,125,125,129,125,125,125,129,125,125,125,125,124,1,1,124,125,129,125,125,129,125,125,125,125,125,129,125,125,125,125,125,124,1,1,124,125,125,125,125,125,125,12

7,125,125,125,125,128,125,125,125,126,124,1,1,124,125,127,125,125,125,125,125,125,128,125,125,125,125,125,125,125,124,1,1,1,127,127,127,125,125,125,125,125,125,125,125,125,128,125,125,125,124,1,1,1,64

,64,64,126,125,125,125,126,125,125,127,125,125,125,125,129,124,1,1,124,65,65,124,1,124,124,124,124,124,124,124,124,124,124,124,124,124,1,1,65,65,65,65,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,65,65,65,24,23,22

,21,20,19,18,17,16,15,14,14,14,14,14,0,1,65,65,65,24,23,22,21,20,19,18,17,16,15,14,14,2,2,14,0]});}},

{function Run(){maps.push({name="Acrophobia",author="tilgep",id="#1653422560",direction="right",cost=245,elevation=-6,map=[1,2,2,1,1,1,1,20,0,19,0,18,0,17,0,16,0,0,0,0,1,24,24,24,23,22,21,20,0,19,0,18

,0,17,0,16,0,0,0,0,1,24,24,24,23,22,21,20,0,19,0,18,0,17,0,16,0,0,0,0,1,44,44,1,23,22,21,20,0,19,0,18,0,17,0,16,0,0,0,0,1,25,1,1,0,0,0,0,118,19,119,18,120,17,120,16,121,0,0,0,1,25,25,1,0,0,0,19,19,19,

0,18,0,17,0,16,0,0,0,0,1,1,25,1,0,0,0,0,117,0,0,18,0,17,0,16,122,0,0,0,1,25,25,1,0,0,18,18,18,18,18,18,0,17,0,16,0,0,0,0,1,131,1,1,0,0,0,0,116,0,0,0,0,17,0,16,123,0,0,0,1,5,5,1,40,0,41,0,0,40,0,0,40,0

,0,16,0,0,0,0,1,1,1,1,41,0,0,0,115,0,0,0,0,0,0,16,124,0,0,0,1,44,132,44,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,114,0,0,0,40,18,18,18,18,0,0,0,1,25,25,0,0,0,0,0,0,0,0,0,0,18,65,65,18,18,0,0,1

,105,105,0,0,0,0,0,113,0,0,0,0,18,65,65,65,18,18,18,1,105,105,0,0,0,0,0,0,0,0,0,0,18,65,65,65,18,18,2,1,105,106,107,108,109,110,111,112,112,112,112,112,18,65,65,65,65,18,2,1,105,106,107,108,109,110,11

1,112,112,112,112,112,18,65,65,65,65,18,18,1,105,105,0,0,0,0,0,0,0,112,112,3,18,18,65,65,65,18,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,18,67,67,67,18,0]});}},

{function Run(){maps.push({name="Banana For Scale",author="tilgep",id="#1653959430",direction="left",cost=117,elevation=-1,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,40,40,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,40,40,40,40,40,0,2,39,0,0,0,0,0,0,0,0,0,0,0,40,40,40,40,40,40,0,2,39,39,40,40,0,0,0,0,0,40,40,40,40,40,40,40,40,40,0,0,39,39,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,0,0,0,39,40,40,

40,40,40,40,40,40,40,40,40,40,40,40,40,0,0,0,0,39,40,40,40,40,40,40,40,40,40,40,40,40,40,40,0,0,0,0,0,0,40,40,40,40,40,40,40,40,40,40,40,40,40,0,0,0,0,0,0,0,0,40,40,40,40,40,40,40,40,40,40,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Across and beneath",author="RobiBobi212",id="#1655127100",direction="forward",cost=425,elevation=9,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,2,0,0,0,5,5,5,85,5,85,5,85,5,

5,5,77,1,0,0,5,5,0,0,0,5,5,85,5,85,5,85,5,85,5,5,77,1,0,0,5,5,0,0,0,95,95,1,1,1,1,1,1,1,105,105,1,1,0,5,5,5,5,0,0,5,5,5,6,7,8,9,10,11,45,45,11,95,31,45,31,31,45,31,0,5,5,5,6,7,8,9,10,11,45,45,11,95,31

,45,31,31,45,31,0,1,1,1,1,1,1,1,1,1,105,105,1,1,0,5,5,5,5,30,0,1,1,1,1,1,1,1,1,1,95,95,1,1,77,1,5,5,1,29,0,1,84,84,77,84,77,84,84,84,84,84,77,1,24,1,95,95,1,28,0,1,84,84,77,84,77,84,5,5,5,5,0,1,1,1,5,

5,1,27,0,1,84,84,77,84,77,84,84,84,84,84,77,1,0,1,5,5,1,26,0,1,24,24,24,17,17,5,5,5,5,5,0,1,0,1,5,5,5,5,1,1,1,1,1,1,1,1,1,0,5,5,0,1,0,1,5,5,5,5,1,14,14,13,12,3,5,5,1,0,5,5,0,1,1,1,96,96,1,1,1,14,14,77

,11,5,5,5,1,0,5,5,0,0,0,0,5,5,0,0,1,14,14,77,10,5,5,95,96,5,5,5,5,5,5,5,5,5,0,0,1,14,14,77,9,5,5,95,96,5,5,5,0,0,0,0,5,97,0,0,1,14,14,77,8,5,5,95,96,5,5,5,5,5,5,5,5,5,0,0,1,95,95,1,7,5,5,5,1,0,5,5,0,0

,0,0,5,5,0,0,1,2,2,1,6,5,5,5,1,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Among Us",author="mangaka7",id="#1655254358",direction="forward",cost=345,elevation=-5,map=[0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,115,115,1,0

,0,0,0,0,0,0,0,0,0,1,115,115,115,115,115,1,115,115,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,115,115,1,1,1,1,1,1,0,0,1,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,1,0,1,115,115,115,115,1

15,115,115,115,115,115,115,115,115,115,115,115,115,1,1,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,1,1,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,1

15,1,1,115,115,115,115,10,10,10,10,115,115,115,115,115,1,1,1,1,1,1,1,115,115,115,10,65,65,71,71,10,115,115,115,115,1,0,0,0,0,0,1,115,115,115,10,65,65,71,71,10,115,115,115,115,1,0,0,0,0,0,1,115,115,115

,10,65,65,71,71,10,115,115,115,115,1,1,1,1,1,1,1,115,115,115,10,65,65,71,71,10,115,115,115,115,1,115,115,115,115,1,1,115,115,115,10,65,65,71,71,10,115,115,115,115,1,115,115,115,115,1,0,1,115,115,10,65

,65,71,71,10,115,115,115,115,115,115,115,115,115,1,0,0,1,115,10,65,65,71,71,10,115,115,115,115,115,115,115,115,115,1,0,0,0,1,10,65,65,71,71,10,1,1,1,1,1,1,1,1,1,1,0,0,0,0,10,65,65,71,71,10,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Warp Wrap",author="tilgep",id="#1655327529",direction="left",cost=217,elevation=-4,map=[0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,2,0,0,0,0,137,15,15,15,15,15,15,1,134,134,0,1,0,0

,39,39,0,1,1,1,137,15,15,15,15,15,15,1,19,19,0,1,0,0,39,39,0,1,0,1,0,0,0,0,0,15,15,1,19,19,0,1,0,0,39,39,0,1,0,1,1,1,1,1,0,15,15,1,19,19,0,1,0,0,39,39,0,1,1,1,0,0,0,1,0,15,15,1,19,19,0,1,0,0,39,39,0,0

,0,0,0,0,0,0,0,15,15,1,19,19,0,1,0,0,39,39,39,39,39,131,2,15,15,15,15,15,15,1,19,19,0,1,0,0,39,39,39,39,39,131,2,15,15,15,15,15,15,1,19,19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,19,0,1,1,1,1,1,1,1,1,1

,1,0,0,0,0,0,0,1,19,19,19,19,19,19,0,0,0,0,0,0,1,1,1,1,1,1,1,1,19,19,19,19,19,19,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,19,19,0,0,0,0,0,0,132,40,40,40,40,40,40,0,1,0,0,0,19,19,19,19,19,19,19,136,132,40,4

0,40,40,40,40,0,1,0,0,0,19,19,19,19,19,19,19,136,0,0,0,0,0,40,40,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,1,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,133,133,0,1,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Jump n Strafe",author="fantasy",id="#1655487696",direction="forward",cost=456,elevation=0,map=[9,9,9,9,9,9,1,0,0,2,2,0,0,1,9,9,9,9,9,9,9,132,9,132,9,9,1,0,0,124,124,0,

0,1,9,9,132,9,132,9,9,9,9,9,9,9,1,0,0,124,124,0,0,1,9,9,9,9,9,9,0,130,65,130,65,9,1,0,0,124,124,0,0,1,9,65,130,65,130,0,0,130,65,130,65,9,1,0,0,0,0,0,0,1,9,65,130,65,130,0,0,130,65,130,65,9,1,0,0,0,0,

0,0,1,9,65,130,65,130,0,0,130,65,130,65,9,1,0,25,25,25,25,0,1,9,65,130,65,130,0,0,130,65,130,65,9,1,0,25,131,131,25,0,1,9,65,130,65,130,0,0,130,65,130,65,9,1,0,25,131,131,25,0,1,9,65,130,65,130,0,0,13

0,65,130,65,9,1,0,25,25,25,25,0,1,9,65,130,65,130,0,0,130,65,130,65,9,1,0,0,0,0,0,0,1,9,65,130,65,130,0,0,130,65,130,65,9,1,77,77,0,0,77,77,1,9,65,130,65,130,0,0,130,65,130,65,9,1,24,77,0,0,77,24,1,9,

65,130,65,130,0,0,130,65,130,65,9,1,1,1,1,1,1,1,1,9,65,130,65,130,0,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,92,9,92,9,9,9,9,9,9,9,9,9,9,9,9,92,9,92,9,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,

24,24,24,24,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,1,1,124,1,1,124,1,1,124,1,1,124,1,1,124,1,1,124,1,1,124,124,124,124,124,124,124,124,124,2,2,124,124,124,124,

124,124,124,124,124]});}},

{function Run(){maps.push({name="Defend for the trigg",author="fantasy",id="#1655494386",direction="left",cost=300,elevation=5,map=[100,24,0,0,1,0,0,0,0,2,2,0,0,0,64,64,64,64,64,64,24,0,0,0,1,0,0,0,0,

19,19,0,0,0,23,0,64,64,97,64,0,24,0,0,1,0,0,0,0,19,19,0,0,0,22,0,64,64,64,64,0,0,0,0,1,0,0,0,0,0,0,0,0,0,21,0,64,64,64,64,0,0,24,124,96,124,24,0,5,5,5,5,0,0,20,0,0,0,64,64,0,0,24,124,96,124,24,0,5,131

,131,5,0,0,19,0,0,0,64,64,0,0,24,124,96,124,24,0,5,131,131,5,0,0,18,0,0,0,64,64,0,0,24,124,96,124,24,0,5,5,5,5,0,0,17,0,0,0,98,98,0,0,0,0,1,0,0,0,0,0,0,0,0,0,16,0,0,0,64,64,0,24,0,0,1,0,0,0,0,12,12,0,

0,0,15,0,0,0,64,64,24,0,0,0,1,0,0,0,0,132,132,0,0,0,14,0,0,0,64,64,99,24,0,0,1,0,0,0,0,12,12,0,0,0,13,0,0,0,64,64,1,1,1,1,1,93,12,12,12,66,66,12,12,12,12,0,0,0,64,64,44,44,101,124,1,1,1,1,1,1,1,1,1,1,

1,1,1,1,124,124,44,44,101,124,1,100,124,89,124,124,124,124,124,124,124,124,124,124,124,124,44,44,1,124,1,124,124,89,124,124,124,124,124,124,124,124,124,124,124,124,44,44,1,124,124,124,124,124,1,1,1,1,

124,1,1,1,1,1,124,124,2,44,1,124,124,124,124,124,1,1,1,1,124,1,1,1,1,1,124,124,2,44,1,124,1,124,124,89,124,124,124,124,124,124,124,124,124,124,124,124,44,44,1,102,1,100,124,89,124,124,124,124,124,124,

124,124,124,124,124,124]});}},

{function Run(){maps.push({name="CSS Telehop",author="fantasy",id="#1655497931",direction="right",cost=364,elevation=0,map=[2,2,0,0,5,0,0,0,12,12,0,0,0,0,0,0,0,0,24,100,19,19,0,5,131,5,0,12,12,133,12,

0,24,65,124,124,124,0,24,24,94,19,0,5,131,5,0,12,132,133,12,0,24,65,124,124,124,0,24,93,19,19,0,0,5,0,0,0,12,12,0,0,0,0,0,3,124,0,0,0,96,96,1,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,96,96,1,0,0,0,24,0,0,24,

15,0,0,0,0,5,5,5,0,0,19,19,1,0,0,0,24,24,24,24,15,0,0,0,0,5,136,5,0,0,19,19,1,0,0,0,24,1,1,1,15,1,1,0,0,5,5,137,0,0,19,19,1,97,24,24,24,1,15,15,15,15,1,0,0,135,135,135,0,0,19,19,1,1,1,1,1,1,15,134,134

,15,1,0,0,135,44,135,0,0,19,19,1,131,5,0,24,99,24,24,24,24,1,0,0,44,44,44,0,0,87,19,1,5,1,1,1,1,1,1,1,1,1,1,1,1,1,44,0,0,19,19,1,1,90,19,19,19,87,19,91,91,19,19,19,19,1,102,0,0,90,19,1,1,19,19,19,19,1

9,19,91,91,19,19,19,19,1,44,0,0,19,19,1,1,19,19,1,1,1,1,1,1,1,1,19,87,103,44,0,0,19,19,1,1,19,19,101,101,19,19,19,19,19,1,19,87,103,44,0,0,19,19,1,1,19,19,101,101,19,19,19,19,19,1,19,19,1,1,1,1,19,19,

1,1,1,1,1,1,1,1,1,1,19,1,19,19,19,19,19,2,98,98,19,19,19,19,19,19,19,19,19,90,19,1,19,104,19,19,19,2,98,98,19,19,19,19,87,19,19,19,19,19,19,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Strafe Madness",author="fantasy",id="#1655515510",direction="forward",cost=608,elevation=0,map=[97,14,1,0,0,0,0,0,1,2,2,1,0,0,0,0,0,1,14,102,14,14,1,0,0,0,0,0,1,14,14,

1,0,0,0,0,0,1,98,14,1,14,1,1,1,1,1,1,1,135,135,1,1,1,1,1,1,1,14,1,1,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,1,1,135,14,94,135,135,135,135,135,135,135,135,135,135,135,13

5,94,14,135,1,1,135,93,14,135,135,135,135,135,135,135,135,135,135,135,135,14,93,135,1,1,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,1,1,135,135,135,135,135,135,135,135,14,1

4,135,135,135,135,135,135,135,135,1,1,135,135,135,135,135,135,135,135,103,103,135,135,135,135,135,135,135,135,1,1,135,135,135,135,135,135,14,103,14,100,103,14,135,135,135,135,135,135,1,1,135,135,135,1

35,135,135,14,103,100,14,103,14,135,135,135,135,135,135,1,1,135,135,135,135,135,135,135,135,103,103,135,135,135,135,135,135,135,135,1,1,135,135,135,135,135,135,135,135,14,14,135,135,135,135,135,135,13

5,135,1,1,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,1,1,135,93,14,135,135,135,135,135,135,135,135,135,135,135,135,14,93,135,1,1,135,14,94,135,135,135,135,135,135,135,135,

135,135,135,135,94,14,135,1,1,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,1,1,14,1,1,1,1,1,1,1,135,135,1,1,1,1,1,1,1,14,1,14,96,1,0,0,0,0,0,1,14,14,1,0,0,0,0,0,1,101,14,99,

14,1,0,0,0,0,0,1,2,2,1,0,0,0,0,0,1,14,104]});}},

{function Run(){maps.push({name="Low poly santa truth",author="fantasy",id="#1655838297",direction="right",cost=262,elevation=0,map=[93,9,9,9,0,0,0,9,85,93,9,0,0,77,0,0,2,2,0,0,85,1,1,9,29,29,29,9,1,1

,9,0,77,24,77,0,9,9,0,0,9,1,1,9,29,29,29,9,1,1,9,0,0,77,0,0,9,9,0,0,9,9,9,9,0,0,0,9,9,9,9,0,0,0,0,0,29,29,0,0,0,29,29,0,0,77,0,0,29,29,0,0,0,77,0,0,29,29,0,0,0,29,94,0,77,24,77,0,94,29,0,0,77,24,77,0,

29,94,0,0,0,29,29,0,0,77,0,0,29,29,0,0,0,77,0,0,29,29,0,0,9,9,9,9,0,0,0,9,9,9,9,0,0,0,0,9,9,9,9,0,9,1,1,9,0,0,0,9,1,1,9,29,85,29,29,9,1,1,9,0,9,1,1,9,0,0,0,9,1,1,9,29,29,29,29,9,1,1,9,0,9,9,9,9,0,0,0,

9,9,9,9,0,0,0,0,93,9,9,9,0,0,29,29,0,0,77,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,29,29,0,77,24,77,0,0,0,0,77,24,77,0,0,0,0,0,0,0,29,29,0,0,77,0,0,0,0,0,0,77,0,0,0,0,0,0,0,9,9,9,9,0,0,0,9,9,9,9,0,0,0,9,9,9,9,0

,0,9,1,1,9,29,29,29,9,1,1,9,29,29,85,9,1,1,9,29,2,9,1,1,9,29,29,29,9,1,1,9,29,29,29,9,1,1,9,29,2,93,85,9,9,0,0,0,85,9,9,9,0,0,0,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,77,24]});}},

{function Run(){maps.push({name="Get turnt",author="Luffaren",id="#1655850945",direction="left",cost=144,elevation=-9,map=[0,0,0,0,0,0,0,0,0,0,14,2,2,14,0,0,0,0,0,0,25,25,25,0,0,0,0,0,0,0,14,14,14,14,

0,0,0,0,0,0,25,100,25,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,13,13,13,13,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,0,0,0,0,0,0,0,25,0,0,0,0,0,0,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,4,11,10

,10,10,10,0,0,0,0,0,0,0,25,0,0,0,24,24,24,24,24,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,24,1,94,93,24,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,8,8,8,8,0,0,0,0,0,0,5,5,5,5,5,5,5,6,7,8,8,8,8,8,0,0,0,0,0,0,2,5

,5,5,5,5,5,6,7,8,8,8,8,8,0,0,0,0,0,0,2,5,5,5,5,5,5,6,7,8,8,8,8,0,0,0,0,0,0,0,5,5,5,5,5,5,5,6,7,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});

}},

{function Run(){maps.push({name="Boost Bonanza",author="Hichatu",id="#1655851483",direction="forward",cost=152,elevation=0,map=[5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,5,5,5,5,0,0,0,5,5,

5,5,0,0,5,127,129,5,0,0,0,5,129,129,5,0,0,0,5,127,127,5,0,0,5,5,5,5,0,0,0,5,5,5,5,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,5,5,5,5,0,0,0,5,5,5,5,0,0,5,129,127,5,0,0,0,5,126,128,5,0,0,0,5,127,127,5,0,0,5,5,5,5,0,0,0,5,5,5,5,0,0,0,5,5,5,5,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,5,5,5,5,0,0,0,5,5,5,5,0,0,5,5,5,5,

0,0,0,5,128,126,5,0,0,0,5,128,128,5,0,0,5,5,5,5,0,0,0,5,5,5,5,0,0,0,5,5,5,5,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Boost Bonanza 2",author="Hichatu",id="#1655852638",direction="forward",cost=340,elevation=19,map=[5,5,5,5,5,5,5,5,5,2,2,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5

,5,5,5,5,5,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,1

27,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,22,22,22,

22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,2,2,24,24,24,24,24,24,24,24,24]});}},

{function Run(){maps.push({name="Resistance is Futile",author="ZpLit",id="#1655875651",direction="forward",cost=201,elevation=-9,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,9,9,30,31,0,0,0,0,35,35,0,0,0,0,0,0,0,0,0,9,9,9,30,31,31,32,0,0,34,34,0,0,36,36,37,38,19,0,0,9,9,0

,0,31,31,32,32,33,14,14,34,35,36,36,37,38,19,19,0,9,9,0,0,0,0,32,32,33,14,14,34,35,36,0,0,0,19,19,19,9,9,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,19,19,95,95,0,1,0,1,1,1,94,1,1,1,1,1,94,1,1,0,95,95,95,95,0,1,0

,1,93,1,1,1,1,1,93,1,1,0,1,0,95,95,9,9,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,19,19,9,9,0,0,0,0,32,32,33,14,14,34,35,36,0,0,0,19,19,19,9,9,0,0,31,31,32,32,33,14,14,34,35,36,36,37,38,19,19,0,9,9,9,30,31,31,32

,0,1,33,33,1,0,36,36,37,38,19,0,0,0,9,9,30,31,0,0,0,1,32,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,31,31,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,30,30,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,29,29,1,0,1,0,0,0,0,

0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Casual Defense",author="fantasy",id="#1655917455",direction="right",cost=211,elevation=-12,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1

,17,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,17,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,17,90,1,0,1,17,17,90,90,17,17,17,17,17,17,17,17,17,90,17,17,17,1,0,1,17,17,17,17,17,17,17,17,90,17,17,17,17,17,17,1

7,17,1,0,1,17,17,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,67,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,67,24,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,90,17,0,67,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,67,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,67,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,90,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,17,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,90,17,17,17,17,17,90,17,17,17,90,17,17,17,0,0,66,5,2,1,17,17,17,17,17,17,17,17,17,90,17,17,17,17,0,0,66,5,2,1,1,1,1

,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0]});}},

{function Run(){maps.push({name="Chill area",author="fantasy",id="#1655918785",direction="left",cost=261,elevation=7,map=[1,2,2,1,0,67,24,24,24,67,0,1,1,1,1,1,1,1,0,0,1,105,105,1,0,0,67,67,67,0,105,10

5,106,107,108,113,114,1,0,0,1,105,105,1,1,0,0,0,0,0,25,1,1,1,109,112,115,1,0,0,1,105,105,105,105,25,25,25,25,25,25,0,0,1,109,112,115,1,0,0,1,105,105,105,105,25,25,25,25,25,25,0,0,1,110,111,116,1,0,0,1

,1,1,1,1,0,0,0,0,0,25,0,0,1,1,1,97,1,0,0,0,0,0,0,0,0,0,0,0,0,25,25,1,100,118,117,116,1,0,0,0,0,0,0,0,0,67,67,67,0,0,25,1,119,1,1,1,1,0,0,0,67,0,0,0,67,24,24,24,67,0,100,1,119,1,0,0,0,0,0,67,24,67,0,0,

67,24,24,24,67,0,25,1,96,1,0,0,0,0,0,0,67,0,0,0,67,24,24,24,67,0,25,1,119,1,0,0,0,0,0,0,0,0,0,0,0,67,67,67,0,0,25,1,119,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,1,118,1,0,0,0,0,0,2,12,12,12,12,12,0,0,0,0,

0,27,1,117,1,0,0,0,0,0,2,12,12,12,12,12,0,0,0,0,0,28,1,116,1,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,29,1,115,1,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,30,1,114,1,0,0,0,0,0,67,67,0,0,0,12,0,0,0,0,0,31,1,113,1,0,0,0

,0,0,24,24,67,0,0,12,0,0,0,0,0,32,1,112,1,0,0,0,0,0,24,24,67,0,0,12,12,12,12,12,12,12,12,12,1,0,0,0,0,0]});}},

{function Run(){maps.push({name="Teleport Trouble",author="HIchatu",id="#1655925352",direction="right",cost=312,elevation=0,map=[1,1,1,1,1,0,1,24,24,2,2,24,24,1,0,0,0,0,0,0,1,24,24,24,1,0,1,24,24,24,2

4,24,24,1,0,0,0,0,0,0,1,132,24,133,1,0,1,24,24,131,131,24,24,1,0,0,0,0,0,0,1,24,24,24,1,0,1,24,24,24,24,24,24,1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,

0,0,1,24,24,24,1,24,24,24,1,0,0,0,0,0,0,1,1,1,1,1,1,132,24,133,1,134,24,136,1,0,0,0,0,0,0,1,24,24,24,24,1,24,24,24,1,24,24,24,1,0,0,0,0,0,0,1,24,24,24,24,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,24,139,24,2,1,

1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,24,24,24,2,1,24,24,24,1,24,24,24,1,24,24,24,1,0,0,1,24,24,24,24,1,132,24,133,1,134,24,136,1,137,24,138,1,0,0,1,24,24,24,24,1,24,24,24,1,24,24,24,1,24,24,24,1,0,0,1,1,1,1,

1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,24,24,24,1,24,24,24,1,24,24,24,1,0,0,0,0,0,0,0,1,132,24,133,1,134,24,136,1,137,24,138,1,0,0,0,0,0,0,0,1,24,24,24,1,2

4,24,24,1,24,24,24,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Lava",author="fantasy",id="#1656028169",direction="left",cost=420,elevation=0,map=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,5,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,1,5,0,0,0,77,77,77,77,77,77,77,77,77,77,0,0,0,5,1,1,5,0,0,77,14,14,14,14,14,14,14,14,14,14,77,0,0,5,1,1,5,0,0,77,14,0,77,77,

77,77,77,77,0,14,77,0,0,5,1,1,5,0,0,77,14,77,19,19,19,19,19,19,77,14,77,0,0,5,1,1,5,0,0,77,14,77,19,0,77,77,0,19,77,14,77,0,0,5,1,1,5,0,0,77,14,77,19,77,24,24,77,19,77,14,77,0,0,5,1,1,5,0,0,77,14,77,1

9,77,24,24,77,19,77,14,77,0,0,5,1,1,5,0,0,77,14,77,19,0,77,77,0,19,77,14,77,0,0,5,1,1,5,0,0,77,14,77,19,19,19,19,19,19,77,14,77,0,0,5,1,1,5,0,0,77,14,0,77,77,77,77,77,77,0,14,77,0,0,5,1,1,5,0,0,77,14,

14,14,14,14,14,14,14,14,14,77,0,0,5,1,1,5,0,0,0,77,77,77,77,77,77,77,77,77,77,0,0,0,5,1,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,2,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,

5,5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="SnK Wall Maria",author="fantasy",id="#1656030055",direction="forward",cost=548,elevation=19,map=[5,5,10,10,5,5,5,5,5,2,2,5,5,5,5,5,10,10,5,5,5,10,94,45,5,5,5,10,10,5,5

,10,10,5,5,5,45,94,10,5,5,10,45,45,5,5,10,94,45,5,5,45,94,10,5,5,45,45,10,5,5,16,50,50,5,5,10,45,45,5,5,45,45,10,5,5,50,50,16,5,5,16,93,50,3,5,16,50,50,5,5,50,50,16,5,3,50,93,16,5,24,5,16,16,5,5,16,93

,50,3,3,50,93,16,5,5,16,16,5,24,100,24,5,5,5,5,5,16,16,5,5,16,16,5,5,5,5,5,24,100,5,24,24,5,5,5,5,5,5,5,5,5,5,5,5,5,5,24,24,5,5,3,24,24,5,5,5,5,5,5,5,5,5,5,5,5,24,24,3,5,5,5,5,24,24,5,5,5,3,5,5,3,5,5,

5,24,24,5,5,5,5,77,5,5,24,24,24,24,24,24,24,24,24,24,24,24,5,5,77,5,5,19,77,5,76,92,76,5,5,5,5,5,5,76,92,76,5,77,19,76,5,76,5,5,76,76,76,5,5,5,77,15,5,76,76,76,5,5,5,5,3,5,76,8,76,76,76,5,77,5,5,5,5,7

6,76,76,5,76,5,3,24,5,5,5,76,76,76,5,22,77,5,77,8,76,76,76,5,5,5,24,24,24,77,5,76,76,76,5,77,5,5,16,5,76,76,76,5,77,24,24,5,24,24,5,76,76,76,5,5,5,76,5,5,76,76,76,5,24,24,5,5,5,24,24,76,76,76,5,76,5,5

,76,5,76,76,76,24,24,5,5,5,66,5,24,24,76,76,5,24,24,24,24,5,76,76,24,24,5,66,5,100,5,5,3,24,24,24,24,24,2,2,24,24,24,24,24,3,5,5,100]});}},

{function Run(){maps.push({name="Great walls",author="Luffaren",id="#1656088838",direction="left",cost=204,elevation=-5,map=[0,0,0,0,0,0,0,0,0,0,14,2,2,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,65,65,14,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,14,65,65,14,0,0,20,20,20,0,0,0,0,0,0

,0,0,0,0,0,89,65,65,14,0,67,20,100,20,67,0,0,0,0,0,0,0,0,0,0,14,65,65,14,0,0,20,20,20,0,0,0,0,0,0,0,0,0,0,0,14,65,65,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,9,9,9,0,0,0,0,0,0,0,14,1

4,89,14,0,0,0,0,0,0,2,9,9,9,9,9,10,11,12,13,14,14,14,14,0,0,0,0,0,0,2,9,89,9,9,9,10,11,12,13,14,14,14,14,0,0,0,0,0,0,9,9,9,9,9,9,10,11,12,13,14,14,14,14,0,0,0,0,0,0,20,20,20,19,18,17,16,15,14,14,14,14

,14,14,0,67,67,92,67,67,20,20,20,20,20,20,20,20,20,20,54,20,20,54,20,20,20,20,20,20,20,93,20,20,20,20,20,20,20,20,54,20,20,54,20,20,20,20,20,20,20,94,20,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,20,20,20,

0,0,0,0,0,0,0,14,93,94,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Chill stairs",author="fantasy",id="#1656353420",direction="forward",cost=323,elevation=19,map=[0,0,0,0,0,0,1,1,0,2,2,0,0,67,0,0,67,5,1,0,0,0,0,0,0,1,1,24,0,5,5,0,67,19

,67,0,0,67,5,1,0,0,0,0,1,1,24,77,0,5,5,0,0,67,0,0,0,67,5,1,0,0,0,1,1,24,77,0,0,6,6,0,0,0,0,0,0,67,5,1,0,0,1,1,24,77,0,0,0,6,7,7,8,8,9,9,0,67,5,1,0,1,1,24,77,0,0,0,0,6,7,7,8,8,9,9,0,67,5,1,1,1,24,77,0,

77,0,0,0,0,0,0,0,0,10,10,0,67,5,1,1,24,77,0,77,19,77,0,0,0,0,0,0,0,10,10,0,67,5,1,1,24,77,0,0,77,0,0,14,14,13,13,12,12,11,11,0,67,5,1,1,24,77,0,0,0,0,0,14,14,13,13,12,12,11,11,0,67,5,1,1,24,77,0,0,0,0

,0,15,15,0,0,0,0,0,0,0,67,5,1,1,24,77,0,0,77,0,0,15,15,0,0,0,0,0,0,0,67,5,1,1,24,77,0,77,19,77,0,16,16,17,17,18,18,19,19,0,67,5,1,1,1,24,77,0,77,0,0,16,16,17,17,18,18,19,19,0,67,5,1,0,1,1,24,77,0,0,0,

0,0,0,0,0,0,20,20,0,67,5,1,0,0,1,1,24,77,0,0,0,0,0,0,0,0,20,20,0,67,5,1,0,0,0,1,1,24,77,0,0,23,23,23,22,22,21,21,0,67,5,1,0,0,0,0,1,1,24,77,0,23,23,23,22,22,21,21,0,67,5,1,0,0,0,0,0,1,1,24,0,24,24,0,0

,0,0,0,0,67,5,1,0,0,0,0,0,0,1,1,0,2,2,0,0,0,0,0,67,5,1,0]});}},

{function Run(){maps.push({name="Lavavaa",author="tilgep",id="#1656779854",direction="forward",cost=493,elevation=-5,map=[0,0,0,0,0,0,0,0,0,0,18,2,2,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,18,18,18,18,1

8,18,0,0,0,0,0,0,0,16,16,16,0,0,16,17,17,17,18,18,18,18,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,19,19,19,19,0,0,0,0,0,0,77,76,76,76,76,76,76,16,16,16,19,19,19,19,19,0,0,0,0,0,77,76,76,76,76,78,76,76

,76,76,20,20,20,20,20,0,0,0,0,0,16,16,76,76,76,76,76,76,76,76,77,76,76,20,20,20,0,0,0,0,16,16,16,76,76,76,78,76,78,76,77,76,76,76,20,20,0,0,0,0,16,16,76,76,76,76,76,76,76,76,77,76,78,76,76,20,0,0,0,0,

77,76,78,76,76,78,76,76,76,78,77,76,76,76,76,20,0,0,0,0,77,76,76,76,76,76,76,76,76,76,77,76,76,76,76,20,0,0,0,0,16,76,76,80,80,80,80,76,76,76,77,78,76,76,76,20,0,0,0,0,16,16,80,80,80,16,80,76,78,76,77

,76,76,76,80,20,0,0,0,0,0,16,16,16,16,16,16,76,76,76,77,76,76,80,20,20,0,0,0,0,0,0,14,14,14,14,16,16,16,16,20,20,20,20,20,0,0,0,0,0,0,0,14,14,14,14,16,16,135,135,20,20,20,0,0,0,0,0,0,0,0,0,13,13,13,13

,16,16,135,135,20,20,0,0,0,0,0,0,0,0,13,13,13,13,13,13,16,16,135,135,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,13,2,2,13,135,135,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="This One",author="tilgep",id="#1657224114",direction="forward",cost=173,elevation=-2,map=[0,0,0,0,17,2,2,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,0,0,0,0,0

,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,0,17,17,17,17,17,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,17,17,17,17,17,0,0

,0,0,0,0,0,0,17,17,17,0,0,0,0,17,17,17,17,17,17,0,0,0,0,0,0,0,17,17,17,0,1,1,1,0,17,17,17,17,17,0,0,0,0,0,0,0,17,17,17,0,1,0,1,0,17,17,17,17,17,0,0,0,0,0,0,0,17,17,17,0,1,0,1,0,0,17,17,17,17,0,0,0,0,0

,0,0,16,16,16,0,1,1,1,0,0,0,16,16,16,0,0,0,0,0,0,0,16,16,16,16,0,0,0,0,0,0,16,16,16,0,0,0,0,0,0,0,16,16,16,16,16,0,0,0,0,16,16,16,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,

15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,2,2,15,15,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="That One",author="tilgep",id="#1657224830",direction="right",cost=177,elevation=0,map=[0,0,0,0,23,2,2,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,23,23,23,0,0,0,0,0,0,0,0,0,

0,0,23,0,0,0,0,23,23,23,23,0,0,0,0,0,0,0,0,0,0,23,23,0,0,0,23,23,23,23,23,0,0,0,0,0,0,0,0,23,23,23,23,0,0,0,23,23,23,23,23,0,0,0,0,0,0,0,23,23,23,23,2,0,0,23,23,23,23,23,0,1,1,1,0,0,0,23,23,23,23,23,2

,0,0,23,23,23,23,0,0,1,0,1,0,0,0,23,23,23,23,23,23,0,23,23,23,23,23,0,0,1,0,1,0,0,23,23,23,23,23,23,23,0,23,23,23,23,0,0,0,1,0,1,0,0,23,23,23,23,23,23,0,0,23,23,23,23,23,0,0,1,1,1,0,23,23,23,23,23,23,

23,0,0,23,23,23,23,23,0,0,0,0,0,0,23,23,23,23,0,0,0,0,0,23,23,23,23,23,23,0,0,0,23,23,23,23,23,0,0,0,0,0,0,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,23,23,23,23,23,23,23,23,23,23,23,23,23,0

,0,0,0,0,0,0,0,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,23,23,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Verticality",author="xen",id="#1657229266",direction="left",cost=255,elevation=-3,map=[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,24,24,1,1,1,1,1,1,1,1,0,0,0,0,0,102,

0,0,0,1,58,58,118,52,52,52,52,96,12,1,0,0,0,0,90,24,90,0,97,118,58,58,118,52,52,52,52,96,12,1,0,0,0,0,24,24,24,0,0,1,58,58,1,112,112,1,1,1,1,1,0,0,0,0,127,24,24,0,0,1,58,58,1,46,46,1,0,0,0,0,0,0,0,0,0

,0,0,0,0,1,58,58,1,46,46,106,99,0,0,0,0,0,0,0,0,0,0,0,0,1,58,58,1,46,46,1,1,1,1,1,0,0,0,0,0,95,0,0,0,1,18,18,1,46,46,46,46,6,6,1,0,0,0,0,0,95,0,0,0,1,18,18,1,46,46,46,46,6,6,1,0,0,0,0,90,24,90,0,0,0,0

,0,1,106,106,1,1,1,1,1,0,0,0,0,24,24,24,0,0,0,0,0,1,98,98,1,0,0,0,0,0,0,0,0,127,24,24,0,0,0,0,0,1,108,108,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,109,109,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,110,110,1,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,111,111,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,90,90,1,112,112,1,1,1,1,1,1,1,1,0,0,0,0,0,2,101,21,20,19,53,53,54,55,56,57,58,59,20,21,22,23,24,128,1,2,101,21,20,19,53,53,54,55,56,

57,58,59,20,21,22,23,24,128,1,1,1,90,90,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Socrates Gasoline",author="Luffaren",id="#1657580875",direction="forward",cost=188,elevation=-4,map=[0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,

24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,1,94,24,24,24,24,24,24,0,0,0,0,0,0,14,14,14,14,14,0,1,1,1,1,1,1,24,24,0,0,0,0,0,0,14,16,16,14,15,16,17,18,19,20,21,22,23,24,0,0,0,0,0,0,14,16,16,14,15,16,1

7,18,19,20,21,22,23,24,0,0,0,0,0,0,14,14,14,14,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,93,0,0,0,0,0,0,0,0,14,14,14,0,0,0,0,0,0,0,14

,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,14,14,14,0,0,0,0,0,0,14,14,14,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,0,0,0,0,0,0,0,0,

0,0,14,14,14,0,14,14,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,14,14,0,14,14,0,14,14,14,0,0,0,120,120,120,120,0,0,0,0,0,0,0,0,0,0,14,14,14,0,0,0,120,1,1,120,40,95,95,40,20,19,18,17,16,15,14,14,14,0,0,0,120,1,1

,120,40,95,95,40,20,19,18,17,16,15,14,14,14,0,0,0,120,2,2,120,0,0,0,0,0,0,0,0,0,0,14,14,14,0]});}},

{function Run(){maps.push({name="Mazeinator",author="Cuddles",id="#1657591898",direction="left",cost=482,elevation=5,map=[1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,112,112,1,1,1,1,1,1,

1,1,1,1,1,1,1,1,112,112,112,1,112,112,112,112,112,112,112,1,1,1,1,2,17,76,17,1,112,1,112,1,112,112,1,1,1,1,112,1,1,1,1,2,17,76,17,1,66,1,112,112,112,112,1,1,1,112,112,1,1,1,1,1,1,1,17,1,66,1,1,1,112,1

12,1,1,1,112,1,1,1,1,1,1,1,1,17,1,66,1,1,1,1,1,1,1,1,76,1,76,76,76,1,1,1,1,17,1,112,1,1,77,112,112,77,1,1,76,1,76,76,76,1,1,1,1,17,1,112,112,112,112,112,112,112,112,112,112,1,17,17,17,1,1,1,1,95,1,1,1

,1,95,95,95,95,1,1,1,1,17,1,17,1,1,17,76,17,76,17,1,112,112,66,66,112,112,1,1,1,76,1,76,1,1,17,1,17,1,17,1,112,1,69,69,1,112,1,1,95,17,1,76,1,1,76,17,76,17,76,1,112,1,66,66,1,112,1,1,17,1,90,17,1,1,17

,1,17,1,17,1,112,112,112,112,112,112,1,1,17,1,17,17,1,1,17,1,17,1,17,1,1,1,12,12,1,1,1,1,17,1,17,90,1,1,76,17,76,17,76,1,1,1,12,13,14,15,16,17,17,1,17,17,1,1,17,1,17,1,17,17,1,1,1,1,1,1,1,1,1,1,90,17,

1,1,17,76,17,76,17,17,90,85,17,90,85,17,85,90,17,95,17,17,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,17,90,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Down",author="tilgep",id="#1657744638",direction="forward",cost=31,elevation=-12,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,22,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1

2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Trap Run",author="Hichatu",id="#1657805637",direction="forward",cost=80,elevation=0,map=[0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,5,89,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,89,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,89,5,5,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,89,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,89,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,5,5,89,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,89,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,89,5,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,89,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="ze displacements",author="fantasy",id="#1657813647",direction="forward",cost=379,elevation=0,map=[0,0,2,2,0,0,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,14,14,0,24,24,66,66

,66,66,24,14,14,14,14,100,0,0,0,0,14,14,14,14,24,24,67,67,67,67,24,14,14,14,14,14,0,0,0,0,14,15,14,14,14,14,66,66,66,66,24,24,14,18,18,14,14,14,0,14,14,15,15,16,16,14,14,66,66,66,24,14,14,18,18,18,20,

14,14,14,15,15,15,15,16,14,14,66,66,66,24,14,17,17,19,18,19,14,14,14,14,14,15,94,15,14,14,14,66,66,24,14,14,17,19,93,19,14,14,14,14,14,13,13,15,14,14,14,66,66,14,14,15,15,20,20,15,14,0,0,14,14,13,13,1

4,14,14,15,14,14,14,100,15,15,15,15,14,14,0,0,0,14,13,13,14,14,14,15,16,16,16,15,15,14,14,15,14,14,0,0,14,14,15,14,14,11,14,15,16,16,16,15,15,14,16,16,16,14,0,14,14,15,15,15,14,11,11,15,15,16,14,14,14

,14,16,16,14,14,0,14,94,15,15,15,14,15,11,11,14,14,24,13,13,16,16,14,14,0,0,14,14,13,15,15,14,15,15,11,12,12,14,13,13,13,12,14,0,0,0,0,14,13,15,14,15,15,15,12,12,12,12,13,14,12,12,14,14,14,0,14,14,13,

15,14,14,14,14,14,13,13,13,13,14,12,12,14,14,14,0,14,13,13,12,15,14,14,17,14,14,14,13,14,11,12,12,14,14,0,0,100,14,12,12,15,15,16,17,14,14,14,14,11,11,12,12,100,14,0,0,0,14,14,14,93,15,16,14,14,12,10,

10,11,11,11,14,14,14,14,0,0,0,0,14,14,14,14,14,12,12,12,10,10,11,11,14,2,2,14,0]});}},

{function Run(){maps.push({name="War Trenches",author="fantasy",id="#1657815115",direction="forward",cost=436,elevation=0,map=[66,15,2,2,15,15,14,14,14,14,90,14,66,66,66,66,66,66,66,66,66,14,11,11,14,

14,14,90,14,100,14,14,14,14,24,14,14,66,66,66,66,15,10,11,14,14,14,14,14,90,14,14,94,14,24,14,14,66,66,66,66,14,11,11,94,14,14,14,14,15,15,16,16,16,16,16,16,14,14,66,14,15,11,10,15,14,11,11,10,12,90,1

1,11,11,10,11,11,14,14,14,14,14,11,11,15,14,12,10,11,11,11,11,10,11,11,90,11,16,14,14,14,14,10,12,15,15,12,11,14,14,14,14,14,14,14,11,11,14,100,14,14,15,11,10,12,12,10,11,14,90,14,90,14,15,14,11,12,24

,14,24,0,14,11,11,11,10,11,11,14,14,14,14,15,15,14,11,12,24,24,24,0,14,15,15,15,15,14,14,14,14,10,11,11,11,91,11,11,15,14,24,0,100,14,24,24,14,11,14,93,14,11,10,11,11,91,11,11,15,14,24,14,14,14,14,15,

14,15,14,14,14,11,11,14,15,14,14,14,90,14,24,14,90,11,11,10,10,10,10,12,11,90,11,14,13,16,16,14,14,24,24,14,15,12,11,10,11,90,11,11,11,11,11,15,90,14,12,14,24,24,24,24,14,11,11,14,14,14,15,14,15,15,24

,24,14,14,90,14,14,14,24,14,15,10,11,14,24,14,14,14,14,14,24,24,14,93,14,14,14,14,24,14,14,11,10,11,11,10,10,11,10,10,12,11,11,12,11,12,11,14,24,14,14,11,11,11,11,11,11,11,11,11,12,11,10,11,11,11,11,1

4,24,24,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,11,11,14,24,24,24,24,24,24,14,90,14,100,12,12,10,10,11,11,14,2,2,14,24]});}},

{function Run(){maps.push({name="Corner run",author="fantasy",id="#1657815506",direction="right",cost=72,elevation=0,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,2,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Ez split",author="fantasy",id="#1657815672",direction="forward",cost=74,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,

9,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Luff",author="fantasy",id="#1657816823",direction="forward",cost=91,elevation=17,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0

,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,24,24,3,9,9,0,24,9,9,24,0,24,24,44,44,0,24,24,44,100,2,2,3,9,9,0,24,9,9,24,0,24,24,36,0,0,24,24,36,0]});}},

{function Run(){maps.push({name="A Fiery Heart",author="Niikos",id="#1657829819",direction="forward",cost=371,elevation=2,map=[100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,105,105,110,0,0,0,0,0,0,0,111,111,111,111,111,0,0,0,0,0,105,105,110,0,0,0,0,0,0,111,76,76,76,76,76,111,0,0,0,0,105,105,0,0,0,0,0,96,111,76,76,76,76,76,76,76,111,0,0,0,105,105,0,0,0,0,0,96,111,7

6,76,76,76,76,76,76,76,111,0,0,0,105,111,0,0,0,111,96,111,76,76,76,76,76,76,76,76,76,111,0,0,105,111,0,0,0,111,96,0,111,76,76,76,76,76,76,76,76,76,111,0,105,111,111,111,111,111,96,0,0,111,76,76,76,76,

76,76,76,76,76,111,3,111,0,0,0,111,96,0,111,76,76,76,76,76,76,76,76,76,111,0,0,111,0,0,0,111,96,111,76,76,76,76,76,76,76,76,76,111,0,0,0,0,0,0,0,0,96,111,76,76,76,76,76,76,76,76,111,0,0,0,0,0,0,0,0,0,

96,111,76,76,76,76,76,76,76,111,0,0,0,0,0,66,0,0,0,0,0,0,111,76,76,76,76,76,111,0,0,0,0,0,0,7,0,0,0,0,0,0,0,111,111,111,111,111,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,

0,0,0,117,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,117,0,0,117,117,117,117,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117,117,97]});}},

{function Run(){maps.push({name="Running Out Of Time",author="Niikos",id="#1657831748",direction="right",cost=260,elevation=-2,map=[2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,40,40,1,0,0,0,0,0,0,0,0,0,

0,0,0,1,39,37,1,1,40,40,41,1,0,0,0,0,0,0,0,0,0,0,1,39,39,38,1,1,40,40,41,41,1,0,0,0,0,0,0,0,0,1,40,39,39,38,1,1,40,40,41,41,42,1,0,0,0,0,0,0,1,40,40,39,39,38,1,1,40,40,40,41,41,42,1,0,0,0,0,1,40,40,40

,40,39,38,1,1,40,40,40,41,41,42,43,1,0,0,1,0,0,40,40,40,39,38,1,1,40,40,40,41,41,42,42,43,1,1,0,0,0,0,40,40,39,38,1,1,40,40,40,41,41,42,42,43,43,44,0,0,0,0,0,40,39,38,1,1,40,40,40,41,41,42,42,43,43,44

,44,44,0,0,0,40,39,38,2,1,40,40,40,41,41,42,42,43,43,44,44,44,0,0,0,40,39,38,2,1,40,40,40,41,41,42,42,43,43,44,0,0,0,0,0,40,39,38,1,1,40,40,40,41,41,42,42,43,1,1,0,0,0,0,40,40,39,38,1,1,40,40,40,41,41

,42,43,1,0,0,1,0,0,40,40,40,39,38,1,1,40,40,40,41,41,42,1,0,0,0,0,1,40,40,40,40,39,38,1,1,40,40,41,41,42,1,0,0,0,0,0,0,1,40,40,39,39,38,1,1,40,40,41,41,1,0,0,0,0,0,0,0,0,1,40,39,39,38,1,1,40,40,41,1,0

,0,0,0,0,0,0,0,0,0,1,39,39,38,1,1,40,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,39,37,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1]});}},

{function Run(){maps.push({name="POV Ur A Furry",author="Niikos",id="#1657834350",direction="forward",cost=285,elevation=-2,map=[2,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,22,22,1,1,0,0,0,0,0,0,1,40,1,

0,0,0,0,0,0,1,97,22,40,40,1,0,0,0,1,1,1,40,40,1,0,0,0,0,0,0,1,40,40,40,40,1,1,1,40,40,40,40,40,40,1,0,0,0,0,0,1,1,40,40,40,1,102,40,40,88,40,40,40,40,1,0,0,0,0,0,0,0,1,40,40,40,1,1,1,88,88,40,40,40,40

,1,0,0,0,0,0,0,1,40,40,40,1,65,65,65,88,88,40,40,40,40,1,0,0,0,0,0,1,40,40,40,40,1,0,1,65,88,40,40,40,40,1,0,0,0,0,0,1,40,40,40,40,40,1,1,65,88,40,40,1,40,40,1,0,1,0,0,1,40,40,40,40,98,40,40,40,40,40,

40,1,40,40,1,0,1,0,0,1,40,40,40,40,98,40,40,40,40,40,40,1,40,40,1,0,0,0,0,1,40,40,40,40,40,1,1,65,88,40,40,1,40,40,1,0,0,0,0,1,40,40,40,40,1,0,1,65,88,40,40,40,40,1,0,0,0,0,0,1,40,40,40,1,65,65,65,88,

88,40,40,40,40,1,0,0,0,0,0,1,40,40,40,1,1,1,88,88,40,40,40,40,1,0,0,0,0,1,1,40,40,40,1,104,40,40,88,40,40,40,40,1,0,0,0,0,0,1,40,40,40,40,1,1,1,40,40,40,40,40,40,1,0,0,0,0,1,99,22,40,40,1,0,0,0,1,1,1,

103,40,1,0,0,0,0,0,1,22,22,1,1,0,0,0,0,0,0,1,95,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="ElevateThoseTriggers",author="Niikos",id="#1657836583",direction="forward",cost=270,elevation=19,map=[0,0,0,0,0,0,0,5,5,2,2,5,5,0,0,0,0,0,0,0,100,24,92,9,9,9,92,5,5,5,

5,5,5,92,9,9,9,92,24,100,24,24,92,9,9,9,92,5,5,5,5,5,5,92,9,9,9,92,24,24,92,92,0,0,0,0,0,0,0,92,92,0,0,0,0,0,0,0,92,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,0,0,0,0,0,0,0,0,0,44,44,0,0,34,34,34,0,0,25,25,0,0,34,34,34,0,0,44,44,44,44,0,0,34,34,34,34,92,25,25,92,34,34,34,34,0,0,44,44,44,44,0,0,3

4,34,34,0,0,25,25,0,0,34,34,34,0,0,44,44,0,92,0,0,0,92,0,0,0,92,92,0,0,0,92,0,0,0,0,92,0,0,0,0,44,44,44,0,0,24,24,0,0,44,44,44,0,0,0,0,0,0,0,0,44,97,44,0,0,24,24,0,0,44,99,44,0,0,0,0,0,0,0,0,44,44,44,

0,0,24,24,0,0,44,44,44,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,44,44,0,0,0,0,0,24,24,24,24,24,24,0,0,0,0,0,44,44,96,96,44,92,0,0,0,24,24,24,24,24,

24,0,0,0,92,44,98,98,100,96,44,0,0,0,92,24,24,2,2,24,24,92,0,0,0,44,98,100]});}},

{function Run(){maps.push({name="RampofSerenity",author="Niikos",id="#1657928778",direction="forward",cost=324,elevation=15,map=[24,67,20,20,20,19,18,17,16,15,14,95,100,0,0,0,0,2,2,5,24,67,20,20,20,19

,18,17,16,15,14,95,95,0,0,0,0,5,5,5,24,67,20,20,20,19,18,17,16,15,14,14,14,0,0,0,0,5,5,5,24,67,20,20,20,0,0,0,0,0,14,14,14,0,0,0,0,5,5,5,24,67,20,20,20,0,0,0,0,0,14,14,14,0,0,15,3,5,5,5,24,67,20,20,20

,0,0,0,0,0,14,14,14,0,0,15,3,5,5,5,24,67,20,20,20,0,0,0,0,0,14,14,14,0,0,15,3,5,5,5,24,67,20,20,20,0,18,17,16,0,14,14,14,0,0,0,0,5,5,5,24,67,20,20,20,0,0,0,0,0,14,14,14,0,0,0,0,5,5,5,24,67,20,20,20,0,

0,0,0,0,14,14,14,0,0,0,0,5,5,5,24,67,20,20,20,0,0,0,0,0,14,14,14,0,0,15,3,5,5,5,24,67,20,20,20,0,0,0,0,0,14,14,14,0,0,15,3,5,5,5,24,67,20,20,20,0,18,17,16,0,14,14,14,0,0,15,3,5,5,5,24,67,20,20,20,0,0,

0,0,0,14,14,14,0,0,0,0,5,5,5,24,67,20,20,20,0,0,0,0,0,13,13,13,0,0,0,0,5,5,5,24,67,20,20,20,0,0,0,0,0,12,12,12,0,0,0,0,5,5,5,20,20,20,20,20,0,0,0,0,0,11,11,11,0,0,0,0,5,5,5,20,20,20,20,20,0,0,0,0,0,10

,10,10,9,8,7,6,5,5,5,20,20,20,95,95,0,0,0,0,0,95,95,10,9,8,7,6,5,5,5,2,2,20,95,100,0,0,0,0,0,100,95,10,9,8,7,6,5,5,5]});}},

{function Run(){maps.push({name="Water Break",author="Niikos",id="#1657934909",direction="forward",cost=528,elevation=0,map=[24,24,24,24,24,24,24,24,2,2,24,24,24,24,24,24,24,24,24,24,24,67,67,67,67,24

,67,67,14,14,67,67,67,67,67,67,67,67,67,24,24,67,14,14,14,14,24,14,14,14,14,14,14,14,14,14,14,14,67,24,24,67,14,14,14,14,14,24,94,14,14,14,14,14,14,14,14,14,67,24,24,67,14,14,24,14,14,14,24,14,14,14,1

4,14,14,14,14,14,67,24,24,24,14,14,14,24,14,14,14,24,93,14,14,14,14,14,14,14,67,24,24,67,24,14,14,14,24,14,95,14,24,14,14,14,14,14,14,14,67,24,24,67,14,24,14,14,14,24,14,14,14,24,24,24,24,14,14,14,24,

24,24,67,14,14,24,14,14,14,24,14,14,14,14,14,14,95,14,24,67,24,24,67,14,14,14,24,14,95,14,24,14,14,14,14,14,14,24,14,67,24,24,67,14,14,95,14,24,14,14,14,24,24,24,24,24,24,14,14,67,24,24,67,14,24,14,14

,14,24,14,14,14,14,14,14,14,14,14,14,67,24,24,67,14,14,24,14,14,14,24,14,14,14,14,14,14,14,14,14,67,24,24,67,14,14,14,24,14,14,14,24,24,24,24,24,24,24,14,14,67,24,24,67,14,14,14,14,24,14,14,14,14,14,1

4,14,14,24,14,14,67,24,24,67,14,14,14,14,14,24,24,24,24,14,14,14,14,24,14,14,67,24,24,67,14,14,14,14,14,14,14,14,24,14,14,14,14,14,14,14,67,24,24,67,14,14,14,14,14,14,14,14,24,14,14,14,14,14,14,14,67,

24,24,67,67,67,67,67,67,67,14,14,24,67,67,67,67,67,67,67,67,24,24,24,24,24,24,24,24,24,2,2,24,24,24,24,24,24,24,24,24,24]});}},

{function Run(){maps.push({name="pooldicklower",author="MoistNoodlez",id="#1657997774",direction="left",cost=747,elevation=-10,map=[97,9,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,9,97,9,9,66,66,66,66,66,66,66,6

6,66,66,66,66,19,19,66,66,9,9,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,76,9,76,66,66,66,66,66,66,66

,1,1,66,66,66,66,66,66,66,66,76,76,76,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,9,9,9,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,76,76,76,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,

76,76,76,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,76,76,76,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,76,76,76,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,76,76,76,66,66,66,66,66,66

,66,1,1,66,66,66,66,66,66,66,66,76,76,76,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,76,76,66,66,66,76,76,66,66,66,66,66,1,1,66,66,66,66,66,66,76,76,66,66,66,76,76,66,66,66,66,66,1,1,66,66,66,66,66,66,

66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,9,9,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,2,96,9,66,66,66,66,66,66,66,66,66,66,66,66,66,66

,66,9,9,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,9,97]});}},

{function Run(){maps.push({name="moldypenis",author="MoistNoodlez",id="#1657998788",direction="forward",cost=338,elevation=19,map=[0,0,1,2,2,1,76,76,76,76,76,0,0,0,0,0,0,0,0,0,0,1,97,1,45,45,1,0,0,0,7

6,0,0,0,0,0,0,0,0,0,0,1,45,1,45,45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,46,76,46,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,46,46,76,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,1,47,47,46,1,0,0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,1,47

,47,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,48,48,1,1,0,1,1,50,1,55,55,55,1,60,1,1,0,0,0,1,49,49,1,1,1,1,50,50,50,1,55,1,60,60,60,1,1,0,0,1,50,50,1,1,45,45,1,1,1,1,1,1,1,1,1,64,1,0,0,1,51,51,1,1,45,1,1,59

,60,60,61,61,97,1,1,64,1,0,0,1,52,52,52,1,45,1,58,58,1,60,61,61,62,62,1,1,1,0,0,1,53,53,53,1,1,1,57,58,1,60,61,76,76,62,63,1,1,0,0,1,54,54,54,54,1,56,57,58,59,1,61,61,76,62,63,1,0,1,0,1,55,55,55,76,55

,56,57,58,1,60,61,61,62,62,63,1,0,1,1,1,1,55,55,76,76,56,57,58,59,60,61,61,1,63,63,1,0,0,1,1,1,1,76,56,76,56,57,58,59,60,61,61,1,64,63,1,0,1,0,1,1,97,57,57,76,76,76,76,59,60,1,1,64,64,1,1,0,0,1,1,1,1,

58,58,58,58,58,58,59,1,96,96,96,64,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0]});}},

{function Run(){maps.push({name="Squeeze",author="tilgep",id="#1658015742",direction="forward",cost=148,elevation=-3,map=[0,0,0,0,0,0,124,2,2,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,124,124,124,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,1,124,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,124,124,124,124,124,124,124,0,0,0,0,0,0,0,0,0,0,0,124,124,124,124,124,124,124,124,124,124,0,0,0,0,0,0,0,0,0,1,124,124,124,124,

124,124,124,124,124,124,1,0,0,0,0,0,0,0,0,1,121,121,121,121,121,121,121,121,121,121,1,0,0,0,0,0,0,0,0,0,121,121,121,121,121,121,121,121,121,121,0,0,0,0,0,0,0,0,0,0,121,121,121,121,121,121,121,121,121,

121,0,0,0,0,0,0,0,0,0,0,121,121,121,121,121,121,121,121,121,0,0,0,0,0,0,0,0,0,0,0,121,121,1,121,121,121,121,121,0,0,0,0,0,0,0,0,0,0,0,0,121,0,1,121,121,121,121,121,0,0,0,0,0,0,0,0,0,0,0,0,121,0,1,121,

121,121,121,121,0,0,0,0,0,0,0,0,0,0,0,0,121,0,1,0,121,121,121,121,0,0,0,0,0,0,0,0,0,0,0,0,121,0,1,0,121,121,121,121,0,0,0,0,0,0,0,0,0,0,0,1,121,0,1,0,121,121,121,0,0,0,0,0,0,0,0,0,0,0,0,1,121,121,1,0,

121,121,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,1,0,121,121,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,121,1,121,121,121,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,121,121,2,2,121,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="unhappytree",author="MoistNoodlez",id="#1658016808",direction="left",cost=547,elevation=-4,map=[0,0,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,2,2,0,0,0,5,5,69,69,69,5,5,5,0,0,0,0,

0,0,0,49,49,0,0,0,5,69,69,69,69,69,69,5,0,0,0,0,0,0,0,49,49,0,0,0,5,69,69,69,69,69,69,5,5,5,0,0,0,0,0,49,49,0,0,5,5,69,69,69,69,69,69,69,69,5,0,0,0,0,0,49,49,0,5,5,69,69,69,66,66,69,69,69,69,5,0,0,0,0

,0,49,49,0,5,69,69,69,66,66,69,5,97,69,69,5,0,0,0,0,0,49,49,49,5,69,69,5,5,66,69,5,69,69,69,69,66,49,49,49,49,49,49,49,5,69,69,5,5,69,5,5,69,69,69,69,66,49,49,49,49,49,49,49,5,69,69,69,69,69,5,69,69,6

9,69,69,66,49,49,49,49,49,49,49,5,69,69,69,69,69,5,69,69,69,69,69,66,49,49,49,49,49,49,49,1,69,69,5,5,69,5,5,69,69,69,5,0,0,0,0,49,49,49,49,2,96,66,5,5,66,66,5,5,69,69,5,5,0,0,0,0,0,49,49,2,5,69,69,69

,69,66,69,69,69,69,69,5,5,0,0,0,0,0,49,1,1,69,69,69,69,69,69,69,69,69,69,69,5,0,0,0,0,0,0,0,5,69,69,69,69,69,69,69,69,69,69,69,5,0,0,0,0,0,0,0,5,5,69,69,69,69,69,69,69,69,69,5,5,0,0,0,0,0,0,0,0,5,5,69

,69,69,69,69,69,69,5,5,0,0,0,0,0,0,0,0,0,0,5,5,5,69,69,69,69,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="MY AWESOME MAP",author="tilgep",id="#1658016819",direction="forward",cost=89,elevation=19,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,15,14,5,5,5,5,0

,0,0,0,0,0,0,0,0,0,0,24,24,24,16,13,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,24,24,24,17,12,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,24,24,24,18,11,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,24,24,24,19,10,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0

,24,24,23,20,9,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,24,24,22,21,8,7,6,5,5,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="present",author="MoistNoodlez",id="#1658017579",direction="left",cost=829,elevation=0,map=[0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,0,0,0,1,40,40,40,40,40,40,127,127,40

,40,40,40,40,40,40,1,0,0,0,1,40,76,76,76,76,76,127,127,76,76,76,76,76,76,40,1,0,0,0,1,40,76,76,76,76,76,127,127,76,76,76,76,76,76,40,1,0,0,0,1,40,76,76,76,76,76,127,127,76,76,76,76,76,76,40,1,40,0,0,1

,97,127,76,76,76,76,127,127,76,76,76,76,76,76,40,1,131,0,0,1,76,76,76,76,76,76,127,127,76,76,76,76,76,76,40,1,131,131,0,1,76,76,76,76,76,76,127,127,76,76,76,76,76,76,40,1,40,131,131,1,76,76,76,76,76,7

6,127,127,76,76,76,76,76,76,40,1,0,131,131,96,128,128,128,128,128,128,128,128,128,128,128,128,128,128,40,1,0,131,131,96,128,128,128,128,128,128,128,128,128,128,128,128,128,128,40,1,0,131,131,1,76,76,7

6,76,76,76,126,126,76,76,76,76,76,76,40,1,40,131,0,1,76,76,76,76,76,76,126,126,76,76,76,76,76,76,40,1,40,40,0,1,76,76,76,76,76,76,126,126,76,76,76,76,76,76,40,1,2,0,0,1,97,126,76,76,76,76,126,126,76,7

6,76,76,76,76,40,1,2,0,0,1,40,76,76,76,76,76,126,126,76,76,76,76,76,76,40,1,0,0,0,1,40,76,76,76,76,76,126,126,76,76,76,76,76,76,40,1,0,0,0,1,40,76,76,76,76,76,126,126,76,76,76,76,76,76,40,1,0,0,0,1,40

,40,40,40,40,40,126,126,40,40,40,40,40,40,40,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="TicTacNo",author="Niikos",id="#1658020249",direction="forward",cost=562,elevation=0,map=[2,2,39,39,39,1,1,1,39,39,39,39,39,95,39,39,39,39,39,39,90,39,39,39,90,39,1,39,

76,76,76,76,39,1,39,91,91,91,91,39,39,90,39,90,39,39,1,39,76,39,39,76,39,1,39,91,39,39,91,39,39,39,90,39,39,39,1,39,76,39,39,76,39,1,39,91,39,39,91,39,39,90,39,90,39,39,1,39,76,76,76,76,39,1,39,91,91,

91,91,39,90,39,39,39,90,95,1,39,39,39,39,39,39,1,39,39,39,39,39,39,1,1,1,1,1,95,1,95,1,1,1,1,1,1,1,1,1,1,1,95,1,39,39,39,39,39,1,39,39,39,39,39,39,1,66,39,39,39,66,39,39,92,92,92,92,39,1,39,91,39,39,3

9,91,1,39,66,39,66,39,39,39,92,39,39,92,39,1,39,39,91,39,91,39,1,39,39,66,39,39,39,39,92,39,39,92,39,1,39,39,39,91,39,39,1,39,66,39,66,39,39,39,92,92,92,92,39,1,39,39,91,39,91,39,1,66,39,39,39,66,39,3

9,39,39,39,39,39,1,39,91,39,39,39,91,1,39,39,39,39,39,1,95,1,1,1,1,1,1,1,1,1,1,1,95,1,95,1,1,1,1,1,39,39,39,39,39,39,1,39,39,39,39,39,39,1,39,39,39,39,39,1,39,65,39,39,39,65,1,39,75,75,75,75,39,1,39,6

5,65,65,65,39,39,39,65,39,65,39,1,39,75,39,39,75,39,1,39,65,39,39,65,39,39,39,39,65,39,39,1,39,75,39,39,75,39,1,39,65,39,39,65,39,39,39,65,39,65,39,1,39,75,75,75,75,39,1,39,65,65,65,65,39,39,65,39,39,

39,65,95,39,39,39,39,39,1,1,1,39,39,39,2,2]});}},

{function Run(){maps.push({name="madman",author="MoistNoodlez",id="#1658020540",direction="right",cost=373,elevation=0,map=[0,0,2,2,0,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,14,14,14,14,59,59,59,59,

59,59,14,14,14,0,0,0,0,0,0,14,14,14,14,59,59,59,59,59,59,59,59,59,14,14,0,0,0,0,0,14,14,14,59,59,59,59,59,59,59,59,59,59,59,14,14,0,0,0,14,14,92,59,59,59,5,5,59,59,59,59,59,59,59,59,14,0,0,0,14,14,92,

59,59,59,5,5,5,5,5,59,59,59,59,59,59,7,0,0,14,14,59,59,59,59,59,5,97,0,5,59,59,59,59,59,59,7,7,0,14,14,59,59,59,59,59,5,5,0,5,59,59,59,59,59,59,59,7,7,14,59,59,59,59,59,59,92,5,5,5,59,5,5,59,7,7,7,86,

7,14,59,59,59,59,59,59,59,59,59,59,59,59,5,59,59,7,7,7,86,14,59,59,59,59,5,5,5,5,59,59,59,92,5,59,59,7,0,7,86,14,59,59,59,5,5,97,0,5,59,59,59,5,5,5,59,7,7,0,86,14,59,59,5,5,5,5,0,5,59,59,92,5,5,5,59,7

,0,7,86,14,59,59,5,59,92,5,5,5,59,59,5,5,5,59,59,7,7,0,86,14,59,5,59,59,59,59,59,59,59,59,59,59,59,59,7,7,0,9,9,14,14,59,59,59,59,59,59,59,59,59,59,59,92,92,7,7,9,9,11,0,14,59,59,59,59,59,59,59,59,7,7

,7,7,7,7,7,9,11,96,0,0,7,7,7,7,7,7,7,7,7,0,0,0,76,76,76,76,96,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76]});}},

{function Run(){maps.push({name="downandout",author="MoistNoodlez",id="#1658028517",direction="right",cost=384,elevation=0,map=[0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,5,6,7,6,7,8,9,9,8,7,6,7,6,5,0,0,0,0,0,0,5,6,7,6,7,8,9,9,8,7,6,7,

6,5,0,0,0,0,0,0,5,6,7,6,7,8,8,8,8,7,6,7,6,5,0,0,0,0,0,0,5,6,7,7,7,7,7,7,7,7,7,7,6,5,0,0,0,0,0,0,5,6,6,6,6,6,6,6,6,6,6,6,6,5,0,0,0,0,0,0,95,95,95,95,95,95,95,95,95,95,95,95,95,95,0,0,0,0,0,0,5,5,5,5,5,

5,5,5,5,5,5,5,5,5,0,0,0,0,2,0,125,125,125,125,125,125,125,125,125,125,125,125,125,125,0,0,0,0,2,0,6,7,8,9,9,9,9,9,9,9,9,8,7,6,0,0,0,0,19,0,125,125,125,125,125,125,125,125,125,125,125,125,125,125,0,0,0

,0,19,0,10,11,12,13,14,14,14,14,14,14,13,12,11,10,0,0,0,0,95,0,125,125,125,125,125,125,125,125,125,125,125,125,125,125,0,0,0,0,95,0,15,16,17,18,19,19,19,19,19,19,18,17,16,15,0,0,0,0,19,0,125,125,125,1

25,125,125,125,125,125,125,125,125,125,125,0,0,0,0,19,0,20,21,22,23,24,24,24,24,24,24,23,22,21,20,22,66,66,66,18]});}},

{function Run(){maps.push({name="BanHammer",author="MoistNoodlez",id="#1658035302",direction="right",cost=407,elevation=-2,map=[0,0,9,9,9,9,2,2,9,9,9,9,9,0,0,0,0,0,0,0,0,0,9,11,11,11,11,11,11,11,11,11

,9,0,0,0,0,0,0,0,0,0,9,13,13,13,13,13,13,13,13,13,9,0,0,0,0,0,0,0,0,0,9,76,76,76,76,76,76,76,14,14,9,0,0,0,0,0,0,0,0,0,9,76,14,14,76,14,14,76,14,14,9,0,0,0,0,0,0,0,0,0,9,76,97,15,76,15,15,76,15,15,9,0

,0,0,0,0,0,0,0,0,9,16,76,76,16,76,76,16,16,16,9,0,0,0,0,0,0,0,0,0,9,16,16,16,16,16,16,16,16,9,9,0,0,0,0,96,96,0,0,0,9,17,17,76,76,76,76,76,17,9,11,13,91,91,11,9,96,1,48,48,9,17,76,18,18,76,17,17,17,9,

11,13,91,91,11,9,96,1,48,48,9,18,76,97,19,76,18,18,18,9,11,13,91,91,11,9,96,2,48,48,9,19,19,76,76,76,76,76,19,9,11,13,91,91,11,9,96,2,97,48,9,19,19,19,19,19,19,19,19,9,11,13,105,105,11,9,96,1,0,0,9,76

,76,76,76,76,76,76,20,9,9,0,0,0,0,0,96,0,0,0,9,20,76,76,97,20,20,20,20,20,9,0,0,0,0,0,96,0,0,0,9,20,20,76,76,20,20,20,20,20,9,0,0,0,0,96,0,96,0,0,9,22,22,97,76,76,22,22,22,22,9,0,0,0,0,0,0,0,0,0,9,76,

76,76,76,76,76,76,22,22,9,0,0,0,0,0,0,0,0,0,9,23,23,23,23,23,23,23,23,23,9,0,0,0,0,0,0,0,0,0,9,9,9,9,97,9,9,9,9,9,9,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="airhockey",author="MoistNoodlez",id="#1658066479",direction="forward",cost=232,elevation=9,map=[0,5,5,5,5,5,5,5,5,5,2,2,5,5,5,5,5,5,5,5,0,5,0,0,0,0,135,0,0,0,0,0,0,0,1

35,0,0,0,0,5,0,5,0,0,0,0,135,0,0,0,5,0,0,0,135,0,0,0,0,5,0,5,0,0,0,0,135,0,0,0,5,0,0,0,135,0,0,0,0,5,0,5,0,0,0,0,135,0,0,0,0,0,0,0,135,0,0,0,0,5,0,5,0,0,0,0,135,0,0,0,5,0,0,0,135,0,0,0,0,5,0,5,76,76,0

,0,135,0,0,0,5,0,0,0,135,0,0,76,76,5,0,5,0,76,0,0,135,0,0,0,0,0,0,0,135,0,0,76,0,5,0,5,0,76,0,0,135,0,0,5,5,5,0,0,135,0,0,76,0,5,0,5,0,76,0,0,135,0,5,0,0,0,5,0,135,0,0,76,0,5,0,97,0,76,0,0,135,0,5,0,0

,0,5,0,135,0,0,76,0,97,0,5,0,76,0,0,135,0,0,5,5,5,0,0,135,0,0,76,0,5,0,5,0,76,0,0,135,0,0,0,0,0,0,0,135,0,0,76,0,5,0,5,76,76,0,0,135,0,0,0,5,0,0,0,135,0,0,76,76,5,0,5,0,0,0,0,135,0,0,0,5,0,0,0,135,0,0

,0,0,5,0,5,0,0,0,0,135,0,0,0,0,0,0,0,135,0,0,0,0,5,0,5,0,0,0,0,135,0,0,0,5,0,0,0,135,0,0,0,0,5,0,5,0,0,0,0,135,0,0,0,96,0,0,0,135,0,0,0,0,5,0,5,0,0,0,0,135,0,0,0,0,0,0,0,135,0,0,0,0,5,0,5,5,5,5,5,5,5,

5,96,2,2,96,5,5,5,5,5,5,5]});}},

{function Run(){maps.push({name="pizza",author="MoistNoodlez",id="#1658067507",direction="right",cost=307,elevation=11,map=[0,0,0,0,0,2,2,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,92,47,47,6,6,6,0,0,0,0,0,0

,0,0,0,0,0,6,6,47,47,47,49,6,92,38,6,0,0,0,0,0,0,0,0,0,0,6,47,47,49,49,47,6,38,38,38,6,0,0,0,0,0,0,0,0,6,6,47,49,49,47,6,6,38,38,38,38,6,0,0,0,0,0,0,0,6,47,47,49,49,47,6,92,38,38,38,38,38,6,0,0,0,0,0,

6,47,47,49,49,49,6,6,38,38,38,38,38,38,92,0,0,0,0,0,6,47,49,49,49,49,6,38,5,38,76,76,38,38,38,6,0,0,0,0,6,49,49,49,49,47,38,5,38,38,76,76,38,38,38,92,6,5,0,0,6,49,49,49,47,6,92,5,0,5,38,38,38,38,38,38

,38,92,0,0,6,49,49,47,6,6,38,38,5,5,38,38,38,38,38,5,38,6,0,0,6,49,47,6,6,38,5,38,38,38,38,38,38,38,38,5,38,92,6,0,6,6,6,92,38,5,38,38,76,76,38,38,38,38,38,38,5,38,6,0,0,0,0,6,6,5,0,5,76,76,38,38,76,7

6,38,38,5,38,6,6,0,0,0,0,6,5,5,5,38,38,38,38,76,76,38,38,5,76,38,6,0,0,0,0,0,0,5,5,6,92,38,38,38,38,38,38,5,76,38,2,0,0,0,0,0,0,0,0,0,6,6,6,6,92,38,38,38,38,38,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,

6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="leftandright",author="MoistNoodlez",id="#1658070670",direction="forward",cost=220,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,2,2,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,19,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,131,131,9,0,0,0,0,0,9,9,9,9,9,9,9,131,131,9,9,9,131,131,9,0,0,0,0,9,131,135,135,131,135,135,131,135,135,131,135,

131,135,135,0,0,0,0,0,0,135,135,135,131,135,135,131,135,135,131,135,131,135,135,0,0,0,0,0,0,135,135,131,9,0,0,9,9,9,9,0,9,9,9,9,0,0,0,0,9,131,131,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,9,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,131,131,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,9,131,131,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,131,131,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,9,9,3,96,19,19,0,0

,0,0,0,0,0,0,0,0,0,97,19,19,3,3,19,96,2,2,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="russianflag",author="MoistNoodlez",id="#1658071414",direction="left",cost=583,elevation=0,map=[0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,74,74,74,74,74,74,74,24,76,2

4,76,24,76,0,0,0,0,0,0,0,74,24,74,74,74,24,74,24,76,24,76,24,76,0,0,0,0,0,0,0,74,74,74,24,74,74,74,24,76,24,76,24,76,0,0,0,0,0,0,0,74,24,74,74,74,24,74,24,76,24,76,24,76,0,0,0,0,0,0,0,74,74,74,24,74,7

4,74,24,76,24,76,24,76,0,0,0,0,0,0,0,74,24,74,74,74,24,74,24,76,24,76,24,76,0,0,0,0,0,0,0,74,74,74,24,74,74,74,24,76,24,76,24,76,0,0,0,0,0,0,0,74,24,74,74,74,24,74,24,76,24,76,24,76,0,0,0,0,0,0,0,74,7

4,74,74,74,74,74,24,76,24,76,24,76,0,0,0,0,0,0,0,76,24,76,24,76,24,76,24,76,24,76,24,76,0,0,0,0,0,0,0,76,24,76,24,76,24,76,24,76,24,76,24,76,0,0,0,0,0,0,0,76,24,76,24,76,24,76,24,76,24,76,24,76,0,0,0,

0,0,0,0,76,24,76,24,76,24,76,24,76,24,76,24,76,0,0,0,0,0,0,0,76,24,76,24,76,24,76,24,76,24,76,24,76,0,0,0,0,0,0,0,76,24,76,24,76,24,76,24,76,24,76,24,76,0,0,0,0,0,24,96,76,24,76,24,76,24,76,24,76,24,7

6,24,76,0,0,0,0,0,2,96,76,24,76,24,76,24,76,24,76,24,76,24,76,0,0,0,0,0,2,96,76,24,76,24,76,24,76,24,76,24,76,24,76,24,97,0,0,0,24,96,76,24,76,24,76,24,76,24,76,24,76,24,76,24,0,0,0,0]});}},

{function Run(){maps.push({name="pringle",author="MoistNoodlez",id="#1658071935",direction="forward",cost=264,elevation=0,map=[0,0,0,0,0,0,0,0,0,5,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5

,5,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,5,5,5,0,0,0,0,5,5,0,0,0,0,5,5,0,0,0,0,5,91,91,91,5,0,0,5,91,5,0,0,0,0,0,5,5,0,0,0,5,91,91,5,0,0,0,0,5,91,5,5,0,0,0,0,5,0,0,0,5,91,5,5,5,5,0,0,5,9

1,91,5,0,0,0,0,5,0,0,0,0,5,0,5,0,5,0,0,5,91,5,5,5,0,0,0,5,0,0,0,0,5,0,0,5,0,0,5,91,5,91,91,5,5,5,5,5,0,0,0,0,5,0,0,0,0,0,5,91,5,91,5,5,76,76,5,0,0,0,0,5,5,0,0,0,0,0,5,91,5,91,5,5,5,76,76,5,0,0,5,91,0,

0,0,0,0,0,5,5,5,5,5,0,5,76,76,5,0,5,91,91,0,5,5,5,0,5,91,5,91,5,0,0,5,76,76,5,0,5,91,91,0,5,0,5,0,5,91,5,91,5,0,0,5,76,5,0,0,5,91,91,5,0,5,0,0,5,91,5,5,0,0,5,5,5,0,0,0,0,5,5,5,0,0,0,5,91,91,5,0,0,5,5,

76,5,0,0,0,0,0,5,5,0,0,5,5,5,5,5,0,5,76,76,76,5,0,0,0,0,0,5,5,0,0,5,5,0,0,0,5,5,5,76,76,5,0,0,0,0,0,0,0,5,5,5,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,5,5,2,2,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="shroomdick",author="MoistNoodlez",id="#1658073404",direction="right",cost=293,elevation=9,map=[0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,92,92,5,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,5,5,122,122,122,5,5,0,0,0,0,0,5,5,5,5,0,0,0,5,5,76,76,122,122,122,5,0,0,0,0,5,119,119,119,5,0,0,5,5,121,121,121,121,0,122,92,0,0,0,0,5,0,119,119,119,0,5,5,120,120,120,120,121,122,122

,92,0,0,0,0,5,76,119,76,119,5,5,119,119,0,119,76,121,76,122,5,5,5,5,5,5,5,76,119,0,5,118,118,118,118,119,120,0,122,122,5,18,20,0,0,0,5,5,119,5,5,117,117,117,118,119,120,121,122,122,5,18,20,0,0,0,0,5,9

6,96,5,116,97,117,76,119,120,76,122,122,5,18,0,0,0,0,0,0,96,2,5,116,116,117,118,119,120,121,122,122,5,18,20,0,0,0,0,0,96,2,5,5,117,0,118,119,120,121,122,122,5,18,20,0,0,0,0,5,96,96,0,5,118,118,118,76,

120,121,76,122,5,5,5,5,5,5,5,119,119,5,0,5,5,119,119,119,120,0,122,122,92,0,0,0,0,5,119,76,76,119,0,0,5,120,120,0,120,121,122,122,92,0,0,0,0,5,119,0,119,119,0,0,5,5,5,121,121,76,122,5,5,0,0,0,0,5,119,

76,119,0,0,0,0,0,5,5,122,122,122,5,0,0,0,0,0,5,5,119,119,5,0,0,0,0,0,5,5,5,5,5,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="boo",author="MoistNoodlez",id="#1658075278",direction="forward",cost=174,elevation=0,map=[0,0,0,0,0,5,5,5,5,2,2,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,5,5,5,0,0,0

,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,5,5,0,0,0,0,0,6,6,6,0,0,0,0,5,0,0,0,0,5,5,0,0,0,0,0,6,76,76,76,6,6,0,0,5,5,0,0,0,5,0,0,5,5,5,0,0,6,76,76,76,76,6,0,0,5,5,0,0,5,0,0,0,0,0,0,6,76,76,94,76,

6,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,6,76,94,76,76,6,0,0,0,5,0,0,5,0,0,5,5,5,0,6,76,76,76,76,6,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,6,6,76,76,76,6,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,0,5,5,0,5,0,0,0,0,0,0

,5,0,0,0,0,0,0,0,0,0,5,5,0,5,5,0,0,0,0,5,5,0,0,5,0,0,0,0,0,0,5,0,0,0,5,5,0,0,0,5,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,5,0,0,0,5,5,0,0,5,0,0,0,0,0,5,5,0,0,0,0,5,5,0,0,0,5,5,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,5,0

,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,5,5,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="adidas",author="MoistNoodlez",id="#1658075771",direction="forward",cost=401,elevation=0,map=[0,5,5,2,2,5,5,5,5,5,5,5,76,76,76,76,0,76,0,0,0,5,5,5,76,5,76,5,76,76,5,5,5

,76,76,76,0,76,0,0,0,5,5,76,76,76,76,5,5,76,76,5,5,76,76,76,0,76,0,0,5,5,76,76,5,76,76,5,5,5,76,76,5,5,5,76,0,76,0,0,5,5,76,76,5,76,76,5,5,5,5,76,76,5,5,5,0,76,0,0,5,5,76,5,76,76,76,5,5,5,5,5,76,76,5,

5,0,76,0,0,76,5,76,76,76,76,5,5,5,5,5,5,76,76,5,5,0,76,0,0,0,76,5,5,5,5,5,5,5,76,5,5,76,76,5,5,0,76,0,0,0,0,0,0,0,0,0,76,5,5,76,76,76,76,5,5,0,76,0,0,0,0,0,0,0,0,0,5,5,5,5,76,76,5,5,5,0,76,0,0,0,0,0,0

,0,0,0,0,76,5,5,5,5,5,5,5,0,76,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,0,76,0,0,0,0,0,0,0,0,0,0,0,76,5,5,5,5,5,5,0,76,0,0,0,0,0,0,0,0,0,0,0,5,5,5,76,76,5,5,0,76,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,5,5,0,7

6,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,76,5,5,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,5,5,5,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,76,5,5,5,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,2,2,76,0,0,0,0]});}},

{function Run(){maps.push({name="nut",author="MoistNoodlez",id="#1658111361",direction="forward",cost=383,elevation=-1,map=[0,0,0,0,0,0,0,0,5,2,2,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,46,46,46,46,5,5,5,0,

0,0,0,0,0,0,0,5,5,46,46,46,46,46,91,46,46,46,5,5,0,0,0,0,0,0,5,5,46,46,91,46,46,46,46,47,46,91,46,91,0,0,0,0,0,5,5,46,46,5,46,46,91,47,47,47,91,46,91,5,5,0,0,0,0,91,46,46,46,5,46,46,47,47,91,47,47,48,

46,46,5,5,0,0,0,5,46,91,46,5,46,47,91,47,47,47,48,48,49,5,46,5,5,0,5,5,46,46,46,5,47,91,47,91,47,91,47,5,5,47,46,46,5,0,5,46,46,46,91,47,5,47,91,47,47,48,47,5,49,48,47,46,91,0,91,46,46,46,46,46,47,47,

47,91,48,47,5,91,48,48,91,46,5,5,5,91,46,91,47,91,91,47,5,47,48,5,5,47,48,91,47,47,46,5,5,5,46,47,47,91,47,5,5,48,47,5,47,48,91,48,91,91,46,5,5,5,47,47,91,47,91,48,47,5,5,49,48,48,48,91,48,47,46,5,0,9

1,47,47,47,47,91,47,5,48,90,48,47,90,48,48,47,46,5,5,0,5,91,91,91,91,91,5,91,91,91,91,5,91,91,91,47,5,5,0,0,0,5,47,47,47,5,49,90,90,49,90,5,5,5,91,91,91,0,0,0,0,5,91,91,5,49,90,90,49,90,49,91,49,5,91,

91,0,0,0,0,0,0,5,5,49,49,49,49,49,49,49,49,49,91,5,5,0,0,0,0,0,0,0,0,5,91,91,91,91,91,91,91,91,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,2,2,5,5,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="kiddiepools",author="MoistNoodlez",id="#1658182476",direction="forward",cost=458,elevation=0,map=[0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,24,90,64,64,64,64,9

0,24,24,24,24,24,24,24,1,0,0,0,0,1,24,90,24,24,24,24,90,24,24,24,24,24,24,24,1,0,0,0,0,1,24,24,24,24,24,24,24,24,24,24,24,24,24,24,1,0,0,0,0,1,90,24,24,24,24,24,24,24,24,24,24,24,24,24,1,0,0,0,0,1,64,

65,65,65,127,65,65,65,90,24,24,24,24,90,1,0,0,0,0,1,64,65,65,65,127,65,65,65,24,24,24,24,24,64,1,0,0,0,0,1,64,65,65,65,127,65,65,65,24,24,24,24,24,64,1,0,0,0,0,1,90,65,65,65,65,65,65,65,24,24,24,24,24

,64,1,0,0,0,0,1,64,65,65,65,65,65,65,65,90,24,24,90,24,90,1,0,0,0,0,1,64,65,65,65,93,65,65,65,24,24,24,24,24,64,1,0,0,0,0,1,64,65,65,65,65,65,65,65,24,24,24,24,24,64,1,0,0,0,0,1,90,65,65,65,65,65,65,6

5,24,24,24,24,24,64,1,0,0,0,0,1,64,65,65,65,65,65,65,65,24,75,75,75,75,90,1,0,0,0,0,1,64,65,65,65,65,65,65,65,24,75,75,75,75,64,1,0,0,0,0,1,64,65,65,65,65,65,65,65,24,75,75,94,75,64,1,0,0,0,0,1,90,65,

65,65,65,65,65,65,24,75,75,75,75,90,1,0,0,0,0,1,24,24,24,24,24,24,24,24,24,24,24,97,24,24,1,0,0,0,0,1,1,96,96,64,64,64,90,24,24,24,24,24,24,90,1,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="bigboypools",author="MoistNoodlez",id="#1658183219",direction="forward",cost=504,elevation=0,map=[0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,64,64,90,64,64,64,64,

90,24,24,24,24,24,24,24,1,0,0,0,1,64,24,90,24,24,24,24,90,24,24,24,24,24,24,24,1,0,0,0,1,64,24,24,24,24,24,24,24,24,24,24,24,24,24,24,1,0,0,0,1,90,24,24,24,24,24,24,24,24,24,24,24,24,24,24,1,0,0,0,1,6

4,66,66,66,127,66,66,66,65,65,65,24,24,24,90,1,0,0,0,1,64,66,66,66,127,66,66,66,65,65,65,24,24,24,64,1,0,0,0,1,64,66,66,66,127,66,66,66,65,65,65,24,24,24,64,1,0,0,0,1,64,66,66,66,66,66,66,66,24,24,24,

24,24,24,64,1,0,0,0,1,90,66,66,66,66,66,66,66,24,24,24,24,24,24,90,1,0,0,0,1,64,66,66,66,97,66,66,66,24,24,24,24,24,24,64,1,0,0,0,1,64,66,66,66,66,66,66,66,24,24,24,24,24,24,64,1,0,0,0,1,64,66,66,66,6

6,66,66,66,24,76,76,76,76,76,90,1,0,0,0,1,64,66,66,66,66,66,66,66,24,76,76,76,76,76,64,1,0,0,0,1,90,66,66,66,66,66,66,66,24,76,76,94,76,76,90,1,0,0,0,1,64,66,66,66,66,66,66,66,24,76,76,76,76,76,64,1,0

,0,0,1,64,66,66,66,66,66,66,66,24,76,76,76,76,76,90,1,0,0,0,1,90,24,24,24,24,24,24,24,24,24,24,24,97,24,64,1,0,0,0,1,64,64,96,96,64,64,64,90,64,64,64,64,64,64,90,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,

1,1]});}},

{function Run(){maps.push({name="airparkour",author="MoistNoodlez",id="#1658184407",direction="forward",cost=246,elevation=-1,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,14,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,1,131,14,14,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,139,14,14,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,131,14,14,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,139,14,13,15,1,0,97,0,0,0,0,97,0,0,0,0,0,0,0,1,1,1,12,16,1,0,1

32,0,0,0,0,132,0,0,0,0,97,132,0,0,0,1,11,17,1,0,19,0,0,0,0,9,0,0,0,0,22,22,0,0,0,1,10,18,1,0,19,0,0,0,0,9,0,0,0,0,4,4,0,0,0,1,9,19,1,0,135,0,0,0,0,130,0,0,0,0,14,14,0,0,0,1,8,20,1,0,135,0,0,0,0,130,0,

0,0,0,133,133,0,0,0,1,7,19,1,0,135,0,0,0,0,130,0,0,0,0,133,133,0,0,0,1,7,18,1,0,135,0,0,0,0,130,0,0,0,0,133,133,0,0,0,1,8,17,1,0,135,0,0,0,0,130,0,0,0,0,133,133,0,0,0,1,9,16,1,0,0,0,0,0,0,0,0,0,0,0,13

3,133,0,0,0,1,10,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,14,1,3,3,3,3,3,3,3,3,3,3,3,0,0,3,3,3,1,13,14,1,14,14,14,14,14,14,14,14,14,14,14,135,135,14,14,14,96

,96,96,1,138,14,14,14,14,14,14,14,14,14,14,135,135,14,14,14,96,2,2,1]});}},

{function Run(){maps.push({name="waterparkour",author="MoistNoodlez",id="#1658185490",direction="forward",cost=445,elevation=-1,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,14,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,1,131,14,14,14,1,0,0,97,132,0,0,0,0,0,0,0,0,0,0,1,139,14,14,14,1,0,0,127,127,0,0,0,14,14,97,132,14,14,0,1,131,14,14,14,1,0,0,22,22,0,0,0,14,14,14,14,14,14,0,1,139,14,13,15,1,0,0,66,66,0,0,0,14,14,1

4,14,14,14,0,1,1,1,12,16,1,0,0,66,66,0,0,0,14,14,14,14,14,14,0,0,0,1,11,17,1,0,0,66,66,0,0,74,74,74,74,14,14,14,0,0,0,1,10,18,1,0,0,66,66,0,0,74,74,74,74,72,72,72,72,0,0,1,9,19,1,0,0,66,66,0,0,74,74,7

4,74,72,72,72,72,0,0,1,8,20,1,0,0,66,66,0,0,74,74,14,74,72,14,72,72,0,0,1,7,19,1,0,0,66,66,0,0,74,74,74,74,72,72,72,72,0,0,1,7,18,1,0,0,66,66,0,0,71,71,71,71,73,73,73,73,0,0,1,8,17,1,0,0,0,0,0,0,71,71

,14,71,73,14,73,73,0,0,1,9,16,1,0,0,0,0,0,0,71,71,71,71,73,73,73,73,0,0,1,10,15,1,0,0,0,0,0,0,71,71,71,71,73,73,73,73,0,0,1,11,14,1,0,0,0,0,0,0,14,14,14,14,14,73,73,73,0,0,1,12,14,1,3,3,3,3,3,3,14,14,

14,14,14,14,14,14,14,14,1,13,14,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,96,96,96,1,138,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,96,2,2,1]});}},

{function Run(){maps.push({name="MoistDown",author="MoistNoodlez",id="#1658189687",direction="forward",cost=596,elevation=-10,map=[1,94,24,24,24,24,24,24,24,2,2,24,24,24,24,24,24,24,94,1,1,66,66,66,66

,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,55,55,55,55,55,55,55,55,55,55,55,55,5

5,55,55,55,55,55,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,49,49

,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,47,47,47,47,47,47,47,47,47,47,4

7,47,47,47,47,47,47,47,1,1,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,1,1,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1

,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,1,1,3,3,0,3,3,0,3,3,0,0,3,3,0,3,3,0,3,3,1,1,24,24,24,24,24,24,24,24,96,96,24,24,24,24,2

4,24,24,24,1,1,97,24,24,24,24,24,24,96,2,2,96,24,24,24,24,24,24,97,1]});}},

{function Run(){maps.push({name="Ramp It Up",author="Niikos",id="#1658189812",direction="right",cost=258,elevation=19,map=[56,56,56,56,56,56,0,0,0,2,2,0,0,0,0,0,0,0,0,0,56,56,56,56,56,56,0,0,0,25,25,0

,0,0,0,0,0,0,0,0,56,56,56,56,56,56,0,0,0,45,45,45,45,45,45,45,45,45,45,45,56,56,1,0,56,56,0,0,0,45,45,45,45,45,45,45,45,45,45,45,56,56,1,0,56,56,0,0,0,45,45,45,45,45,45,45,45,45,45,45,56,56,1,0,56,56,

0,0,0,0,0,31,31,0,0,0,0,45,45,45,56,56,1,0,56,56,0,0,0,0,0,30,30,0,0,0,0,45,45,45,56,56,1,0,56,56,0,0,0,0,0,29,29,0,0,0,0,45,45,45,56,56,1,0,56,56,0,0,0,0,0,28,28,0,0,0,0,45,45,45,57,57,1,0,56,56,0,0,

0,0,0,27,27,0,0,0,0,45,45,45,58,58,1,0,56,56,36,35,34,33,33,47,46,45,45,45,45,45,45,45,59,59,1,0,56,56,36,35,34,33,33,47,46,45,45,45,45,45,45,45,60,60,1,0,56,56,36,35,34,33,33,47,46,45,45,45,45,45,45,

45,61,61,1,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,62,62,62,62,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0,62,62,62,62,62,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0,62,62,62,62,62,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0,62,62,62,62,

62,62,62,61,60,59,58,24,24,24,24,24,24,24,24,2,62,62,62,62,62,62,62,61,60,59,58,24,24,24,24,24,24,24,24,2,62,62,62,62,62,62,62,61,60,59,58,24,24,24,24,24,24,24,24,24]});}},

{function Run(){maps.push({name="Water World",author="fantasy",id="#1658191485",direction="forward",cost=784,elevation=0,map=[14,2,2,14,66,66,66,66,66,66,66,66,66,66,66,66,66,66,14,100,66,14,14,66,66,

66,66,66,66,66,66,66,66,66,66,66,66,66,66,14,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66

,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,6

6,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,

66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66

,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,6

6,66,14,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,14,14,66,100,14,66,66,66,66,66,66,66,66,66,66,66,66,66,66,14,2,2,14]});}},

{function Run(){maps.push({name="Defend the shortcut2",author="fantasy",id="#1658192358",direction="left",cost=214,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,24,24,24,24,24,24,24,24,24

,24,24,24,24,24,24,24,24,24,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,24,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,24,24,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,24,0,5,5,5,135,135,135,0,0,0,0,0,0,0,0,128,24,0,0,24,0,5,5,5,135,135,135,0,0,0,0,0,0,0,0,24,24,

0,0,24,0,5,5,5,135,135,135,0,0,0,0,0,0,0,0,128,24,0,0,24,0,5,5,5,135,135,135,0,0,0,0,0,0,0,0,24,24,0,0,24,0,5,5,5,135,135,135,0,0,0,0,0,0,0,0,128,24,0,0,24,0,5,5,5,135,135,135,0,0,0,0,0,0,0,0,24,24,0,

0,24,0,5,5,5,135,135,135,0,0,0,0,0,0,0,0,128,24,0,0,24,0,5,5,5,135,135,135,0,0,0,0,0,0,0,0,24,24,0,0,24,0,5,5,5,135,135,135,0,0,0,0,0,0,0,0,128,24,0,2,24,3,5,5,5,135,135,135,0,0,0,0,0,0,0,0,24,24,0,2,

24,3,5,5,5,135,135,135,0,0,0,0,0,0,0,0,128,24,0,0,0,0,5,5,5,135,135,135,0,0,0,0,0,0,0,0,24,24,0]});}},

{function Run(){maps.push({name="Boost n Strafe",author="fantasy",id="#1658192602",direction="left",cost=661,elevation=-19,map=[100,5,135,135,135,135,135,135,135,5,5,135,135,135,135,135,135,0,2,2,5,5,

135,135,135,135,135,135,135,5,5,135,135,135,135,135,135,0,24,24,0,5,135,135,135,135,135,135,135,135,135,135,135,135,135,5,135,0,128,24,0,5,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,0

,24,24,0,5,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,0,128,24,0,5,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,0,24,24,0,5,135,135,135,135,5,5,135,135,135,135,135,135,

135,135,135,0,128,24,0,5,135,135,135,135,5,5,135,135,135,135,135,135,135,135,135,0,24,24,0,5,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,0,128,24,0,5,135,135,135,135,135,135,135,5,5,13

5,135,135,135,135,135,0,24,24,0,5,135,135,135,135,135,135,135,5,5,135,135,135,135,135,135,0,128,24,0,5,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,0,24,24,0,5,135,135,135,135,5,5,135,1

35,135,135,135,135,135,135,135,0,128,24,0,5,135,135,135,135,5,5,135,135,135,135,135,135,135,135,135,0,24,24,0,5,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,0,128,24,0,5,135,135,135,135

,135,135,135,135,135,135,135,135,135,135,135,0,24,24,0,5,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,0,128,24,2,5,135,135,135,135,135,135,135,135,135,135,135,135,135,5,135,0,24,24,2,5,

135,135,135,135,135,135,135,5,5,135,135,135,135,135,135,0,128,24,0,5,135,135,135,135,135,135,135,5,5,135,135,135,135,135,135,0,24,24]});}},

{function Run(){maps.push({name="Noobs go ladder",author="fantasy",id="#1658192925",direction="right",cost=265,elevation=19,map=[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,24,2,5,5,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,24,2,5,5,0,0,0,0,14,0,0,0,0,0,19,0,0,0,0,0,24,24,5,5,0,0,0,0,14,0,0,0,0,0,19,0,0,0,0,0,0,24,5,5,130,130,130,130,130,130,

130,130,130,130,130,130,130,130,130,130,130,24,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,5,5,0,0,0,0,14,0,0,0,0,0,19,0,0,0,0,0,0,24,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,5,5,130,130,130,130,130,130,

130,130,130,130,130,130,130,130,130,130,130,3,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,5,5,0,0,0,0,14,0,0,0,0,0,19,0,0,0,0,0,0,19,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,5,5,130,130,130,130,130,130,1

30,130,130,130,130,130,130,130,130,130,130,19,5,5,0,0,0,0,14,0,0,0,0,0,19,0,0,0,0,0,0,19,5,5,0,0,0,0,14,0,0,0,0,0,19,0,0,0,0,0,0,19,5,5,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,

130,19,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14]});}},

{function Run(){maps.push({name="Chill area",author="fantasy",id="#1658193431",direction="forward",cost=261,elevation=0,map=[0,0,0,0,0,0,2,2,0,0,0,0,0,77,0,0,0,0,0,67,0,0,77,0,0,0,5,5,0,0,0,0,77,12,0,

0,0,0,67,24,0,77,24,77,0,0,5,5,0,0,0,0,77,12,0,0,0,0,67,24,0,0,77,0,0,0,5,5,0,0,0,0,77,12,0,0,0,0,67,24,0,0,0,0,0,0,5,5,0,0,0,0,77,12,0,0,0,0,67,24,0,0,67,0,0,0,5,5,0,0,0,0,77,12,0,0,0,0,67,24,0,67,24

,67,0,0,5,5,0,0,0,0,77,12,0,0,0,0,67,24,0,0,67,0,0,0,5,5,0,0,0,0,77,12,0,0,0,0,67,24,0,0,0,0,0,0,5,5,0,0,0,0,77,12,0,0,0,0,67,24,0,0,77,0,0,0,5,5,0,0,0,0,77,12,0,0,0,0,67,24,0,77,24,77,0,0,5,5,0,0,0,0

,77,12,0,0,0,0,67,24,0,0,77,0,0,0,5,5,0,0,0,0,77,12,0,0,0,0,67,24,0,0,0,0,0,0,5,5,0,0,0,0,77,12,0,0,0,0,67,24,0,0,67,0,0,0,5,5,0,0,0,0,77,12,0,0,0,0,67,24,0,67,24,67,0,0,5,5,0,0,0,0,77,12,0,0,0,0,67,2

4,0,0,67,0,0,0,5,5,0,0,0,0,77,12,0,0,0,0,67,24,0,0,0,0,0,0,5,5,0,0,0,0,77,12,0,0,0,0,67,24,0,0,77,0,0,0,5,5,0,0,0,0,77,12,0,0,0,0,67,24,0,77,24,77,0,0,5,5,0,0,0,0,77,12,0,0,0,0,67,24,0,0,77,0,0,0,2,2,

0,0,0,0,0,77,0,0,0,0,0,67]});}},

{function Run(){maps.push({name="Spiral zone",author="fantasy",id="#1658193887",direction="forward",cost=147,elevation=0,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,21,20,20,20,20,19,19

,19,0,0,0,0,0,0,5,5,0,0,0,21,21,0,0,0,0,0,0,19,18,0,0,0,0,0,5,5,0,0,21,21,0,0,0,0,0,0,0,0,18,17,0,0,0,0,5,5,0,21,21,0,0,0,0,24,0,0,0,0,0,17,0,0,0,0,5,5,0,21,0,0,0,24,24,0,24,24,0,0,0,17,17,0,0,0,5,5,0

,22,0,0,24,24,0,0,0,24,24,0,0,0,16,0,0,0,5,5,0,22,0,0,24,0,0,0,0,0,24,24,0,0,16,15,0,0,5,5,0,22,0,0,24,0,24,131,0,0,0,24,0,0,0,15,0,0,5,5,0,22,0,0,24,0,24,24,0,0,0,24,0,0,0,14,0,0,5,5,0,23,0,0,24,24,2

4,24,0,0,24,24,0,0,13,14,0,0,5,5,0,23,0,0,0,0,0,0,0,0,24,0,0,0,13,0,0,0,5,5,0,23,0,0,0,0,0,0,0,24,24,0,0,0,12,0,0,0,5,5,0,23,23,0,0,0,0,24,24,24,0,0,0,0,12,0,0,0,5,5,0,0,23,24,24,24,24,24,0,0,0,0,0,11

,12,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,10,10,11,11,0,0,0,0,5,5,6,6,0,0,0,0,8,9,9,9,10,0,0,0,1,1,1,0,0,0,0,6,7,7,7,8,8,0,0,0,0,0,0,0,1,132,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,1,2,2]});}},

{function Run(){maps.push({name="Go and trigger",author="fantasy",id="#1658195105",direction="right",cost=277,elevation=0,map=[0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,45,45

,45,45,45,45,0,0,0,0,0,45,45,0,0,0,0,0,0,0,45,45,45,45,133,45,0,45,45,45,45,45,45,0,0,0,0,0,0,0,45,45,45,45,45,45,0,45,131,45,134,45,45,0,0,0,0,0,0,0,45,132,45,45,45,45,0,45,45,45,45,45,45,0,0,0,0,0,0

,0,45,45,45,45,94,45,0,45,45,45,45,45,45,0,0,0,0,0,0,0,45,45,45,45,45,45,0,45,45,45,45,45,45,25,25,25,25,25,25,25,45,45,45,45,45,45,0,45,45,45,45,45,45,0,0,0,0,0,0,0,45,45,45,94,45,45,0,45,93,45,45,45

,45,0,0,67,67,67,0,0,45,45,45,45,45,45,0,45,45,45,45,45,45,0,67,24,24,24,67,0,45,45,45,45,45,45,0,45,45,45,45,45,45,0,67,24,24,24,67,0,45,45,45,45,45,45,0,45,45,45,45,45,45,0,0,67,67,67,0,0,45,45,45,4

5,45,45,0,45,45,45,45,45,45,0,0,0,0,0,0,0,45,45,45,100,45,45,0,45,45,45,45,45,45,25,25,25,25,25,25,25,45,45,45,45,45,45,0,45,45,45,45,45,45,0,0,0,0,0,0,0,45,45,45,45,45,45,0,45,45,93,45,45,45,0,0,0,0,

0,0,0,45,45,45,45,45,45,0,45,45,45,45,45,45,0,0,0,0,0,0,0,45,45,45,45,45,45,2,100,45,45,45,45,45,25,25,25,25,25,25,25,45,45,45,45,45,45,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="No Swim Zone",author="Niikos",id="#1658198683",direction="forward",cost=974,elevation=11,map=[30,97,30,70,70,70,70,70,70,2,2,70,70,70,70,70,70,30,99,30,30,30,30,70,70,

70,70,70,70,25,25,70,70,70,70,70,70,30,30,30,30,30,30,70,70,70,70,70,70,25,25,70,70,70,70,70,70,30,30,30,30,30,30,70,70,70,70,70,70,25,25,70,70,70,70,70,70,30,30,30,30,30,30,31,30,29,28,27,26,25,25,26

,27,28,29,30,31,30,30,30,30,30,30,70,70,70,70,70,70,70,70,70,70,70,70,70,70,30,30,30,30,30,30,70,70,70,70,70,70,70,70,70,70,70,70,70,70,30,30,30,30,30,30,70,70,70,70,70,70,70,70,70,70,70,70,70,70,30,3

0,30,30,30,30,70,70,70,70,70,70,70,70,70,70,70,70,70,70,30,30,30,30,30,30,70,70,70,70,70,70,70,70,70,70,70,70,70,70,30,30,30,98,98,98,70,70,70,70,70,70,70,70,70,70,70,70,70,70,96,96,96,70,31,70,70,70,

70,70,70,70,70,70,70,70,70,70,70,70,70,31,70,70,32,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,32,70,70,33,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,33,70,70,34,70,70,70,70,70,70,70,70,70,70

,70,70,70,70,70,70,34,70,70,35,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,35,70,70,36,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,36,70,70,95,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,9

5,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,36,36,36,36,36,36,36,36,36,2,2,36,36,36,36,36,36,36,36,36]});}},

{function Run(){maps.push({name="Volcano",author="MoistNoodlez",id="#1658202654",direction="forward",cost=481,elevation=0,map=[10,10,12,14,16,16,16,14,14,14,14,14,14,12,10,10,9,9,2,2,12,12,14,16,18,18

,18,16,16,16,16,16,16,14,12,10,10,9,9,9,14,14,16,18,20,20,20,18,18,18,18,18,18,16,14,12,10,10,10,9,16,16,18,20,22,22,22,20,20,20,20,20,20,18,16,14,12,12,10,10,16,18,20,22,22,22,22,22,22,22,22,22,22,20

,18,16,14,14,12,10,16,18,20,22,24,24,24,24,24,24,24,22,22,20,20,18,16,16,14,12,18,20,22,22,24,75,76,76,76,24,24,24,22,22,22,20,18,16,14,12,18,20,22,22,24,76,76,76,76,75,24,24,24,22,22,20,18,16,14,12,1

8,20,22,24,24,76,76,76,76,76,76,75,24,22,22,20,18,16,14,12,18,20,22,24,24,76,76,93,94,76,76,75,24,22,22,20,18,16,14,12,18,20,22,24,75,76,76,76,76,76,76,24,24,22,22,20,18,16,14,12,18,20,22,22,24,76,76,

76,76,76,76,24,24,22,22,20,18,16,14,12,18,20,22,22,24,24,75,75,75,24,24,24,22,22,22,20,18,16,14,12,16,18,20,22,22,24,24,24,24,24,24,24,22,20,20,18,16,16,14,12,16,18,20,20,22,22,22,22,22,22,22,22,22,20

,18,16,14,14,12,10,14,16,18,20,20,20,20,20,20,20,20,20,20,20,18,16,14,12,10,10,14,16,16,18,18,18,18,18,18,18,18,18,18,18,16,14,12,10,9,10,12,14,16,16,16,16,16,16,16,16,16,16,16,16,14,12,10,9,9,9,12,12

,14,14,14,14,14,14,14,14,14,14,14,14,12,10,9,9,96,96,97,12,12,12,12,12,12,12,12,12,12,12,12,12,10,10,9,96,2,2]});}},

{function Run(){maps.push({name="Downhill",author="MoistNoodlez",id="#1658204295",direction="forward",cost=240,elevation=-10,map=[0,0,0,1,24,24,2,2,24,24,1,0,0,0,0,0,0,0,0,0,0,0,0,1,23,66,66,66,66,23,

1,0,0,0,0,0,0,0,0,0,0,0,0,1,22,68,68,68,68,22,1,0,0,0,0,0,0,0,0,0,0,0,0,1,21,68,68,68,68,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,20,68,68,68,68,20,1,0,0,0,0,0,0,0,0,0,0,0,0,1,19,66,66,66,66,19,1,0,0,0,0,0,0,0,

0,0,0,0,0,1,18,68,68,68,68,18,1,0,0,0,0,0,0,0,0,0,0,0,0,1,17,68,68,68,68,17,1,0,0,0,0,0,0,0,0,0,0,0,0,1,16,68,68,68,68,16,1,0,0,0,0,0,0,0,0,0,0,0,0,1,15,66,66,66,66,15,1,0,0,0,0,0,0,0,0,0,0,0,0,1,14,6

8,68,68,68,14,1,0,0,0,0,0,0,0,0,0,0,0,0,1,13,68,68,68,68,13,1,0,0,0,0,0,0,0,0,0,0,0,0,1,12,68,68,68,68,12,1,0,0,0,0,0,0,0,0,0,0,0,0,1,11,66,66,66,66,11,1,0,0,0,0,0,0,0,0,0,0,0,0,1,10,68,68,68,68,10,1,

0,0,0,0,0,0,0,0,0,0,0,0,1,9,68,68,68,68,9,1,0,0,0,0,0,0,0,0,0,0,0,0,1,8,68,68,68,68,8,1,0,0,0,0,0,0,0,0,0,0,0,0,1,7,66,66,66,66,7,1,0,0,0,0,0,0,0,0,0,0,0,0,1,6,95,95,95,95,6,1,0,0,0,0,0,0,0,0,0,0,0,0,

1,5,95,2,2,95,5,1,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="uphill",author="MoistNoodlez",id="#1658204770",direction="forward",cost=240,elevation=9,map=[0,0,0,1,5,5,2,2,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,1,6,66,66,66,66,6,1,0,0,0,0,

0,0,0,0,0,0,0,0,1,7,68,68,68,68,7,1,0,0,0,0,0,0,0,0,0,0,0,0,1,8,68,68,68,68,8,1,0,0,0,0,0,0,0,0,0,0,0,0,1,9,68,68,68,68,9,1,0,0,0,0,0,0,0,0,0,0,0,0,1,10,66,66,66,66,10,1,0,0,0,0,0,0,0,0,0,0,0,0,1,11,6

8,68,68,68,11,1,0,0,0,0,0,0,0,0,0,0,0,0,1,12,68,68,68,68,12,1,0,0,0,0,0,0,0,0,0,0,0,0,1,13,68,68,68,68,13,1,0,0,0,0,0,0,0,0,0,0,0,0,1,14,66,66,66,66,14,1,0,0,0,0,0,0,0,0,0,0,0,0,1,15,68,68,68,68,15,1,

0,0,0,0,0,0,0,0,0,0,0,0,1,16,68,68,68,68,16,1,0,0,0,0,0,0,0,0,0,0,0,0,1,17,68,68,68,68,17,1,0,0,0,0,0,0,0,0,0,0,0,0,1,18,66,66,66,66,18,1,0,0,0,0,0,0,0,0,0,0,0,0,1,19,68,68,68,68,19,1,0,0,0,0,0,0,0,0,

0,0,0,0,1,20,68,68,68,68,20,1,0,0,0,0,0,0,0,0,0,0,0,0,1,21,66,68,68,66,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,22,3,66,66,3,22,1,0,0,0,0,0,0,0,0,0,0,0,0,1,23,95,95,95,95,23,1,0,0,0,0,0,0,0,0,0,0,0,0,1,24,95,2,

2,95,24,1,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="NoName1",author="fantasy",id="#1658245417",direction="forward",cost=204,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,24,3,5,5,5,0,0,0,5,5,0,0,0,5,5,5,3,2

4,0,0,24,5,5,65,5,0,0,0,128,129,0,0,0,5,65,5,5,24,0,0,24,3,5,5,5,0,0,0,5,5,0,0,0,5,5,5,3,24,0,0,24,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,24,0,0,24,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,24,0,0,24,0,0,0,0,0,0,5,66,

66,5,0,0,0,0,0,0,24,0,0,24,0,0,0,0,0,5,5,66,66,5,5,0,0,0,0,0,24,0,0,24,0,0,0,0,0,5,16,67,67,16,5,0,0,0,0,0,24,0,0,24,0,0,0,0,5,5,17,66,66,17,5,5,0,0,0,0,24,0,0,24,0,0,0,0,5,18,18,66,66,18,18,5,0,0,0,0

,24,0,0,24,0,0,0,0,5,19,19,66,66,19,19,5,0,0,0,0,24,0,0,24,0,0,0,0,5,20,20,66,66,20,20,5,0,0,0,0,24,0,0,24,0,0,0,0,5,21,21,66,66,21,21,5,0,0,0,0,24,0,0,24,0,0,0,0,5,22,22,66,66,22,22,5,0,0,0,0,24,0,0,

24,0,0,0,0,5,5,23,66,66,23,5,5,0,0,0,0,24,0,0,24,24,24,24,24,0,5,5,24,24,5,5,0,24,24,24,24,24,0,0,24,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,24,0,0,24,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,24,0,0,100,0,0,0,0,0,0,0,

2,2,0,0,0,0,0,0,0,100,0]});}},

{function Run(){maps.push({name="NoName3",author="fantasy",id="#1658245962",direction="forward",cost=135,elevation=0,map=[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,100,25,25,0,0,25,25,0,0,25,25,0,0,25,25

,0,0,25,25,25,25,25,25,0,0,25,25,0,0,25,25,0,0,25,25,0,0,25,25,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,0,0,27,27

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,0,0,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,25,25,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,0,0,40,40,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,42,42,43,43,44,44,44,130,130,130,130,130,130,130,130,130,66,25,25,25,42,42,43,43,44,44,44

,130,130,130,130,130,130,130,130,130,66,25,2,2]});}},

{function Run(){maps.push({name="NoName5",author="fantasy",id="#1658246393",direction="forward",cost=307,elevation=-5,map=[0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,20,20,2

4,24,24,24,0,0,17,17,17,17,17,0,0,0,0,0,0,0,20,21,76,76,76,24,0,0,17,17,17,17,17,17,0,0,0,0,77,76,20,21,76,22,76,24,0,17,17,24,3,17,17,17,17,0,0,0,0,76,76,76,76,23,23,24,0,17,17,93,24,17,17,17,17,17,1

7,18,18,19,20,21,22,23,24,100,0,17,17,24,17,17,17,17,17,0,0,17,18,19,20,21,22,23,24,24,0,0,17,17,17,17,17,1,1,0,0,0,18,19,20,21,22,23,23,24,0,0,17,17,17,17,0,1,17,17,17,17,18,19,20,21,22,22,23,23,0,0,

17,17,0,0,0,1,17,17,17,17,18,19,20,21,21,22,22,22,0,0,0,0,0,1,1,1,17,17,17,17,18,19,20,20,21,21,21,0,1,1,1,1,1,1,1,1,66,66,66,17,18,19,19,20,20,20,20,0,0,0,0,16,16,16,1,1,17,17,66,17,17,18,19,19,19,0,

0,0,0,0,15,15,15,16,16,16,1,17,66,66,17,18,18,18,19,0,0,0,0,0,14,14,15,15,15,16,16,17,17,66,17,17,17,17,18,0,0,0,0,0,13,14,14,14,15,15,16,17,17,66,66,66,17,17,17,0,0,0,0,0,13,13,13,14,14,15,16,16,17,1

7,17,66,66,66,66,67,0,0,0,0,12,12,13,13,0,0,0,0,0,17,17,17,66,17,17,0,0,0,0,0,100,12,12,12,0,0,0,0,0,0,17,17,66,17,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,67,0,0,0,0,0]});}},

{function Run(){maps.push({name="NoName6",author="fantasy",id="#1658246853",direction="right",cost=237,elevation=0,map=[1,132,53,53,53,90,1,0,0,0,0,0,0,0,1,2,2,1,0,0,1,53,93,53,53,53,1,0,0,0,0,0,1,1,1

,5,5,1,0,0,1,53,53,90,53,136,1,0,0,0,0,0,1,131,5,5,5,1,0,0,1,53,53,53,53,90,1,0,0,0,0,0,1,137,5,5,5,1,0,0,1,53,90,53,53,53,1,0,0,0,0,0,1,1,1,96,96,1,0,0,1,53,53,53,53,97,1,0,0,0,0,0,0,0,1,5,5,1,0,0,1,

1,1,1,1,1,1,0,0,0,0,0,0,0,1,5,5,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,98,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,98,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,133,139,1,

0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,138,12,12,12,90,12,99,1,0,0,0,0,0,0,0,0,0,0,0,0,12,90,66,12,12,12,12,1,0,0,0,0,0,0,0,0,0,0,0,0,12,12,66,66,66,12,12,1,0,0,0,0,0,0,0,0,0,0,0,0,66,66,66,66,66

,66,66,1,0,0,0,0,0,0,0,0,0,0,0,0,12,12,66,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,0,0,12,12,66,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,0,0,134,12,12,90,12,66,66,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0

,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="NoName7",author="fantasy",id="#1658246999",direction="left",cost=38,elevation=-19,map=[0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,5,65,5,24,24,0,0

,0,0,0,0,0,0,0,0,0,0,0,2,5,5,65,5,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="NoName8",author="fantasy",id="#1658247093",direction="right",cost=54,elevation=-19,map=[0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,65,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,65,

11,11,11,11,11,0,0,65,5,0,0,0,0,0,0,17,17,0,0,65,11,11,11,11,11,0,0,65,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,2,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="NoName10",author="fantasy",id="#1658247566",direction="forward",cost=402,elevation=0,map=[1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,100,117,117,117,117,117,117,117,117

,117,117,117,117,117,117,117,117,117,1,1,117,117,117,89,117,117,117,117,117,117,117,117,117,117,117,117,94,117,1,1,117,117,117,117,94,117,117,117,117,117,117,117,117,117,117,117,117,117,1,1,117,117,11

7,117,117,117,1,117,117,117,117,117,117,117,117,89,117,117,1,1,117,117,117,117,117,117,117,117,117,89,117,117,93,117,117,117,117,117,1,1,89,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,

117,117,1,1,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,1,117,1,1,117,117,117,117,117,117,89,117,117,117,117,117,117,117,117,117,117,117,1,1,117,117,93,117,117,117,117,117,117,117,

117,117,89,117,117,117,117,117,1,1,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,1,1,117,117,117,117,117,117,117,117,1,117,117,117,117,117,117,117,117,89,1,1,117,1,117,117,11

7,117,117,117,117,117,117,117,117,117,117,117,117,117,1,1,117,117,117,117,117,117,117,117,117,89,117,117,117,117,117,117,117,117,1,1,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,1,1

17,1,1,89,117,117,89,117,117,117,117,117,117,117,117,117,117,117,117,117,117,1,1,117,117,117,117,117,117,117,117,117,117,94,117,117,117,117,117,117,117,1,1,117,117,117,117,117,117,89,117,117,117,117,1

17,117,117,117,117,117,117,1,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,89,117,100,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="NoName11",author="fantasy",id="#1658247772",direction="forward",cost=228,elevation=15,map=[0,0,0,0,2,2,0,0,0,0,0,24,24,24,24,24,24,24,24,0,0,0,0,0,5,5,5,0,0,0,0,67,67,

67,67,67,67,67,67,24,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,67,24,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,67,24,0,0,0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,67,24,0,0,0,0,7,7,7,0,0,0,0,0,0,0,0,0,0,0,67,24,0,0,0,0,8,8

,8,0,0,8,8,8,0,0,0,0,0,0,67,24,0,0,0,0,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,

12,12,12,12,12,12,12,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,1

6,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,0,0,0,0,0,0,19,19,19,19,19,0,0,0,19,19,19,

19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0]});}},

{function Run(){maps.push({name="NoName12",author="fantasy",id="#1658247982",direction="forward",cost=110,elevation=0,map=[0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,90,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,89,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,90,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,90,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,14,14,14,14,14,14,14,14,14,14,91,91,14,14,14,0,0,0,0,0,14,14,14,14,14,90,14,14,89,14,91,91,14,14,90,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,91,91,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,1

4,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,14,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,2,2,0]});}},

{function Run(){maps.push({name="NoName13",author="fantasy",id="#1658248175",direction="forward",cost=280,elevation=0,map=[0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,24,1,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,1,24,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,24,1,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,24,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,24,24,1,1,1,1,1,1,1,1,1,1,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24

,24,24,24,24,24,24,17,18,19,20,21,22,23,24,24,24,64,64,64,64,64,64,64,64,64,64,18,19,20,21,22,23,24,23,24,24,64,64,90,64,64,64,64,64,64,64,19,20,21,22,23,24,23,22,24,24,64,64,64,64,64,90,64,64,90,64,2

0,21,22,23,24,23,22,21,24,24,64,64,64,64,64,64,64,64,64,64,21,22,23,24,23,22,21,20,24,24,64,94,64,64,90,64,64,64,93,64,22,23,24,23,22,21,20,19,24,24,64,64,64,64,64,64,64,64,64,64,23,24,23,22,21,20,19,

18,24,24,64,64,90,64,64,64,64,64,64,64,24,24,23,22,21,20,19,18,24,24,64,64,64,64,64,64,64,64,64,64,100,24,23,22,21,20,19,18,2,2,64,64,64,90,64,64,64,64,64,100]});}},

{function Run(){maps.push({name="NoName14",author="fantasy",id="#1658248543",direction="right",cost=116,elevation=0,map=[0,2,2,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,5,5,5,5,96,5,5,5,5,5,98,5,5,5,101,5,5,5

,5,2,5,5,5,5,96,5,5,5,5,5,98,5,5,5,101,5,5,5,5,2,5,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,97,5,5,5,5,5,99,5,5,5,5,5,99,5,5,5,5]});}},

{function Run(){maps.push({name="NoName16",author="fantasy",id="#1658248763",direction="forward",cost=143,elevation=0,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,0,0,0,0,0,0

,0,0,0,0,0,0,0,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,0,0

,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,0,0,0,0

,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,5,5,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="NoName17",author="fantasy",id="#1658248883",direction="forward",cost=173,elevation=-16,map=[0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,0,

0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,21,21,21,21,21,21,21,21,21,0,0,

0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,18,18,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,

0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,1

3,13,13,13,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,11,11,11,11,11,0,0,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="NoName18",author="fantasy",id="#1658248957",direction="right",cost=147,elevation=0,map=[0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,7,1,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,1,7,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,90,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,7,1,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,1,7,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,7,1,1,1,1,1,1,1,1,1,1,1,1

,1,0,0,0,0,1,7,7,7,7,7,7,7,7,7,7,7,7,7,90,7,0,0,0,0,1,7,7,7,7,7,90,7,7,7,7,90,7,7,7,2,0,0,0,0,1,7,7,7,7,7,7,7,7,7,7,7,7,7,7,2,0,0,0,0,1,90,7,7,7,7,7,7,90,7,7,7,7,7,7,7,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,

1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="NoName19",author="fantasy",id="#1658249081",direction="forward",cost=313,elevation=-3,map=[0,0,0,0,0,8,8,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,8,8,9,9,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,8,8,8,9,9,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,8,8,9,9,9,9,9,8,8,8,8,8,8,0,0,0,0,0,0,8,8,8,9,9,9,9,9,8,10,10,8,8,8,8,0,0,0,8,8,8,8,10,10,9,9,9,9,9,9,10,10,

8,8,8,8,0,100,8,8,8,11,11,10,8,9,9,9,9,9,10,10,8,8,8,8,8,8,8,8,8,10,11,10,10,10,9,9,8,10,10,10,10,8,9,9,8,8,8,8,8,10,10,11,10,10,8,10,10,10,11,11,11,11,9,9,8,8,8,8,8,8,10,11,11,10,10,10,11,11,11,11,9,

9,9,9,9,8,8,8,8,8,8,10,11,11,11,11,11,9,9,9,9,9,9,9,9,8,8,8,8,8,8,10,11,11,10,10,8,9,9,9,9,8,8,9,8,7,7,8,8,8,8,10,10,10,10,10,8,8,8,8,8,8,9,8,8,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,100,7,6,6,7,7,7,8,

8,8,8,8,8,8,8,8,8,8,8,8,0,6,6,6,6,7,7,7,8,8,8,8,8,8,8,8,8,8,8,0,0,5,5,6,6,7,7,7,8,8,8,8,8,8,8,8,8,0,0,0,0,5,5,5,6,7,7,7,8,8,8,8,8,8,0,0,0,0,0,0,0,2,2,5,6,6,7,8,8,8,8,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="NoName20",author="fantasy",id="#1658249186",direction="forward",cost=136,elevation=0,map=[0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,117,117,117,117,1,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,1,117,117,117,117,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,91,91,91,91,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,117,117,117,117,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,117,117,117,117,1,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,1,117,117,117,117,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,117,117,117,117,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,117,117,117,117,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,91,91,91,91,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,91,

91,91,91,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,117,117,117,117,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,117,117,117,117,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,117,117,117,117,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,117,117,117,117

,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,117,117,117,117,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,91,91,91,91,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,117,117,117,117,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,117,117,117,117,1,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Judgement",author="tilgep",id="#1658252904",direction="forward",cost=208,elevation=19,map=[0,0,5,5,5,5,5,5,5,2,2,5,5,5,5,5,5,5,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,

0,0,0,0,5,5,3,5,5,5,5,5,5,5,5,5,5,3,5,5,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15

,15,0,0,0,0,0,0,0,15,15,4,15,15,15,15,15,15,4,15,15,0,0,0,0,0,0,0,0,18,18,18,18,18,18,18,18,18,18,18,18,0,0,0,0,0,0,0,0,18,18,18,18,18,18,18,18,18,18,18,18,0,0,0,0,0,0,0,0,18,18,18,18,18,18,18,18,18,1

8,18,18,0,0,0,0,0,0,0,0,0,18,18,18,4,18,18,4,18,18,18,0,0,0,0,0,0,0,0,0,0,0,21,21,21,21,21,21,21,21,0,0,0,0,0,0,0,0,0,0,0,0,21,21,21,21,21,21,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,21,21,21,21,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,21,21,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,

24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,2,2,24,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Maze Game",author="Niikos",id="#1658255300",direction="left",cost=391,elevation=0,map=[1,1,1,1,1,1,1,1,5,5,5,5,5,1,1,1,1,2,2,5,1,1,1,1,1,1,1,1,5,5,5,5,5,1,1,1,1,5,5,5,

1,1,1,1,1,1,1,1,5,5,1,5,5,1,1,1,1,5,5,5,1,1,1,1,1,1,1,1,5,5,1,5,5,1,1,1,1,5,5,5,1,1,1,1,1,1,1,1,5,5,1,5,5,1,1,1,1,5,5,5,1,1,1,1,1,1,1,1,5,5,1,5,5,1,1,1,1,5,5,5,1,1,1,1,1,1,1,1,5,5,1,5,5,1,1,1,1,5,5,5,

1,1,1,1,1,1,1,1,5,5,1,5,5,1,1,1,1,5,5,5,1,1,1,5,5,5,1,1,5,5,1,5,5,1,1,1,1,5,5,5,1,1,1,5,1,5,1,1,5,1,1,5,5,1,1,1,1,5,5,5,2,5,5,5,1,5,5,5,5,1,1,5,5,1,1,1,1,5,5,5,2,1,1,1,1,1,1,1,1,1,1,5,5,1,1,1,1,5,5,5,

1,1,1,1,1,0,1,1,1,1,1,5,5,1,1,1,1,5,5,5,1,1,1,1,1,1,0,1,1,1,1,5,5,1,1,1,1,5,5,5,1,1,0,1,1,1,1,0,1,1,1,5,5,1,1,1,1,5,5,5,1,1,1,1,1,1,1,0,1,1,1,5,5,1,1,1,1,5,5,5,1,1,0,1,1,1,1,0,1,1,1,5,5,1,1,1,1,5,5,5,

1,1,1,1,1,1,0,1,1,1,1,5,5,1,1,1,1,5,5,5,1,1,1,1,1,0,1,1,1,1,1,5,5,5,5,5,5,5,5,5,1,1,1,1,1,1,1,1,1,1,1,5,5,5,5,5,5,5,5,5]});}},

{function Run(){maps.push({name="The Funny Button",author="tilgep",id="#1658256307",direction="right",cost=318,elevation=0,map=[0,0,14,2,2,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,0,0,

0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,14,14,14,14,96,1,14,14,14,14,1

4,14,0,0,0,0,0,0,0,0,14,14,14,14,96,96,96,1,14,14,14,14,14,0,0,96,0,0,0,0,14,14,14,14,14,14,96,96,1,14,14,14,14,14,0,96,0,0,0,0,14,14,14,14,14,14,14,96,96,96,1,14,14,14,14,96,14,0,0,0,14,14,14,14,14,1

4,14,14,14,96,96,96,96,96,96,96,14,14,0,0,14,14,14,14,14,14,14,14,14,14,14,14,97,14,14,14,14,2,0,0,14,14,14,14,14,14,14,14,14,96,96,96,96,96,96,96,14,2,0,0,14,14,14,14,14,14,14,96,96,96,1,14,14,14,14,

96,14,14,0,0,14,14,14,14,14,14,96,96,1,14,14,14,14,14,0,96,0,0,0,0,14,14,14,14,14,96,96,1,14,14,14,14,14,14,0,96,0,0,0,0,14,14,14,14,96,96,1,14,14,14,14,14,14,0,0,0,0,0,0,0,14,14,14,14,96,1,14,14,14,1

4,14,14,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="BreakableGFL",author="Niikos",id="#1658260699",direction="forward",cost=678,elevation=0,map=[114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,2,2,11

4,114,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,114,114,91,114,114,114,114,114,114,114,91,91,91,91,91,91,91,91,91,91,114,114,91,114,91,91,91,91,91,114,91,91,91,91,91,91,91,91,91,91,114,114

,91,114,91,91,91,91,91,114,91,91,91,91,91,91,91,91,91,91,114,114,91,114,91,91,114,91,91,114,91,91,91,91,91,91,91,91,91,91,114,114,91,114,91,91,114,91,91,114,91,91,91,91,91,91,91,91,91,91,114,114,91,11

4,91,91,114,114,114,114,91,91,91,91,91,91,91,91,91,91,114,114,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,114,114,91,91,91,91,91,114,114,114,114,114,114,114,114,91,91,91,91,91,114,114,91,91,

91,91,91,114,91,91,114,91,91,91,91,91,91,91,91,91,114,114,91,91,91,91,91,114,91,91,114,91,91,91,91,91,91,91,91,91,114,114,91,91,91,91,91,114,91,91,91,91,91,91,91,91,91,91,91,91,114,114,91,91,91,91,91,

91,91,91,91,91,114,114,114,114,114,114,114,91,114,114,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,114,91,114,114,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,114,91,114,114,91,91,91,91,91,91,91

,91,91,91,91,91,91,91,91,91,114,91,114,114,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,114,91,114,114,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,114,114,2,2,114,114,114,114,114,114,114,

114,114,114,114,114,114,114,114,114,114]});}},

{function Run(){maps.push({name="IKEA",author="MoistNoodlez",id="#1658270323",direction="right",cost=641,elevation=0,map=[1,72,66,66,2,2,34,34,34,34,34,34,34,66,66,72,1,1,1,1,1,72,66,66,34,34,34,34,34

,34,34,34,34,66,66,72,1,14,14,14,1,72,66,66,66,66,66,66,66,66,66,66,66,66,66,72,1,132,14,2,1,72,66,66,66,66,66,66,66,66,66,66,66,66,66,72,1,14,14,2,1,72,66,66,34,34,34,34,34,34,34,34,34,66,66,72,1,14,

14,14,1,72,66,66,66,66,66,34,34,34,66,66,66,66,66,72,1,1,1,1,1,72,66,66,66,34,34,66,66,66,34,34,66,66,66,72,1,0,0,0,1,72,66,66,34,34,66,66,66,66,66,34,34,66,66,72,1,0,0,0,1,72,66,66,66,66,66,66,66,66,

66,66,66,66,66,72,1,0,0,0,1,72,66,66,66,66,66,66,66,66,66,66,66,66,66,72,1,0,0,0,1,72,66,66,34,34,34,34,34,34,34,34,34,66,66,72,1,0,0,0,1,72,66,66,34,66,66,66,34,66,66,66,34,66,66,72,1,0,0,0,1,72,66,6

6,34,66,66,66,34,66,66,66,34,66,66,72,1,0,0,0,1,72,66,66,66,66,66,66,66,66,66,66,66,66,66,72,1,0,0,0,1,72,66,66,66,66,66,66,66,66,66,66,66,66,66,72,1,0,0,0,1,72,66,66,66,34,34,34,34,34,34,34,34,66,66,

72,1,0,0,0,1,72,66,66,34,66,66,66,34,66,66,66,66,66,66,72,1,0,0,0,1,72,66,66,34,66,66,66,34,66,66,66,66,66,66,72,1,0,0,0,1,72,66,66,66,34,34,34,34,34,34,34,34,66,66,72,1,0,0,0,1,97,74,74,74,74,74,74,7

4,74,74,74,74,74,74,96,131,1,0,0]});}},

{function Run(){maps.push({name="Spire",author="MoistNoodlez",id="#1658274497",direction="forward",cost=535,elevation=0,map=[1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,0

,0,0,1,5,66,66,125,66,66,66,66,66,66,66,125,66,66,5,1,0,0,0,1,5,66,66,77,75,75,77,77,77,75,75,77,66,66,5,1,0,0,0,1,125,66,77,76,54,54,76,76,76,54,54,76,77,66,125,1,0,0,0,1,5,66,75,54,54,54,54,54,54,54

,54,54,75,66,5,1,0,0,0,1,5,66,75,54,54,14,54,54,54,14,54,54,75,66,5,1,0,0,0,1,5,66,75,54,14,125,14,14,14,125,14,54,75,66,5,1,0,0,0,1,5,66,75,54,54,14,124,124,124,14,54,54,75,66,5,1,0,0,0,1,125,66,77,7

6,54,14,124,97,124,14,54,76,77,66,125,1,0,0,0,1,5,66,75,54,54,14,124,124,124,14,54,54,75,66,5,1,0,0,0,1,5,66,75,54,14,125,14,14,14,125,14,54,75,66,5,1,0,0,0,1,5,66,75,54,54,14,54,54,54,14,54,54,75,66,

5,1,0,0,0,1,5,66,77,76,54,54,54,54,54,54,54,76,77,66,5,1,0,0,0,1,5,66,75,77,76,76,76,76,76,76,76,77,75,66,5,1,0,0,0,1,5,66,66,75,77,77,77,77,77,77,77,75,66,66,5,1,0,0,0,1,5,66,66,65,65,65,65,65,65,65,

65,65,66,66,5,1,0,0,0,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,0,0,0,1,5,5,5,5,5,5,5,96,96,5,5,5,5,5,5,1,0,0,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0]});}},

{function Run(){maps.push({name="HammerHold",author="MoistNoodlez",id="#1658282685",direction="forward",cost=572,elevation=0,map=[1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,14,14,14,14,14,14,14,14,14,1

4,14,14,14,14,14,14,14,14,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,1,1,14,95,95,95,95,95,95,95,95,95,95,14,14,14,14,14,14,14,1,1,14,95,95,14,14,14,14,14,14,95,95,14,14,14,14,14,14,14,

1,1,14,95,95,14,14,14,14,14,14,95,95,14,14,14,14,14,14,14,1,1,14,95,95,14,14,14,14,14,14,95,95,14,14,14,14,14,14,14,1,1,95,95,95,14,14,14,14,14,14,95,95,95,95,95,95,95,95,95,1,1,91,91,91,14,14,14,14,1

4,14,91,91,91,91,91,91,91,91,91,1,1,91,91,91,14,14,14,14,14,14,91,91,91,91,91,91,91,91,91,1,1,91,91,91,14,14,14,14,14,14,91,91,91,91,91,91,91,91,91,1,1,95,95,95,14,14,14,14,14,14,95,95,95,95,95,95,95,

95,95,1,1,14,95,95,14,14,14,14,14,14,95,95,14,14,14,14,14,14,14,1,1,14,95,95,14,14,14,14,14,14,95,95,14,14,14,14,14,14,14,1,1,14,95,95,14,14,14,14,14,14,95,95,14,14,14,14,14,14,14,1,1,14,95,95,95,95,9

5,95,95,95,95,95,14,14,14,14,14,14,14,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,

14,14,14,14,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="MinecraftParkour",author="MoistNoodlez",id="#1658282961",direction="forward",cost=470,elevation=0,map=[24,24,24,24,24,24,24,24,24,24,24,24,24,24,2,2,24,24,24,24,24,24,

24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,95,95,95,95,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,95,95,95,95,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,

5,24,24,24,24,1,5,5,66,5,5,5,5,5,5,5,5,5,5,5,5,24,89,24,24,1,5,5,5,5,5,5,5,66,5,5,5,5,5,5,5,24,24,24,24,1,5,5,5,5,5,5,5,5,5,5,5,5,66,5,5,24,24,89,24,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,24,24,24,24,1,5,5,5

,5,5,5,5,5,5,5,5,5,5,5,5,95,95,95,95,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,95,95,95,95,1,5,5,5,5,5,5,5,5,5,5,5,3,3,3,5,24,24,24,89,89,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,89,89,24,89,89,89,

24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,89,89,89,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,89,89,89,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,89,89,24,89,89,89,24,24,24,95,95,95,95

,95,95,95,95,24,24,24,89,89,24,24,24,24,24,24,24,95,24,24,24,24,24,24,95,24,24,24,24,24,24,24,24,24,24,24,24,95,24,95,95,95,95,24,95,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1]});}},

{function Run(){maps.push({name="Mapeadores Museum",author="Hichatu",id="#1658326999",direction="forward",cost=521,elevation=0,map=[0,0,0,0,0,0,1,1,1,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,76,76,76,5,5,76,

76,76,1,1,0,0,0,0,0,0,0,1,76,76,76,5,5,5,5,5,5,76,76,76,1,0,0,0,0,0,1,76,76,5,5,94,5,5,5,5,94,5,5,76,76,1,0,0,0,1,76,76,5,5,92,5,5,92,5,5,5,92,5,5,76,76,1,0,0,1,76,5,5,94,5,94,5,5,5,5,94,5,94,5,5,76,1

,0,1,76,76,5,92,5,92,5,5,5,5,5,5,92,5,92,5,76,76,1,1,76,5,94,5,94,5,94,5,5,92,5,94,5,94,5,94,5,76,1,1,76,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,76,1,1,76,5,5,92,5,5,5,5,89,89,5,92,5,5,5,5,5,76,1,1,76,5,5,5,5

,5,92,5,89,89,5,5,5,5,92,5,5,76,1,1,76,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,76,1,1,76,5,93,5,93,5,93,5,92,5,5,93,5,93,5,93,5,76,1,1,76,76,5,92,5,92,5,5,5,5,5,5,92,5,92,5,76,76,1,0,1,76,5,5,93,5,93,5,5,5,5,

93,5,93,5,5,76,1,0,0,1,76,76,5,5,92,5,5,5,92,5,5,92,5,5,76,76,1,0,0,0,1,76,76,5,5,93,5,5,5,5,93,5,5,76,76,1,0,0,0,0,0,1,76,76,76,5,100,5,5,5,5,76,76,76,1,0,0,0,0,0,0,0,1,1,76,76,76,5,5,76,76,76,1,1,0,

0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Death Valley",author="shel1bert",id="#1658333712",direction="forward",cost=173,elevation=-14,map=[0,0,0,0,0,0,0,1,2,2,1,0,0,0,18,0,0,18,0,0,0,0,0,0,0,0,0,1,19,19,1,1,0

,0,0,0,0,0,0,0,0,0,0,0,0,1,1,19,19,19,19,19,1,0,0,0,18,0,0,18,0,0,0,0,1,0,0,19,89,1,1,19,18,18,0,0,0,0,0,97,0,0,0,1,0,18,0,0,1,0,0,1,18,17,1,0,0,0,0,0,0,0,0,1,0,18,18,0,1,0,0,1,17,89,16,1,0,0,0,0,0,0,

0,1,0,0,0,1,0,0,0,0,1,16,16,15,1,0,0,0,0,0,0,1,0,17,17,0,0,17,100,0,0,1,15,15,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,15,15,1,0,0,0,0,0,0,0,0,1,0,16,0,1,1,0,1,15,15,89,1,0,0,0,0,0,0,0,0,0,1,16,0,15,0,1,15,1

5,15,1,0,0,0,0,0,0,0,0,0,0,0,1,0,15,0,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,65,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,24,77,5,5,5,77,24,1,0,0,0,0,0,0,0,0,0,0,1,24,

77,5,89,5,77,24,1,0,0,0,0,0,0,0,0,0,0,1,24,77,5,5,5,77,24,1,0,0,0,0,0,0,0,0,0,0,1,24,77,96,96,5,77,24,1,0,0,0,0,0,0,0,0,0,0,0,0,1,96,5,5,96,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,2,2,5,1,0,0,0,0,0,0,0,0,0

,0]});}},

{function Run(){maps.push({name="Hold Them Back",author="Niikos",id="#1658343879",direction="forward",cost=572,elevation=0,map=[34,103,34,34,77,77,77,34,34,2,2,34,34,34,77,77,77,34,98,34,103,97,103,34

,77,77,77,34,34,34,34,34,34,34,77,77,77,98,102,98,34,103,34,34,77,77,77,34,34,34,34,34,34,34,77,77,77,34,98,34,34,34,34,34,77,77,77,34,34,34,34,34,34,34,77,77,77,34,34,34,34,34,34,34,77,77,77,34,34,34

,34,34,34,34,77,77,77,34,34,34,34,34,34,34,77,77,77,34,34,34,34,34,34,34,77,77,77,34,34,34,34,34,34,34,77,77,77,77,77,34,34,34,77,77,77,77,77,34,34,34,34,34,34,34,77,77,77,77,77,34,34,34,77,77,77,77,7

7,34,34,34,34,34,34,34,77,77,77,34,34,34,34,34,34,34,77,77,77,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,

34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34

,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,101,34,34,34,34,34,34,34,34,34,34,34,34,34,34,

34,34,34,34,101,104,101,34,34,34,34,34,96,96,96,96,34,34,34,34,34,0,0,92,34,101,34,34,34,34,96,96,96,2,2,96,96,96,34,34,34,0,99,44]});}},

{function Run(){maps.push({name="SliderZ",author="Niikos",id="#1658353125",direction="forward",cost=633,elevation=0,map=[1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,14,14,14,1,135,135,135,135,135,135,14

,14,135,135,135,135,1,1,1,1,14,14,14,1,135,135,135,135,135,135,14,14,135,135,135,135,135,1,1,1,14,14,14,1,135,135,135,135,135,135,14,14,135,135,135,135,135,135,1,1,14,14,14,1,135,135,135,135,135,135,1

4,14,135,135,135,135,135,135,1,1,14,14,14,1,135,135,135,135,135,135,14,14,135,135,135,135,135,135,1,1,135,135,135,1,135,135,135,135,135,135,1,1,1,1,135,135,135,135,1,1,135,135,135,1,135,135,135,135,13

5,1,135,135,135,135,1,135,135,135,1,1,135,135,135,1,135,135,135,135,1,135,135,135,135,135,1,135,135,135,1,1,135,135,135,1,135,135,135,1,135,135,135,135,135,135,1,135,135,135,1,1,135,135,135,1,135,135,

135,1,135,135,135,135,135,135,135,1,135,135,1,1,135,135,135,1,135,135,135,1,135,135,1,135,135,135,135,1,135,135,1,1,135,135,135,1,135,135,135,1,135,135,1,1,135,135,135,135,135,135,1,1,135,135,135,1,13

5,135,135,1,135,135,135,1,135,135,135,135,135,135,1,1,135,135,135,1,135,135,135,1,135,135,135,135,1,135,135,135,135,135,1,1,135,135,135,135,135,135,135,1,135,135,135,135,135,1,1,1,1,1,1,1,135,135,135,

135,135,135,135,1,135,135,135,135,135,135,135,135,14,14,1,1,1,135,135,135,135,135,1,1,135,135,135,135,135,135,135,14,14,14,1,1,1,1,1,1,1,1,1,1,135,135,135,135,135,135,14,14,14,14,1,1,1,1,1,1,1,1,1,1,1

,1,1,1,1,1,1,1,2,2,1]});}},

{function Run(){maps.push({name="climbingdick",author="MoistNoodlez",id="#1658359089",direction="forward",cost=122,elevation=18,map=[0,0,2,2,26,75,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,26,26,26,26,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,28,28,28,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,32,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,36,36,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,36,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,40,0

,91,91,91,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,42,91,91,91,91,91,44,0,0,0,0,0,0,0,0,0,0,0,42,42,42,91,91,44,91,91,44,44,0,0,0,0,0,0,0,0,0,0,44,44,44,91,91,91,91,91,44,44,44,0,0,0,0,0,0,0,0,0,44,44,44,91,91

,91,91,91,2,2,44,0,0,0,0,0]});}},

{function Run(){maps.push({name="HairyVagina",author="MoistNoodlez",id="#1658361566",direction="left",cost=427,elevation=0,map=[2,2,1,91,0,91,91,0,0,0,91,91,0,0,0,0,0,0,0,0,131,24,1,91,0,91,0,0,0,0,91

,0,0,0,0,0,0,0,0,0,1,1,1,91,91,124,91,124,124,91,124,124,124,124,124,124,124,0,0,0,91,91,124,91,124,91,91,124,91,124,124,124,124,124,88,124,88,124,124,132,91,124,124,91,124,124,54,54,54,54,54,54,54,54

,124,124,124,87,124,132,91,124,91,124,54,54,54,54,54,54,54,54,54,54,54,54,54,124,124,124,91,91,124,54,54,54,76,76,76,76,54,54,54,54,54,54,54,54,124,124,124,91,91,92,76,76,76,76,76,76,76,76,76,76,76,54

,54,54,124,124,2,124,122,122,76,76,76,94,76,76,76,76,76,76,76,76,54,54,124,124,2,124,122,122,76,76,94,76,76,76,76,76,76,76,54,54,54,54,124,124,124,124,91,92,76,76,76,76,76,76,76,76,54,54,54,54,54,124,

124,0,124,124,124,54,54,54,54,54,54,54,54,54,54,54,54,124,124,124,124,0,91,124,91,124,124,54,54,54,54,54,54,124,124,124,124,124,87,124,124,0,91,0,124,91,124,124,91,124,124,91,124,124,124,124,124,88,12

4,0,0,0,91,0,91,91,91,0,91,0,0,0,91,0,0,0,0,0,0,0,0,0,91,91,91,0,91,91,0,91,0,0,91,0,0,0,0,0,0,0,0,0,91,91,0,0,91,91,0,91,0,0,0,91,0,0,0,0,0,0,0,0,0,91,0,0,91,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,9

1,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="BloodVessel",author="MoistNoodlez",id="#1658362052",direction="forward",cost=282,elevation=0,map=[0,1,124,120,118,116,114,2,2,114,116,118,120,124,1,0,0,0,0,0,0,1,124,1

20,118,116,114,114,114,114,116,118,120,124,1,0,0,0,0,0,0,1,124,120,118,116,114,114,114,114,116,118,120,124,1,0,0,0,0,0,0,1,124,120,118,116,114,114,114,114,116,118,120,124,1,0,0,0,0,0,0,1,124,120,118,1

16,114,88,114,114,116,118,120,124,1,0,0,0,0,0,0,1,124,120,118,116,114,114,114,88,116,118,120,124,1,0,0,0,0,0,0,1,124,120,118,116,114,88,114,114,116,118,120,124,1,0,0,0,0,0,0,1,124,120,118,116,114,114,

114,114,116,118,120,124,1,0,0,0,0,0,0,1,124,120,118,116,114,90,114,88,116,118,120,124,1,0,0,0,0,0,0,1,124,120,118,116,114,114,114,114,116,118,120,124,1,0,0,0,0,0,0,1,124,120,118,116,88,114,114,114,116

,118,120,124,1,0,0,0,0,0,0,1,124,120,118,116,114,114,88,114,116,118,120,124,1,0,0,0,0,0,0,1,124,120,118,116,88,114,114,114,116,118,120,124,1,0,0,0,0,0,0,1,124,120,118,116,114,114,114,114,116,118,120,1

24,1,0,0,0,0,0,0,1,124,120,118,116,114,114,114,114,116,118,120,124,1,0,0,0,0,0,0,1,124,120,118,116,90,114,88,114,116,118,120,124,1,0,0,0,0,0,0,1,124,120,118,116,114,114,114,88,116,118,120,124,1,0,0,0,

0,0,0,1,124,120,118,116,88,114,114,114,116,118,120,124,1,0,0,0,0,0,0,1,124,120,118,116,114,114,114,88,116,118,120,124,1,0,0,0,0,0,0,1,124,120,118,116,114,2,2,114,116,118,120,124,1,0,0,0,0,0]});}},

{function Run(){maps.push({name="Threesome",author="Niikos",id="#1658363333",direction="left",cost=378,elevation=0,map=[105,105,105,105,105,105,105,105,105,105,105,1,0,0,0,0,1,2,2,0,105,105,105,105,10

5,105,105,105,105,65,65,1,0,0,0,0,1,25,25,65,105,105,105,105,105,105,105,105,105,65,65,1,0,0,0,0,1,25,25,65,105,105,1,65,65,1,46,46,1,92,92,1,0,0,0,0,1,25,25,65,105,105,1,65,65,1,47,47,1,95,95,1,0,0,0

,0,1,25,25,65,105,105,1,65,65,1,48,48,1,64,64,1,1,1,1,1,1,25,25,65,105,105,1,65,65,1,49,49,1,64,64,64,64,64,64,64,3,25,25,65,105,105,1,65,65,1,50,50,1,64,64,64,64,64,64,64,3,25,25,65,105,105,1,0,0,1,5

1,51,1,1,1,1,1,1,1,1,1,25,25,65,2,105,1,0,0,1,52,52,1,0,0,0,0,0,0,0,1,25,25,65,2,105,1,0,0,1,53,53,1,0,0,0,0,0,0,0,1,25,25,65,65,65,1,0,0,1,54,54,1,1,1,1,1,1,1,1,1,25,25,65,1,1,1,126,126,1,55,55,56,57

,58,59,59,59,59,59,3,25,25,65,0,0,1,49,49,1,55,55,56,57,58,59,59,59,59,59,3,25,25,65,0,0,1,49,49,1,1,1,1,1,1,1,1,1,1,1,1,25,25,65,0,0,1,49,49,1,0,0,0,0,0,0,0,0,0,0,1,25,25,65,0,0,1,49,49,1,0,0,0,0,0,0

,0,0,0,0,1,25,25,65,0,0,1,49,49,1,1,1,1,1,1,1,1,1,1,1,1,25,25,65,0,0,1,49,49,49,50,51,52,53,54,54,54,54,54,54,3,25,25,65,0,0,1,49,49,49,50,51,52,53,54,54,54,54,54,54,3,25,25,65]});}},

{function Run(){maps.push({name="BlackMold",author="MoistNoodlez",id="#1658366130",direction="forward",cost=646,elevation=0,map=[1,2,2,10,10,10,10,10,10,96,10,101,101,101,96,10,10,10,10,1,1,10,10,10,1

0,10,10,10,10,96,99,101,104,101,96,10,10,10,10,1,1,10,10,10,10,10,10,10,10,96,10,101,10,101,96,10,10,10,10,1,1,10,10,10,10,10,10,10,10,96,10,101,101,101,96,10,10,10,10,1,1,10,10,10,10,10,10,10,10,96,9

6,96,96,96,96,10,70,70,70,1,1,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,70,70,70,1,1,96,96,96,10,10,10,10,10,10,10,10,10,10,10,10,70,70,10,97,1,98,98,96,10,10,10,10,10,10,10,10,10,10,10,10,70,70,70

,1,102,10,98,96,10,10,10,10,10,10,10,10,10,10,10,10,70,70,70,1,1,98,98,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,1,1,96,96,96,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,1,1,10,88,10,10,88,10,1

0,88,10,10,88,10,10,88,10,10,88,10,1,1,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,1,1,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,1,1,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,

10,10,10,1,1,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,1,1,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,1,1,103,103,103,103,103,103,103,103,103,103,103,103,103,1

03,103,103,103,103,1,1,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,1,1,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,2,2,1]});}},

{function Run(){maps.push({name="LavaHopscotch",author="MoistNoodlez",id="#1658371027",direction="forward",cost=653,elevation=0,map=[1,2,2,1,1,1,1,1,1,1,1,1,1,14,14,14,14,14,14,1,1,14,14,14,14,14,14,1

4,14,14,14,14,1,14,1,14,1,14,14,1,1,76,76,76,76,76,76,76,76,76,1,14,1,14,1,14,1,14,14,1,1,76,76,76,76,76,76,76,76,76,1,14,1,14,1,14,1,14,14,1,1,76,76,76,76,76,76,14,76,76,1,14,1,14,1,14,1,14,14,1,1,76

,76,76,14,76,76,76,76,76,1,14,1,14,1,14,1,14,14,1,1,14,76,76,76,76,76,76,76,76,1,14,1,14,1,14,1,14,14,1,1,76,76,76,76,76,76,14,76,76,1,14,1,14,1,14,1,14,14,1,1,76,76,14,76,76,76,76,76,76,1,14,1,14,1,1

4,1,14,14,1,1,76,76,76,76,14,76,76,76,76,1,14,1,14,1,14,1,14,14,1,1,14,76,76,76,76,76,76,76,76,1,14,1,14,1,14,1,14,14,1,1,97,14,76,76,76,76,14,76,76,1,14,1,14,1,14,1,14,14,1,1,14,76,76,76,76,76,76,76,

76,1,14,1,14,1,14,1,14,14,1,1,76,76,76,14,14,76,76,76,76,1,14,1,14,1,14,1,14,14,1,1,76,76,76,76,76,76,76,76,76,1,14,14,14,14,14,1,14,14,1,1,76,76,76,76,76,76,14,76,76,1,0,0,0,0,0,1,14,14,1,1,76,76,76,

76,76,76,76,76,76,1,0,0,0,0,0,1,14,14,1,1,76,76,76,9,9,76,76,76,76,1,0,0,0,0,0,0,14,14,1,1,96,96,14,3,3,14,14,14,14,14,14,14,14,14,95,14,14,14,1,1,2,2,96,14,14,14,14,14,14,14,14,14,14,14,95,14,14,14,1

]});}},

{function Run(){maps.push({name="Clamber",author="tilgep",id="#1658412073",direction="left",cost=212,elevation=18,map=[0,0,0,0,0,12,12,12,12,1,0,0,0,0,6,2,2,6,0,0,0,0,0,0,12,12,12,12,12,9,9,9,9,6,6,6,

6,6,0,0,0,0,0,12,12,12,12,12,12,4,9,9,9,4,6,6,6,6,0,0,0,0,12,12,12,12,12,12,12,9,9,9,9,6,6,6,6,6,0,0,0,0,12,12,12,12,12,12,12,1,0,0,1,0,6,4,6,0,0,0,0,1,12,4,12,4,12,0,1,0,0,0,0,1,9,9,9,0,0,0,0,1,16,16

,16,16,16,1,0,0,0,0,0,0,9,9,9,0,0,0,0,0,16,16,16,16,16,0,0,0,0,0,0,0,9,9,9,0,0,0,0,0,16,16,16,16,16,0,0,0,0,0,0,1,9,4,9,1,0,0,0,0,16,16,125,16,16,0,1,0,0,0,1,12,12,12,12,12,1,0,0,0,0,0,0,0,0,1,0,0,0,1

,0,12,12,12,12,12,0,0,0,0,0,0,0,0,1,0,16,16,16,16,12,12,12,12,12,12,0,0,0,0,24,24,24,24,0,0,16,16,16,16,4,12,12,12,12,12,0,0,0,0,24,24,24,24,0,0,125,16,16,16,12,12,12,12,12,0,0,0,0,0,24,24,24,24,0,0,1

6,16,16,16,4,12,12,12,0,0,0,0,2,24,24,24,24,24,0,0,16,16,16,16,12,12,12,0,0,0,0,0,2,24,24,24,24,24,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Get The Buttons",author="Block",id="#1658413887",direction="left",cost=372,elevation=16,map=[131,21,21,103,135,135,135,135,135,0,1,13,132,1,13,13,5,5,2,2,21,21,21,103,

135,135,135,135,135,0,1,13,13,1,97,13,5,5,5,5,21,21,21,103,135,135,135,135,135,0,1,13,13,1,13,13,5,5,5,5,2,21,21,0,0,0,135,135,135,0,1,13,13,1,13,13,5,5,5,5,2,21,21,0,0,0,135,135,135,0,1,93,13,1,13,13

,5,5,5,5,21,21,21,0,0,0,135,135,135,0,1,94,13,1,13,13,95,95,95,95,134,21,21,0,0,0,21,21,21,0,1,13,13,1,13,13,5,5,5,5,1,1,1,0,0,0,21,102,21,0,1,100,13,1,13,13,5,125,125,125,0,0,0,0,0,0,95,95,95,0,1,133

,13,1,13,13,13,13,13,13,0,0,0,0,0,0,21,21,21,0,1,13,13,1,13,13,13,127,127,127,104,16,0,0,0,0,21,21,21,0,1,13,13,1,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,16,16,0,1,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,16,16,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,126,16,16,0,1,20,98,126,126,126,98,0,0,0,0,16,96,16,16,16,16,16,16,0,1,20,20,98,98,98,20,0,0,0,0,128,96,16

,16,16,16,16,125,0,0,101,20,20,20,20,20,0,0,0,0,128,96,16,16,16,16,16,125,0,0,101,20,20,20,20,20,0,0,0,0,128,96,16,16,16,16,16,16,0,1,20,20,20,20,20,20,0,0,0,0,16,96,16,16,16,99]});}},

{function Run(){maps.push({name="Jump King",author="tilgep",id="#1658415547",direction="forward",cost=117,elevation=-5,map=[0,0,0,0,24,2,2,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,24,24,24,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,1,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,1,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,19,19,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,

0,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,0,0,0,0,0,5,5,22,22,22,0,0,0,0,19,19,19,19,19,19,3,5,5,5,5,5,4,22,100,22,0,0,0,0,0,19,2,2,19,19,0,0

,0,0,0,5,5,22,22,22,0]});}},

{function Run(){maps.push({name="Is it worth it",author="tilgep",id="#1658416127",direction="forward",cost=203,elevation=-2,map=[0,0,0,0,0,14,2,2,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,66,66,14,76,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,69,69,1,79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,69,69,1,79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,1,69,69,1,79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,69,69,1,76,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,14,66,66,1,14,14,14,97,14,0,0,0,0,0,0,0,0,0,0,0,14,14,14,1,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,14,14,14,1,0

,0,15,15,15,0,0,0,0,0,0,0,0,0,0,0,14,14,14,1,1,0,16,16,16,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,96,96,96,14,14,0,0

,0,0,0,0,0,0,0,0,0,0,0,14,96,14,94,14,96,14,0,0,0,0,0,0,0,0,0,0,0,0,0,14,96,93,14,93,96,14,0,0,0,0,0,0,0,0,0,0,0,0,0,14,96,14,94,14,96,14,12,12,12,12,0,0,0,0,0,0,0,0,0,0,14,96,96,96,14,14,12,12,12,12,

0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,12,2,2,12,0,0,0,0]});}},

{function Run(){maps.push({name="Crossing",author="tilgep",id="#1658419211",direction="forward",cost=168,elevation=-1,map=[0,0,17,17,17,17,17,17,2,2,17,17,17,17,17,17,0,0,0,0,0,0,17,17,17,17,17,17,17,

17,17,17,17,17,17,17,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,92,0,92,0,92,0,92,92,0,92,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,92,0,92

,0,92,0,0,92,0,92,0,92,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,16,

16,16,16,16,16,2,2,16,16,16,16,16,16,0,0,0,0]});}},

{function Run(){maps.push({name="Arrow",author="tilgep",id="#1658420434",direction="forward",cost=37,elevation=-13,map=[0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,23,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,44,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,42,0,42,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,40,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,38,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,36,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,34,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,32,0,32,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Corridor",author="tilgep",id="#1658423000",direction="forward",cost=133,elevation=0,map=[0,0,0,0,24,57,2,2,57,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,57,57,57,57,24,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,24,57,57,57,57,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,57,57,57,57,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,57,57,57,57,57,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,57,57,57,57,57,24,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,24,57,57,57,57,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,57,57,57,57,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,57,57,57,57,57,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,57,57,57,57,57,24,0,0,0,0,0,0,0,0,0,0,0,0,0,

24,57,57,57,57,57,24,0,0,0,0,0,0,0,0,0,0,0,0,24,57,57,57,57,57,57,24,0,0,0,0,0,0,0,0,0,0,24,24,57,57,57,57,57,24,24,0,0,0,0,0,0,0,0,0,0,24,57,57,57,57,57,57,24,0,0,0,0,0,0,0,0,0,0,0,0,24,57,57,57,57,2

4,24,0,0,0,0,0,0,0,0,0,0,0,0,24,57,57,57,57,24,0,0,0,0,0,0,0,0,0,0,0,0,0,24,57,57,57,57,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,57,57,57,57,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,57,57,57,57,24,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,24,57,2,2,57,24,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Make a Splash",author="tilgep",id="#1658424801",direction="right",cost=356,elevation=-10,map=[0,0,0,124,2,2,124,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,124,124,124,124,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,124,124,124,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,124,124,124,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,124,124,124,124,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,44,0,0,0,0,0,

0,0,0,0,14,14,14,14,14,0,0,0,0,0,44,0,0,0,0,0,0,0,0,14,14,14,14,14,14,0,0,0,0,0,44,0,0,0,0,0,5,5,3,14,66,66,14,14,14,0,0,0,5,5,5,5,5,5,5,5,5,66,67,66,66,66,66,14,2,0,0,5,5,66,66,66,66,66,66,66,66,66,6

7,66,66,66,66,14,2,0,67,73,66,66,66,66,66,66,66,66,66,66,67,66,66,66,66,14,14,0,67,73,66,66,66,66,66,66,66,66,66,66,67,66,66,66,66,14,14,0,67,73,66,66,66,66,66,66,66,66,66,66,67,66,66,66,66,66,14,0,67

,73,66,66,66,66,66,66,66,66,66,66,67,66,66,66,66,66,14,0,67,73,66,66,66,66,66,66,66,66,66,66,67,66,66,66,66,66,14,0,0,5,5,5,5,5,5,5,5,5,5,5,14,66,66,66,66,66,14,0,0,0,0,0,5,5,5,0,0,0,0,0,14,14,66,66,1

4,14,14,0,0,0,0,0,0,0,26,27,28,29,30,31,32,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Go Go GO",author="tilgep",id="#1658424976",direction="forward",cost=60,elevation=0,map=[0,0,0,0,0,0,17,2,2,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,127,127,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,1

7,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,2,2,17,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Just go straight",author="MacBlub",id="#1658429825",direction="left",cost=318,elevation=-19,map=[34,34,34,135,135,135,0,135,24,2,2,24,135,0,135,135,135,34,34,34,34,94,

34,135,135,135,0,135,24,24,24,24,135,0,135,135,135,34,93,34,34,34,34,135,135,135,0,0,135,135,135,135,0,0,135,135,135,34,34,34,0,34,34,135,135,135,135,0,0,0,0,0,0,135,135,135,135,34,34,0,0,34,34,135,13

5,135,135,135,135,135,135,135,135,135,135,135,135,34,34,0,0,34,34,135,135,135,135,135,135,135,135,135,135,135,135,135,135,34,34,0,0,34,34,135,135,135,135,135,135,135,135,135,135,135,135,135,135,34,34,

0,0,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,0,0,34,33,33,32,31,30,29,28,28,28,28,29,30,31,32,33,33,34,0,0,0,0,0,0,0,0,0,135,135,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,135,135,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,135,135,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,135,135,135,135,0,0,0,0,0,0,0,0,2,25,95,95,25,26,27,27,28,28,28,28,0,0,0,0,0,0,0,0,2,25,95,95,25,26,27,27,28,28,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="HighwayToHeaven",author="MoistNoodlez",id="#1658454642",direction="forward",cost=420,elevation=0,map=[12,12,12,12,14,14,14,14,14,2,2,14,14,14,14,14,12,12,12,12,10,0,0,

0,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,10,10,0,0,0,0,0,0,75,75,75,75,75,75,0,0,0,0,0,0,10,10,0,0,0,0,0,0,75,75,75,75,75,75,0,0,0,0,0,0,10,10,0,0,0,0,0,0,75,75,75,75,75,75,0,0,0,0,0,0,10,10,10,0,0

,0,0,0,75,75,75,75,75,75,0,0,0,0,0,10,10,10,10,0,0,0,0,0,75,75,75,75,75,75,0,0,0,0,0,10,10,10,10,0,0,0,0,0,75,75,75,75,75,75,0,0,0,0,0,10,10,8,8,0,0,0,0,0,75,75,75,75,75,75,0,0,0,0,0,8,8,8,8,0,0,0,0,0

,75,75,75,75,75,75,0,0,0,0,0,8,8,8,8,0,0,0,0,0,75,75,75,75,75,75,0,0,0,0,0,8,8,8,8,0,0,0,0,0,75,75,75,75,75,75,0,0,0,0,0,8,8,8,8,0,0,0,0,0,75,75,75,75,75,75,0,0,0,0,0,8,8,10,10,0,0,0,0,0,75,75,75,75,7

5,75,0,0,0,0,0,10,10,91,91,0,0,0,0,0,75,75,75,75,75,75,0,0,0,0,0,91,91,91,91,0,0,0,0,0,75,75,75,75,75,75,0,0,0,0,0,91,91,10,10,0,0,0,0,0,75,75,75,75,75,75,0,0,0,0,0,10,10,10,0,0,0,0,0,14,14,14,14,14,1

4,14,14,0,0,0,0,0,10,10,0,0,0,14,14,14,14,95,95,95,95,14,14,0,0,0,0,0,10,12,12,12,12,14,14,14,14,95,2,2,95,14,14,14,14,12,12,12,12]});}},

{function Run(){maps.push({name="SwimBitch",author="MoistNoodlez",id="#1658455201",direction="forward",cost=634,elevation=0,map=[1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,14,14,1,66,66,66,14,14,1,14,1

29,66,66,66,66,66,66,66,1,1,127,127,1,66,66,66,66,66,1,14,129,66,66,66,66,66,66,66,1,1,66,66,1,66,66,1,66,66,1,66,66,66,66,66,66,66,66,66,1,1,66,66,1,66,66,1,66,66,1,66,66,66,1,66,66,1,66,66,1,1,66,66

,1,66,66,1,66,66,1,66,66,66,1,66,66,1,66,66,1,1,66,66,1,66,66,1,66,66,1,66,66,66,1,66,66,1,66,66,1,1,66,66,1,66,66,1,66,66,1,66,66,66,1,66,66,1,66,66,1,1,66,66,1,66,66,1,66,66,1,66,66,66,1,66,66,1,66,

66,1,1,66,66,1,66,66,1,66,66,1,66,66,66,1,66,66,1,66,66,1,1,66,66,1,66,66,1,66,66,1,66,66,66,1,66,66,1,66,66,1,1,66,66,1,66,66,1,66,66,1,66,66,66,1,66,66,1,66,66,1,1,66,66,1,66,66,1,66,66,1,66,66,66,1

,66,66,1,66,66,1,1,66,66,1,66,66,1,66,66,1,66,66,66,1,66,66,1,66,66,1,1,66,66,1,66,66,1,66,66,1,66,66,66,1,66,66,1,66,66,1,1,66,66,1,66,66,1,66,66,1,66,66,66,1,66,66,1,66,66,1,1,66,66,1,66,66,1,66,66,

1,66,66,66,1,66,66,66,66,66,1,1,66,66,66,66,66,1,66,66,66,66,66,14,1,66,66,66,66,66,1,1,14,14,14,14,14,1,66,66,66,66,14,14,1,14,14,14,14,14,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1]});}},

{function Run(){maps.push({name="HighwayToHell",author="MoistNoodlez",id="#1658456264",direction="right",cost=708,elevation=0,map=[1,14,2,2,14,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,14,75,75,14,1,14,14,14,14

,14,14,14,14,14,14,14,1,14,1,1,14,75,75,14,1,14,75,75,75,75,75,75,75,75,75,14,1,132,1,1,14,75,75,14,1,14,75,75,75,75,75,75,75,75,75,14,1,14,1,1,14,75,75,14,1,14,75,75,75,75,75,75,75,75,75,14,1,14,1,1,

14,75,75,14,1,14,75,75,14,14,14,75,75,75,75,14,1,95,2,1,14,75,75,14,1,14,75,75,14,1,14,75,75,75,75,14,1,95,2,1,14,75,75,14,1,14,75,75,14,1,14,75,75,75,75,14,1,14,1,1,14,75,75,14,1,14,75,75,14,1,14,75,

75,75,75,14,1,14,1,1,14,75,75,14,1,14,75,75,14,1,14,75,75,75,75,14,1,132,1,1,14,75,75,14,1,14,75,75,14,1,14,75,75,75,75,14,1,14,1,1,14,75,75,14,1,14,75,75,14,1,14,75,75,75,75,14,1,1,1,1,14,75,75,14,1,

14,75,75,14,1,14,75,75,75,75,14,1,93,94,1,14,75,75,14,1,14,75,75,14,1,14,75,75,75,75,14,1,14,14,1,14,75,75,14,1,14,75,75,14,1,14,75,75,75,75,76,14,76,1,1,14,75,75,14,14,14,75,75,14,1,14,75,75,75,75,14

,131,14,1,1,14,75,75,75,75,75,75,75,14,1,14,75,75,75,75,14,131,14,1,1,14,75,75,75,75,75,75,75,14,1,14,75,75,75,75,76,14,76,1,1,14,14,14,14,14,14,14,14,14,1,14,14,14,14,14,14,14,14,1,1,1,1,1,1,1,1,1,1,

1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Chill Fountain",author="Squidward",id="#1658461820",direction="forward",cost=284,elevation=10,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0

,34,0,0,0,0,0,0,0,0,0,8,3,5,0,0,0,12,0,33,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,36,0,0,0,0,0,9,0,0,0,0,0,0,16,0,0,0,0,0,0,38,0,0,0,0,0,3,0,0,0,0,0,18,0,0,0,20,67,20,0,0,0,0,0,0,0,14,0,0,0,

20,20,20,20,90,0,20,66,20,0,0,0,0,0,0,0,0,0,0,0,20,66,66,66,20,20,20,66,20,20,0,0,0,0,0,0,0,0,20,67,20,66,66,66,66,66,66,66,65,20,0,0,0,0,0,0,15,3,20,65,65,66,66,65,66,66,66,66,65,20,0,0,0,0,0,0,0,0,9

0,65,66,65,65,65,65,20,66,20,65,20,0,0,0,0,0,0,0,20,20,66,66,90,20,20,65,66,66,90,20,0,0,0,0,0,0,0,0,20,66,66,65,20,93,20,65,65,66,20,20,0,0,0,0,0,0,0,0,20,20,66,65,20,20,20,66,66,66,66,20,20,0,0,0,0,

0,0,0,0,67,66,65,65,66,65,65,66,66,66,66,67,0,0,0,24,4,20,0,92,20,66,66,66,66,66,66,66,66,66,66,67,0,0,0,92,0,0,0,0,20,66,66,66,66,66,90,20,66,20,20,20,0,0,0,0,0,0,0,0,20,67,67,20,65,65,20,20,20,20,0,

0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,0,0,0,0,0,0,0,0,24,92,0,0,0,24,100,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="RatEscape",author="MoistNoodlez",id="#1658530813",direction="forward",cost=257,elevation=0,map=[0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,76,76,14,14,14,14,14,

14,14,1,0,0,0,0,0,0,0,0,0,1,76,76,14,14,14,1,1,1,14,1,0,0,0,0,0,0,0,0,1,1,14,14,14,14,14,1,132,1,14,1,1,0,0,0,0,0,0,0,1,1,14,14,14,76,76,1,127,1,14,14,1,0,0,0,0,0,0,0,1,1,14,14,14,76,76,1,14,14,1,14,1

,0,0,0,0,0,0,0,1,14,14,14,14,14,14,1,14,14,1,14,1,0,0,0,0,0,0,0,1,14,14,14,14,14,14,1,1,14,14,14,1,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,1,14,14,14,1,0,0,0,0,0,0,0,1,1,14,14,14,14,14,14,14,14,14,14,1,0

,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,1,1,14,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,1,1,14,14,14,14,14,14,14,1,0,0,0,0,0

,0,0,0,0,0,0,1,1,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,14,14,14,14,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,91,91,91,91,1,0,0,0,0,0,0,0,1,9,1,1,1,1,1,1,

91,91,91,91,1,0,0,0,0,0,0,1,9,100,5,131,5,14,14,14,91,91,2,2,1,0,0,0,0,0]});}},

{function Run(){maps.push({name="DickJump",author="MoistNoodlez",id="#1658531070",direction="forward",cost=446,elevation=0,map=[1,5,5,5,5,5,5,5,5,2,2,5,5,5,5,5,5,5,5,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,

5,5,5,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,5,125,5,125,5,125,5,5,5,5,5,5,125,5,125,5,125,5,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,5,10,10,10,10,10,5

,5,5,5,5,5,10,10,10,10,10,5,1,1,10,10,10,10,10,10,10,61,62,62,61,10,10,10,10,10,10,10,1,1,10,10,12,12,12,10,10,62,63,63,62,10,10,12,12,12,10,10,1,1,10,12,14,14,125,12,10,62,64,64,62,10,12,125,14,14,12

,10,1,1,10,12,100,125,14,12,10,62,94,93,62,10,12,14,125,100,12,10,1,1,10,12,14,14,125,12,10,62,64,64,62,10,12,125,14,14,12,10,1,1,10,10,12,12,12,10,10,62,63,63,62,10,10,12,12,12,10,10,1,1,10,10,10,10,

10,10,10,61,62,62,61,10,10,10,10,10,10,10,1,1,5,10,10,10,10,10,67,66,66,66,66,67,10,10,10,10,10,5,1,1,5,5,5,5,5,5,5,67,67,67,67,5,5,5,5,5,5,5,1,1,5,5,5,5,5,5,5,66,66,66,66,5,5,5,5,5,5,5,1,1,5,5,5,5,5,

5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,5,5,5,5,5,5,5,5,2,2,5,5,5,5,5,5,5,5,1]});}},

{function Run(){maps.push({name="MouseEscape",author="MoistNoodlez",id="#1658531368",direction="forward",cost=209,elevation=0,map=[0,0,0,0,0,0,1,1,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,9,9,1,1,0

,0,0,0,0,0,0,0,0,0,1,9,9,9,125,9,9,9,9,1,0,0,0,0,0,0,0,0,0,0,1,9,9,19,19,9,9,9,9,1,0,0,0,0,0,0,0,0,0,1,1,9,9,19,19,9,9,9,9,1,0,0,0,0,0,0,0,0,0,1,9,9,9,19,100,9,9,9,9,1,0,0,0,0,0,0,0,0,0,1,9,9,9,19,127

,9,9,9,9,1,0,0,0,0,0,0,0,0,0,1,9,9,9,19,19,9,9,9,9,1,0,0,0,0,0,0,0,0,0,1,9,9,9,9,9,9,9,9,9,1,0,0,0,0,0,0,0,0,0,1,9,9,9,9,9,9,9,9,9,1,0,0,0,0,0,0,0,0,0,1,9,9,9,9,9,9,9,9,9,1,0,0,0,0,0,0,0,0,0,1,9,9,9,9

,9,9,9,9,9,1,0,0,0,0,0,0,0,0,0,1,9,9,9,9,9,9,9,9,9,1,0,0,0,0,0,0,0,0,0,1,9,9,9,9,9,9,9,9,9,1,0,0,0,0,0,0,0,0,0,1,9,9,9,9,9,9,9,9,9,1,0,0,0,0,0,0,0,0,0,0,1,9,9,135,135,9,9,9,9,1,0,0,0,0,0,0,0,0,0,0,1,9

,9,9,9,9,9,9,9,1,0,0,0,0,0,0,0,0,0,0,1,9,9,9,9,9,9,9,1,1,0,0,0,0,0,0,0,0,0,0,0,1,9,9,9,9,9,9,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,1,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="TripleJumps",author="MoistNoodlez",id="#1658532203",direction="forward",cost=308,elevation=-15,map=[0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,24,24,24,24,24,24

,24,24,24,24,24,24,24,24,1,0,0,0,0,1,0,0,0,0,0,0,1,24,24,24,24,24,24,24,1,0,0,0,0,1,0,0,0,0,0,0,1,24,24,24,24,24,24,24,1,0,0,0,0,1,0,0,0,0,0,0,1,24,24,24,24,24,24,24,1,0,0,0,0,1,18,18,18,18,18,18,1,18

,18,18,18,18,18,18,1,0,0,0,0,1,18,18,18,18,18,18,1,95,95,95,95,95,95,95,1,0,0,0,0,1,18,18,18,18,18,18,1,18,18,18,18,18,18,18,1,0,0,0,0,1,0,0,0,0,0,0,1,13,13,13,13,13,13,13,1,0,0,0,0,1,0,0,0,0,0,0,1,13

,13,13,13,13,13,13,1,0,0,0,0,1,0,0,0,0,0,0,1,95,95,95,95,95,95,95,1,0,0,0,0,1,13,13,13,13,13,13,1,13,13,13,13,13,13,13,1,0,0,0,0,1,13,13,13,13,13,13,1,13,13,13,13,13,13,13,1,0,0,0,0,1,13,13,13,13,13,1

3,1,13,13,13,13,13,13,13,1,0,0,0,0,1,0,0,0,0,0,0,1,9,9,9,9,9,9,9,1,0,0,0,0,1,0,0,0,0,0,0,1,9,9,9,9,9,9,9,1,0,0,0,0,1,0,0,0,0,0,0,1,9,9,9,9,9,9,9,1,0,0,0,0,1,9,9,9,9,9,9,1,95,95,95,95,95,95,95,1,0,0,0,

0,1,9,9,9,9,9,9,9,9,9,9,9,9,9,9,1,0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="DeathValley",author="MoistNoodlez",id="#1658532604",direction="forward",cost=215,elevation=0,map=[0,0,0,0,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,24,92,5,5,5,5,92,24

,1,0,0,0,0,0,0,0,0,0,0,1,24,5,5,5,5,5,5,24,1,0,0,0,0,0,0,0,0,0,0,1,24,5,5,5,88,5,5,86,1,0,0,0,0,0,0,0,0,0,0,1,24,5,88,5,5,88,5,24,1,0,0,0,0,0,0,0,0,0,0,1,24,5,5,5,5,5,5,24,1,0,0,0,0,0,0,0,0,0,0,1,24,5

,5,88,5,88,5,24,1,0,0,0,0,0,0,0,0,0,0,1,86,5,5,5,5,5,5,86,1,0,0,0,0,0,0,0,0,0,0,1,24,5,5,5,5,5,5,24,1,0,0,0,0,0,0,0,0,0,0,1,24,88,5,5,100,5,88,24,1,0,0,0,0,0,0,0,0,0,0,1,24,5,88,5,5,5,5,24,1,0,0,0,0,0

,0,0,0,0,0,1,86,5,5,5,88,5,5,24,1,0,0,0,0,0,0,0,0,0,0,1,24,5,5,5,5,88,5,24,1,0,0,0,0,0,0,0,0,0,0,1,24,5,5,88,5,5,5,86,1,0,0,0,0,0,0,0,0,0,0,1,86,5,5,5,5,5,5,24,1,0,0,0,0,0,0,0,0,0,0,1,24,5,5,5,5,5,5,2

4,1,0,0,0,0,0,0,0,0,0,0,1,24,5,5,88,88,5,5,24,1,0,0,0,0,0,0,0,0,0,0,1,100,5,5,5,5,5,5,100,1,0,0,0,0,0,0,0,0,0,0,1,24,92,5,5,5,5,92,24,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="RagingEye",author="MoistNoodlez",id="#1658534227",direction="forward",cost=433,elevation=0,map=[0,0,0,0,0,0,1,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,24,24,24,24,1,1,1

,0,0,0,0,0,0,0,0,1,1,1,24,24,24,24,24,24,76,76,24,1,1,0,0,0,0,0,0,1,24,76,24,24,24,24,24,76,76,24,24,24,1,1,0,0,0,0,1,1,24,24,76,24,24,24,76,76,24,24,24,24,24,1,1,0,0,0,1,24,24,24,76,24,24,24,24,24,24

,24,24,24,24,24,1,0,0,1,1,76,24,24,24,5,5,5,5,5,24,24,76,24,24,24,1,1,0,1,24,76,76,24,5,66,66,66,66,66,5,24,24,76,76,24,24,1,0,1,24,24,76,76,5,66,66,5,66,66,5,24,24,24,76,76,76,1,0,1,24,24,24,24,5,66,

5,131,5,66,5,24,24,76,24,24,24,1,0,1,24,24,24,24,5,66,66,5,66,66,5,24,24,76,24,24,24,1,0,1,24,76,24,24,5,66,66,66,66,66,5,24,24,24,24,24,24,1,0,1,24,24,76,76,24,5,5,5,5,5,24,24,24,24,24,24,24,1,0,1,1,

76,24,24,24,24,24,24,24,24,24,24,76,24,24,24,1,1,0,0,1,24,24,24,24,24,24,76,24,24,76,76,24,24,24,24,1,0,0,0,1,1,24,24,24,24,24,76,76,24,24,76,76,76,76,1,1,0,0,0,0,1,24,24,24,24,24,24,76,76,24,24,24,24

,1,1,0,0,0,0,0,1,1,1,24,24,24,24,24,76,76,24,24,1,1,0,0,0,0,0,0,1,1,1,1,95,95,95,95,95,1,1,1,0,0,0,0,0,0,0,0,1,132,24,24,95,2,2,1,1,1,1,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="ZmPlzTrigger",author="MoistNoodlez",id="#1658536086",direction="right",cost=254,elevation=0,map=[1,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,96,14,99,1,0,

0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,96,14,14,1,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,96,96,1,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,14,1,0,0,0,0,0,

0,0,0,0,0,1,14,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,

0,1,14,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,1,14,1

4,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,14,1,1,1,1,1,1,1,1,1,1,1,1,14,14,14,14,14,14,14,14,14,14,14,98,14,14,14,14,14,14,2,1,97

,14,14,14,14,14,14,14,14,14,14,98,14,14,14,14,14,14,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Death Verified",author="Mr Robot",id="#1658835714",direction="forward",cost=352,elevation=-19,map=[24,24,24,24,24,24,1,1,1,1,1,1,1,1,43,44,24,24,2,2,24,69,69,69,69,69,

66,66,42,42,0,42,85,90,43,44,24,24,24,24,24,69,69,69,69,69,66,66,42,42,0,42,42,86,43,67,67,67,67,67,24,66,66,24,24,24,1,1,1,1,1,1,1,1,1,67,67,67,67,67,76,20,20,76,76,76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,76,

20,20,76,76,76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,76,20,20,1,1,1,1,0,0,0,0,0,0,0,0,96,0,0,0,0,76,20,20,95,19,19,19,18,18,17,17,16,16,15,15,96,14,13,13,12,76,20,20,1,19,19,19,18,18,17,17,132,16,15,15,96,14,13

,13,12,1,1,1,1,19,19,19,0,0,0,0,0,0,0,0,96,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,135,0,0,0,

102,10,0,0,0,0,92,10,10,10,10,0,0,0,0,0,135,0,0,0,0,92,24,24,77,24,24,101,101,101,101,0,0,0,0,0,135,0,0,0,0,0,77,83,83,83,77,0,0,8,8,0,0,0,0,0,135,0,0,0,0,0,77,131,97,83,77,0,0,7,7,0,0,0,0,0,19,0,0,0,

0,0,24,19,19,83,77,0,0,6,6,0,0,0,0,0,0,0,19,0,0,19,77,24,19,24,24,0,5,5,5,0,0,0,0,0,19,0,0,19,19,0,0,19,83,83,77,0,5,2,2]});}},

{function Run(){maps.push({name="Open Trigger",author="Mr Robot",id="#1659125664",direction="forward",cost=808,elevation=0,map=[102,14,76,76,135,135,135,135,14,2,2,14,135,135,135,135,76,76,14,102,14,1

4,76,76,135,135,135,135,14,14,14,14,135,135,135,135,76,76,14,14,135,76,76,76,135,135,135,135,135,135,135,135,135,135,135,135,76,76,76,135,135,76,76,76,135,135,135,135,135,135,135,135,135,135,135,135,7

6,76,76,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,14,135,135,135,135,135,135,135,135,14,135,135,135,135,135,135,135,135,135,135,135,135,13

5,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,13

5,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,13

5,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,14,14,135,135,135,14,14,135,135,135,14,14,135,135,135,

135,135,135,135,135,14,14,135,135,135,14,14,135,135,135,14,14,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,76,76,76,135,135,135,135,135,135,135,1

35,135,135,135,135,76,76,76,135,135,76,76,76,135,135,135,101,101,101,101,101,101,135,135,135,76,76,76,135,14,14,76,76,135,135,135,101,14,14,14,14,101,135,135,135,76,76,14,14,102,14,76,76,135,135,135,1

01,14,2,2,14,101,135,135,135,76,76,14,102]});}},

{function Run(){maps.push({name="Vaufferino",author="cmodii",id="#1659131947",direction="forward",cost=134,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,17,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,21,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18

,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,11,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,12,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,12,5,5,5,5,5,5,5,

5,5,5,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,22,5,5,5,5,5,5,5,5,5,0,0,0,0,23,0,0,0,0,0,5,5,5,5,5,5,5,5,10,0,0,0,0,0,0,5,5,5,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,0,0

,0,0,5,0,0,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,5,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Big Dick Defense",author="Polynation",id="#1659314409",direction="forward",cost=273,elevation=-3,map=[0,0,0,0,24,24,132,2,2,132,24,24,24,0,0,0,0,0,0,0,0,0,0,0,24,24,24

,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,24,24,24,24,132,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,24,24

,24,24,21,24,132,24,24,24,24,0,0,0,0,0,0,0,0,0,24,132,24,21,21,21,24,24,132,24,24,0,0,0,0,0,0,0,0,0,24,24,21,21,21,21,21,24,24,24,24,0,0,0,0,0,0,0,0,24,24,21,21,21,21,21,21,21,24,132,24,0,0,0,0,0,0,0,

0,24,132,24,21,21,21,21,21,24,24,24,24,0,0,0,0,0,0,0,0,24,24,24,21,21,21,21,21,24,132,24,24,0,0,0,0,0,0,0,0,24,132,24,21,21,21,21,21,24,24,24,24,24,0,0,0,0,0,0,0,24,24,24,21,21,21,21,21,24,132,24,24,2

4,0,0,0,0,0,0,0,24,132,24,21,21,21,21,21,24,24,24,24,24,0,0,0,0,0,0,0,24,24,24,21,21,21,21,21,24,132,24,24,24,24,0,0,0,0,0,0,24,132,24,21,21,21,21,21,24,24,24,132,24,24,0,0,0,0,0,0,24,24,24,21,21,21,2

1,21,21,21,24,24,24,24,24,24,0,0,0,0,24,24,24,21,21,21,21,21,21,21,21,24,24,132,24,24,24,0,0,24,24,24,24,21,21,21,21,21,21,21,21,21,24,24,24,24,24,0,0,24,132,24,24,21,21,21,2,2,21,21,21,21,24,24,132,2

4,0]});}},

{function Run(){maps.push({name="Lips",author="MoistNoodlez",id="#1659480489",direction="forward",cost=516,elevation=0,map=[0,0,0,0,0,1,5,2,2,5,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,5,5,1,1,0,0,0,0,

0,0,0,0,0,0,0,1,5,5,5,82,82,5,5,1,1,1,0,0,0,0,0,0,0,0,0,1,5,82,5,82,82,82,82,5,5,1,1,0,0,0,0,0,0,0,1,1,5,82,5,5,82,82,82,82,5,5,1,0,0,0,0,0,0,0,1,5,5,82,82,5,82,82,82,82,5,5,1,1,0,0,0,0,0,1,1,5,82,82,

82,5,5,82,82,82,82,5,5,1,1,0,0,0,0,1,5,5,82,82,82,82,5,82,82,82,82,82,96,1,1,0,0,0,1,1,5,82,82,82,82,82,5,5,82,82,82,82,96,1,1,0,0,0,1,97,5,5,82,82,82,82,82,5,82,82,82,82,96,99,1,0,0,0,1,1,1,5,5,82,82

,82,82,5,82,82,82,82,96,96,1,0,0,0,0,1,1,1,5,82,82,82,82,5,82,82,82,82,5,5,1,0,0,0,0,1,5,98,5,82,82,82,82,5,5,82,82,82,5,5,1,0,0,0,1,1,5,98,82,82,82,82,82,82,5,82,82,82,5,5,1,0,0,0,1,100,5,98,82,82,82

,82,82,82,5,82,82,82,5,5,1,0,0,0,1,1,1,5,5,5,82,82,82,82,5,82,82,82,5,5,1,0,0,0,0,0,1,1,1,5,5,5,82,82,5,82,82,5,5,1,1,0,0,0,0,0,0,1,1,1,1,5,82,82,5,82,5,5,5,1,1,0,0,0,0,0,0,0,0,1,1,5,5,5,5,5,5,5,1,1,0

,0,0,0,0,0,0,0,0,0,1,1,5,2,2,5,5,1,1,1,0,0]});}},

{function Run(){maps.push({name="Eye",author="MoistNoodlez",id="#1659480976",direction="forward",cost=188,elevation=0,map=[0,0,0,0,0,0,9,2,2,9,9,9,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9,9,0,0,0,0

,0,0,0,9,9,9,9,0,0,0,0,0,9,9,9,9,9,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,9,9,9,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,9,9,0,0,0,5,5,5,5,5,5,5,0,0,0,0,0,9,9

,0,9,0,0,0,0,5,66,66,66,66,66,5,0,0,0,0,0,9,9,0,9,0,0,0,0,5,66,66,5,66,66,5,0,0,0,0,0,9,9,0,9,0,0,0,0,5,66,5,131,5,66,5,0,0,0,0,0,9,9,0,9,0,0,0,0,5,66,5,100,5,66,5,0,0,0,0,0,9,9,0,9,0,0,0,0,5,66,5,131

,5,66,5,0,0,0,0,0,9,9,0,9,0,0,0,0,5,66,66,5,66,66,5,0,0,0,0,0,9,9,0,9,9,0,0,0,5,66,66,66,66,66,5,0,0,0,0,0,9,9,0,0,9,0,0,0,5,5,5,5,5,5,5,0,0,0,0,0,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,9,9,0

,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,9,9,9,9,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,9,132,9,9,9,2,2,9,9,9,9,9,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Hot",author="MoistNoodlez",id="#1659494546",direction="right",cost=564,elevation=0,map=[0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,114,114,114,114,114,114,114,114,1

14,114,114,114,114,1,0,0,0,0,0,1,114,75,75,75,75,75,75,75,75,75,75,75,114,1,0,0,0,0,0,1,114,75,75,75,75,75,75,75,75,75,75,75,114,1,0,0,0,0,0,1,114,114,114,114,114,75,75,114,114,114,114,114,114,1,0,0,0

,0,0,1,1,1,1,1,114,75,75,114,1,1,1,1,1,1,0,0,0,0,0,1,114,114,114,114,114,75,75,114,114,114,114,114,114,1,0,0,0,0,0,1,114,75,75,75,75,75,75,75,75,75,75,75,114,1,0,0,0,0,0,1,114,75,75,75,75,75,75,75,75,

75,75,75,114,1,1,1,1,0,0,1,114,114,114,114,114,114,114,114,114,114,114,114,114,1,1,114,114,1,1,1,1,77,77,77,77,1,1,1,1,1,1,96,1,1,1,114,2,1,114,114,114,114,114,114,114,114,114,1,114,114,114,114,1,0,1,

114,2,1,114,76,76,76,76,76,76,76,114,77,114,80,80,114,1,1,1,96,114,1,114,76,76,76,76,76,76,76,114,77,114,80,80,114,114,114,114,114,1,1,114,76,76,94,14,93,76,76,114,77,114,80,80,80,80,80,80,114,1,1,114

,76,76,76,76,76,76,76,114,77,114,80,80,80,80,80,80,114,1,1,114,76,76,76,76,76,76,76,114,77,114,80,80,114,114,114,114,114,1,1,97,114,114,114,114,114,114,114,114,1,114,80,80,114,1,1,1,1,1,1,1,1,1,1,1,1,

1,1,1,1,114,114,114,114,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0]});}},

{function Run(){maps.push({name="Cold",author="MoistNoodlez",id="#1659495387",direction="forward",cost=358,elevation=0,map=[0,0,1,14,14,14,14,2,2,14,14,14,14,14,1,0,0,0,0,0,0,0,1,14,72,72,72,72,72,72,

72,72,72,14,1,0,0,0,0,0,0,0,1,14,72,72,72,72,72,72,72,72,72,14,1,0,0,0,0,0,0,0,1,14,72,72,14,14,14,14,14,72,72,14,1,0,0,0,0,0,0,0,1,14,72,72,14,1,1,1,14,72,72,14,1,0,0,0,0,0,0,0,1,14,72,72,14,1,97,1,1

4,72,72,14,1,0,0,0,0,0,0,0,1,14,72,72,14,1,14,1,14,72,72,14,1,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,1,1,1,14,67,67,67,67,67,14,1,1,1,0,0,0,0,0,0,0,0,0,1,14,67,94,94,94,67,14

,1,0,0,0,0,0,0,0,0,0,0,0,1,14,67,67,67,67,67,14,1,1,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,65,65,65,65,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,65,65,1,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,1,100,1,96,96,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,1,14,74,72,71,71,74,72,14,1,0,0,0,0,0,0,0,0,0,0,1,14,71,73,66,66,71,73,14,1,0,0,0,0,0,0,0,0,0

,0,1,14,14,71,71,71,71,14,14,1,0,0,0,0,0,0,0,0,0,0,1,1,14,14,2,2,14,14,1,1,0,0]});}},

{function Run(){maps.push({name="PropHouse",author="MoistNoodlez",id="#1659569960",direction="forward",cost=292,elevation=0,map=[0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0

,0,0,0,0,0,0,0,1,1,1,1,1,1,91,91,1,1,1,1,1,1,0,0,0,0,0,0,1,54,54,54,54,54,54,54,54,90,54,54,54,1,0,0,0,0,0,0,1,90,54,90,54,54,54,54,54,54,54,90,54,1,0,0,0,0,0,0,1,54,54,54,90,54,90,54,54,90,54,54,54,1

,0,0,0,0,0,0,1,54,54,90,54,54,54,54,90,54,90,54,90,1,0,0,0,0,0,0,1,54,54,54,54,90,54,90,54,54,54,54,54,1,0,0,0,0,0,0,1,54,54,90,54,90,54,54,54,90,54,90,54,1,0,0,0,0,0,0,1,90,54,54,54,54,54,90,54,90,54

,54,90,1,0,0,0,0,0,0,1,54,54,90,90,54,54,90,54,54,54,54,54,1,0,0,0,0,0,0,1,54,54,54,54,90,54,54,90,90,54,90,54,1,0,0,0,0,0,0,1,54,54,90,54,54,90,54,54,90,54,54,90,1,0,0,0,0,0,0,1,90,90,54,90,54,54,54,

90,54,90,54,54,1,0,0,0,0,0,0,1,54,54,90,54,54,90,54,54,54,54,90,54,1,0,0,0,0,0,0,1,90,54,54,90,54,54,90,54,90,90,54,54,1,0,0,0,0,0,0,1,54,90,54,54,54,54,54,54,90,54,90,54,1,0,0,0,0,0,0,1,1,1,1,1,1,91,

91,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="CTCheckpoint",author="MoistNoodlez",id="#1659570824",direction="forward",cost=224,elevation=0,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,91,91,20,20,20,20,20,20,0,0,0,0,0,0,20,54,54,54,54,54,54,54,54,54,54,54,54,20,0,0,0,0,0,0,20,54,93,54,54,54,54,54,54,54,54

,93,54,20,0,0,0,0,0,0,20,54,54,93,54,54,54,54,54,54,93,54,54,20,0,0,0,0,0,0,20,54,93,54,54,54,54,54,54,54,54,93,54,20,0,0,0,0,0,0,20,54,54,93,54,54,54,54,54,54,93,54,54,20,0,0,0,0,0,0,20,54,93,54,54,5

4,54,54,54,54,54,93,54,20,0,0,0,0,0,0,20,54,54,93,54,54,54,54,54,54,93,54,54,20,0,0,0,0,0,0,20,54,93,54,54,54,54,54,54,54,54,93,54,20,0,0,0,0,0,0,20,54,54,93,54,54,54,54,54,54,93,54,54,20,0,0,0,0,0,0,

20,54,93,54,54,54,54,54,54,54,54,93,54,20,0,0,0,0,0,0,20,54,54,93,54,54,54,54,54,54,93,54,54,20,0,0,0,0,0,0,20,54,93,54,54,54,54,54,54,54,54,93,54,20,0,0,0,0,0,0,20,54,54,54,54,54,54,54,54,54,54,54,54

,20,0,0,0,0,0,0,20,20,20,20,20,20,91,91,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="ZMCheckpoint",author="MoistNoodlez",id="#1659570976",direction="forward",cost=320,elevation=0,map=[0,1,14,14,14,14,14,14,2,2,14,14,14,14,14,14,1,0,0,0,0,1,14,14,14,14,

14,14,14,14,14,14,14,14,14,14,1,0,0,0,0,1,14,94,14,94,14,14,14,14,14,14,94,14,94,14,1,0,0,0,0,1,14,14,94,14,14,14,14,14,14,14,14,94,14,14,1,0,0,0,0,1,14,94,14,94,14,14,14,14,14,14,94,14,94,14,1,0,0,0,

0,1,14,14,94,14,14,14,14,14,14,14,14,94,14,14,1,0,0,0,0,1,14,94,14,94,14,14,14,14,14,14,94,14,94,14,1,0,0,0,0,1,14,14,94,14,14,14,14,14,14,14,14,94,14,14,1,0,0,0,0,1,14,94,14,94,14,14,14,14,14,14,94,1

4,94,14,1,0,0,0,0,1,14,14,94,14,14,14,14,14,14,14,14,94,14,14,1,0,0,0,0,1,14,94,14,94,14,14,14,14,14,14,94,14,94,14,1,0,0,0,0,1,14,14,94,14,14,14,14,14,14,14,14,94,14,14,1,0,0,0,0,1,14,94,14,94,14,14,

14,14,14,14,94,14,94,14,1,0,0,0,0,1,14,14,94,14,14,14,14,14,14,14,14,94,14,14,1,0,0,0,0,1,14,94,14,94,14,14,14,14,14,14,94,14,94,14,1,0,0,0,0,1,14,14,94,14,14,14,14,14,14,14,14,94,14,14,1,0,0,0,0,1,14

,94,14,94,14,14,14,14,14,14,94,14,94,14,1,0,0,0,0,1,14,14,94,14,14,14,14,14,14,14,14,94,14,14,1,0,0,0,0,1,14,94,14,94,14,14,14,14,14,14,94,14,94,14,1,0,0,0,0,1,14,14,14,14,14,14,2,2,14,14,14,14,14,14,

1,0,0,0]});}},

{function Run(){maps.push({name="Rise and shine",author="Luffaren",id="#1659643367",direction="right",cost=193,elevation=10,map=[0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,0,0,0,0

,0,0,0,0,0,0,9,9,9,9,9,9,9,90,9,9,0,0,0,0,0,0,0,0,0,0,9,65,65,65,65,9,9,9,90,9,0,0,0,0,0,0,0,0,0,0,9,65,65,65,65,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,9,65,65,65,65,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,9,65,65,65,65

,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,16,16,15,14,13,12,11,10,9,9,0,0,0,0,0,0,0,0,0,0,16,16,15,14,13,12,11,10,9,9,0,0,0,0,0,0,0,0,0,0,16,16,19,19,19,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,17,17,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,119,119,119,19,19,19,19,0,0,0,0,0,0,19,19,19,19,19,1,1,119,119,119,19,19,19,19,39,39,39,39,39,39,1

9,19,19,19,2,1,1,119,119,119,19,19,19,19,39,39,39,39,39,39,19,19,19,19,2,1,1,119,119,119,19,19,19,19,0,0,0,0,0,0,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Lazy Whirlpool",author="MoistNoodlez",id="#1659815171",direction="forward",cost=810,elevation=0,map=[1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,66,66,14,14,66,66,66,66,

73,73,73,66,66,66,66,66,128,100,1,1,66,66,66,66,66,66,66,66,73,73,73,66,73,66,66,73,66,66,1,1,66,66,72,66,66,66,66,66,73,73,73,66,66,73,66,66,66,73,1,1,66,66,66,66,66,72,66,66,73,73,73,66,66,66,66,73,

66,66,1,1,66,66,72,66,72,66,72,66,73,73,73,73,66,66,66,66,73,66,1,1,66,66,66,66,66,66,66,66,73,73,73,66,66,73,66,73,66,66,1,1,66,66,66,66,72,66,66,66,73,73,73,66,66,66,66,66,66,73,1,1,66,72,72,66,66,6

6,66,66,114,114,114,66,66,66,66,66,66,66,1,1,72,72,72,66,66,66,72,114,114,114,114,71,71,71,66,71,71,71,1,1,72,72,72,72,72,72,72,114,114,114,114,71,71,71,71,71,71,71,1,1,66,66,72,72,72,72,66,114,114,11

4,114,66,71,71,71,71,71,71,1,1,66,66,72,72,72,66,66,66,114,114,66,66,71,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,66,74,66,66,66,66,66,66,71,66,1,1,66,66,66,74,66,66,74,66,74,74,74,66,66,71,66,66,66,

66,1,1,66,66,74,66,66,66,66,66,66,74,74,66,66,71,66,66,71,66,1,1,66,74,66,74,66,74,66,74,66,74,74,66,66,66,66,66,66,66,1,1,129,66,66,66,66,66,66,66,66,74,74,71,66,66,66,66,66,66,1,1,100,66,66,74,66,66

,66,66,74,74,74,74,74,74,66,14,14,14,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1]});}},

{function Run(){maps.push({name="Kreedz",author="Asc3nded",id="#1659831754",direction="right",cost=262,elevation=13,map=[1,2,2,27,28,23,24,1,0,0,0,132,18,0,0,18,95,0,0,0,1,5,5,0,0,22,90,1,0,0,0,18,18,

0,0,18,95,0,1,1,1,5,5,0,0,29,24,1,0,0,0,0,0,0,0,0,0,0,18,2,1,5,5,0,0,1,1,1,7,135,135,24,135,95,8,0,1,0,18,2,1,5,5,0,0,0,6,1,7,24,135,135,135,95,8,0,1,1,1,1,1,5,5,0,0,0,94,1,27,0,0,0,0,0,0,0,29,11,0,1,

1,6,6,0,0,0,6,1,86,0,1,1,1,1,1,1,0,0,0,1,1,7,7,0,0,22,23,1,27,0,0,0,24,24,24,1,0,0,0,1,1,7,7,0,0,23,24,1,27,0,0,0,0,23,90,1,0,11,0,0,1,96,96,0,0,0,90,1,0,0,8,8,8,0,23,1,0,11,90,0,1,9,9,9,0,0,24,1,0,0,

8,131,8,0,22,1,0,11,11,0,1,9,1,9,0,0,0,1,0,0,8,8,8,0,0,1,0,0,29,0,1,9,1,9,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,9,1,9,0,0,0,0,0,0,4,4,4,0,0,1,0,11,11,11,1,9,1,9,0,0,0,0,0,0,18,1,18,0,0,1,0,11,11,11,1,9,1,

9,0,0,0,0,0,0,24,24,24,0,0,1,0,11,11,11,1,9,1,1,1,0,0,0,0,0,19,93,19,0,0,1,0,0,0,30,1,9,9,9,96,0,10,10,0,0,0,0,0,0,1,1,0,0,0,0,1,9,9,9,96,0,10,10,0,0,27,27,27,27,0,0,27,28,29,0,1,9,9,97,1,0,0,0,0,1,1,

1,1,1,0,1,1,1,1,0]});}},

{function Run(){maps.push({name="MAKOOOO1",author="Headhunterz",id="#1659889127",direction="right",cost=230,elevation=-16,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,21,21,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,21,21,0,0,0,0,0,0,0,0

,1,1,1,1,1,1,1,1,1,0,21,21,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,21,21,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,21,21,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,21,21,21,21,21,21,21,91,91,21,121,121,121,121,1,1,1,1

,1,0,21,21,21,21,21,21,21,91,91,21,121,121,121,121,1,1,1,1,1,0,21,21,0,0,0,0,0,0,0,1,1,1,95,95,1,1,1,1,1,0,21,21,0,0,0,0,0,0,0,1,1,1,121,121,1,1,1,1,1,0,21,21,0,0,0,0,0,0,0,1,1,1,121,121,1,1,1,1,1,0,2

1,21,0,0,0,0,0,0,0,0,1,1,121,121,121,95,121,105,105,0,21,21,0,0,0,0,0,0,0,0,1,1,121,121,121,95,121,105,2,0,21,21,0,0,0,0,0,0,0,0,0,1,121,121,121,95,92,105,2,0,21,93,0,0,0,0,0,0,0,0,0,1,121,121,121,95,

121,105,105,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="quickie holdie",author="king buzzo",id="#1659902090",direction="left",cost=261,elevation=11,map=[0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,5,5,5,5,6,0,0,

0,0,0,0,0,2,16,16,16,16,0,0,6,6,6,6,6,6,0,0,0,0,0,0,0,2,16,76,76,16,0,0,90,65,65,65,65,90,0,0,0,0,0,0,0,0,16,16,76,16,0,0,7,1,7,1,7,6,0,0,0,0,0,0,0,0,0,16,76,16,0,0,7,65,7,65,7,6,0,0,0,0,0,0,0,16,16,1

6,16,16,0,0,7,7,7,7,7,6,0,0,0,0,0,0,0,16,1,1,16,0,0,0,0,7,7,7,0,0,0,0,0,0,0,0,0,16,16,16,16,0,0,0,1,95,95,95,1,0,0,0,0,0,0,0,0,0,130,130,0,0,0,0,0,7,7,7,0,0,0,0,0,0,0,0,0,0,130,130,0,0,0,0,0,7,7,7,7,1

30,130,130,130,7,7,93,0,0,130,130,0,0,0,0,0,7,7,7,7,130,130,130,130,7,7,7,0,0,24,24,0,0,0,0,0,7,7,0,0,0,0,0,0,94,7,7,0,0,24,24,0,0,0,10,8,7,7,8,10,0,0,0,0,130,130,130,0,0,91,91,0,0,0,10,8,8,8,8,10,0,0

,0,0,130,130,130,0,0,91,91,0,0,0,10,10,10,10,10,10,0,0,0,0,130,130,130,0,0,24,24,0,0,1,1,1,95,95,1,0,0,0,0,0,130,130,130,0,0,24,24,24,24,92,0,0,10,95,10,8,7,0,0,92,7,7,7,0,0,24,24,24,24,92,0,0,10,95,1

0,8,7,0,0,92,7,7,7,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Bussy",author="MoistNoodlez",id="#1659903542",direction="forward",cost=191,elevation=0,map=[0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,14,14,0,0,0

,0,0,0,1,1,100,1,1,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,1,17,124,17,1,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,1,14,67,14,1,0,0,0,0,0,0,0,95,95,0,0,0,0,0,0,1,14,125,14,1,0,0,0,0,1,1,1,111,111,1,1,1,0,0,0,1,88,14,88

,1,0,0,0,0,0,0,1,113,113,1,0,0,0,0,0,1,88,14,88,1,0,0,0,0,0,0,1,115,115,1,0,1,1,1,1,1,88,14,88,1,0,0,0,0,0,0,1,117,117,1,0,1,88,14,88,14,88,14,88,1,0,0,0,0,0,0,1,119,119,1,0,1,14,88,14,88,14,14,88,1,0

,0,0,0,0,0,1,121,121,1,0,1,88,14,14,14,14,14,88,1,0,0,0,0,0,0,1,123,123,1,1,1,1,113,113,1,17,14,14,1,0,0,0,0,0,0,1,123,95,121,119,117,115,113,113,1,124,14,14,1,0,0,0,0,0,0,1,95,123,121,119,117,115,113

,113,1,17,14,14,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1]});}},

{function Run(){maps.push({name="fast lava uwu",author="king buzzo",id="#1659904100",direction="right",cost=347,elevation=12,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,34,34,34,90,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,34,76,76,34,1,1,1,1,0,0,0,0,0,0,0,0,1,34,34,34,3

4,76,76,34,34,34,34,1,0,0,0,0,0,0,0,0,1,34,76,76,76,76,76,76,76,76,34,1,0,0,0,0,0,0,34,34,34,86,76,34,34,1,1,34,34,76,86,1,0,90,24,24,2,34,34,34,1,34,76,76,76,1,1,76,76,76,34,1,0,24,65,24,2,34,1,34,1,

34,34,34,34,1,1,34,34,34,34,1,0,24,24,24,0,34,0,34,0,24,24,24,34,24,24,34,24,24,24,1,0,130,130,130,0,0,0,0,0,24,34,34,34,24,24,34,34,34,24,1,0,130,130,130,0,34,34,34,0,85,76,76,1,92,92,1,76,76,85,1,0,

130,130,130,0,0,0,36,0,24,34,76,1,34,34,1,76,34,24,1,0,130,130,130,0,0,0,38,0,24,34,34,34,90,34,34,34,90,24,1,0,130,130,130,0,0,1,95,1,24,24,24,24,76,76,24,24,24,24,1,24,24,24,24,24,0,0,40,0,0,0,0,24,

90,24,24,1,1,1,1,24,76,76,76,24,0,0,40,40,92,24,24,0,24,24,1,1,1,1,1,24,76,76,76,24,0,0,0,0,0,0,0,0,95,95,24,24,86,24,86,24,24,24,24,90]});}},

{function Run(){maps.push({name="Caged Out",author="ZpLit",id="#1659923628",direction="forward",cost=262,elevation=-6,map=[0,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,11,11,11,0,0,0,1,11,11,1,0,0,0,11

,11,11,0,0,0,11,11,11,11,11,0,0,11,11,11,11,0,0,11,11,11,11,11,0,11,11,11,1,11,11,11,11,11,11,11,11,11,11,11,11,1,11,11,11,11,11,1,0,1,11,11,11,11,0,0,11,11,11,11,1,0,1,11,11,11,11,1,0,1,1,0,0,0,0,0,0

,0,0,1,1,0,1,11,11,11,11,1,1,15,92,0,0,0,15,15,0,0,0,92,15,1,1,11,11,11,11,11,1,4,0,0,94,20,127,127,20,94,0,0,4,1,11,11,11,0,11,11,11,11,0,0,0,19,0,0,19,0,0,0,11,11,11,11,0,0,0,11,11,11,31,31,31,31,87

,87,31,31,31,31,11,11,11,0,0,0,0,0,11,31,31,31,31,31,31,31,31,31,31,31,31,11,0,0,0,1,1,0,0,31,31,31,0,0,0,0,0,0,31,31,31,0,0,0,0,1,30,0,0,30,30,0,0,0,0,0,0,0,0,30,30,0,0,0,0,1,28,28,29,30,30,0,0,0,94,

94,0,0,0,30,30,30,29,32,1,1,28,0,0,29,29,0,0,0,32,32,0,0,0,29,29,0,0,0,1,1,31,0,0,28,28,1,0,0,0,0,0,0,1,28,28,0,34,1,1,33,0,0,0,27,27,1,1,1,34,34,1,1,1,27,27,0,0,36,97,97,0,0,0,27,27,26,25,96,105,105,

96,25,26,27,27,0,0,0,0,0,0,0,0,27,27,26,25,96,105,105,96,25,26,27,27,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="pyramid scheme",author="king buzzo",id="#1659925902",direction="forward",cost=184,elevation=7,map=[0,25,25,25,25,25,25,25,25,2,2,25,25,25,25,25,25,25,25,0,0,25,0,26,0,

26,0,26,0,26,0,26,0,26,0,26,0,26,0,0,0,0,26,0,27,0,27,0,27,0,27,0,27,0,27,0,27,0,25,0,0,25,0,27,0,28,0,28,0,28,0,28,0,28,0,28,0,26,0,0,0,0,26,0,28,0,29,0,29,0,29,0,29,0,29,0,27,0,25,0,0,25,0,27,0,29,0

,30,0,30,0,30,0,30,0,28,0,26,0,0,0,0,26,0,28,0,30,0,31,0,31,0,31,0,29,0,27,0,25,0,0,25,0,27,0,29,0,31,0,32,0,32,0,30,0,28,0,26,0,0,0,0,26,0,28,0,30,0,32,13,13,0,31,0,29,0,27,0,25,0,0,25,0,27,0,29,0,31

,0,13,13,32,0,30,0,28,0,26,0,0,0,0,26,0,28,0,30,0,24,95,95,24,0,0,29,0,27,0,25,0,0,25,0,27,0,29,0,0,0,13,13,0,0,0,0,28,0,26,0,0,0,0,26,0,28,0,0,0,24,95,95,24,0,0,0,0,27,0,25,0,0,25,0,27,0,0,0,0,0,13,1

3,0,0,0,0,0,0,26,0,0,0,0,26,0,0,0,0,0,24,95,95,24,0,0,0,0,0,0,25,0,0,25,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,95,95,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,13,91,91,91,91,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,91,2,2,91,13,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="rampescape",author="king buzzo",id="#1659955220",direction="left",cost=239,elevation=19,map=[24,24,24,24,24,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,24,24,24,132,24,0,0,5,5,5,5,0

,0,0,0,19,131,19,0,0,2,24,24,24,24,0,0,5,65,65,5,0,0,0,0,0,19,0,0,0,2,24,0,0,0,0,0,5,65,65,5,0,0,0,0,19,0,19,0,0,24,24,0,0,0,0,0,5,5,5,5,0,0,0,0,0,19,0,0,0,24,24,0,12,12,12,12,12,12,12,95,12,0,0,0,19,

19,19,19,0,0,0,0,12,11,10,9,8,7,6,5,0,0,0,0,19,59,59,19,0,0,0,0,12,11,10,9,8,7,6,5,0,0,0,0,19,59,59,19,0,0,0,19,95,19,19,19,19,19,19,19,0,0,0,0,0,24,24,0,0,0,0,0,12,19,19,19,19,19,19,19,0,0,0,0,24,76,

76,24,0,0,0,0,12,13,14,15,16,17,18,19,0,0,0,24,76,76,76,24,0,0,0,0,12,13,14,15,16,17,18,19,0,0,95,76,76,76,76,24,0,0,0,0,24,24,24,24,24,24,24,19,24,24,95,24,24,24,76,24,0,0,0,0,24,24,24,23,22,21,20,19

,0,0,95,76,76,76,76,24,0,0,0,0,24,24,24,23,22,21,20,19,0,0,0,24,76,76,76,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,76,76,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="dropper",author="king buzzo",id="#1659988033",direction="forward",cost=274,elevation=-19,map=[0,0,24,2,2,24,0,0,0,0,0,24,24,24,24,65,5,5,5,0,0,1,24,24,24,24,1,0,0,0,1,

24,132,132,24,1,5,94,5,0,0,0,24,24,24,24,0,0,0,0,0,24,24,24,24,65,5,5,5,0,0,0,19,24,24,19,0,0,0,0,0,19,24,24,19,65,5,5,5,0,0,0,19,65,65,19,0,0,0,0,0,19,65,65,19,65,5,93,5,0,0,1,19,65,65,19,1,0,0,0,1,1

9,65,65,19,1,5,5,5,0,0,0,19,19,19,19,0,0,0,0,0,19,19,19,19,92,5,5,5,0,0,0,14,19,19,14,0,0,0,0,0,14,19,19,14,92,5,5,5,0,1,97,14,65,65,14,97,1,0,1,99,14,65,65,14,99,1,0,0,0,0,1,14,65,65,14,1,0,0,0,1,14,

65,65,14,1,0,0,0,0,0,0,1,96,96,1,0,0,0,0,0,1,98,98,1,0,0,0,0,0,0,0,9,14,14,9,0,0,0,0,0,9,14,14,9,0,0,0,0,0,0,0,9,65,65,9,0,0,0,0,0,9,65,65,9,0,0,0,0,0,0,1,9,65,65,9,1,0,0,0,1,9,65,65,9,1,0,0,0,0,0,0,9

,9,9,9,0,0,0,0,0,9,9,9,9,0,0,0,0,0,0,0,5,9,9,5,0,0,0,0,0,5,9,9,5,0,0,0,0,0,0,0,5,65,65,5,0,0,0,0,0,5,65,65,5,0,0,0,0,0,0,1,5,65,65,5,1,0,0,0,1,5,65,65,5,1,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,5,5,5,5,0,0,0,0

,0,0,0,0,131,131,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="1",author="fantasy",id="#1659990513",direction="forward",cost=400,elevation=0,map=[5,5,5,5,5,5,5,5,24,2,2,24,5,5,5,5,5,5,5,5,5,93,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,93,5,

5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,94,5,5,94,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,

5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,

5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,94,5,5,94,5,5,5,5,5,5,

5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,93,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,93,5,5,5,5,5,5,5,5,5,24,2,2,24,5,5,5,5,5,5,5,5]});}},

{function Run(){maps.push({name="2",author="fantasy",id="#1659990530",direction="forward",cost=52,elevation=0,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0]});}},

{function Run(){maps.push({name="3",author="fantasy",id="#1659990548",direction="right",cost=90,elevation=0,map=[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,24,24,24,24,0,0,0,0,0,0,0,0

,0,0,0,0,24,24,0,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,0,24,24,24,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,24,24,0,0,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,24,24,24,0,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0

,0,0,24,24,0,0,0,0,24,24,24,24,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}

);}},

{function Run(){maps.push({name="4",author="fantasy",id="#1659990565",direction="forward",cost=268,elevation=19,map=[0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0

,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0

,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0

,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,3,5,5,5,5,5,5,5,5,5,3,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,

24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,2,2,24,24,24,2

4,24,24,24,24,24,24,24,24,24,24,100]});}},

{function Run(){maps.push({name="6",author="fantasy",id="#1659990613",direction="forward",cost=52,elevation=0,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="7",author="fantasy",id="#1659990633",direction="forward",cost=617,elevation=0,map=[1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,66,66,66,66,66,66,66,5,5,66,66,66,66,66,66

,66,100,66,1,1,66,66,66,66,66,66,66,5,5,66,66,66,66,66,66,66,5,66,1,1,66,66,66,66,66,66,66,5,5,66,66,66,66,66,66,66,5,66,1,1,66,66,66,66,66,66,66,5,5,66,66,66,66,66,66,66,5,66,1,1,66,66,66,66,66,66,66

,5,5,66,66,66,66,66,66,66,5,66,1,1,66,66,66,66,66,66,66,5,5,66,66,66,66,66,66,66,5,66,1,1,66,66,66,66,66,66,66,5,5,66,66,66,66,66,66,66,5,66,1,1,66,66,66,66,66,66,66,5,5,66,66,66,66,66,66,66,5,66,1,1,

66,66,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,66,66,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,66,66,5,5,66,66,66,5,5,66,66,66,5,5,66,66,66,66,1,1,66,66,5,5,66,66,66,5,5,66,66,66,5,5,66,66,66,66,1,1,66,66,5,5,66

,66,66,5,5,66,66,66,5,5,66,66,66,66,1,1,66,66,5,5,66,66,66,5,5,66,66,66,5,5,66,66,66,66,1,1,66,66,5,5,66,66,66,5,5,66,66,66,5,5,5,5,5,5,1,1,66,66,5,5,66,66,66,5,5,66,66,66,5,5,5,5,93,5,1,1,66,66,5,5,6

6,66,66,94,5,66,66,66,66,66,66,66,66,66,1,1,66,66,5,5,66,66,66,5,5,66,66,66,66,66,66,66,66,66,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="8",author="fantasy",id="#1659990651",direction="forward",cost=280,elevation=0,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,17,17,17,17,17,17,16,0,0,0,0,

0,0,0,0,0,0,0,16,17,17,17,17,17,17,17,17,17,17,16,0,0,0,0,0,0,0,0,17,17,17,18,18,18,18,17,17,17,17,17,16,0,0,0,0,0,0,16,17,17,17,18,18,19,19,18,18,17,17,17,16,0,0,0,0,0,16,17,17,17,18,18,19,19,19,19,1

8,18,17,17,16,0,0,0,0,0,16,17,17,18,18,18,19,19,19,19,18,18,17,17,17,0,0,0,0,0,16,17,17,18,18,19,19,20,20,19,19,18,18,17,17,16,0,0,0,0,16,17,17,18,18,19,19,20,20,19,19,18,18,18,17,16,0,0,0,0,17,17,17,

18,18,19,19,20,21,20,19,19,18,18,17,17,0,0,0,0,17,17,17,18,18,19,19,20,21,20,19,19,18,18,17,17,16,0,0,0,17,17,17,18,18,18,19,19,20,21,20,19,19,18,18,17,16,0,0,0,16,17,17,18,18,18,19,19,19,20,21,19,19,

18,18,17,16,0,0,0,0,16,17,17,18,18,18,19,19,20,20,20,20,19,18,17,17,0,0,0,0,16,17,17,17,17,18,18,18,19,19,19,19,19,18,17,17,16,16,0,0,0,16,17,17,17,17,18,18,18,18,18,18,18,18,17,17,15,16,16,0,0,0,16,1

6,17,17,17,17,18,18,18,18,18,18,17,17,15,15,15,16,0,0,0,0,16,16,16,17,17,17,17,17,17,17,17,16,14,14,15,16,0,0,0,0,0,0,0,16,17,17,17,17,17,17,17,0,100,14,15,16,16,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0]});}},

{function Run(){maps.push({name="9",author="fantasy",id="#1659990670",direction="right",cost=246,elevation=0,map=[7,2,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,7,

7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,7,7,0,0,0,0,0,0,0,0,7,7,7,7,0,0,0,0,8,94,7,7,7,7,0,0,0,0,0,7,7,7,93,7,7,0,0,0,8,8,

8,8,7,7,7,0,0,0,0,7,7,9,9,7,7,0,0,0,9,9,9,8,8,7,7,0,0,0,7,7,7,10,9,9,7,7,0,0,9,9,9,9,8,8,7,7,0,0,7,9,10,11,11,10,9,7,0,0,9,10,10,11,9,8,7,7,0,0,7,9,11,15,15,13,9,7,0,0,9,10,11,11,9,8,7,7,0,7,7,13,17,1

6,16,17,10,7,0,0,10,10,11,11,11,8,7,7,7,7,9,17,17,14,12,17,17,7,0,0,12,12,12,11,11,8,8,7,7,9,9,17,14,8,8,8,13,7,0,0,12,12,11,11,12,12,11,11,11,13,16,14,8,7,7,8,12,7,0,0,12,12,11,11,13,13,14,15,15,17,1

4,8,7,7,7,7,8,7,7,0,13,14,13,13,15,15,15,17,16,14,12,8,7,0,0,7,7,8,7,2,14,15,15,15,15,17,17,17,14,8,8,7,0,0,0,0,7,7,7,2,14,15,16,16,16,17,16,14,12,8,7,7,0,0,0,0,0,0,0,0,100,15,16,17,17,17,16,14,12,8,7

,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="10",author="fantasy",id="#1659990694",direction="left",cost=280,elevation=16,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,1

8,18,18,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,19,19,19,19,17,16,16,8,0,0,0,0,0,0,0,0,0,6,6,6,19,19,19,19,17,16,94,8,8,0,0,0,0,6,6,6,6,6,6,6,20,20,20,19,17,16,16,16,8,0,0,0,6,6,7,7,7,6,6,0,2,22,21,19,17,16,14,

16,8,0,0,0,6,7,8,7,6,0,0,0,2,22,21,19,17,17,14,14,7,0,0,6,6,7,8,8,6,0,0,0,22,22,21,19,19,17,17,14,7,7,0,6,7,8,8,8,6,0,0,6,21,21,20,20,19,16,16,14,12,7,0,6,7,8,8,6,6,0,6,6,20,20,20,20,18,18,16,13,11,7,

0,6,7,9,7,6,0,0,0,0,20,20,20,19,18,18,16,13,11,7,7,6,7,9,7,6,0,0,7,7,20,20,20,18,18,15,15,13,12,11,7,7,9,9,7,6,0,0,0,7,19,19,20,18,17,15,15,13,12,10,10,10,10,9,9,6,0,0,0,0,19,19,19,17,15,15,14,13,12,1

2,11,10,10,9,6,6,0,0,8,8,17,17,19,93,15,14,14,13,12,12,11,10,10,9,6,0,0,0,0,0,17,17,17,15,15,14,13,13,12,94,11,10,9,9,6,0,0,0,9,0,15,15,15,14,14,14,13,12,11,11,10,10,9,9,6,0,0,0,0,0,15,15,15,14,12,11,

11,11,11,10,11,11,11,9,6,0,0,0,0,10,15,15,11,11,11,11,11,11,11,11,11,11,9,9,0,0,0,0,10,100]});}},

{function Run(){maps.push({name="12",author="fantasy",id="#1659990739",direction="forward",cost=87,elevation=0,map=[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,

16,16,16,16,16,0,16,127,127,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,16,127,127,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,130,130,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,16,0,0,130,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}}

,

{function Run(){maps.push({name="13",author="fantasy",id="#1659990768",direction="forward",cost=243,elevation=0,map=[0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,53,53,53,53,53,53,53,53,53,

53,53,53,0,0,0,0,0,0,0,1,53,53,53,53,53,53,53,53,53,53,53,53,0,0,0,0,0,0,1,1,53,53,53,53,53,53,53,53,53,53,53,53,0,0,0,0,0,0,1,53,53,53,53,53,53,24,13,13,24,53,53,53,0,0,0,0,0,0,1,53,53,53,53,53,53,13

,66,66,13,53,53,53,0,0,0,0,0,0,1,53,53,53,53,53,53,13,66,66,13,53,53,53,0,0,0,0,0,0,1,53,53,53,53,24,13,24,66,66,24,53,53,53,0,0,0,0,0,0,1,53,53,53,53,13,13,66,66,66,13,53,53,53,0,0,0,0,0,0,1,53,53,53

,53,13,13,66,66,66,13,53,53,53,0,0,0,0,0,0,1,1,53,53,53,24,66,66,66,24,13,53,53,53,0,0,0,0,0,0,0,1,1,1,1,1,1,66,24,13,53,53,53,53,0,0,0,0,0,0,0,0,0,0,0,0,1,13,13,13,53,53,53,53,0,0,0,0,0,0,0,0,0,0,0,0

,1,53,53,53,53,53,53,53,0,0,0,0,0,0,0,0,0,0,0,0,1,53,53,53,53,53,53,53,0,0,0,0,0,0,0,0,0,0,0,0,1,53,53,53,53,53,53,53,0,0,0,0,0,0,0,0,0,0,0,0,1,53,53,53,53,53,53,53,0,0,0,0,0,0,0,0,0,0,0,0,1,53,53,53,

53,53,53,53,0,0,0,0,0,0,0,0,0,0,0,0,1,1,53,53,53,53,53,53,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2]});}},

{function Run(){maps.push({name="14",author="fantasy",id="#1659990785",direction="forward",cost=271,elevation=0,map=[0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,118,118,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,1,118,118,118,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,118,118,118,118,118,118,118,1,1,0,0,0,0,0,0,0,0,0,1,1,118,118,118,118,118,118,118,118,1,1,0,0,0,0,0,0,0,0,1,118,118,118,118,90,118,94,118,118,118,1

,0,0,0,0,0,0,0,0,1,118,118,118,118,118,118,118,118,118,118,1,0,0,0,0,0,0,0,0,1,118,118,90,118,118,118,118,118,118,118,1,0,0,0,0,0,0,0,0,1,118,118,118,118,118,118,90,118,118,118,1,0,0,0,1,1,0,0,0,1,118

,118,118,118,118,118,118,118,118,118,1,0,0,1,1,1,1,0,0,1,118,118,118,118,118,118,118,118,118,118,1,0,0,1,18,18,1,1,0,1,118,118,118,118,118,118,118,118,118,118,1,1,1,1,66,66,18,1,0,1,93,118,1,1,1,1,118

,118,118,118,118,1,1,18,66,66,100,1,0,1,1,1,1,0,0,1,118,118,118,118,118,24,18,66,66,66,18,1,0,0,0,0,0,0,0,1,118,118,118,118,118,118,18,66,66,66,18,1,0,0,0,0,0,0,0,1,118,118,90,118,118,118,18,66,66,66,

18,1,0,0,0,0,0,0,0,1,118,118,118,118,118,24,18,66,66,66,18,1,0,0,0,0,0,0,0,1,1,118,118,1,1,1,18,66,66,18,1,1,0,0,0,0,0,0,0,0,1,118,118,1,0,1,1,18,18,1,1,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,1,1,1,1,0,0]});}}

,

{function Run(){maps.push({name="15",author="fantasy",id="#1659990804",direction="forward",cost=165,elevation=-12,map=[0,0,0,0,0,0,0,0,0,0,0,1,57,57,57,2,2,57,57,1,0,0,0,0,0,0,0,0,0,0,0,1,57,57,57,57,

57,57,90,1,0,0,0,0,0,0,0,0,0,0,0,1,57,90,57,57,57,57,57,1,0,0,0,0,0,0,0,0,0,0,0,1,57,57,57,57,57,57,57,1,0,0,0,0,0,0,0,0,0,0,0,1,57,57,57,57,57,90,57,1,0,0,0,0,0,0,0,0,0,0,0,1,57,90,57,57,57,57,57,1,0

,0,0,0,0,0,0,0,0,0,0,1,57,57,57,57,57,57,57,1,0,0,0,0,0,0,0,0,0,0,0,1,57,57,57,90,57,57,57,1,0,0,0,0,0,0,0,0,0,0,0,1,57,57,57,57,57,90,57,1,0,0,0,0,0,0,0,0,0,0,0,1,57,57,90,57,57,57,57,1,0,0,0,0,0,0,0

,0,0,0,0,1,131,57,57,57,57,57,131,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,132,132,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

1,5,5,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,90,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,5,90,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,2,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,

0]});}},

{function Run(){maps.push({name="16",author="fantasy",id="#1659990824",direction="forward",cost=104,elevation=1,map=[0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,5,5,5,6,1,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,5,5,5,6,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,6,6,1,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,1,6,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,6,1,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,1,6,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0]});}},

{function Run(){maps.push({name="19",author="fantasy",id="#1659990890",direction="right",cost=195,elevation=0,map=[0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,46

,46,46,46,46,46,46,46,46,46,46,46,46,46,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,46,2,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,4

6,46,2,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46

,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,46,46,1,0,0,0,0,0,46,46,46,46,46,46,

46,46,46,46,46,46,46,46,1,0,0,0,0,0,100,46,46,46,46,46,46,46,46,46,46,46,46,46,1,0,0,0,0,0]});}},

{function Run(){maps.push({name="20",author="fantasy",id="#1659990914",direction="right",cost=404,elevation=0,map=[1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,

24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24

,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,100,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,2,24,24,24,24,24,24,24,24,2

4,24,24,24,24,24,24,24,24,24,24,2,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,2

4,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,1,24,100,24,1,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,1,24,24,24,1,24,24,24,24,24,24,24,24,24,24,24,

24,24,24,24,1,1,1,1,1,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,2

4,24,24,24,24,24,24,24,24,100,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,100]});}},

{function Run(){maps.push({name="21",author="fantasy",id="#1659990935",direction="left",cost=38,elevation=0,map=[0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0

,0,0,0,0,0,0,0,2,18,18,18,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,2,18,18,18,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="23",author="fantasy",id="#1659990978",direction="forward",cost=303,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,0,0,0,0,0

,0,0,0,0,0,32,32,33,33,33,33,33,33,33,32,32,24,24,0,0,0,0,0,0,32,32,33,33,33,33,33,33,33,33,33,32,24,24,24,24,0,0,0,32,32,33,33,33,33,33,33,33,33,33,33,32,24,24,24,24,0,0,0,32,33,33,33,33,33,33,33,33,

33,33,33,32,24,24,24,24,24,0,0,32,33,33,33,33,33,33,33,33,33,32,32,32,24,24,24,24,24,0,32,32,33,33,33,33,33,33,32,32,32,32,24,24,24,24,24,24,24,0,32,33,33,33,33,33,33,32,32,24,24,24,24,24,24,24,24,24,

24,0,32,33,33,33,33,33,33,32,24,24,24,24,24,24,24,24,24,24,24,0,32,33,33,33,33,33,33,32,24,24,24,24,24,24,24,24,24,24,24,0,32,33,33,33,33,33,33,32,32,24,24,24,24,24,24,24,24,24,24,0,32,32,33,33,33,33,

33,33,32,32,24,24,24,24,24,24,24,24,24,0,0,32,33,33,33,33,33,33,33,32,32,32,24,24,24,24,24,24,24,0,0,32,33,33,33,33,33,33,33,33,33,32,32,32,24,24,24,24,24,0,0,32,32,33,33,33,33,33,33,33,33,33,33,32,24

,24,24,24,0,0,0,0,32,33,33,33,33,33,33,33,33,33,33,32,24,24,24,24,0,0,0,0,0,32,32,33,33,33,33,33,33,33,33,32,24,24,24,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,

0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="24",author="fantasy",id="#1659991005",direction="right",cost=111,elevation=0,map=[109,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,109,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,109,109,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,109,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,109,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,109,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,109,109,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,109,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,109,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,109,109,0,0,0,0,0,0,0,109,109,109,109,0,0,0,0,0,0,109,109,109,109,0,0,1

09,109,109,109,109,109,109,109,109,0,0,0,0,0,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,0,0,0,0,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,0,0,0,109,109,1

09,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,2,0,0,109,109,109,109,109,0,0,0,0,0,0,0,109,109,109,109,109,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="25",author="fantasy",id="#1659991028",direction="forward",cost=94,elevation=-17,map=[0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,18,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,

0,0,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,10,1

0,10,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0]});}

},

{function Run(){maps.push({name="26",author="fantasy",id="#1659991048",direction="forward",cost=160,elevation=-8,map=[0,0,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,1,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,13,13,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,1,13,13,13,13,13,13,13,1,1,1,1,1,1,1,1,0,0,0,0,1,13,13,13,13,13,13,13,12,11,11,11,10,9,9,1,0,0,0,0,1,13,13,13,13,13,13,13,12,11,10,10,10,8,9,1,0,0,0,0,1,1,1,1,1,1,1,1,12,11,10,9,8,8,9,1

,0,0,0,0,0,0,0,0,0,0,0,1,11,11,10,9,8,8,9,1,0,0,0,0,0,0,0,0,0,0,1,1,11,10,10,9,7,8,9,1,0,0,0,0,0,0,0,0,0,0,1,11,11,10,9,9,7,8,8,1,0,0,0,0,0,0,0,0,0,0,1,10,10,10,9,7,7,7,1,1,0,0,0,0,0,0,0,0,0,0,1,10,9,

9,9,7,7,7,1,0,0,0,0,0,0,0,0,0,0,0,1,10,9,8,8,8,7,6,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,6,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0]});}},

{function Run(){maps.push({name="28",author="fantasy",id="#1659991095",direction="forward",cost=181,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,5,5,5,6,6,5,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,6,6,7,6,6,5,0,0,0,0,0,0,0,0,0,0,0,5,5,6,6,7,7,7,6,6,5,0,0,0,0,0,0,0,0,0,0,5,6,6,7,8,8,7,7,6,5,0,0,0,0,0,0,0,0,0,0,5,6,7,7,8,8,8,8,7,5,0,0,0,0,0,0,0,0

,0,5,6,6,7,9,9,9,10,8,7,5,0,0,0,0,0,0,0,0,0,5,6,8,8,10,10,10,10,8,8,8,5,0,0,0,0,0,0,0,0,5,6,8,10,12,11,11,11,11,9,8,5,0,0,0,0,0,0,0,0,5,8,8,9,12,14,13,10,11,9,7,5,0,0,0,0,0,0,0,0,5,7,8,9,12,15,16,14,1

0,10,7,5,0,0,0,0,0,0,0,0,5,7,7,9,11,11,13,13,12,10,7,5,0,0,0,0,0,0,0,0,5,6,7,9,9,11,13,12,11,8,6,5,0,0,0,0,0,0,0,0,5,5,6,7,9,9,10,8,8,6,6,5,0,0,0,0,0,0,0,0,0,5,5,6,7,9,9,8,7,6,5,5,0,0,0,0,0,0,0,0,0,0,

5,5,6,6,8,8,7,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,6,6,6,6,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="30",author="fantasy",id="#1659991139",direction="forward",cost=202,elevation=0,map=[0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,6,6,6,6,5,5,5,0,0,0,0,0,0,0,0,0,0,0,5,6,6,6,6,6,6,5,5,5,0,0,0,0,0,0,0,0,0,5,5,6,6,7,7,6,6,6,5,5,5,0,0,0,0,0,0,0,0,5,5,6,7,7,7,6,6,6,5,5,5,0,0,0,0,0,0,0,0

,5,5,6,7,7,8,7,6,6,6,5,5,0,0,0,0,0,0,0,0,5,5,6,7,7,8,7,7,6,6,6,5,5,0,0,0,0,0,0,0,5,5,6,6,7,8,8,7,6,6,6,6,5,0,0,0,0,0,0,0,5,5,6,6,7,7,8,7,6,6,6,6,5,0,0,0,0,0,0,0,5,5,5,6,6,7,8,8,7,7,6,6,5,0,0,0,0,0,0,0

,5,5,5,6,6,7,7,8,7,7,6,6,5,0,0,0,0,0,0,0,5,5,5,6,6,6,6,7,7,7,6,6,5,0,0,0,0,0,0,0,5,5,5,5,6,6,6,6,6,6,6,5,5,0,0,0,0,0,0,0,0,5,5,5,5,6,6,6,6,6,6,5,5,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0

,0,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2,2,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="32",author="fantasy",id="#1659991185",direction="right",cost=346,elevation=0,map=[0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,112,112,112,114,1,0,0,0,0,0,0,0,0,0,0,0

,0,0,1,112,112,113,113,114,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,112,112,113,113,114,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,112,113,113,114,114,77,24,24,24,1,1,0,0,0,0,0,0,0,0,1,112,112,113,113,114,115,77,24,24,24,7

7,1,1,1,1,1,1,0,0,0,1,112,113,113,114,115,77,77,24,24,77,115,114,113,113,112,2,0,0,0,1,112,113,114,114,115,117,77,24,77,120,115,114,113,113,112,2,0,0,0,1,76,76,76,115,116,117,77,24,77,117,115,114,113,

112,112,1,0,0,0,1,112,113,76,114,116,118,118,76,120,117,115,115,90,112,1,0,0,0,0,1,112,113,76,114,116,117,118,76,120,116,115,115,113,112,1,0,0,0,1,112,112,113,113,114,116,117,119,119,76,76,76,76,76,11

2,1,0,0,0,1,112,113,113,114,114,116,76,118,117,117,116,114,114,113,112,1,0,0,1,112,112,113,90,114,115,116,76,116,116,116,116,114,114,113,112,1,0,0,1,112,112,113,113,114,114,114,76,116,115,115,114,114,

113,113,100,1,0,0,0,1,112,113,113,76,76,76,76,114,114,114,114,113,113,112,1,0,0,0,0,1,112,112,113,113,113,76,114,114,114,90,113,113,112,112,1,0,0,0,0,0,1,100,112,112,113,76,113,113,113,113,113,112,112

,1,0,0,0,0,0,0,0,1,1,112,112,112,112,112,112,112,112,112,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0]});}},

{function Run(){maps.push({name="34",author="fantasy",id="#1659991225",direction="forward",cost=177,elevation=0,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,8,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,6,6,6,6,5,5,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,0,7,6,5,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,7,6,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,7,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,6,5,8,0,0,0,0,0

,0,0,0,0,0,0,5,5,5,5,5,7,7,8,17,0,0,0,0,0,0,0,5,5,5,5,6,7,7,7,7,9,9,10,13,0,0,0,0,5,5,5,5,8,8,8,8,7,9,9,10,10,13,17,23,0,0,0,0,5,7,9,9,9,9,13,13,13,13,13,17,17,17,21,23,0,0,0,0,5,7,9,13,17,21,21,17,17

,21,21,21,21,21,22,23,0,0,0,0,5,7,10,13,21,21,21,22,22,24,24,24,24,24,23,0,0,0,0,0,0,5,10,10,17,17,17,17,21,21,21,22,24,23,23,0,0,0,0,0,0,0,5,5,7,6,10,7,10,10,17,17,17,21,22,0,0,0,0,0,0,0,0,0,5,5,5,5,

5,7,6,6,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,8,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="35",author="fantasy",id="#1659991248",direction="left",cost=259,elevation=0,map=[1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,2,2,5,2,5,96,5,5,5,5,5,5,5,5,5,5,5,94,5,5,5,5,5,2,5,

96,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,5,127,5,5,5,127,5,5,5,127,5,5,5,127,5,5,5,127,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,5,5,5,5,5,1

26,5,5,5,5,5,5,5,5,5,5,5,5,126,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,98,98,1,5,5,5,5,5,5,5,5,100,5,93,5,5,99,5,5,1,5,5,1,5,5,99,5,5,93,5,1

00,0,0,0,0,0,0,0,0,1,97,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="36",author="fantasy",id="#1659991272",direction="forward",cost=172,elevation=1,map=[0,94,0,0,0,24,24,24,2,2,24,24,24,0,0,0,93,59,39,39,0,44,0,0,0,24,3,58,58,58,58,3,24

,0,0,0,59,59,39,39,0,44,0,0,0,24,58,58,94,93,58,58,24,0,0,0,0,0,0,0,0,44,0,0,0,24,58,58,58,58,58,58,24,0,0,0,0,0,0,0,0,44,0,0,0,0,24,24,38,38,24,24,0,0,0,0,0,0,92,92,0,44,0,0,0,0,0,0,38,38,0,0,0,0,0,0

,0,0,39,39,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,39,39,0,44,44,43,42,41,40,39,38,38,0,0,0,0,0,0,0,0,0,0,0,44,44,43,42,41,40,39,38,38,0,0,0,42,42,41,41,40,40,39,0,92,92,0,0,0,0,0,0,0,0,0,0,42,42,41,41,

40,40,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,39,39,0,0,0,0,0,44,44,0,44,44,44,44,44,44,44,0,0,0,39,39,0,0,0,0,0,

44,44,0,44,44,44,44,44,44,44,0,0,0,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,39,0,44,44,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,39,39,0,44,44,0,44,44,0,0,0,0,0,0,0,0,0,39,39,39,39,39,0,44,44,0,0,0,0,0,0,0,

0,0,0,0,0,39,39,39,39,39,100,44,44,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0]});}},

{function Run(){maps.push({name="37",author="fantasy",id="#1659991295",direction="right",cost=708,elevation=0,map=[1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,66,66,5,5,66,66,66,66,66,66,66,66,66,66,66,

66,66,66,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,5,5,66,66,66,66,66,66,66,66,66,66,5,5,66,66,1,1,66,66,100,5,66,66,66,66,66,66,66,66,66,66,100,5,66,66,1,1,66,66,66,66,66,66

,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,6

6,66,66,66,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,66,66

,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,5,5,66,66,66,66,66,66,66,66,66,

66,5,5,66,5,2,1,66,66,100,5,66,66,66,66,66,66,66,66,66,66,100,5,66,5,2,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,1,1,1,1,1,1,1

,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="38",author="fantasy",id="#1659991321",direction="right",cost=932,elevation=0,map=[1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,76,76,5,5,76,76,76,76,76,76,76,76,76,76,76,

76,76,76,1,1,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,1,1,76,76,5,5,76,5,76,76,76,5,76,76,76,76,5,5,76,76,1,1,76,76,100,5,76,76,76,5,76,76,76,5,76,76,100,5,76,76,1,1,76,76,76,76,76,76,76,

76,76,76,76,76,76,76,76,76,76,76,1,1,76,76,5,5,76,76,76,76,76,76,76,76,76,76,76,5,76,76,1,1,76,76,5,5,76,76,76,76,76,76,76,76,76,76,76,76,76,76,1,1,76,76,5,5,76,76,76,76,76,76,76,76,76,76,5,76,76,76,1

,1,76,76,5,5,76,76,76,76,76,76,76,76,76,76,76,76,76,76,1,1,76,76,5,5,76,76,76,76,76,76,76,76,76,76,76,5,76,76,1,1,76,76,5,5,76,76,76,76,76,76,76,76,76,76,76,76,76,76,1,1,76,76,5,5,76,76,76,76,76,76,76

,76,76,76,5,76,76,76,1,1,76,76,5,5,76,76,76,76,76,76,76,76,76,76,76,76,76,76,1,1,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,1,1,76,76,5,5,76,5,5,5,5,5,5,5,5,76,5,5,76,5,2,1,76,76,100,5,76,5

,5,5,5,5,5,5,5,76,100,5,76,5,2,1,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,1,1,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="39",author="fantasy",id="#1659991338",direction="right",cost=331,elevation=0,map=[1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,12,107,107,12,0,0,1,0,1,0,0,0,0,0,0,0,0,1

,1,12,12,107,107,12,12,12,107,12,107,12,12,12,0,0,0,0,0,1,1,12,107,107,107,107,12,69,66,107,66,69,69,12,0,0,0,0,0,1,1,12,66,107,107,66,69,69,107,12,107,12,69,12,0,0,0,0,0,1,1,12,69,12,12,12,12,12,12,0

,1,12,69,12,0,0,0,0,0,1,1,12,69,12,0,0,0,0,0,0,1,107,66,107,1,0,0,0,0,1,1,12,69,12,0,0,0,0,0,0,0,12,107,12,0,0,0,0,0,1,1,12,69,12,0,0,0,0,0,0,0,12,107,12,0,0,0,0,0,1,1,107,66,107,1,0,0,0,0,0,1,107,66,

107,1,0,0,0,0,1,1,12,107,12,0,0,0,0,0,0,0,12,69,12,0,0,1,0,0,1,1,12,107,12,0,0,0,0,0,0,0,12,69,12,12,12,107,12,12,1,1,107,66,107,1,0,0,0,0,0,0,12,69,69,69,69,66,107,12,1,1,12,69,12,1,0,0,1,0,0,1,12,12

,12,12,12,107,107,107,2,1,12,69,12,107,12,12,107,12,12,107,12,107,12,12,12,107,107,107,2,1,12,69,69,66,107,107,66,69,69,66,107,66,69,69,69,66,107,12,1,1,12,12,12,107,12,12,107,12,12,107,12,107,12,12,1

2,107,12,12,1,1,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="40",author="fantasy",id="#1659991356",direction="left",cost=166,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,119,119,119,119,119,119,

119,119,119,119,0,0,0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,119,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,119,2,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,0,0,119,119,2,119,119,119,119,119,119,11

9,119,119,119,119,119,119,119,119,0,0,119,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,119,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,119,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,119,119,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,119,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,0,0,119,119,119,119,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,119,119,119,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,11

9,119,119,119,119,119,119,119,119,119]});}},

{function Run(){maps.push({name="Pit",author="MoistNoodlez",id="#1659995089",direction="forward",cost=600,elevation=-19,map=[1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,24,24,24,24,24,24,24,24,24,24,24,

24,24,24,24,24,24,24,1,1,24,134,24,66,66,66,66,66,66,66,66,66,66,66,66,24,134,24,1,1,24,24,24,67,67,67,67,67,67,67,67,67,67,67,67,24,24,24,1,1,24,66,67,66,66,66,66,66,66,66,66,66,66,66,66,67,66,24,1,1

,24,74,67,66,5,5,5,5,5,5,5,5,5,5,66,67,73,24,1,1,88,66,67,66,5,88,88,88,88,88,88,88,88,5,66,67,66,88,1,1,24,74,67,66,5,88,88,5,5,5,5,88,88,5,66,67,73,24,1,1,88,66,67,66,5,88,5,88,5,5,88,5,88,5,66,67,7

3,24,1,1,24,74,67,66,5,88,5,5,88,88,5,5,88,5,66,67,66,88,1,1,24,74,67,66,5,88,5,5,88,88,5,5,88,5,66,67,73,24,1,1,133,66,67,66,5,88,5,88,5,5,88,5,88,5,66,67,66,133,1,1,24,74,67,66,5,88,88,5,5,5,5,88,88

,5,66,67,73,24,1,1,24,74,67,66,5,88,88,88,88,88,88,88,88,5,66,67,73,24,1,1,133,66,67,66,5,5,5,5,5,5,5,5,5,5,66,67,66,133,1,1,24,74,67,66,5,5,5,5,5,5,5,5,5,5,66,67,73,24,1,1,24,74,67,66,5,5,5,5,5,5,5,5

,5,5,66,67,73,24,1,1,94,66,67,66,5,5,5,5,95,95,5,5,5,5,66,67,66,93,1,1,24,66,67,66,5,5,5,95,5,5,95,5,5,5,66,67,66,24,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Park",author="MoistNoodlez",id="#1659995533",direction="forward",cost=307,elevation=-5,map=[0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,14,14,13,13,14,14,14,14,14,14

,14,1,0,0,0,0,0,0,0,1,14,14,13,13,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,1,90,14,13,13,14,90,14,14,14,90,14,1,0,0,0,0,0,0,0,1,14,14,13,13,14,14,66,66,66,14,14,1,0,0,0,0,0,0,0,1,90,14,13,13,14,90,66,66,6

6,90,14,1,0,0,0,0,0,0,0,1,14,14,13,13,14,14,66,66,66,14,14,1,0,0,0,0,0,0,0,1,90,14,12,12,14,90,66,66,66,90,14,1,0,0,0,0,0,0,0,1,14,14,12,12,14,14,66,66,66,14,14,1,0,0,0,0,0,0,0,1,90,14,12,12,14,90,66,

66,66,90,14,1,0,0,0,0,0,0,0,1,14,14,12,12,14,14,66,66,66,14,14,1,0,0,0,0,0,0,0,1,90,14,12,12,14,90,14,14,14,90,14,1,0,0,0,0,0,0,0,1,14,14,12,12,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,1,90,14,11,11,10,10

,10,10,9,9,14,1,0,0,0,0,0,0,0,1,14,14,11,11,10,10,10,10,9,9,14,1,0,0,0,0,0,0,0,1,90,14,14,14,14,14,14,14,48,48,14,1,0,0,0,0,0,0,0,1,14,14,90,14,90,14,90,14,91,91,14,1,0,0,0,0,0,0,0,1,14,90,14,90,14,90

,14,14,48,48,14,1,0,0,0,0,0,0,0,1,14,14,93,14,94,14,90,14,48,48,14,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0]});}},

{function Run(){maps.push({name="Beer",author="MoistNoodlez",id="#1659997030",direction="forward",cost=411,elevation=-10,map=[0,0,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,24,24,1,1,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,1,24,24,24,24,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,24,24,24,24,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,24,24,92,54,54,54,54,54,54,54,54,54,54,54,1,0,0,0,1,1,24,24,92,90,90,90,90,54,90,54,90,90,90,54

,1,1,0,0,1,24,24,24,92,54,54,90,90,54,54,54,54,54,54,54,1,1,0,0,1,1,24,24,92,90,90,54,90,90,54,54,54,90,90,54,54,1,0,0,0,1,24,24,92,90,90,54,90,90,54,54,54,54,54,54,54,1,0,0,0,1,24,24,92,54,54,54,90,9

0,54,90,54,90,90,90,54,1,0,0,0,1,24,24,92,90,90,90,90,90,54,54,54,90,90,90,54,1,0,0,0,1,24,24,92,90,90,54,90,90,54,54,54,54,54,54,54,1,0,0,1,1,24,24,92,54,54,54,90,90,54,54,54,90,90,90,54,1,0,0,1,24,2

4,24,92,90,90,90,90,54,54,54,54,54,54,54,54,1,0,0,1,24,24,24,92,90,90,90,90,54,54,54,90,90,90,54,54,1,0,0,1,24,24,24,92,54,54,54,90,90,90,90,90,54,54,54,1,1,0,0,1,1,24,24,1,1,95,95,1,1,1,1,1,95,95,1,1

,0,0,0,0,1,1,1,1,1,95,95,1,0,0,0,1,95,95,1,0,0,0,0,0,0,0,0,0,1,14,14,1,1,1,1,1,14,14,1,0,0,0,0,0,0,0,0,0,1,14,14,14,14,2,2,14,14,14,1,0,0]});}},

{function Run(){maps.push({name="Dissected",author="ZpLit",id="#1659998207",direction="forward",cost=266,elevation=0,map=[0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,1,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,1,7,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,76,68,68,76,1,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,68,68,5,5,5,5,0,0,0,0,0,0,0,0,0,5,5,5,5,5,68,68,5,5,5,5,5,0,0,0,0,0,0,0,5,5,5,5,90,5,68,68,5,90,

5,5,5,5,0,0,0,0,0,0,90,5,5,5,0,1,69,69,1,0,5,5,5,90,0,0,0,0,0,0,5,97,5,0,0,1,69,69,1,0,0,5,99,5,0,0,0,0,0,0,98,98,98,0,94,1,69,69,1,94,0,96,96,96,0,0,0,0,0,0,95,95,95,0,28,1,69,69,1,28,0,95,95,95,0,0,

0,0,0,0,5,5,5,0,0,1,69,69,1,0,0,5,5,5,0,0,0,0,0,0,5,5,5,90,0,1,69,69,1,0,90,5,5,5,0,0,0,0,0,0,90,5,5,5,5,91,68,68,91,5,5,5,5,90,0,0,0,0,0,0,0,5,5,5,5,91,68,68,91,5,5,5,5,0,0,0,0,0,0,0,0,0,5,5,5,91,68,

68,91,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,68,68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,68,68,66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Water Climb",author="MoistNoodlez",id="#1659999134",direction="forward",cost=238,elevation=0,map=[0,1,2,2,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,5,5,1,0,0,0,0,0,0,1,24,24

,24,95,24,24,24,1,0,1,127,127,1,0,0,0,0,0,0,1,24,24,24,95,24,24,24,1,0,1,0,0,1,0,0,0,0,0,0,1,24,24,24,95,24,24,24,1,0,1,0,0,1,0,0,0,0,0,0,1,66,66,1,1,1,127,127,1,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,

1,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,1,24,24,1,0,1,0,0,1,0,1,66,66,1,0,0,0,0,0,0,1,66,66,1,0,1,130,130,1,0,1,9,9,1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,1,127,127,1,0,0,0,0,0,0,1,

0,0,1,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,1,

0,0,1,0,1,0,0,1,0,1,66,66,1,1,1,1,1,1,1,1,126,126,1,0,1,0,0,1,0,1,14,14,129,0,0,0,0,0,0,66,19,19,1,0,1,66,66,1,0,1,14,14,129,0,0,0,0,0,0,66,19,19,1,0,1,5,5,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1]})

;}},

{function Run(){maps.push({name="Arachnid",author="ZpLit",id="#1660012751",direction="forward",cost=216,elevation=0,map=[0,99,19,17,93,0,0,0,1,2,2,1,0,0,0,93,17,19,102,0,0,0,0,14,0,0,0,0,1,5,5,1,0,0,0

,0,14,0,0,0,0,0,0,12,0,0,0,0,1,5,5,1,0,0,0,0,12,0,0,0,0,0,1,50,5,4,9,5,107,5,5,107,5,9,4,5,50,1,0,0,0,0,0,1,0,0,0,0,1,5,5,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,6,6,1,0,0,0,0,0,0,0,0,97,13,6,6,4,9,6,6,10

8,6,6,108,6,10,4,6,6,6,13,104,0,0,1,11,0,0,0,0,1,6,6,1,0,0,0,0,11,1,0,0,0,0,0,0,0,0,0,0,1,7,7,1,0,0,0,0,0,0,0,0,0,7,7,7,7,7,7,7,107,7,7,107,7,7,7,7,7,7,7,0,0,7,0,0,0,0,0,0,1,7,7,1,0,0,0,0,0,0,7,0,0,8,

0,0,0,0,0,0,1,8,8,1,0,0,0,0,0,0,8,0,0,8,0,0,0,8,8,8,108,8,8,108,8,8,8,0,0,0,8,0,0,8,0,0,0,8,0,0,0,94,94,0,0,0,8,0,0,0,8,0,0,8,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0,8,0,0,103,0,0,0,98,0,0,0,0,0,0,0,0,101,0,0

,0,96,0,0,103,0,0,0,98,1,1,1,1,1,1,1,1,101,0,0,0,96,0,0,8,8,8,8,8,7,6,5,88,88,5,6,7,8,8,8,8,8,0,0,8,8,8,8,8,7,6,5,5,5,5,6,7,8,8,8,8,8,0,0,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Why Are You Slow",author="Headhunterz",id="#1660016869",direction="forward",cost=488,elevation=3,map=[0,2,2,1,1,1,1,1,1,1,1,1,1,18,1,1,1,1,1,1,0,13,13,0,1,9,8,9,9,9,0,

9,9,0,0,0,0,0,0,0,1,95,95,0,1,9,96,96,96,96,0,96,96,0,0,9,9,8,0,0,0,13,13,0,1,9,96,96,96,96,0,96,96,0,0,96,96,96,0,0,0,95,95,1,1,9,96,96,9,8,0,9,9,0,0,0,0,0,0,0,0,13,13,0,1,9,96,96,9,1,1,1,1,92,0,11,9

6,96,11,0,0,0,0,0,1,8,96,96,7,1,132,18,1,18,0,0,0,0,0,0,9,96,96,9,1,9,96,96,9,1,18,18,1,0,0,13,96,96,13,0,9,96,96,8,1,9,12,12,9,1,94,94,1,0,0,0,0,0,0,0,9,96,96,9,1,0,91,91,0,1,18,18,1,131,12,15,96,96,

15,0,8,96,96,9,1,9,0,0,9,1,18,18,1,0,0,0,0,0,0,0,9,96,96,8,1,9,96,96,9,1,18,18,1,24,92,0,0,0,0,24,9,96,96,9,1,9,96,96,8,1,95,95,1,0,0,16,16,16,1,1,0,0,0,0,9,9,96,96,9,1,18,18,1,0,0,16,134,16,1,1,0,0,0

,0,9,96,96,96,9,1,18,18,1,21,21,4,16,97,1,1,9,96,96,9,9,9,96,96,8,1,95,95,1,21,0,16,16,16,1,1,8,96,96,9,9,9,96,96,9,1,18,18,1,93,0,16,16,16,1,1,9,96,96,96,96,96,96,96,9,1,133,18,1,0,0,16,16,16,1,1,9,9

6,96,96,96,96,96,96,9,1,1,1,1,0,0,16,96,96,1,1,0,7,9,9,8,9,9,9,9,15,93,1,1,1,1,1,2,2,1,1]});}},

{function Run(){maps.push({name="ratrace",author="king buzzo",id="#1660053208",direction="forward",cost=424,elevation=0,map=[1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,24,24,1,24,24,24,24,24,1,24,24,24

,24,24,1,24,90,24,24,1,24,24,1,24,86,24,24,86,1,24,86,24,86,24,1,24,24,24,90,1,24,24,1,24,24,1,24,24,1,24,24,24,24,24,1,24,24,1,24,1,24,24,1,24,24,1,24,24,1,24,24,1,24,24,1,24,86,1,24,1,24,90,1,24,90,

1,90,90,1,24,90,1,24,24,1,24,24,1,24,1,24,24,1,24,24,1,24,24,1,24,90,1,24,24,1,24,24,1,24,1,90,24,1,24,24,1,24,86,1,24,24,1,24,24,1,90,24,1,24,1,24,24,1,90,24,1,24,24,1,24,24,1,24,24,1,24,90,1,24,1,24

,90,1,24,24,1,24,24,1,86,24,1,24,24,1,24,24,1,24,1,24,24,1,24,24,1,24,24,1,24,24,1,24,86,1,90,24,1,24,1,24,24,1,90,90,1,24,90,1,24,24,1,24,24,1,24,90,1,24,1,24,24,1,24,24,1,90,24,1,24,24,1,24,24,1,86,

24,1,24,1,86,24,1,24,24,1,24,24,1,24,24,1,24,24,1,24,24,1,24,1,24,24,1,24,90,1,86,24,1,24,86,1,24,24,1,24,86,1,24,1,24,24,1,90,24,1,24,24,1,24,24,1,24,24,1,24,24,1,24,1,24,86,1,24,24,1,24,24,1,90,24,1

,86,24,1,24,24,1,24,1,24,24,24,24,90,1,24,24,24,24,90,1,24,86,24,24,24,1,24,1,24,24,24,24,24,1,24,24,24,24,24,1,24,24,24,24,24,1,24,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2]});}},

{function Run(){maps.push({name="lava water escape",author="king buzzo",id="#1660056495",direction="forward",cost=314,elevation=-4,map=[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,16,2,2,16,0,1,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,16,49,49,16,1,0,0,0,0,16,16,0,0,0,0,0,16,16,0,0,16,90,49,90,0,0,0,0,16,76,76,16,0,0,0,16,66,66,16,0,16,49,90,16,0,0,0,16,83,83,83,81,16,0,16,73,73,73,71,16,90,49,49,16,0,0,16,76,82,76,76,81,

90,16,66,72,66,66,71,90,16,49,49,16,0,0,16,76,82,76,76,81,16,16,66,72,66,66,71,16,16,49,49,90,0,0,0,16,82,84,84,84,16,0,16,72,74,74,74,16,16,49,49,16,0,0,0,0,16,82,82,16,0,0,0,16,66,66,16,0,90,29,29,9

0,0,0,0,0,16,77,77,16,0,0,0,0,16,16,0,0,16,29,29,16,0,0,0,0,10,82,82,10,0,0,0,0,0,0,0,0,16,30,30,16,1,0,0,0,10,77,77,10,0,0,0,0,0,0,0,0,16,31,31,90,0,1,0,0,5,76,76,5,0,0,0,0,0,0,0,0,16,32,32,16,0,0,1,

0,5,90,5,5,0,0,0,0,0,0,0,0,90,33,33,16,0,0,1,0,0,5,5,0,0,0,0,0,0,0,0,0,16,34,34,16,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,16,35,35,90,0,1,0,0,5,5,5,5,0,0,0,0,0,0,0,0,16,16,16,16,1,0,0,0,91,91,91,91,0,0,0,0,1

,1,1,0,0,0,0,0,0,0,0,0,91,91,91,91,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,91,2,2,91,0,0,1,0,0,0,0,0,1,0,0,0]});}},

{function Run(){maps.push({name="Skip",author="Headhunterz",id="#1660069910",direction="forward",cost=302,elevation=4,map=[1,0,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,1,1,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10,10,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,1,1,0,10,10,95,95,95,95,10,0,0,0,0,0,0,0,0,0,0,1,1,0,10,10,95,95,95,95,10,0,0,0,0,0,0,0,0,0,0,1,1,0,10,86,10

,10,95,95,10,0,14,14,14,14,93,93,14,14,131,1,1,0,10,10,0,10,95,95,10,0,14,14,14,14,14,14,14,14,14,1,1,0,10,10,0,10,95,95,10,0,0,0,0,0,0,0,0,0,0,1,1,0,10,10,0,10,95,95,10,0,0,0,0,0,0,0,0,0,0,1,1,0,86,1

0,0,10,95,95,10,0,0,0,0,0,0,0,0,0,0,1,1,0,10,10,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,10,11,12,14,14,14,14,14,14,14,95,95,14,14,95,95,14,1,1,0,10,11,12,14,14,14,14,14,14,14,95,95,14,14,95,95,14,1,1,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,1,1,14,14,0,0,14,132,14,14,14,14,95,14,14,95,95,14,14,14,1,1,97,14,0,0,14,14,14,96,96

,14,95,14,14,95,95,14,14,14,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Popsicle",author="MoistNoodlez",id="#1660096620",direction="forward",cost=462,elevation=0,map=[0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,14,14,1,0,0,0,0,0,0,0,0,0,

0,1,1,54,1,0,0,1,14,14,1,0,0,0,0,0,0,0,0,1,1,1,54,91,100,0,0,1,14,14,1,0,0,0,0,0,0,1,1,1,54,54,91,54,1,0,0,1,14,14,1,0,0,0,0,1,1,1,66,66,66,91,54,91,1,0,0,1,14,14,1,0,0,0,1,1,66,66,66,74,66,66,91,1,1,

0,0,1,14,14,1,0,1,1,1,66,66,66,74,74,66,66,1,1,0,0,0,1,14,14,1,1,1,66,66,66,66,74,74,66,66,66,1,0,0,0,0,1,14,14,95,14,66,66,66,74,74,66,66,66,66,14,1,0,0,0,1,1,14,14,95,66,66,66,74,66,66,66,66,66,1,14

,1,0,0,1,1,14,95,76,66,66,66,74,66,66,66,66,1,1,76,14,1,0,0,1,114,14,76,66,66,74,74,66,66,66,66,1,76,76,76,14,1,0,0,1,114,14,76,66,74,66,66,66,66,66,1,76,76,76,76,14,1,0,0,1,114,14,76,76,66,66,66,66,1

,1,76,76,76,76,14,14,1,0,0,1,114,14,14,76,76,76,76,1,76,76,76,76,76,14,14,1,1,0,0,1,114,114,14,76,76,76,76,76,76,76,14,14,14,14,1,1,0,0,0,1,114,114,14,76,76,76,76,14,14,14,14,1,1,1,1,0,0,0,0,1,114,114

,14,14,76,76,14,14,1,1,1,1,0,0,0,0,0,0,0,1,114,114,114,14,76,14,14,114,1,1,0,0,0,0,0,0,0,0,0,1,1,114,114,2,2,14,114,114,1,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Strafe Holds",author="MoistNoodlez",id="#1660098620",direction="forward",cost=154,elevation=0,map=[0,0,0,0,0,0,0,14,2,2,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14

,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,96,96,96,96,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,97,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,98,98,98,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,

14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,99,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,101,101,101,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,102,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,103,103,103,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,14,2,2,14,104,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Wacky Tunnel",author="MoistNoodlez",id="#1660098909",direction="forward",cost=276,elevation=0,map=[0,0,0,0,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,65,114,114,114,114

,114,90,114,1,0,0,0,0,0,0,0,0,0,0,1,114,114,114,88,114,114,114,65,1,0,0,0,0,0,0,0,0,0,0,1,114,75,114,114,65,114,114,114,1,0,0,0,0,0,0,0,0,0,0,1,114,90,114,88,114,76,65,114,1,0,0,0,0,0,0,0,0,0,0,1,75,1

14,75,114,90,114,65,114,1,0,0,0,0,0,0,0,0,0,0,1,114,114,75,76,75,90,114,75,1,0,0,0,0,0,0,0,0,0,0,1,114,65,114,90,75,114,90,114,1,0,0,0,0,0,0,0,0,0,0,1,88,114,90,114,114,90,114,76,1,0,0,0,0,0,0,0,0,0,0

,1,114,75,114,90,75,90,65,114,1,0,0,0,0,0,0,0,0,0,0,1,114,65,88,114,76,114,76,114,1,0,0,0,0,0,0,0,0,0,0,1,75,114,114,65,114,75,114,114,1,0,0,0,0,0,0,0,0,0,0,1,114,75,114,88,114,75,88,114,1,0,0,0,0,0,0

,0,0,0,0,1,88,114,76,114,90,114,114,75,1,0,0,0,0,0,0,0,0,0,0,1,114,65,114,75,114,114,65,114,1,0,0,0,0,0,0,0,0,0,0,1,114,114,75,114,88,88,114,114,1,0,0,0,0,0,0,0,0,0,0,1,75,114,114,90,75,114,65,114,1,0

,0,0,0,0,0,0,0,0,0,1,114,90,88,114,114,114,114,75,1,0,0,0,0,0,0,0,0,0,0,1,88,114,114,114,114,114,90,88,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Uturn",author="MoistNoodlez",id="#1660099197",direction="forward",cost=253,elevation=0,map=[1,1,1,1,0,1,133,133,1,0,0,1,2,2,1,0,0,0,0,0,1,132,132,1,0,1,14,14,1,0,0,1,1

4,14,1,0,0,0,0,0,1,14,14,1,0,1,131,131,1,0,0,1,14,14,1,0,0,0,0,0,1,14,14,1,0,1,14,14,1,0,0,1,14,14,1,0,0,0,0,0,1,14,14,1,0,1,14,14,1,0,0,1,14,14,1,0,0,0,0,0,1,14,14,1,0,1,14,14,1,0,0,1,14,14,1,0,0,0,0

,0,1,14,14,1,0,1,14,14,1,0,0,1,14,14,1,0,0,0,0,0,1,14,14,1,0,1,14,14,1,1,1,1,14,14,1,0,0,0,0,0,1,14,14,1,0,1,14,14,96,14,93,1,14,14,1,0,0,0,0,0,1,14,14,1,0,1,14,14,96,14,94,1,14,14,1,0,0,0,0,0,1,14,14

,1,0,1,14,14,1,1,1,1,14,14,1,0,0,0,0,0,1,14,14,1,0,1,14,14,1,0,0,1,14,14,1,0,0,0,0,0,1,14,14,1,0,1,14,14,1,0,0,1,14,14,1,0,0,0,0,0,1,14,14,1,0,1,14,14,1,1,1,1,14,14,1,0,0,0,0,0,1,97,14,1,0,1,14,14,14,

95,14,14,14,14,1,0,0,0,0,0,1,14,14,1,0,1,14,14,14,95,14,14,14,14,1,0,0,0,0,0,1,134,134,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,14,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Heart",author="MoistNoodlez",id="#1660100758",direction="forward",cost=453,elevation=0,map=[0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,114,114,114,114,1,1,0

,0,0,0,0,0,0,0,0,1,1,100,1,114,114,114,114,114,114,1,1,1,0,0,0,0,0,1,1,1,1,114,1,114,1,114,114,114,114,114,1,1,1,0,0,0,0,1,1,114,114,114,114,1,114,114,114,90,114,114,114,1,1,1,0,0,0,1,1,114,114,114,11

4,114,1,1,76,90,76,14,114,114,1,1,0,0,0,1,54,54,114,114,90,90,76,76,90,90,90,76,90,114,14,1,1,0,0,1,54,54,54,114,90,76,76,76,90,76,1,1,76,76,14,1,1,1,0,1,1,54,54,114,90,76,90,90,90,1,1,76,76,76,14,14,

14,1,0,1,1,1,54,76,76,76,1,1,90,90,90,90,90,76,76,14,14,1,0,1,54,54,54,54,76,76,1,90,90,76,90,76,76,90,1,14,14,1,1,1,1,54,54,54,76,1,1,90,76,76,76,76,90,1,1,76,76,14,1,1,54,1,54,54,54,76,76,76,76,76,9

0,90,1,1,14,76,76,100,1,54,54,54,54,54,76,76,1,1,76,90,1,1,1,76,76,76,76,1,1,1,1,54,54,54,76,76,14,14,14,1,76,76,76,76,14,76,76,1,0,1,1,54,54,54,1,1,76,14,14,14,14,14,14,14,14,76,1,1,0,1,1,1,54,1,1,1,

1,1,1,1,1,76,76,1,1,1,1,0,0,1,1,54,54,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1,54,54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Liquid Tunnels",author="MoistNoodlez",id="#1660101542",direction="right",cost=348,elevation=-19,map=[0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,124,124,124,124,1,0,

0,1,1,1,1,1,1,1,1,1,1,0,0,1,123,123,123,123,1,0,0,1,90,109,75,108,108,75,108,108,1,0,0,1,122,122,122,122,1,0,0,1,109,109,75,108,108,75,108,108,1,0,0,1,121,121,121,121,1,0,0,1,66,66,1,1,1,1,1,95,1,0,0,

1,120,120,120,120,1,0,0,1,109,109,1,90,107,107,107,108,1,0,0,1,119,119,119,119,1,0,0,1,109,109,1,107,107,107,107,1,1,0,0,1,118,118,118,118,1,0,0,1,66,66,1,106,1,106,1,1,0,0,0,1,117,117,117,117,1,0,0,1

,69,69,1,76,1,76,1,0,0,0,0,1,116,116,116,116,1,0,0,1,69,69,1,78,1,78,1,0,0,0,0,1,115,115,115,115,1,0,0,1,66,66,1,76,1,76,1,0,0,0,0,1,114,114,114,114,1,0,0,1,110,110,1,78,1,78,1,0,0,0,0,1,113,113,113,1

13,1,1,1,1,65,65,1,76,1,76,1,0,0,0,0,1,112,112,112,112,111,65,111,65,110,110,1,105,1,105,1,0,0,0,0,1,90,90,90,112,111,65,111,65,110,110,1,105,105,105,1,0,0,0,0,1,90,90,90,112,111,65,111,65,110,90,1,10

5,105,1,1,0,1,0,0,1,1,112,112,1,1,1,1,1,1,1,1,1,105,1,1,1,1,0,0,0,1,93,94,1,0,0,0,0,0,0,1,1,105,105,90,105,2,0,0,0,1,1,1,1,0,0,0,0,0,0,1,1,90,105,105,105,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1]});}

},

{function Run(){maps.push({name="Muspelheim",author="ZpLit",id="#1660130699",direction="forward",cost=438,elevation=-3,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,8,8,8,8,9,90,9,0,0,0

,0,0,0,0,0,0,0,90,9,9,8,8,8,8,9,9,9,0,0,0,0,0,0,0,0,0,0,9,9,23,20,8,8,20,22,9,9,0,0,0,0,0,0,97,35,27,0,9,9,18,77,8,8,77,19,9,9,0,27,35,99,0,0,1,1,1,13,9,9,0,0,8,90,0,0,9,90,13,1,1,1,0,1,11,11,10,9,9,9

0,0,0,8,8,0,0,9,9,9,10,11,11,1,1,76,11,10,9,9,9,0,0,90,8,0,0,9,9,9,10,11,76,1,1,82,21,77,0,9,9,0,0,8,8,0,0,90,9,0,77,21,82,1,1,82,23,77,0,90,9,0,0,91,91,0,0,9,9,0,77,23,82,1,1,82,20,77,0,9,9,0,0,91,91

,0,0,9,9,0,77,20,82,1,1,82,22,77,0,9,9,0,0,8,8,0,0,9,9,0,77,22,82,1,1,82,24,77,0,9,9,0,0,7,7,0,0,9,9,0,77,24,82,1,1,82,21,77,0,9,9,77,1,106,106,1,77,9,9,0,77,21,82,1,1,82,24,77,0,10,10,24,1,45,45,1,24

,10,10,0,77,24,82,1,1,82,22,77,0,11,11,98,11,95,95,11,96,11,11,0,77,22,82,1,1,82,21,77,77,11,98,11,45,45,45,45,11,96,11,77,77,21,82,1,1,82,24,21,21,23,20,24,45,5,5,45,24,20,23,21,21,24,82,1,1,76,76,76

,76,76,76,111,45,5,5,45,111,76,76,76,76,76,76,1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0]});}},

{function Run(){maps.push({name="Broken Tower",author="JonStomach",id="#1660165980",direction="right",cost=379,elevation=4,map=[1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,15,92,9,9,92,15,15,15,0,85,16,

0,17,17,90,17,17,17,1,1,15,15,9,9,15,15,15,15,0,16,85,0,17,17,17,17,90,17,1,1,15,15,90,9,9,9,49,9,0,85,10,0,11,51,11,11,17,17,1,1,15,15,9,90,9,9,49,9,0,10,85,0,11,51,11,90,17,90,1,1,15,15,9,9,15,15,15

,15,0,85,16,0,17,17,11,11,17,17,1,1,15,15,9,9,15,15,4,4,0,16,85,0,17,17,90,11,17,17,1,1,15,15,49,49,15,4,24,24,24,1,1,1,17,17,11,11,17,17,1,1,15,15,9,9,15,4,24,44,44,44,44,1,0,0,0,0,0,0,1,1,0,0,0,0,0,

0,24,44,44,44,44,1,18,85,12,85,18,85,1,1,16,85,10,85,16,85,1,44,44,44,44,1,85,18,85,12,85,18,1,1,85,16,85,10,85,16,1,44,44,44,93,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,19,19,13,13,19,19,1,1,17,17,1

1,11,17,17,17,0,85,18,0,19,90,19,90,13,90,19,1,1,17,17,51,51,17,17,17,0,18,85,0,19,19,19,13,13,19,19,1,1,17,17,11,11,11,11,11,0,85,12,0,13,13,13,13,13,13,13,2,1,17,90,11,11,90,11,11,0,12,85,0,13,13,13

,13,90,13,13,2,1,17,17,17,90,17,17,17,0,85,18,0,19,90,19,19,19,19,19,1,1,17,17,17,17,17,90,17,0,18,85,0,19,19,19,90,19,19,19,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Penile Penetration",author="MoistNoodlez",id="#1660173837",direction="forward",cost=250,elevation=-5,map=[0,0,0,0,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,92,92,14,14

,14,14,92,92,1,0,0,0,0,0,0,0,0,0,0,0,39,39,39,39,39,39,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,75,75,54,54,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,54,54,75,75,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,75,75,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,75,75,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,75,75,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,95,95,75,75,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,75,75,54,54,0,0,0,0,0,0,0,0,0,0,24,24,24,24,54,54,75,75,54,54,24,24,24,24,0,0,0,0,0,0,24,24,24,24,54,54,75,75,54,54,24,24,24,24,0,0,0,0,0,0,24,24

,24,24,54,54,75,75,54,54,24,24,24,24,0,0,0,0,0,0,24,24,24,24,54,54,75,75,54,54,24,24,24,24,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,9

,9,9,9,9,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Excretion",author="MoistNoodlez",id="#1660174516",direction="forward",cost=272,elevation=-19,map=[0,0,0,0,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,88,64,64,64,64,64,6

4,88,1,0,0,0,0,0,0,0,0,0,0,1,64,88,64,66,66,64,88,64,1,0,0,0,0,0,0,0,0,0,0,1,88,88,64,69,69,64,88,88,1,0,0,0,0,0,0,0,0,0,0,1,64,88,64,69,69,64,88,64,1,0,0,0,0,0,0,0,0,0,0,1,88,88,64,69,69,64,88,88,1,0

,0,0,0,0,0,0,0,0,0,1,64,88,64,69,69,64,88,64,1,0,0,0,0,0,0,0,0,0,0,1,88,88,64,69,69,64,88,88,1,0,0,0,0,0,0,0,0,0,0,1,64,88,64,69,69,64,88,64,1,0,0,0,0,0,0,0,0,0,0,1,88,64,64,69,69,64,64,88,1,0,0,0,0,0

,0,0,0,0,0,1,1,95,95,69,69,95,95,1,1,0,0,0,0,0,0,0,0,0,0,0,1,64,64,69,69,64,64,1,0,0,0,0,0,0,0,0,0,0,0,1,1,5,5,67,67,5,5,1,1,0,0,0,0,0,0,0,0,0,0,1,5,90,5,66,66,5,5,90,1,0,0,0,0,0,0,0,0,0,0,1,90,5,90,5

,5,5,90,5,1,0,0,0,0,0,0,0,0,0,0,1,5,90,5,5,90,5,5,90,1,0,0,0,0,0,0,0,0,0,0,1,90,5,90,5,5,90,90,5,1,0,0,0,0,0,0,0,0,0,0,1,5,90,5,90,5,5,90,5,1,0,0,0,0,0,0,0,0,0,0,1,90,5,5,95,95,90,5,90,1,0,0,0,0,0,0,0

,0,0,0,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Diddle My Nipple",author="MoistNoodlez",id="#1660175059",direction="forward",cost=319,elevation=0,map=[0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,12,12,12,12,1,

1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,88,12,12,12,88,1,1,1,1,1,1,1,0,0,0,1,12,88,12,12,12,12,12,12,12,12,12,12,88,12,12,1,0,0,0,1,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,1,0,0,0,1,12,12,12,88,52,52,52,52

,52,52,52,52,88,12,88,1,0,0,0,1,12,88,12,52,52,52,52,52,52,52,52,52,52,12,12,1,0,0,0,1,12,12,12,52,52,52,52,4,52,52,52,52,52,12,12,1,0,0,0,1,12,12,12,52,52,52,58,58,58,58,4,52,52,12,12,1,1,0,0,1,12,12

,12,52,52,52,58,64,64,58,52,52,52,12,12,12,1,0,0,1,12,12,12,52,52,52,92,64,100,58,52,52,52,12,12,12,1,0,0,1,12,12,12,52,52,52,58,64,64,58,52,52,52,12,88,12,1,0,0,1,1,12,12,52,52,52,58,58,58,58,4,52,52

,12,12,12,1,0,0,1,1,12,12,52,52,52,52,4,52,52,52,52,52,12,12,12,1,0,0,0,1,12,12,88,52,52,52,52,52,52,52,52,88,12,12,1,1,0,0,0,1,12,12,12,12,52,52,52,52,52,12,12,12,12,12,1,0,0,0,0,1,12,12,12,12,12,12,

12,12,12,12,12,12,12,12,1,0,0,0,0,1,1,12,12,88,12,12,12,12,12,12,12,12,88,12,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,12,12,12,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0]});}},

{function Run(){maps.push({name="Falls Park",author="MoistNoodlez",id="#1660176782",direction="forward",cost=493,elevation=-5,map=[0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,90,14,13,13,14,90,14,14

,14,90,14,14,14,14,14,14,1,0,0,1,14,14,13,13,14,14,14,90,14,14,14,90,14,90,14,90,1,0,0,1,90,14,13,13,14,90,14,14,14,90,14,90,14,90,14,90,1,0,0,1,14,14,13,13,14,14,14,90,14,14,14,14,14,14,14,14,1,0,0,1

,90,14,13,13,14,90,14,14,14,90,14,14,65,65,65,14,1,0,0,1,14,14,13,13,14,14,14,90,14,14,14,90,67,67,67,14,1,0,0,1,90,14,12,12,14,90,14,14,14,90,65,67,65,65,65,67,1,0,0,1,14,14,12,12,14,14,14,90,14,65,6

5,67,65,24,24,14,1,0,0,1,90,14,12,12,14,90,14,14,14,90,65,67,65,24,100,14,1,0,0,1,14,14,12,12,14,14,14,90,14,65,65,67,65,24,24,92,1,0,0,1,90,14,12,12,14,90,14,14,14,90,65,67,65,93,94,24,1,0,0,1,14,14,

12,12,14,14,14,14,14,14,65,65,1,1,1,1,1,0,0,1,90,14,11,11,10,10,10,10,9,9,14,14,77,93,94,24,1,0,0,1,14,14,11,11,10,10,10,10,9,9,14,14,77,24,93,92,1,0,0,1,90,14,14,14,14,14,14,14,48,48,14,14,77,24,24,1

4,1,0,0,1,75,75,75,75,75,75,75,14,91,91,14,14,77,24,24,14,1,0,0,1,75,75,77,77,77,75,75,14,48,48,14,14,77,24,24,14,1,0,0,1,75,77,75,75,75,77,75,14,48,48,14,14,14,77,14,90,1,0,0,1,1,1,124,124,124,1,1,1,

2,2,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Outer wall",author="Luffaren",id="#1660257619",direction="left",cost=277,elevation=-19,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,2,2,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24

,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,21,21,21,21,0,0,0,0,0,100,0,

0,0,0,0,67,14,90,14,14,20,20,20,20,0,0,5,5,5,39,39,39,0,0,0,0,90,14,14,14,19,19,19,19,0,0,5,65,5,1,1,39,0,0,0,0,14,14,94,14,18,18,18,18,0,0,5,5,5,1,1,39,0,0,0,0,14,14,14,14,17,17,17,17,0,0,2,5,6,7,8,9

,10,11,12,13,14,14,94,14,16,16,16,16,0,0,2,5,6,7,8,9,10,11,12,13,14,14,14,14,15,15,15,15,0,0,5,5,6,7,8,9,10,11,12,13,14,14,14,14,14,14,14,14,0,0,1,1,1,1,19,19,19,19,19,19,14,14,14,14,14,14,14,14,14,0,

1,119,93,1,90,126,19,19,94,19,14,65,65,90,14,14,90,65,65,67,1,93,119,96,19,19,19,19,19,19,14,65,65,65,65,65,65,65,65,67,1,119,93,1,90,19,18,17,16,15,14,65,65,90,14,14,90,65,65,67,1,1,1,1,19,19,18,17,1

6,15,14,14,14,14,14,14,14,14,14,0,43,0,41,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Wet tunneling",author="Luffaren",id="#1660257744",direction="forward",cost=426,elevation=-19,map=[0,0,24,2,2,24,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,24,24,24,24,1,1,90,90,5

,5,44,44,44,44,44,1,1,1,0,0,0,127,127,0,1,1,5,5,5,5,43,5,5,5,44,5,5,5,0,0,0,0,0,0,1,1,5,89,5,5,42,5,89,5,44,5,5,5,0,0,0,0,0,0,1,1,90,5,5,90,41,5,5,5,44,5,127,5,0,0,0,0,0,0,1,1,5,5,5,1,20,0,0,0,44,44,4

4,44,0,0,0,0,0,0,1,1,5,5,5,1,19,0,0,0,44,93,44,100,0,5,5,5,5,5,1,1,66,66,66,1,18,0,0,0,0,135,135,135,0,5,66,66,66,66,1,1,68,68,68,1,17,0,0,0,0,135,135,135,0,5,66,66,66,66,1,1,68,68,68,1,16,0,0,0,0,135

,135,135,0,5,66,66,66,66,1,1,68,68,68,1,15,0,0,0,0,135,135,135,0,5,66,66,66,66,1,1,68,68,68,1,14,0,0,0,0,135,135,135,0,5,66,66,66,66,1,1,68,68,68,1,13,0,0,0,0,135,135,135,0,5,66,66,66,66,1,1,68,68,68,

1,12,0,0,0,0,135,135,135,0,5,66,66,66,66,69,69,68,68,68,1,11,0,0,0,0,135,135,135,0,5,66,66,66,66,69,69,68,68,68,1,10,0,0,0,0,135,135,135,0,5,66,66,66,66,69,69,68,68,68,1,9,0,0,0,0,135,135,135,0,5,66,6

6,66,66,1,1,1,7,1,1,8,0,0,0,89,5,5,5,0,5,66,66,66,66,1,94,1,7,93,90,7,0,0,0,5,5,5,5,0,1,1,1,1,1,1,7,7,7,7,7,7,0,0,0,5,2,2,5]});}},

{function Run(){maps.push({name="Strain",author="Luffaren",id="#1660257775",direction="right",cost=98,elevation=-19,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,24,24,24,0,0,0,0,128,24,24,0,0,0,0,0,

0,0,0,0,0,127,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0,5,21,0,0,0,0

,0,0,0,0,5,2,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,6,0,130,0,0,0,0,0,0,0,19,5,0,0,0,0,0,0,0,0,5,0,130,0,0,0,0,0,18,5,5,

0,0,0,0,0,0,0,0,7,5,0,130,130,0,0,17,5,16,5,15,0,0,0,0,0,0,0,0,5,5,0,130,130,5,5,5,5,0,5,5,5,14,0,13,0,0,0,8,5,0,0,5,5,5,0,0,0,0,0,0,0,5,0,0,0,5,5,5,5,94,0,0,0,0,0,0,0,0,0,0,0,5,12,0,0,5,9,5,94,0,0,0,

0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,5,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,10,0,5,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Opposition",author="Luffaren",id="#1660257801",direction="forward",cost=284,elevation=-5,map=[1,1,1,1,1,1,1,1,1,1,90,19,19,90,19,2,2,19,0,0,0,19,127,19,19,19,19,19,19,

19,19,19,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,96,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,96,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,19,19,

93,0,0,0,135,135,135,0,0,0,0,0,0,0,0,0,67,19,100,100,19,67,0,0,135,135,135,0,0,0,0,0,0,0,0,0,67,19,19,19,19,67,0,0,135,135,135,0,0,0,0,0,0,0,0,0,67,19,19,19,19,67,0,0,135,135,135,0,0,0,0,0,0,0,0,0,67,

19,94,94,19,67,0,0,135,135,135,0,0,0,0,0,0,0,0,0,0,19,19,19,19,0,0,0,135,135,135,0,0,0,0,0,0,0,0,0,0,96,96,96,96,0,0,0,135,135,135,0,0,0,0,0,0,0,0,0,0,96,96,96,96,0,0,0,135,135,135,0,0,0,0,0,0,0,0,0,0

,19,19,19,19,0,0,0,135,135,135,0,0,0,0,0,0,0,0,0,0,18,18,18,18,18,97,0,135,135,135,0,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,135,135,135,0,0,0,0,0,0,0,0,0,0,16,16,16,16,0,0,0,135,135,135,19,19,19,90,19,19

,19,19,90,19,15,15,15,15,0,0,0,19,19,19,19,19,19,19,19,19,90,19,19,19,14,14,14,14,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,14,2,2,14,0,0]});}},

{function Run(){maps.push({name="Wet sanctum",author="Luffaren",id="#1660257829",direction="forward",cost=360,elevation=0,map=[0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,119,119,119,119,1

,1,0,0,0,0,0,0,0,0,0,0,1,1,119,119,119,119,119,119,119,119,1,1,0,0,0,0,0,0,0,1,119,119,119,119,19,19,19,19,119,119,119,119,1,0,0,0,0,0,1,119,119,119,19,19,19,65,65,19,19,19,119,119,119,1,0,0,0,0,1,119

,119,19,19,19,19,65,65,19,19,19,19,119,119,1,0,0,0,1,94,119,19,19,19,19,65,65,65,65,19,19,19,19,119,94,1,0,0,1,119,119,19,19,19,65,65,65,65,65,65,19,19,19,119,119,1,0,1,119,119,19,19,19,65,65,65,65,65

,65,65,65,19,19,19,119,119,1,1,89,119,19,65,65,65,65,65,65,65,65,65,65,65,65,19,119,89,1,1,89,119,19,65,65,65,65,65,65,65,65,65,65,65,65,19,119,89,1,1,119,119,19,19,19,65,65,65,65,65,65,65,65,19,19,19

,119,119,1,0,1,119,119,19,19,19,65,65,65,65,65,65,19,19,19,119,119,1,0,0,1,93,119,19,19,19,19,65,65,65,65,19,19,19,19,119,93,1,0,0,0,1,119,119,19,19,19,19,65,65,19,19,19,19,119,119,1,0,0,0,0,1,119,119

,119,19,19,19,65,65,19,19,19,119,119,119,1,0,0,0,0,0,1,119,119,119,119,19,19,19,19,119,119,119,119,1,0,0,0,0,0,0,0,1,1,119,119,119,119,119,119,119,119,1,1,0,0,0,0,0,0,0,0,0,0,1,1,89,119,119,89,1,1,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Inner pools",author="Luffaren",id="#1660316770",direction="forward",cost=329,elevation=-3,map=[1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,119,119,119,119,1,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,1,119,119,119,119,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,119,119,90,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,119,119,119,119,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,119,118,118,119,1,39,0,0,39,0,0,39,0

,0,0,0,0,0,0,1,119,117,117,119,1,1,1,1,1,1,1,1,1,1,116,1,116,1,1,1,116,16,16,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,1,1,116,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,116,1,1

,116,16,16,90,65,65,65,65,16,90,65,65,65,65,90,16,16,116,1,1,116,16,94,16,65,65,65,65,89,16,65,65,65,65,16,94,16,116,1,1,116,16,16,90,65,65,65,65,16,90,65,65,65,65,90,16,16,116,1,1,116,16,16,16,16,16,

16,16,16,16,16,16,16,16,16,16,16,116,1,1,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,16,16,116,1,1,1,1,1,1,1,1,1,1,91,1,1,1,1,1,116,116,116,116,1,1,119,119,93,119,1,1,1,1,116,1,0,0,0,1

,116,89,89,116,1,1,93,119,119,119,119,118,117,116,116,1,0,0,0,1,90,116,116,90,1,1,93,119,119,89,1,1,1,1,1,1,0,0,0,1,116,116,116,116,1,1,119,119,93,119,1,0,0,0,0,0,0,0,0,1,116,116,116,116,1,1,1,1,1,1,1

,0,0,0,0,0,0,0,0,1,1,2,2,1,1]});}},

{function Run(){maps.push({name="Telebounce",author="Luffaren",id="#1660316792",direction="forward",cost=282,elevation=-5,map=[1,1,1,1,1,1,1,1,24,2,2,24,1,1,1,1,1,1,1,1,24,24,24,24,24,24,24,24,24,24,2

4,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,19,19,3,0,67,67,67,67,0,24,24,0,67,67,67,67,0,3,19,19,19,19,19,0,0,0,0,0,0,24,24,0,0,0,0,0,0,19,19,19,19,131,19

,0,0,0,0,0,0,96,96,0,0,0,0,0,0,19,131,19,19,19,19,0,0,0,0,0,0,96,96,0,0,0,0,0,0,19,19,19,19,19,19,0,0,0,0,0,0,96,96,0,0,0,0,0,0,19,19,19,19,131,19,0,0,0,0,0,0,24,24,0,0,0,0,0,0,19,131,19,19,19,19,0,0,

0,0,0,0,100,100,0,0,0,0,0,0,19,19,19,19,19,19,0,0,0,0,0,0,93,93,0,0,0,0,0,0,19,19,19,19,131,19,0,0,0,0,0,0,24,24,0,0,0,0,0,0,19,131,19,19,19,19,0,0,0,0,0,0,19,19,0,0,0,0,0,0,19,19,19,19,19,19,0,0,0,0,

0,0,97,97,0,0,0,0,0,0,19,19,19,19,131,19,0,0,0,0,0,0,19,19,0,0,0,0,0,0,19,131,19,19,19,19,0,0,0,0,0,0,94,94,0,0,0,0,0,0,19,19,19,19,19,19,0,0,0,0,0,0,19,19,0,0,0,0,0,0,19,19,19,19,131,19,0,0,0,0,0,0,1

9,19,0,0,0,0,0,0,19,131,19,19,19,19,24,24,24,24,24,24,19,19,24,24,24,24,24,24,19,19,19,24,24,24,24,24,24,24,24,24,2,2,24,24,24,24,24,24,24,24,24]});}},

{function Run(){maps.push({name="Ramparts",author="Luffaren",id="#1660316816",direction="left",cost=315,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,5,5,2,2,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,94,5,

0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,17,17,17,16,15,14,13,12,11,10,9,8,7,6,5,94,5,0,0,0,17,17,17,16,15,14,13,12,11,10,9,8,7,6,5,5,5,0,0,0,17,17,17,16,15,14,13,12,11,10,9,8,7,6,5,5,5,0,1,1,17,

17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,1,1,90,17,17,17,17,17,17,90,17,17,17,17,90,17,17,89,17,0,0,0,17,17,17,18,19,20,21,22,23,24,24,24,24,24,17,17,17,0,0,0,17,89,17,18,19,20,21,22,23,24,24

,24,24,24,90,17,17,0,0,0,17,17,17,18,19,20,21,22,23,24,24,24,24,24,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,89,24,17,17,65,67,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,65,65,65,67,0,0,0,0,0,0,0,0,0,0,0,0,0,90

,24,24,65,17,17,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,17,17,17,0,5,5,24,100,24,93,24,93,24,93,24,24,24,24,89,24,17,94,17,0,2,5,24,24,24,24,24,24,24,24,24,24,24,24,24,24,17,17,17,0,2,5,5,6,7,

8,9,10,11,12,13,14,15,16,17,17,17,17,90,0,5,5,5,6,7,8,9,10,11,12,13,14,15,16,17,17,17,17,17,0,5,5,5,6,7,8,9,10,11,12,13,14,15,16,17,17,17,17,17,0]});}},

{function Run(){maps.push({name="Side project",author="Luffaren",id="#1660316840",direction="forward",cost=124,elevation=0,map=[0,0,0,0,0,0,0,0,14,2,2,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,

14,14,14,14,14,14,0,0,0,0,0,0,36,36,0,35,35,0,14,94,14,14,14,14,94,14,0,35,35,0,36,36,127,36,0,35,35,0,14,14,14,100,100,14,14,14,0,35,35,0,36,127,0,0,0,0,0,0,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,36,36,1,0,0,0,0,17,17,14,14,17,17,0,0,

0,0,1,36,36,36,129,0,0,0,0,0,93,17,14,14,17,93,0,0,0,0,0,128,36,36,36,1,0,0,0,0,17,17,14,14,17,17,0,0,0,0,1,36,36,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Surfs up dude",author="Luffaren",id="#1660316864",direction="right",cost=364,elevation=-15,map=[24,2,2,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,24,127,127,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,135

,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,135,135,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,135,135,135,135,1,0,0,0,1,93,0,0,0,0,0,0,0,0,0,0,135,135,135,135,1,

0,0,0,1,9,0,0,0,0,0,0,0,0,0,0,135,135,135,135,1,0,0,0,1,94,9,9,9,9,89,9,9,9,0,0,135,135,135,135,1,1,1,1,1,1,1,1,1,1,1,1,1,9,1,1,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,9,9,

9,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,9,9,9,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,9,9,2,135,135,135,135,135,135,135,135,135,135,135,135,13

5,135,135,135,135,9,9,2,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,9,9,9,135,9,129,135,135,135,135,135,135,135,135,135,135,135,135,135,135,9,89,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1

,1,1,1,1,1]});}},

{function Run(){maps.push({name="Hallways of peril",author="Luffaren",id="#1660316891",direction="left",cost=339,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,

114,114,1,0,0,1,114,114,114,114,114,114,114,114,1,0,0,0,0,1,114,90,1,0,0,1,114,89,114,114,114,114,89,114,1,0,0,0,0,1,114,114,1,0,0,1,114,114,1,1,1,1,114,114,1,1,1,1,1,1,114,114,1,0,0,1,114,90,1,0,0,1,

114,114,114,114,114,114,114,114,89,114,1,0,0,1,114,114,1,0,0,1,114,114,90,114,114,114,114,114,114,114,1,0,0,1,114,114,1,1,1,1,114,114,1,1,1,1,1,1,114,114,1,0,0,1,90,14,14,90,1,1,114,114,1,0,0,0,0,1,11

4,90,1,0,0,1,14,14,14,14,1,1,114,114,1,1,1,1,1,1,114,114,1,1,1,2,14,14,14,14,114,114,114,89,114,114,90,114,114,114,89,114,114,114,1,2,14,14,14,14,114,114,114,114,114,114,114,114,114,114,114,114,114,11

4,1,1,14,14,14,14,1,1,1,1,1,1,114,114,1,1,1,1,114,114,1,1,90,14,14,90,1,0,0,0,0,1,114,114,1,0,0,1,114,114,1,1,1,114,114,1,1,0,0,0,0,1,114,90,1,1,1,1,114,89,1,0,1,114,114,1,0,0,0,0,0,1,114,114,1,114,11

4,114,114,114,1,0,1,114,114,1,1,1,1,1,1,1,114,114,1,114,93,114,94,114,1,0,1,114,89,114,114,114,90,114,114,114,89,114,1,114,93,114,94,114,1,0,1,114,114,114,114,114,114,114,114,114,114,114,1,114,114,114

,114,114,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Step by step",author="Luffaren",id="#1660316911",direction="forward",cost=130,elevation=-19,map=[0,0,0,0,0,0,0,24,2,2,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,0,0,0,39,39,0,0,0,0,19,19,19,19,0,0,0,0,0,0,0,0,0,0,93,39,39,39,39,39,19,89,19,19,0,0,0,0,0,0,0,0,0,

0,94,39,39,39,39,39,19,19,89,19,0,0,0,0,0,0,0,0,0,0,39,39,0,0,0,0,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,14,14,89,14,34,34,34,34,34,34,94,0,0,0,0,0,0

,0,0,0,14,89,14,14,34,34,34,34,34,34,93,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,34,34,0,0,0,29,29,0,0,0,0,9,9,9,9,0,0,0,0,0,0,0,0,0,0,93,29,29,29,29,29,9,89,9,9,0,0,0,0,0,0,0,0,0,0,94,29,29,29,29,29,9

,9,89,9,0,0,0,0,0,0,0,0,0,0,29,29,0,0,0,0,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,5,2,2,5,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="666",author="Luffaren",id="#1660317005",direction="forward",cost=158,elevation=0,map=[0,0,0,0,0,0,9,5,5,2,2,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,5,5,5,0,0,0,0,0

,0,0,5,5,0,0,5,0,0,0,0,0,0,0,5,5,0,0,0,0,0,5,5,0,0,0,5,5,0,0,0,0,0,0,0,5,5,0,0,0,5,5,0,0,0,0,5,0,5,0,0,0,0,0,0,0,5,9,0,0,5,0,0,0,0,0,5,0,5,5,0,0,0,9,9,5,5,5,0,5,5,0,0,0,0,0,5,0,0,5,5,9,9,0,0,5,0,5,9,5

,0,0,0,0,0,0,5,5,5,5,5,0,0,0,5,0,0,5,5,5,0,0,0,5,5,5,5,0,0,0,5,5,0,5,0,0,0,0,5,5,9,5,5,19,0,0,5,0,0,0,0,5,5,19,0,0,0,0,5,5,19,5,9,0,0,0,5,0,0,0,0,19,5,0,0,0,0,0,5,5,0,0,5,5,5,5,5,0,0,0,0,5,5,19,0,0,0,

0,5,5,19,0,0,0,0,5,5,5,5,0,5,5,0,5,0,0,0,0,5,5,5,0,0,0,0,0,5,0,0,5,5,0,0,0,5,0,0,5,5,0,5,0,0,0,0,0,5,0,0,5,0,5,5,0,5,0,0,5,0,0,5,5,0,0,0,0,5,0,5,0,0,0,0,19,5,5,5,5,0,0,0,5,5,0,0,0,5,5,0,0,0,0,0,0,0,5,

9,0,0,0,0,0,5,5,0,0,5,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,9,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,5,2,2,5,5,5,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="waterfall",author="MoistNoodlez",id="#1660398738",direction="forward",cost=104,elevation=-9,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,44,67,67,44,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,44,67,67,44,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,44,67,67,44,67,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,67,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,66,66,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,66,66,5,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Falls 4 You",author="MoistNoodlez",id="#1660400166",direction="forward",cost=132,elevation=-4,map=[0,0,0,0,0,0,0,9,2,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,92,0,92,92,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,44,67,67,44,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,44,67,67,44,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

77,44,67,67,44,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,44,67,67,44,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,44,67,67,44,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Water Jump",author="MoistNoodlez",id="#1660400277",direction="forward",cost=403,elevation=0,map=[1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,58,58,58,58,58,58,58,58,58,5

8,58,58,58,1,0,0,0,0,0,1,58,58,58,58,58,58,58,58,58,58,58,58,58,1,0,0,0,0,0,1,58,58,58,58,58,58,58,58,58,58,58,58,58,1,0,0,0,0,0,1,94,93,58,58,58,58,58,58,58,44,44,58,58,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,

1,1,44,58,58,1,0,0,0,0,0,58,92,108,108,108,108,108,66,67,44,67,44,58,58,1,0,0,0,0,0,58,92,108,108,108,108,108,66,67,44,67,44,58,58,1,0,0,0,0,0,58,92,108,108,108,108,108,66,67,44,67,44,58,58,1,0,0,0,0,

0,58,92,108,108,108,108,108,66,67,44,67,44,58,58,1,0,0,0,0,0,58,92,108,108,108,108,108,66,67,44,67,44,58,58,1,0,0,0,0,0,58,92,108,108,108,108,108,66,67,44,67,44,58,58,1,0,0,0,0,0,58,92,108,108,108,108

,108,66,67,44,67,44,58,58,1,0,0,0,0,0,58,1,1,44,44,44,44,44,44,44,67,44,58,58,1,0,0,0,0,0,58,1,67,67,67,67,67,67,67,67,67,44,96,96,1,0,0,0,0,0,58,1,67,67,67,67,67,67,67,67,67,44,96,96,1,0,0,0,0,0,58,1

,1,44,44,44,44,44,44,44,44,44,58,58,1,0,0,0,0,0,58,57,56,55,55,55,56,57,58,58,58,58,58,58,1,0,0,0,0,0,58,57,56,55,55,55,56,57,58,58,58,58,58,58,1,0,0,0,0,0,58,57,56,55,55,55,56,57,58,97,58,58,2,2,1,0,

0,0,0,0]});}},

{function Run(){maps.push({name="Straight Water",author="MoistNoodlez",id="#1660400454",direction="forward",cost=60,elevation=-5,map=[0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,42,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,37,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,35,35,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,34,34,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,125,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,39,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,2,2,39,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Waterfall Holdout",author="MoistNoodlez",id="#1660400579",direction="forward",cost=146,elevation=-19,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,

24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,66,66,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,67,67,67,67,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,66,66,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,88,5,88,88,5,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,88,5,5,88,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,88,5,5,88,5,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,5,5,88,88,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,88,5,5,88,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="lava stream",author="MoistNoodlez",id="#1660400852",direction="forward",cost=208,elevation=-12,map=[1,24,2,2,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,75,75,24,1,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,1,23,75,75,75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,75,75,22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,75,75,75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,75,75,22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,

75,75,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,75,75,20,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,75,75,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,75,75,18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,75,75,75,1,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,1,75,75,75,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,75,75,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,75,75,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,75,75,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,75,7

5,75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,75,75,75,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,75,75,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,75,75,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,2,2,12,1,0,0,0,0,0,0,0,0,0,0

,0,0,0,0]});}},

{function Run(){maps.push({name="Water U Turn",author="MoistNoodlez",id="#1660401822",direction="forward",cost=301,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,1,127,127,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,66,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,66,66,66,1,0,0,0,0,0,0,0,0

,1,66,66,66,66,73,73,73,66,66,66,1,0,0,0,0,0,0,0,0,1,66,66,66,66,73,73,73,73,66,66,1,0,0,0,0,0,0,0,0,1,66,66,66,66,73,73,73,73,66,66,1,0,0,0,0,0,0,0,0,1,66,66,66,66,73,73,73,73,66,66,1,0,0,0,0,0,0,0,0

,1,72,72,72,72,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,66,66,66,66,74,74,74,74,72,72,1,0,0,0,0,0,0,0,0,1,66,66,66,66,74,74,74,74,72,72,1,0,0,0,0,0,0,0,0,1,66,66,66,66,74,74,74,74,66,66,1,0,0,0,0,0,0,0,0,1,66,

66,66,66,74,74,74,66,66,66,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,66,14,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,95,95,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,14,1,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1]});}},

{function Run(){maps.push({name="ezrace",author="MoistNoodlez",id="#1660401932",direction="forward",cost=152,elevation=-5,map=[0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,66,66,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,66,66,76,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,66,66,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,66,66,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,66,66,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,66,66,76,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,76,91,91,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,66,66,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,66,66,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,91,91,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,66,66,76,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,76,66,66,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,66,66,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,14,14,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,2,2,14,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Mix and Slide",author="MoistNoodlez",id="#1660402529",direction="forward",cost=382,elevation=0,map=[0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,127,127,1,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,1,127,127,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,130,130,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,130,130,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,130,130,130,135,135,135,1,1,1,1,1,1,0,0,0,0

,0,0,0,1,130,130,130,135,135,135,135,135,135,135,135,93,1,0,0,0,0,0,0,1,130,135,135,135,135,135,135,135,135,135,135,135,1,0,0,0,0,0,0,1,135,135,135,135,135,135,135,135,135,135,135,135,1,0,0,0,0,0,0,1,

93,135,135,135,135,135,135,135,135,135,135,135,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,135,135,135,1,0,0,0,1,94,66,66,66,66,66,66,66,66,66,135,135,135,135,135,1,0,0,0,1,66,66,66,66,66,66,66,66,66,135,135,13

5,135,135,135,1,0,0,0,1,66,66,66,66,66,66,66,66,135,135,135,135,135,135,135,1,0,0,0,1,66,66,66,66,66,66,66,66,135,135,135,135,135,135,94,1,0,0,0,1,66,66,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,66,66,66,66

,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,66,66,14,14,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Slice",author="tilgep",id="#1660406505",direction="forward",cost=449,elevation=-15,map=[0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,124,112,112,137,112,112,116,116,134,116,1

16,120,120,132,120,120,124,124,124,124,124,112,112,112,112,112,116,116,116,116,116,120,120,120,120,120,124,124,124,124,124,112,112,112,112,112,116,116,116,116,116,120,120,120,120,120,124,124,124,124,1

24,112,112,112,112,112,116,116,116,116,116,120,120,120,120,120,124,124,124,124,124,111,111,111,111,111,115,115,115,115,115,119,119,119,119,119,123,123,123,123,123,111,111,111,111,111,115,115,115,115,1

15,119,119,119,119,119,123,123,123,123,123,111,111,111,111,111,115,115,115,115,115,119,119,119,119,119,123,123,123,123,123,111,111,111,111,111,115,115,115,115,115,119,119,119,119,119,123,123,123,123,1

23,111,111,111,111,111,115,115,115,115,115,119,119,119,119,119,123,123,123,123,123,110,110,110,110,110,114,114,114,114,114,118,118,118,118,118,122,122,122,122,122,110,110,110,110,110,114,114,114,114,1

14,118,118,118,118,1,95,95,95,95,95,110,110,110,110,110,114,114,114,114,1,95,95,95,95,1,122,122,122,122,95,110,110,110,110,110,95,95,95,95,1,118,118,118,118,1,122,122,122,122,95,110,110,110,110,110,11

4,114,114,114,1,118,118,118,118,118,122,122,122,122,122,109,109,109,109,109,113,113,113,113,113,117,117,117,117,117,121,121,121,121,121,95,95,95,95,1,113,113,113,113,113,117,117,117,117,117,121,121,12

1,121,121,95,109,109,109,1,113,113,113,113,113,117,117,117,117,117,121,121,121,121,121,95,109,109,109,1,113,113,113,113,113,117,117,117,117,117,121,121,121,121,121,109,2,2,1,1,1,1,136,1,1,1,1,133,1,1,

1,1,131,121,121]});}},

{function Run(){maps.push({name="Yellow Thing",author="tilgep",id="#1660419695",direction="forward",cost=59,elevation=-2,map=[0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,40,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,39,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,39,39,39,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,39,0,39,39,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,39,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,39,0,39,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,39,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="randomadventure",author="heavy",id="#1660420304",direction="right",cost=376,elevation=19,map=[1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,5,1,90,14,14,14,14,85,14,14,1

4,15,16,17,18,19,90,1,1,5,5,1,90,14,14,85,14,14,14,85,14,15,16,17,18,19,19,1,1,5,5,1,0,0,0,0,0,0,0,1,1,1,0,0,0,20,20,1,1,3,3,1,0,0,0,0,0,0,0,1,100,1,0,0,0,21,21,1,1,9,9,1,0,0,0,0,0,0,0,1,24,1,0,0,0,22

,22,1,1,9,9,1,0,126,126,0,0,0,0,0,135,0,0,0,0,23,23,1,1,9,9,1,1,14,14,91,91,13,12,0,135,0,0,0,0,24,24,1,1,9,9,9,1,14,14,91,91,13,12,0,135,0,0,0,90,24,24,1,1,9,9,9,1,90,90,1,1,12,12,0,24,0,0,0,90,24,24

,1,1,0,9,9,1,1,1,1,1,12,12,11,0,0,0,0,90,24,24,1,1,0,9,9,9,1,1,1,1,1,11,11,10,0,0,0,0,24,24,1,1,90,9,9,9,9,1,1,1,1,1,10,10,24,0,65,22,24,24,1,1,90,90,0,9,9,90,1,1,1,1,1,9,9,0,0,3,24,24,1,1,99,20,0,9,9

,90,90,9,9,96,9,9,9,0,92,20,24,24,1,1,1,1,1,9,9,9,9,9,9,96,9,9,9,1,1,1,98,98,1,1,65,65,65,9,9,9,9,9,1,1,1,0,1,1,1,1,24,24,1,1,0,0,0,0,0,0,11,1,1,0,0,92,1,1,1,90,24,24,2,1,97,39,130,34,85,34,130,1,0,0,

90,24,135,135,135,24,24,24,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="very interesting",author="tilgep",id="#1660425274",direction="left",cost=44,elevation=-3,map=[0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,37,1,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,37,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,37,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,34,34,37,37,0,0,0,0,0,0,0,0,0,0,0,0,34,34,34,34,34,34,37,37,0,0,0,0,0,0,0,0,0,0,0,34,34,34,34

,34,34,34,37,0,0,0,0,0,0,0,0,0,0,0,2,34,34,34,34,34,0,1,1,0,0,0,0,0,0,0,0,0,0,0,2,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="gan",author="zhugepiaoyi",id="#1660443441",direction="forward",cost=460,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,24,24,1,1,

1,1,0,0,0,0,1,1,1,1,24,24,24,24,24,24,24,1,1,0,0,0,0,0,0,1,1,24,24,24,24,24,24,24,24,4,4,4,4,0,0,1,0,0,1,1,24,24,24,24,24,24,24,24,4,4,4,4,4,4,1,24,0,1,24,24,24,1,24,24,24,94,24,24,4,4,4,4,4,4,24,24,1

,24,24,24,24,24,24,24,24,24,24,24,4,4,4,4,4,4,24,24,1,24,24,24,24,24,24,24,24,24,24,1,1,4,4,4,4,4,24,24,24,24,24,24,24,24,24,24,24,24,1,75,75,4,4,4,4,4,24,24,24,24,24,24,24,24,24,24,24,1,1,75,75,4,4,4

,4,4,24,24,24,24,24,24,24,24,24,24,24,1,75,75,75,75,75,75,1,24,24,24,93,24,24,24,24,24,24,24,24,1,75,75,75,75,75,75,1,24,24,24,24,24,24,24,24,24,24,24,24,1,75,75,75,75,75,75,1,24,24,24,24,24,24,24,24,

24,24,24,24,1,75,75,75,75,75,75,1,24,24,24,24,24,24,24,24,24,24,24,24,1,1,75,75,75,75,1,1,24,24,24,1,24,24,24,24,24,24,24,24,24,1,1,75,75,75,1,24,24,24,24,0,1,24,24,24,1,24,24,24,24,24,1,1,1,1,24,24,2

4,24,24,0,0,1,1,24,24,24,24,93,24,24,24,24,24,24,24,24,24,24,24,0,0,0,1,1,1,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,0,0,0,0,1,1,1,1,1,1,1,24,24,24,24,24,24,2,2]});}},

{function Run(){maps.push({name="Totemo",author="ZpLit",id="#1660447026",direction="left",cost=442,elevation=-3,map=[98,7,7,0,0,0,16,16,18,20,22,99,0,0,0,2,2,0,0,0,2,98,7,7,10,13,16,16,0,0,0,0,0,0,0,1

0,10,0,0,0,2,98,7,7,10,13,16,16,0,0,0,5,5,5,5,5,5,5,0,0,98,7,7,0,0,0,36,36,0,0,5,66,66,66,65,65,65,66,5,0,0,0,0,0,1,0,35,35,0,5,66,66,66,66,66,66,66,66,66,5,0,0,0,1,0,0,34,34,0,5,66,66,66,66,66,66,66,

66,66,5,0,0,0,0,0,0,0,0,0,5,66,66,66,66,66,66,66,66,66,5,0,0,0,0,0,0,34,34,0,5,66,66,66,66,66,66,66,66,66,5,0,0,0,0,0,0,35,35,5,66,66,66,66,66,66,66,66,66,66,5,0,0,0,0,0,0,36,36,8,8,7,6,5,66,66,66,66,

66,66,5,13,13,12,11,10,92,16,16,8,8,7,6,5,66,66,66,66,66,66,5,13,13,12,11,10,92,16,16,8,8,65,65,19,22,69,21,5,5,66,5,13,13,0,0,0,16,92,16,9,9,65,65,21,45,66,18,6,6,66,5,14,14,0,0,0,19,5,18,10,10,5,5,1

8,45,45,20,7,7,66,5,15,15,0,0,0,17,66,20,11,11,11,11,20,66,45,17,8,8,8,8,16,16,0,0,0,5,69,17,5,5,45,45,22,69,19,21,8,8,90,8,17,17,0,0,0,5,68,68,68,5,68,68,68,68,68,5,66,66,8,8,18,18,0,0,0,19,21,18,68,

68,68,5,5,5,68,68,66,66,9,9,3,3,12,12,11,10,95,95,10,90,10,10,9,9,9,9,9,90,9,9,12,12,12,12,11,10,95,95,10,10,10,10,9,9,90,9,9,9,9,9]});}},

{function Run(){maps.push({name="SussySplit",author="Niikos",id="#1660491776",direction="left",cost=572,elevation=0,map=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,34,2,2,1,1,1,1,1,1,1,1,1,1,94,93,94,1,1,1,1,34,

34,34,1,1,1,1,1,1,1,1,1,1,124,124,124,1,1,1,1,34,34,34,1,1,1,1,1,1,1,1,1,1,124,124,124,1,1,1,1,34,34,34,1,100,124,124,124,124,124,124,124,124,124,124,124,124,124,124,4,34,34,34,1,124,124,124,124,124,1

24,124,124,124,124,124,124,124,124,124,4,34,34,34,1,124,124,124,80,80,80,80,80,80,80,80,80,80,80,80,80,34,34,34,1,124,124,124,80,80,80,80,80,80,80,80,80,80,80,80,80,34,34,34,1,124,124,124,80,80,80,80,

80,80,80,80,80,80,80,80,80,34,34,34,1,124,124,124,80,80,80,80,80,80,80,80,80,80,80,93,34,34,34,34,1,124,124,124,80,80,0,0,0,0,80,80,80,80,80,94,34,34,34,34,1,124,124,124,80,80,0,0,0,0,80,80,80,80,80,9

3,34,34,34,34,1,124,124,124,80,80,0,0,0,0,80,80,80,80,80,80,80,34,34,34,1,65,65,65,80,80,0,0,0,0,80,80,80,80,80,80,80,34,34,34,1,65,65,65,80,80,0,0,0,0,80,80,80,80,80,80,80,34,34,34,1,34,34,34,34,34,3

4,34,34,34,34,34,34,34,34,34,34,34,34,34,1,2,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,1,2,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,100,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,

1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Water In My Ass",author="MoistNoodlez",id="#1660491837",direction="forward",cost=76,elevation=10,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,66,66,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,66,66,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,66,66,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,66,66,19,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,19,89,89,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,89,89,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,89,89,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,19,19,88,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,89,89,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,95,95,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Seaworld",author="MoistNoodlez",id="#1660492726",direction="forward",cost=256,elevation=0,map=[0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,127,127,127,127,

127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,66,6

6,66,66,66,66,0,0,0,0,0,0,0,0,0,0,0,66,66,66,66,66,66,66,66,66,66,0,0,0,0,0,0,0,0,0,0,66,66,66,66,66,66,66,66,66,66,0,0,0,0,0,0,0,0,0,0,66,66,66,66,0,0,66,66,66,66,0,0,0,0,0,0,0,0,0,0,66,66,66,0,5,5,0

,66,66,66,0,0,0,0,0,0,0,0,0,0,66,66,66,0,88,88,0,66,66,66,0,0,0,0,0,0,0,0,0,0,66,66,66,0,5,5,0,66,66,66,0,0,0,0,0,0,0,0,0,0,66,66,66,66,0,0,66,66,66,66,0,0,0,0,0,0,0,0,0,0,66,66,66,66,66,66,66,66,66,6

6,0,0,0,0,0,0,0,0,0,0,66,66,66,66,66,66,66,66,66,66,0,0,0,0,0,0,0,0,0,0,66,66,66,0,0,0,0,66,66,66,0,0,0,0,0,0,0,0,0,0,66,66,0,5,5,5,5,0,66,66,0,0,0,0,0,0,0,0,5,0,66,66,0,5,96,96,5,0,66,66,0,5,0,0,0,0,

0,0,97,0,66,66,0,1,2,2,1,0,66,66,0,97,0,0,0,0]});}},

{function Run(){maps.push({name="do jump",author="IDbunnyhop",id="#1660498925",direction="right",cost=100,elevation=0,map=[0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,5

,2,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,5,2,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,0

,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,0

,0,0,25,0,0,0,0,25,0,0,0,0,0,0,0,25,0,0,0,0,25,0,25,0,0,0,0,25,0,0,0,0,0,0,0,25,0,0,0,0,25,0,25,0,0,0,0,25,0,0,0,0,0,0,0,25,0,0,0,0,25,0,25,0,0,0,0,25,0,0,0,0,0,0,0,25,0,0,0,0,25,0,0,0,5,5,0,0,0,0,0,0

,0,0,0,0,0,5,5,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,5,5,6,7,8,9,10,10,0,0,5,5,5,5,5,0,0,0,0,0,5,5,6,7,8,9,10,10,0,0,5,5,5,5,5,0,0]});}},

{function Run(){maps.push({name="Punk Hazard v2",author="BlacK MaMBa",id="#1660500051",direction="forward",cost=602,elevation=16,map=[0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,5,5,1,1,

1,0,0,0,0,0,0,66,66,66,66,1,1,75,75,76,6,6,76,75,76,1,1,66,66,66,66,66,66,66,1,75,75,75,76,7,7,88,76,75,75,76,76,1,66,66,66,66,66,1,75,75,75,76,9,9,9,76,75,75,75,75,75,76,1,66,66,66,66,1,75,75,76,11,1

1,88,76,75,76,76,76,75,75,76,1,66,66,66,1,75,75,76,12,12,12,76,75,75,76,76,76,75,75,76,76,1,66,66,1,75,76,13,13,13,76,75,75,75,76,76,76,75,75,75,76,1,66,66,1,76,14,14,14,22,22,22,22,22,22,22,22,22,22,

22,22,22,66,66,66,18,18,95,18,18,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,18,18,14,18,18,66,66,66,66,66,66,66,66,66,66,66,66,66,66,1,66,14,14,14,24,24,24,24,24,24,24,24,24,24,24,24,24,66,66,1,66,6

6,15,15,15,23,24,24,20,20,20,20,20,20,20,100,1,66,66,1,65,66,66,16,16,16,23,24,20,66,66,66,66,66,66,66,1,66,66,66,1,65,66,66,17,17,88,23,20,66,66,66,66,66,20,1,66,66,66,66,1,65,65,66,66,18,18,18,23,20

,94,66,20,66,66,1,66,66,66,66,66,1,65,65,66,66,19,19,88,20,93,66,66,66,1,66,66,66,66,66,66,66,1,1,65,66,66,20,20,66,66,66,1,1,66,66,66,66,0,0,0,0,0,0,1,1,1,21,21,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,

2,1,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="2way defends",author="bunnyhop",id="#1660504045",direction="forward",cost=335,elevation=0,map=[1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,5,5,105,105,47,106,106,48,10

7,107,49,108,108,108,108,108,108,1,1,5,5,5,105,105,47,106,106,48,107,107,49,108,108,108,90,108,108,1,1,5,5,1,1,1,1,1,1,1,1,1,1,1,108,108,1,108,108,1,1,105,105,1,14,14,14,1,0,0,0,0,0,1,108,90,108,108,1

08,1,1,105,105,1,14,100,14,1,0,0,0,0,0,1,108,108,108,108,108,1,1,47,47,1,14,14,13,13,1,0,0,0,0,1,1,1,1,108,108,1,1,106,106,1,1,1,13,12,12,1,0,0,0,0,0,0,1,49,49,1,1,106,106,1,0,0,1,12,11,11,1,0,0,0,0,0

,1,107,107,1,1,48,48,1,0,0,0,1,11,10,10,1,0,0,0,0,1,107,107,1,1,107,107,1,0,0,0,0,1,10,9,9,1,0,0,0,1,48,48,1,1,107,107,1,0,0,0,0,0,1,9,8,8,1,0,0,1,106,106,1,1,49,49,1,0,0,0,0,0,0,1,8,7,7,1,0,1,106,106

,1,1,108,108,1,1,1,1,0,0,0,0,1,7,6,6,1,1,47,47,1,1,108,108,108,108,108,1,0,0,0,0,0,1,6,5,5,5,5,5,1,1,108,108,108,90,108,1,0,0,0,0,0,0,1,5,5,5,5,5,1,1,108,90,1,108,108,1,1,1,1,1,1,1,1,5,5,5,5,5,1,1,108

,108,108,108,108,108,49,107,107,48,106,106,47,5,5,5,5,5,1,1,108,108,108,108,108,108,49,107,107,48,106,106,47,5,5,5,5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1]});}},

{function Run(){maps.push({name="do crouchjump",author="bunnyhop",id="#1660504119",direction="left",cost=152,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10

5,105,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,47,47,47,1,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,1,47,47,47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,105,105,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,47,47,

1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,47,47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,1,1,1,1,1,1,1,1,0,0,0,0,

0,0,0,0,1,47,47,1,2,105,105,105,105,47,47,1,1,1,1,1,1,1,1,1,1,47,47,1,2,105,105,105,105,47,47,105,105,105,47,47,105,105,105,47,47,105,105,1,1,1,1,1,1,47,47,105,105,105,47,47,105,105,105,47,47,105,105,

1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Water Landing",author="MoistNoodlez",id="#1660526488",direction="forward",cost=130,elevation=-3,map=[0,0,0,0,0,0,0,8,2,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,127,127,

127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,6

6,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,1,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,1,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,

1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,95,95,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="My Thighs",author="Shellbert",id="#1660527778",direction="left",cost=247,elevation=0,map=[0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,24,24,1,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,1,24,24,24,24,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,24,24,24,24,80,24,24,24,1,1,1,1,0,0,0,0,0,0,1,24,24,24,1,24,24,80,24,24,24,24,24,24,1,1,1,0,0,0,1,24,24,24,22,1,24,24,80,80,1,1,1,24,24,24,24,1,

0,0,1,24,24,24,22,1,1,24,24,24,80,0,0,1,24,1,24,24,1,1,24,24,24,24,22,1,0,1,1,24,24,1,0,0,1,0,1,1,0,1,24,24,24,24,22,22,1,0,1,24,24,24,1,0,0,0,0,0,0,1,24,24,24,24,22,22,1,0,0,1,1,24,24,1,0,0,0,0,0,1,2

4,24,24,24,22,22,22,1,0,0,0,1,24,24,1,0,0,0,0,1,24,24,24,24,80,80,1,0,0,0,0,0,1,24,24,1,0,0,0,0,1,80,80,80,62,62,62,1,0,0,0,0,0,1,24,24,1,0,0,1,64,62,62,62,62,62,62,1,0,0,0,0,0,0,1,24,24,1,1,64,64,64,

64,64,62,62,62,1,0,0,0,0,0,0,1,24,24,24,1,64,64,64,64,64,64,62,62,1,0,0,0,0,0,0,0,1,1,1,0,2,64,64,64,64,64,62,62,1,0,0,0,0,0,0,0,0,0,0,0,2,64,64,64,62,62,62,1,0,0,0,0,0,0,0,0,0,0,0,0,64,64,64,1,1,1,1,

0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Are we there yet",author="Kitty Cat",id="#1660551320",direction="forward",cost=418,elevation=4,map=[1,5,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,139,5,1,1,5,5,5,1,5,132,5,1,5,134

,5,1,5,137,5,1,5,5,1,1,5,5,5,1,5,5,5,1,5,87,5,1,5,5,5,1,5,5,1,1,5,5,5,1,5,5,5,1,5,5,5,1,5,5,5,1,5,5,1,1,5,5,5,1,5,5,5,1,5,5,5,1,5,5,5,1,5,5,1,1,5,5,5,1,5,5,5,1,5,5,5,1,5,5,5,1,5,5,1,1,5,5,5,1,5,5,5,1,

5,5,5,1,5,5,5,1,5,5,1,1,5,5,5,1,5,5,5,1,5,5,5,1,5,5,5,1,5,5,1,1,5,5,5,1,5,5,5,1,5,5,5,1,5,5,5,1,5,127,1,1,5,5,5,1,5,5,5,1,5,5,5,1,7,5,5,1,86,86,1,1,5,5,5,1,5,5,5,1,5,5,5,1,9,5,5,1,86,86,1,1,5,5,5,1,5,

5,5,1,5,5,5,1,11,5,5,1,86,86,1,1,5,5,5,1,5,5,5,1,5,5,5,1,13,5,5,1,86,86,1,1,5,5,5,1,5,5,5,1,5,5,5,1,15,5,5,1,88,88,1,1,5,5,5,1,5,5,5,1,5,5,5,1,17,5,5,1,9,9,1,1,5,5,5,1,5,5,5,1,5,5,5,1,19,5,5,1,9,9,1,1

,5,5,5,1,5,5,5,1,5,5,5,1,21,5,5,1,9,9,1,1,5,5,5,1,5,5,5,1,5,5,5,1,23,5,5,1,9,9,1,1,5,131,5,1,5,133,5,1,5,136,5,1,93,138,5,1,95,95,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1]});}},

{function Run(){maps.push({name="Move with it",author="Kitty Cat",id="#1660554143",direction="forward",cost=172,elevation=12,map=[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,51,51,51,51,51,51,51,51,

51,51,51,51,51,51,51,11,12,128,45,45,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,11,12,128,45,45,0,0,0,94,94,0,0,0,0,0,0,0,0,57,57,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,57,57,0,0,0,45,45,0,0,0,0,0,0,

0,0,0,0,0,0,0,57,57,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,57,57,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,57,57,0,0,0,45,45,0,0,0,0,0,62,62,62,0,0,0,0,0,57,57,0,0,0,45,45,0,0,0,0,0,62,97,62,0,0,0,0,0,57,5

7,0,0,0,45,45,0,0,0,0,0,62,62,62,0,0,0,0,0,57,57,0,0,0,45,45,0,0,0,0,0,62,62,62,0,0,0,0,0,57,57,0,0,0,45,45,0,0,0,0,0,93,62,62,62,61,60,59,58,57,57,0,0,0,45,45,0,0,0,0,0,93,62,62,62,61,60,59,58,57,57,

0,0,0,45,45,0,0,0,0,0,62,62,62,0,0,0,0,0,57,57,0,0,0,45,45,0,0,0,0,0,96,96,96,0,0,0,0,0,57,57,0,0,0,45,45,0,0,0,0,0,96,100,96,0,0,0,0,0,57,57,0,0,0,5,5,0,0,0,0,0,62,62,62,0,0,0,0,0,57,57,0,0,0,6,6,0,0

,0,0,0,0,0,0,0,0,0,0,0,57,57,0,0,0,126,126,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0]});}},

{function Run(){maps.push({name="Catherine fix",author="HaRyDe",id="#1660567474",direction="forward",cost=294,elevation=19,map=[19,19,17,0,0,0,0,5,2,2,5,0,20,93,0,0,0,0,0,0,4,24,0,1,0,22,0,5,5,5,5,22,

0,0,0,0,0,0,0,0,0,92,0,77,5,7,7,5,5,5,5,7,7,5,77,0,0,0,0,0,0,0,0,77,7,20,7,9,9,24,9,7,9,7,77,0,0,0,0,0,0,0,0,77,9,11,13,11,9,11,17,11,9,11,77,0,0,0,0,0,0,24,0,77,15,15,22,17,15,11,13,15,13,11,77,0,0,0

,0,0,0,93,0,77,1,15,13,24,13,24,17,24,1,17,77,0,0,0,0,0,0,0,0,77,1,17,15,24,1,15,17,15,17,15,77,0,0,0,0,0,0,0,1,77,17,24,19,17,19,17,24,19,24,24,77,24,0,0,0,0,0,0,0,19,19,21,21,19,19,21,21,19,21,19,19

,0,0,0,0,0,0,0,20,24,24,24,24,24,24,24,24,24,24,24,24,21,0,22,0,0,0,22,24,24,24,24,24,87,87,87,87,24,24,24,24,24,24,24,0,0,0,1,96,96,1,1,1,24,24,97,24,1,1,1,1,1,1,1,1,0,1,1,22,22,0,0,1,1,1,1,1,1,0,0,0

,99,24,24,1,1,20,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,1,1,22,1,0,0,0,0,0,0,0,0,0,0,0,0,1,22,1,1,22,22,22,92,0,0,20,22,86,86,22,20,0,0,0,0,92,22,22,22,1,1,22,1,0,0,0,0,24,24,0,0,0,0,0,0,1,22,1,1,1,7

7,0,0,0,0,0,1,98,98,1,0,0,0,0,0,0,0,77,1,1,1,0,0,0,1,1,1,2,2,1,1,1,0,0,0,0,0,1,1]});}},

{function Run(){maps.push({name="butts",author="kyfg",id="#1660587602",direction="left",cost=88,elevation=19,map=[0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,

0,0,0,16,16,0,0,16,3,0,93,0,0,0,0,0,5,5,0,18,18,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,5,5,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,6,6,0,0,0,19,19,0,0,15,15,0,0,0,0,0,0,

0,0,0,6,6,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,7,7,0,0,0,0,0,20,20,0,0,14,14,0,0,0,0,0,0,0,7,7,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13

,13,0,0,0,0,0,8,8,0,0,0,0,0,0,0,21,21,0,0,13,13,0,0,0,0,0,8,8,0,0,0,0,0,0,0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,9,9,0,0,0,0,0,0,0,0,0,22,22,0,0,12,12,0,0,0,9,9,0,0,0,0,0,0,

0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,24,0,0,0,0,0,0,0,11,11,0,10,10,0,0,0,0,0,0,2,24,0,23,23,0,0,0,0,11,11,0,10,10,0,0,0,0,0,0,0,0,0,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Great Heathen Army",author="ZpLit",id="#1660609132",direction="right",cost=636,elevation=-2,map=[7,2,2,6,5,66,66,5,5,66,66,66,66,66,66,66,66,66,5,5,7,7,7,6,66,66,66,66

,66,66,66,66,66,66,66,66,66,5,5,5,7,7,6,5,66,66,66,66,66,66,66,66,66,66,66,66,66,5,5,5,7,6,5,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,5,5,7,6,5,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,5,6,

5,66,66,66,5,5,66,66,66,66,66,66,66,66,66,66,66,66,5,6,5,66,66,66,5,6,5,5,66,66,66,66,66,66,66,66,66,5,5,6,5,66,66,66,66,5,6,6,5,66,66,66,66,66,66,66,66,5,5,6,5,66,66,66,66,5,6,6,5,66,66,66,66,66,66,6

6,66,5,5,5,66,66,66,66,5,6,6,6,5,66,66,66,66,66,66,66,66,5,5,66,66,66,66,5,6,6,6,6,5,66,66,66,66,66,66,66,5,5,5,66,66,66,66,66,5,6,6,6,5,66,66,66,66,66,66,66,5,5,5,66,66,66,66,66,66,5,6,5,66,66,66,66,

66,66,66,66,5,5,5,66,66,66,66,66,66,66,5,5,66,66,66,66,66,66,66,5,5,5,2,66,66,66,66,66,93,66,5,5,66,66,66,66,66,66,5,5,5,5,2,66,66,66,66,66,66,66,5,5,66,66,66,66,66,66,5,5,5,5,5,66,66,66,66,66,66,5,5,

5,66,66,66,66,66,66,5,5,5,5,5,66,66,66,5,5,5,6,6,5,66,66,66,66,66,66,66,5,5,5,5,5,5,5,5,6,6,6,6,6,5,66,66,66,66,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,5,66,66,66,5,5,5,5,5,5]});}},

{function Run(){maps.push({name="Patchwork",author="Niikos",id="#1660620721",direction="left",cost=345,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,109,109,2,2,9,0,0,0,0,0,0,0,1,1,1,1,1,1,1,9,8,9,9,

9,9,0,0,0,0,0,0,0,1,5,94,5,5,5,5,9,8,29,29,29,29,0,0,0,0,0,0,0,1,94,5,5,5,5,5,9,9,9,9,29,29,0,0,0,0,0,0,0,1,5,5,5,5,5,5,49,9,9,10,29,29,0,100,0,0,0,0,0,1,5,5,5,5,5,5,49,90,9,10,10,29,0,16,0,0,0,0,0,1,

5,5,5,5,5,5,49,9,9,9,9,29,0,16,0,0,0,0,0,1,5,5,5,5,5,5,49,8,8,49,9,9,0,16,0,0,0,0,0,1,5,5,5,5,5,5,9,9,9,49,90,9,0,4,0,0,0,0,0,1,4,4,5,5,5,5,9,10,10,49,9,9,9,9,9,9,9,49,49,29,29,29,9,9,109,109,9,9,9,49

,8,9,9,10,9,49,49,90,9,9,9,9,9,10,9,9,90,9,9,9,9,9,9,9,9,90,9,29,9,10,10,9,9,10,10,9,9,9,9,9,90,9,9,90,9,29,29,29,9,10,9,9,9,29,29,29,29,29,10,9,9,9,9,9,9,9,10,9,9,9,9,90,9,29,29,29,29,29,10,9,8,8,2,9

,9,9,10,9,90,9,9,49,49,49,9,90,9,9,9,9,8,9,2,9,8,9,109,109,109,9,10,10,109,109,109,9,9,9,9,9,9,9,49,9,8,9,90,9,9,9,9,10,9,9,8,8,9,9,9,11,11,11,49,9,8,9,9,9,10,10,49,9,9,9,49,49,49,49,109,11,13,13,49,9

,29,29,29,29,9,9,49,9,90,9,9,9,9,9,109,11,13,93]});}},

{function Run(){maps.push({name="Wet Socks",author="Niikos",id="#1660621995",direction="right",cost=668,elevation=0,map=[1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,14,14,65,65,65,65,65,65,65,1,65,65,65

,65,65,65,65,65,1,1,65,65,65,65,65,65,65,65,65,1,65,65,65,65,65,65,65,65,1,1,65,65,65,65,65,65,65,65,65,1,65,65,65,65,65,65,65,65,1,1,65,65,65,65,65,65,65,65,65,1,65,65,65,1,65,65,65,65,1,1,1,1,1,1,1,

1,65,65,65,1,65,65,65,1,65,65,65,65,1,1,65,65,65,65,65,65,65,65,65,1,65,65,65,1,65,65,65,65,1,1,65,65,65,65,65,65,65,65,65,1,65,65,65,1,65,65,65,14,2,1,65,65,65,65,65,65,65,65,65,1,65,65,65,1,65,65,65

,14,2,1,65,65,65,65,65,65,65,65,65,1,65,65,65,1,1,1,1,1,1,1,65,65,65,1,1,1,1,1,1,1,65,65,65,65,65,65,65,65,1,1,65,65,65,65,65,65,65,65,65,1,65,65,65,65,65,65,65,65,1,1,65,65,65,65,65,65,65,65,65,1,65,

65,65,65,65,65,65,65,1,1,65,65,65,65,65,65,65,65,65,1,65,65,65,65,65,65,65,65,1,1,65,65,65,65,65,65,65,65,65,1,65,65,65,65,65,65,65,65,1,1,1,1,1,1,1,1,65,65,65,1,1,1,1,1,1,1,65,65,1,1,94,65,65,65,65,6

5,65,65,65,65,65,65,65,65,65,65,65,65,1,1,93,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,1,1,94,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}

},

{function Run(){maps.push({name="FloorisLava",author="Niikos",id="#1660624566",direction="right",cost=808,elevation=0,map=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,14,2,2,14,1,1,1,75,97,75,75,75,75,75,75,75,75,75,

75,75,14,14,14,14,75,1,1,75,24,75,75,75,75,75,75,75,75,75,75,75,14,14,14,14,75,1,1,75,24,75,75,75,75,75,75,75,75,75,75,14,14,14,14,14,75,1,1,75,3,75,75,75,75,75,75,75,75,75,14,14,14,14,14,14,75,1,1,75

,14,14,14,14,14,14,75,14,14,14,14,14,14,14,14,14,75,1,1,75,14,14,14,14,14,14,75,14,14,14,14,14,14,14,75,75,75,1,1,75,14,14,14,14,14,14,75,14,14,14,14,14,14,14,75,75,75,1,1,75,14,14,14,75,75,75,75,75,7

5,75,75,75,75,75,75,75,75,1,1,75,14,14,14,75,75,75,75,75,75,75,75,75,75,75,75,75,75,1,1,96,96,96,96,96,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,75,14,14,14,75,75,75,75,75,75,75,75,75,75,93,75,75,93,75,1,75,14,14

,14,75,75,75,75,75,75,75,75,75,75,14,75,75,14,75,1,75,14,14,14,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,1,75,14,14,14,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,1,75,14,14,14,75,14,14,14,75,14,1

4,14,14,75,14,14,14,14,2,1,75,14,14,14,75,14,14,14,75,14,14,14,14,75,14,14,14,14,2,1,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,1,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75

,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Maple Leaf",author="TF2 Pencil",id="#1660638523",direction="forward",cost=490,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,10,10,0,0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,0,10,10,10,10,10,10,76,76,76,10,10,10,10,10,10,10,10,10,0,0,10,10,10,10,10

,10,76,76,76,76,10,10,10,76,10,10,10,10,0,0,10,10,10,10,10,10,76,76,76,76,76,10,76,76,10,10,10,10,0,0,10,10,10,10,10,10,10,76,76,76,76,76,76,76,10,10,10,10,0,0,10,10,10,10,10,10,10,10,76,76,76,76,76,7

6,10,10,10,10,0,0,10,10,10,10,76,76,76,76,76,76,76,76,76,76,10,10,10,10,0,0,10,10,10,76,76,76,76,76,76,76,76,76,76,76,76,76,10,10,0,0,10,10,10,10,76,76,76,76,76,76,76,76,76,76,10,10,10,10,0,0,10,10,10

,10,10,10,10,10,76,76,76,76,76,76,10,10,10,10,0,0,10,10,10,10,10,10,10,76,76,76,76,76,76,76,10,10,10,10,0,0,10,10,10,10,10,10,76,76,76,76,76,10,76,76,10,10,10,10,0,0,10,10,10,10,10,10,76,76,76,76,10,1

0,10,76,10,10,10,10,0,0,10,10,10,10,10,10,76,76,76,10,10,10,10,10,10,10,10,10,0,0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,0,2,

2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Where do I go",author="TF2 Pencil",id="#1660638566",direction="forward",cost=230,elevation=0,map=[0,2,2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,10,10,0,0,0,0,1,132,10,10,1

0,10,10,10,10,10,10,10,0,0,10,10,0,0,0,0,1,10,10,10,10,10,10,10,10,10,10,10,0,0,10,10,0,0,0,0,1,1,1,1,1,1,1,1,1,1,10,10,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,10,0,0,10,10,0,0,0,0,1,1,1,1,1,1,1,1,1,

1,10,10,0,0,10,10,10,0,0,0,1,132,10,10,10,10,10,10,10,10,10,10,0,0,10,131,10,0,0,0,1,10,10,10,10,10,10,10,10,10,10,10,0,0,10,10,10,0,0,0,1,1,1,1,1,1,1,1,1,1,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1

0,10,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,10,10,0,0,0,0,0,0,0,0,1,132,10,10,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,0,1,10,10,10,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,10,10,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,10,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,10,10,0,0,0,0,0,0,0,0,1,132,10,10,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,0,1,10,10,10,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,0,1,1,1

,1,1,1,1,1,1,1,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0]});}},

{function Run(){maps.push({name="downhill run",author="fantasy",id="#1660666644",direction="right",cost=122,elevation=-11,map=[0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,39,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,39,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,0,77,24,77,0,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,37,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,37,37,0,0,0,0,0,0,0,77,24,77,0,0,0,0,0,0,0,0,37,37,0,0,0,0,0,0,0,77,24,77,0,0,0,0,0,0,0,0,36,36,0,0,0,0,0,0,0,0,77,0,0,0,0,0,

0,0,0,0,36,36,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,36,36,0,0,0,77,24,77,0,0,0,0,0,28,28,2,0,0,0,0,35,35,0,0,0,0,77,0,0,0,0,0,0,28,28,2,0,0,0,0,35,35,0,0,0,0,0,0,0,0,0,0,0,28,28,0,0,0,0,0,35,35,0,0,0,0

,0,0,0,0,0,0,0,29,29,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,29,29,0,0,0,0,0,34,34,33,33,33,32,32,32,31,31,31,30,30,30,29,0,0,0,0,0,34,34,33,33,33,32,32,32,31,31,31,30,30,30,29,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="go trigger the end",author="fantasy",id="#1660666772",direction="right",cost=125,elevation=-7,map=[0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,33,33,0,0,0,0,

0,0,0,33,0,0,0,0,0,0,0,0,0,0,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,131,33,33,93,33,33,33,0,33,0,33,0,33,0,33,0,0,0,0,0,33,33,33,33,33,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,33,93,33,94,33,0,0,0,0,0,0,0,0,0,0

,0,0,0,33,33,33,33,33,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,33,33,33,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,33,33,33,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,33,33,33,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,131,3

3,33,33,33,33,131,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,132,26,26,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,26,26,26,26,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,26,26,26,26,2,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,1,26,26,89,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,26,26,26,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,132,26,26,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="keep defending v2",author="fantasy",id="#1660666905",direction="forward",cost=77,elevation=9,map=[0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,26,26,26,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,28,28,28,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,29,29,29,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,30,30,30,30,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,31,31,31,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32

,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,33,33,33,33,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,34,34,34,33,0,33,0,33,0,33,100,0,0,0,100,33,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,

0,0]});}},

{function Run(){maps.push({name="BabyBooster",author="Niikos",id="#1660666913",direction="left",cost=233,elevation=-10,map=[34,34,34,34,34,0,0,0,0,1,1,0,0,0,0,0,44,2,2,44,2,34,34,34,34,0,0,0,0,1,1,0,0

,0,0,0,44,44,44,44,2,34,34,34,34,0,0,0,0,1,1,0,0,0,0,0,44,44,44,44,34,34,34,34,34,0,0,0,0,1,1,0,0,0,0,0,44,44,44,44,0,34,34,34,34,0,0,0,0,1,1,0,0,0,0,0,44,44,44,44,0,34,34,34,34,0,0,0,0,1,1,0,0,0,0,0,

44,44,44,44,0,34,34,34,34,0,0,0,0,1,1,0,0,0,0,0,44,44,44,44,0,34,34,34,34,0,0,0,0,1,1,0,0,0,0,0,44,44,44,44,0,34,34,34,34,0,0,0,0,1,1,0,0,0,0,0,44,44,44,44,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,34

,34,34,34,0,0,0,0,1,1,0,0,0,0,0,44,44,44,44,0,34,34,34,34,0,0,0,0,1,1,0,0,0,0,0,44,44,44,44,0,34,34,34,34,0,0,0,0,1,1,0,0,0,0,0,44,44,44,44,0,34,34,34,34,0,0,0,0,1,1,0,0,0,0,0,44,44,44,44,0,34,34,65,6

5,0,0,0,0,1,1,0,0,0,0,0,44,44,44,44,0,34,34,65,65,65,65,65,0,0,0,0,0,128,44,44,44,44,44,44,0,34,34,65,65,65,65,65,0,0,0,0,0,128,44,44,44,44,44,44,0,34,34,65,65,65,65,65,0,0,0,0,0,128,44,44,44,44,44,44

,0,34,34,65,65,0,0,0,0,1,1,0,0,0,0,0,44,44,44,44,0,34,34,34,34,0,0,0,0,1,1,0,0,0,0,0,94,93,94,93]});}},

{function Run(){maps.push({name="BoostUpTheLevels",author="Niikos",id="#1660668007",direction="right",cost=192,elevation=10,map=[0,2,2,0,1,40,40,40,40,41,41,42,42,129,0,0,0,44,44,44,0,34,34,0,1,39,39,

40,40,41,41,42,42,129,0,0,0,44,44,2,0,34,34,0,1,39,39,40,40,41,41,42,42,129,0,0,0,44,44,2,0,34,34,0,1,39,39,0,0,0,0,0,0,0,0,0,0,44,44,44,0,34,34,0,1,39,39,0,1,1,1,1,1,1,1,1,0,0,0,0,0,34,34,0,1,39,39,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,1,39,39,39,38,38,37,37,0,0,128,34,34,34,0,0,0,127,127,0,1,39,39,39,38,38,37,37,0,0,128,34,34,34,0,0,0,0,0,0,1,39,39,39,38,38,37,37,0,0,128,34,34,34,0,0,0,0,0,0,1,0,0

,0,0,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,0

,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,0,34,34,34,34,34,34,129,0,0,0,0,0,0,34,34,34,34,0,0,0,34,34,34,34,34,

34,129,0,0,0,0,0,0,34,34,34,34,0,0,0,34,34,34,34,34,34,129,0,0,0,0,0,0,34,34,34,34,0,0]});}},

{function Run(){maps.push({name="TripleThreat",author="Niikos",id="#1660669265",direction="right",cost=401,elevation=5,map=[34,2,2,0,0,1,93,39,39,39,39,39,39,39,39,39,39,39,39,39,34,34,34,0,0,1,93,39,

132,39,39,39,39,39,39,39,39,39,39,2,34,34,34,0,0,1,39,39,39,39,39,39,39,39,39,39,39,39,39,2,34,34,34,0,0,1,39,39,39,39,39,134,39,39,39,39,39,39,39,39,34,34,34,0,0,1,39,39,39,39,39,39,39,39,39,39,39,39

,39,39,34,34,34,0,0,1,94,39,39,39,39,39,39,39,137,39,39,39,39,39,34,34,34,0,0,1,94,39,39,39,39,39,39,39,39,39,39,39,39,39,34,34,34,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,34,34,34,1,1,1,1,1,1,1,1,1,1,1,1,1,

1,1,1,1,34,34,34,129,0,0,0,0,0,65,65,65,34,34,34,34,34,34,34,131,34,34,34,129,0,0,0,0,0,65,65,65,34,34,34,34,34,34,34,131,34,34,34,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,34,34,34,1,1,1,1,1,1,1,1,1,1,1,1,1,

1,1,1,1,34,34,34,129,0,0,0,0,0,65,65,65,34,34,34,34,34,34,34,133,34,34,34,129,0,0,0,0,0,65,65,65,34,34,34,34,34,34,34,133,34,34,34,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,34,34,34,1,1,1,1,1,1,1,1,1,1,1,1,1,

1,1,1,1,34,34,34,129,0,0,0,0,0,65,65,65,34,34,34,34,34,34,34,136,34,34,34,129,0,0,0,0,0,65,65,65,34,34,34,34,34,34,34,136,34,34,34,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="displaced escape",author="king buzzo",id="#1660672085",direction="forward",cost=296,elevation=19,map=[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,5,5,0,0,1,1,0,0,0,0,0,10,10,10,10,10,10,0,0,0,6,6,1,1,1,9,0,0,0,11,11,10,76,76,76,76,10,0,0,0,5,6,1,8,8,9,0,0,0,10,10,10,10,10,10,76,10,92,0,0,3,7,7,7,8,90,7,8,9,10,10,10,76,76,10,7

6,10,24,0,0,3,7,7,90,7,8,7,8,10,10,11,10,76,76,10,76,10,24,0,0,0,0,0,7,8,9,0,0,0,10,10,10,10,10,10,76,10,24,0,0,0,0,0,0,0,9,0,0,0,11,11,10,76,76,76,76,10,24,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,10,10

,24,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,3,24,0,0,0,38,38,38,1,0,1,0,1,0,1,0,1,0,1,0,1,95,0,38,38,38,65,38,0,62,22,22,22,22,24,23,23,24,24,24,24,24,0,38,24,24,23,23,62,62,22,65,65,65,23,24,22,22,24,24,

24,24,0,92,24,24,24,1,1,1,22,65,24,24,24,23,23,24,24,23,24,24,0,38,24,24,23,23,62,62,22,65,24,24,23,22,23,24,23,24,23,24,0,92,24,24,0,0,0,62,22,22,22,22,22,23,24,24,24,24,24,24,0,38,24,24,0,0,1,0,1,0,

1,0,1,0,1,0,1,0,1,0,0,0,91,91,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="chill vista",author="king buzzo",id="#1660673232",direction="forward",cost=269,elevation=18,map=[1,37,37,37,37,37,0,0,2,2,0,0,0,0,0,0,0,0,0,0,1,24,24,24,1,37,0,5,5,5,5

,0,0,0,24,24,24,24,24,0,1,24,132,24,1,37,0,0,90,5,0,0,24,24,24,24,24,3,24,0,1,24,24,24,1,37,0,0,5,90,0,0,24,131,24,24,3,3,24,0,37,23,23,23,37,37,0,5,5,5,5,0,24,24,24,24,3,3,24,0,38,90,23,23,38,0,0,9,9

5,95,9,0,0,1,0,0,9,9,9,0,39,23,22,23,39,0,9,9,6,6,9,9,1,0,0,0,9,8,9,0,40,23,21,23,40,0,9,1,7,7,1,9,0,1,9,9,9,8,9,0,41,22,23,23,41,0,9,1,8,8,1,9,1,0,9,8,8,9,9,0,0,23,21,21,42,0,9,9,9,9,9,9,0,1,8,8,9,9,

0,0,0,23,23,22,43,0,0,0,9,9,1,0,1,0,9,8,9,0,0,0,0,23,23,23,0,0,93,0,9,9,0,1,0,1,8,9,8,3,0,0,0,23,90,23,0,0,17,0,9,9,9,9,9,9,9,9,9,3,0,5,1,22,23,21,90,23,1,0,9,9,9,10,9,10,9,8,9,0,0,0,1,21,23,21,23,23,

1,0,9,10,9,9,9,9,9,9,9,0,0,5,1,23,23,22,21,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,23,90,22,1,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,1,23,22,23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,23,23,23,1,0,0,0,0,0,0,0,0,0,0,5,0

,93,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5]});}},

{function Run(){maps.push({name="mountain escape",author="king buzzo",id="#1660674237",direction="forward",cost=183,elevation=9,map=[0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,5,8,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,9,93,1,0,8,7,7,8,0,1,94,9,0,0,0,0,0,0,0,0,9,1,0,0,0,8,8,0,0,0,1,9,0,0,0,0,0,0,0,0,0,9,1,0,9,8,8,9,0,1,9,0,0,0,0,0,0,0,0,0,0,0,0,10,9,9,9,9,9,0,0,0,

0,0,0,0,0,0,0,0,0,0,10,10,13,13,13,13,10,10,0,0,0,0,0,0,0,0,0,0,0,11,10,13,13,100,13,13,13,10,11,0,0,0,0,0,0,0,0,0,12,11,13,13,13,85,13,13,13,13,12,12,0,0,0,0,0,0,0,0,12,13,13,13,13,13,13,13,13,13,13,

12,0,0,0,0,0,0,0,0,13,13,12,13,13,13,13,13,13,13,13,33,0,0,0,0,0,0,0,0,13,12,13,13,13,12,14,24,13,13,13,33,0,0,0,0,0,0,0,0,14,13,13,13,24,14,24,14,13,13,13,33,0,0,0,0,0,0,0,0,13,12,13,13,14,13,12,14,2

4,14,13,33,0,0,0,0,0,0,0,0,13,13,13,14,14,13,12,14,13,14,24,85,33,0,0,0,0,0,0,0,0,24,12,14,13,12,13,14,14,24,24,3,33,0,0,0,0,0,0,0,0,0,13,14,14,14,14,14,24,24,24,3,33,0,0,0,0,0,0,0,0,0,0,14,14,14,65,6

5,14,0,33,33,33,0,0,0,0,0,0,0,0,0,0,2,2,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="ChaChaSlide",author="MoistNoodlez",id="#1660695249",direction="right",cost=167,elevation=0,map=[0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,14,1,0,0,14,97,1

4,0,14,14,14,0,0,0,0,0,0,0,1,0,0,1,0,0,14,0,14,0,0,14,0,0,0,0,0,0,0,0,1,14,14,1,0,0,14,0,14,0,14,14,14,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,0,0,14,14,14,0,0,0,0,0,0,

0,1,0,14,1,0,0,0,0,0,14,0,14,0,0,0,0,0,0,0,0,1,0,14,1,0,0,0,0,0,0,14,14,14,0,0,0,0,0,0,0,1,0,14,1,0,0,0,0,0,0,0,0,0,96,96,0,0,0,0,0,1,14,0,1,0,0,0,0,0,14,14,14,14,96,2,0,0,0,0,0,1,14,0,1,0,0,0,0,0,14,

0,0,14,96,2,1,1,1,1,1,1,14,0,1,0,0,0,0,0,14,0,0,14,96,96,1,14,135,135,135,135,135,135,1,0,0,0,0,0,0,0,0,0,0,0,1,14,1,1,1,1,1,1,1,14,0,14,0,14,0,0,14,14,14,0,1,14,135,135,135,135,135,135,14,14,14,0,14,

0,0,0,0,14,0,0,1,1,1,1,1,1,1,1,1,14,0,14,0,14,0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,14,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,14,97,14,0,0]});}},

{function Run(){maps.push({name="FireWater",author="MoistNoodlez",id="#1660695517",direction="forward",cost=382,elevation=0,map=[0,0,0,0,0,0,0,14,14,2,2,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,66,75,75,6

6,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,69,75,75,69,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,69,75,75,69,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,69,75,75,69,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,69,75,75,69,14,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,69,75,75,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,75,75,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,75,75,69,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,69,75,75,69,0,0,0,0,0,0,14,14,97,66,69,69,69,69

,69,69,66,75,75,66,69,69,69,69,69,69,66,97,14,66,69,69,69,69,69,69,66,75,75,66,69,69,69,69,69,69,66,14,14,14,0,0,0,0,0,14,69,75,75,69,14,0,0,0,0,0,14,14,14,0,0,0,0,0,0,14,69,75,75,69,14,0,0,0,0,0,0,14

,14,0,0,0,0,0,0,14,69,75,75,69,14,0,0,0,0,0,0,14,14,0,0,0,0,0,0,14,69,75,75,69,14,0,0,0,0,0,0,14,96,0,0,0,0,0,0,14,69,75,75,69,14,0,0,0,0,0,0,96,14,0,0,0,0,0,14,14,66,14,14,66,14,14,0,0,0,0,0,14,14,14

,14,14,14,14,14,14,96,96,96,96,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,96,2,2,96,14,14,14,14,14,14,14,14]});}},

{function Run(){maps.push({name="CheckerBoard",author="MoistNoodlez",id="#1660695930",direction="forward",cost=213,elevation=0,map=[0,0,0,0,0,0,5,5,5,5,2,2,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,

5,5,0,0,0,0,0,0,0,0,0,24,5,24,5,24,5,24,5,24,5,24,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,5,24,5,24,5,24,5,24,5,24,5,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,24,5,24

,5,24,5,24,5,24,5,24,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,5,24,5,24,5,24,5,24,5,24,5,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,24,5,24,5,24,5,24,5,24,5,24,0,0,0,0,

0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,5,24,5,24,5,24,5,24,5,24,5,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,24,5,24,5,24,5,24,5,24,5,24,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5

,5,0,0,0,0,0,0,0,0,0,5,24,5,24,5,24,5,24,5,24,5,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,5,95,95,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Double Dicker",author="MoistNoodlez",id="#1660698536",direction="forward",cost=306,elevation=0,map=[0,0,0,64,92,58,45,2,2,45,45,58,92,64,0,0,0,0,0,0,0,0,0,64,64,58,45,

45,45,45,45,58,64,64,0,0,0,0,0,0,0,0,0,0,64,58,46,46,46,46,46,58,64,0,0,0,0,0,0,0,0,0,0,0,64,58,46,46,76,46,46,58,64,0,0,0,0,0,0,0,0,0,0,0,64,58,47,47,76,47,47,58,64,0,0,0,0,0,0,0,0,0,0,0,64,58,47,76,

76,76,47,58,64,0,0,0,0,0,0,0,0,0,0,0,64,58,48,48,48,76,48,58,64,0,0,0,0,0,0,0,0,0,0,0,64,58,48,48,48,76,48,58,64,0,0,0,0,0,0,0,0,0,0,0,64,58,48,48,48,76,76,58,64,0,0,0,0,0,0,0,0,0,0,0,64,58,49,76,49,4

9,49,58,64,0,0,0,0,0,0,0,0,0,0,0,64,58,49,76,49,49,49,58,64,0,0,0,0,0,0,0,0,0,0,0,64,58,49,76,49,49,49,58,64,0,0,0,0,0,0,0,0,0,0,0,64,58,76,76,76,76,48,58,64,0,0,0,0,0,0,0,93,64,64,64,64,58,76,48,48,7

6,48,58,64,64,64,64,93,0,0,0,93,64,58,58,58,58,48,48,48,48,48,58,58,58,58,64,93,0,0,0,93,64,58,92,47,47,47,47,47,47,47,47,47,92,58,64,93,0,0,0,93,64,58,92,46,46,46,46,46,46,46,46,46,92,58,64,93,0,0,0,

93,64,58,92,46,46,88,46,46,46,88,46,46,92,58,64,93,0,0,0,93,64,58,92,45,45,45,45,45,45,45,45,45,92,58,64,93,0,0,0,93,64,58,58,58,58,45,45,2,2,45,58,58,58,58,64,93,0,0,0]});}},

{function Run(){maps.push({name="House Party",author="MoistNoodlez",id="#1660699413",direction="forward",cost=351,elevation=0,map=[1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,1,121,55,55,55,55,55,55,55,12

1,10,10,10,10,1,0,0,0,0,0,1,121,55,49,92,49,55,89,55,121,10,10,10,10,1,0,0,0,0,0,1,121,55,49,49,49,55,89,55,121,10,10,10,10,1,0,0,0,0,0,1,121,55,49,49,49,55,55,55,121,10,10,10,10,1,0,0,0,0,0,1,121,55,

49,89,49,55,55,55,121,10,66,66,10,1,0,0,0,0,0,1,121,55,89,49,49,55,89,55,121,10,66,66,10,1,0,0,0,0,0,1,121,55,49,49,49,55,55,55,121,10,66,66,10,1,0,0,0,0,0,1,121,55,49,66,49,49,49,49,109,10,66,66,10,1

,0,0,0,0,0,1,121,55,49,68,49,49,49,49,109,10,66,66,10,1,0,0,0,0,0,1,121,55,55,69,55,55,55,55,121,10,66,66,10,1,0,0,0,0,0,1,121,89,55,69,55,89,55,55,121,10,66,66,10,1,0,0,0,0,0,1,121,55,55,69,55,55,92,

55,121,10,66,66,10,1,0,0,0,0,0,1,121,121,121,69,121,121,121,121,121,10,66,66,10,1,0,0,0,0,0,1,89,21,10,68,10,10,10,10,10,10,66,66,10,1,0,0,0,0,0,1,89,21,10,66,68,68,68,68,68,68,66,66,10,1,0,0,0,0,0,1,

21,21,10,10,10,10,10,10,10,10,10,10,10,1,0,0,0,0,0,1,93,21,10,10,10,10,10,10,10,10,10,10,10,1,0,0,0,0,0,1,97,21,10,10,94,10,94,10,10,10,96,96,10,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0]});

}},

{function Run(){maps.push({name="Easy Crouches",author="MoistNoodlez",id="#1660700416",direction="forward",cost=144,elevation=0,map=[0,0,0,0,0,0,1,64,2,2,64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,64,64,64,64

,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,61,61,61,61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,61,61,61,61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,58,58,58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,58,58,58,58,1,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,1,55,55,55,55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,55,55,55,55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,52,52,52,52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,52,52,52,52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,49,49,49,49,1,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,1,49,49,49,49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,46,46,46,46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,95,95,95,95,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,46,46,46,46,1,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,1,3,92,92,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,55,55,55,55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,92,3,3,92,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,24,24,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,2,2,24,1,0,0,0,0,0,0

,0,0]});}},

{function Run(){maps.push({name="Slide Ring",author="MoistNoodlez",id="#1660700635",direction="forward",cost=375,elevation=0,map=[0,0,0,0,0,0,0,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,14,14,135,135,

135,100,1,0,0,0,0,0,0,0,0,0,0,1,135,135,135,135,135,135,135,135,1,0,0,0,0,0,0,0,0,0,1,135,135,135,135,135,135,135,135,135,1,0,0,0,0,0,0,0,0,0,1,135,135,135,135,135,135,135,135,135,135,1,0,0,0,0,0,0,0,

1,100,135,135,135,135,135,135,135,135,135,135,1,0,0,0,0,0,0,0,1,135,135,135,135,135,135,135,135,135,135,135,1,0,0,0,0,0,0,0,1,135,135,135,135,1,1,1,135,135,135,135,1,0,0,0,0,0,0,0,1,135,135,135,135,1,

1,1,135,135,135,135,1,0,0,0,0,0,0,0,1,135,135,135,135,1,1,1,135,135,135,135,1,0,0,0,0,0,0,0,1,135,135,135,135,1,1,1,135,135,135,135,1,0,0,0,0,0,0,0,1,135,135,135,135,1,1,135,135,135,135,135,1,0,0,0,0,

0,0,0,1,135,135,135,135,1,1,135,135,135,135,135,1,0,0,0,0,0,0,0,1,135,135,135,135,1,135,135,135,135,135,135,1,0,0,0,0,0,0,0,1,135,135,135,135,135,135,135,135,135,135,135,1,0,0,0,0,0,0,0,1,135,135,135,

135,135,135,135,135,135,135,100,1,0,0,0,0,0,0,0,0,1,100,135,135,135,135,135,135,135,135,1,0,0,0,0,0,0,0,0,0,0,1,135,135,135,135,135,135,135,1,0,0,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,1,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,1,2,2,1,1,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Shitter",author="MoistNoodlez",id="#1660701345",direction="forward",cost=112,elevation=0,map=[0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0

,0,0,0,0,0,0,5,5,5,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0

,0,0,0,5,5,0,0,0,5,5,5,5,5,0,0,0,5,0,0,0,0,0,0,5,0,0,5,5,5,5,0,0,5,5,0,0,5,0,0,0,0,0,0,5,0,5,5,5,0,0,0,0,0,5,5,91,91,91,91,91,0,0,0,5,5,5,5,0,0,0,0,0,0,0,91,91,91,91,91,91,25,0,0,5,5,0,0,0,0,0,0,0,0,0

,0,91,5,5,5,0,0,0,0,100,5,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,5,0,5,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,5,93,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2]});}},

{function Run(){maps.push({name="quick ladders",author="king buzzo",id="#1660734785",direction="forward",cost=157,elevation=13,map=[0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,5,5,5,5,25,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,25,5,5,5,5,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,6,6,6,6,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,7,7,7,7,25,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,8,8,8,8,25,25,25,0,0,0,0,0,0,0,0,0,25,0,0,0

,8,8,85,8,0,0,0,25,0,0,0,0,0,0,0,0,25,0,0,0,8,85,8,8,0,0,0,25,0,0,0,0,0,0,0,0,25,3,24,24,8,8,85,8,24,24,3,25,0,0,0,0,0,0,0,0,0,0,5,65,8,8,8,8,65,5,0,0,0,0,0,0,0,0,0,0,0,0,5,65,65,65,65,65,65,5,0,0,0,0

,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,0,0,9,93,0,0,0,0,0,0,0,0,1,0,0,0,7,7,7,7,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,8,8,8,8,0,14,1,0,0,0,0,0,0,0,0,0,1,0,0,0,3,3,3,3,0,0,0,1,0

,0,0,0,0,0,0,0,0,0,18,18,18,18,18,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,18,75,18,1,1,18,75,18,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,1,1,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,2,2,18,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Box",author="TF2 Pencil",id="#1660753643",direction="forward",cost=212,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,56,56,1,1,1,1,1,1,0,0,0,0,0,0,1,56,56,56,56,56,56,56,56,56,56,56,56,1,0,0,0,0,0,0,1,56,56,56,56,56,56,56,56,56,56,56,56,1,0,0,0,0,0,0,1,5

6,56,56,56,56,56,56,56,56,56,56,56,1,0,0,0,0,0,0,1,56,56,56,56,56,56,56,56,56,56,56,56,1,0,0,0,0,0,0,1,56,56,56,56,56,56,56,56,56,56,56,56,1,0,0,0,0,0,0,1,56,56,56,56,56,56,56,56,56,56,56,56,1,0,0,0,0

,0,0,1,56,56,56,56,56,56,56,56,56,56,56,56,1,0,0,0,0,0,0,1,56,56,56,56,56,56,56,56,56,56,56,56,1,0,0,0,0,0,0,1,56,56,56,56,56,56,56,56,56,56,56,56,1,0,0,0,0,0,0,1,56,56,56,56,56,56,56,56,56,56,56,56,1

,0,0,0,0,0,0,1,56,56,56,56,56,56,56,56,56,56,56,56,1,0,0,0,0,0,0,1,56,56,56,56,56,56,56,56,56,56,56,56,1,0,0,0,0,0,0,1,1,1,1,1,1,56,56,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Swimming Pools",author="TF2 Pencil",id="#1660753703",direction="forward",cost=409,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,14,14,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,14,14,1,0,0,1,97,14,14,14,1,14,14,14,14,14,14,14,14,14,14,14,1,0,0,1,14,65,66,14,1,14,65,65,65,65,65,65,65,65,14,14,1,0,0,1,14,66,66,14,1,14,65,65,65,65,6

5,65,65,65,14,14,1,0,0,1,14,14,68,14,1,14,65,65,65,65,65,65,65,65,14,14,1,0,0,1,1,1,69,1,1,14,14,14,14,14,14,14,14,14,14,14,1,0,0,1,97,14,68,14,14,14,14,14,14,14,65,65,65,65,65,14,1,0,0,1,14,14,68,66,

66,66,66,66,66,14,65,66,66,66,65,14,1,0,0,1,14,14,14,66,66,66,66,66,66,14,65,66,66,66,65,14,1,0,0,1,14,14,14,66,66,14,14,66,66,14,65,66,66,66,65,14,1,0,0,1,14,14,14,66,66,97,14,66,66,14,65,66,66,66,65

,14,1,0,0,1,14,14,14,66,66,66,66,66,66,14,65,66,66,66,65,14,1,0,0,1,14,14,14,66,66,66,66,66,66,14,65,66,66,66,65,14,1,0,0,1,14,14,14,14,14,14,14,14,14,14,65,65,65,65,65,14,1,0,0,1,14,14,14,14,14,14,14

,14,14,14,14,14,14,14,14,97,1,0,0,1,96,96,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Around for shortcut",author="TF2 Pencil",id="#1660753788",direction="right",cost=149,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,14,14,14,14,14,14,14,

14,14,14,14,14,14,14,14,14,14,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,14,14,14,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,0,0,14,14,14,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,0,0,14,14,14,0,0,0,0,

0,0,0,1,96,96,1,0,0,0,0,0,0,14,14,14,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,14,14,14,14,14,14,14,2,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,

14,14,2,0,0,0,0,0,0,0,0,0,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,18,0,20,0,0,0,0,0,0,0,14,14,14,0,0,0,0,16,1

6,0,18,0,20,0,22,22,0,0,0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,3,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Chess or Checkers",author="TF2 Pencil",id="#1660753950",direction="forward",cost=584,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1

,1,1,1,1,32,32,1,0,0,1,76,76,12,12,76,76,12,12,76,76,12,12,76,76,12,12,1,0,0,1,76,76,12,12,76,76,12,12,76,76,12,12,76,76,12,12,1,0,0,1,12,12,76,76,12,12,76,76,12,12,76,76,12,12,76,76,1,0,0,1,12,12,76,

76,12,12,76,76,12,12,76,76,12,12,76,76,1,0,0,1,76,76,12,12,76,76,12,12,76,76,12,12,76,76,12,12,1,0,0,1,76,76,12,12,76,76,12,12,76,76,12,12,76,76,12,12,1,0,0,1,12,12,76,76,12,12,76,76,12,12,76,76,12,12

,76,76,1,0,0,1,12,12,76,76,12,12,76,76,12,12,76,76,12,12,76,76,1,0,0,1,76,76,12,12,76,76,12,12,76,76,12,12,76,76,12,12,1,0,0,1,76,76,12,12,76,76,12,12,76,76,12,12,76,76,12,12,1,0,0,1,12,12,76,76,12,12

,76,76,12,12,76,76,12,12,76,76,1,0,0,1,12,12,76,76,12,12,76,76,12,12,76,76,12,12,76,76,1,0,0,1,76,76,12,12,76,76,12,12,76,76,12,12,76,76,12,12,1,0,0,1,76,76,12,12,76,76,12,12,76,76,12,12,76,76,12,12,1

,0,0,1,12,12,76,76,12,12,76,76,12,12,76,76,12,12,76,76,1,0,0,1,12,12,76,76,12,12,76,76,12,12,76,76,12,12,76,76,1,0,0,1,32,32,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}}

,

{function Run(){maps.push({name="Def Or Die",author="Wolfdiman",id="#1660756440",direction="forward",cost=430,elevation=5,map=[1,19,19,19,19,19,19,19,19,2,2,19,19,19,19,19,19,19,19,1,1,19,19,19,19,19,

19,19,19,19,19,19,19,19,19,19,19,19,19,1,1,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,1,1,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,1,1,19,19,19,19,1,1,1,1,0,0,1,1,1,1,19,19,19,

19,1,1,19,19,19,19,1,1,1,1,0,0,1,1,1,1,19,19,19,19,1,1,19,19,19,19,1,1,97,19,19,19,19,97,1,1,19,19,19,19,1,1,19,1,1,1,1,1,19,19,19,19,19,19,1,1,1,1,1,19,1,1,19,92,0,0,0,0,19,19,19,19,19,19,90,19,76,19

,76,19,1,1,19,92,0,0,0,0,19,19,19,19,19,19,90,19,76,19,76,19,1,1,19,1,1,1,1,1,19,19,19,19,19,19,1,1,1,1,1,19,1,1,19,19,19,19,1,1,97,19,19,19,19,97,1,1,19,19,19,19,1,1,19,19,19,19,1,1,1,96,96,96,96,1,1

,1,19,19,19,19,1,1,19,19,19,19,1,99,91,19,19,19,19,91,99,1,19,19,19,19,1,1,19,19,19,19,1,1,1,98,98,98,98,1,1,1,19,19,19,19,1,1,93,19,19,94,1,102,91,19,19,19,19,91,102,1,93,19,19,94,1,1,1,1,1,1,1,1,1,1

,101,101,1,1,1,1,1,1,1,1,1,24,24,24,24,24,24,24,24,92,19,19,19,19,92,0,0,0,0,0,19,24,24,24,24,24,24,24,24,19,19,19,19,19,0,0,0,0,0,0,4,24,2,2,24,23,22,21,20,19,19,19,19,19,0,0,24,100,24,0,24]});}},

{function Run(){maps.push({name="strafe practice",author="fara",id="#1660767281",direction="forward",cost=169,elevation=0,map=[1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,1,11,11,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,11,31,129,130,130,130,130,130,130,130,130,130,130,130,130,130,0,0,1,11,11,31,31,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,1,11,11,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,130,0,0,1,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,1,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,1,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,1,11,11,13,15,17,19,20,20,21,0,0,0,0,0,0,0,130,0,0,1,1

1,11,13,15,17,19,20,21,22,0,0,0,0,0,0,0,130,0,0,1,11,11,13,15,17,19,21,22,22,0,0,0,0,0,0,0,130,0,0,1,11,11,0,0,0,0,24,24,24,0,0,0,0,0,0,0,130,0,0,1,11,11,0,0,0,0,24,100,24,0,0,0,0,0,0,0,130,0,0,1,11,1

1,0,0,0,0,24,132,24,0,0,0,0,0,0,31,31,31,0,1,11,11,0,0,0,0,24,24,24,0,0,0,0,0,0,31,93,31,0,1,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,31,31,31,0,1,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,31,93,31,0,1,11,11,0,0,0,0,0,0

,0,0,0,0,0,0,0,31,31,31,0,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,31,131,31,0]});}},

{function Run(){maps.push({name="chad",author="bunnyhop",id="#1660768643",direction="right",cost=222,elevation=-4,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,39,38,38,37,0,0,0,0,0,0,0,0,0,0,49,4

9,0,0,0,39,38,38,37,37,37,36,35,35,0,0,0,0,0,49,55,49,0,0,0,0,38,38,37,37,36,36,35,35,49,49,0,0,49,55,55,49,0,0,0,0,38,38,37,37,36,36,35,35,49,49,49,49,55,55,55,49,0,49,0,0,0,38,37,37,36,35,35,49,49,5

5,55,55,55,1,55,49,49,49,0,0,0,38,37,37,36,35,35,49,55,55,1,55,55,1,1,55,55,55,0,0,0,0,37,37,36,35,35,49,55,1,0,55,55,55,55,55,55,55,0,0,0,0,37,37,36,35,35,49,55,1,93,55,55,55,55,55,55,55,0,0,0,0,0,36

,36,35,35,49,55,1,0,55,55,55,55,55,55,55,0,0,0,0,0,36,36,35,35,49,55,55,1,55,55,55,55,55,55,55,0,0,0,0,0,0,36,35,35,49,55,55,55,55,55,55,55,55,55,55,0,0,0,0,0,0,0,35,35,49,55,55,55,55,1,1,55,55,55,55,

0,0,0,0,0,0,0,0,35,49,55,55,1,1,55,55,55,55,55,2,0,0,0,0,0,0,0,0,0,49,55,55,55,55,55,55,55,55,55,2,0,0,0,0,0,0,0,0,0,0,49,55,55,55,55,55,55,55,55,55,0,0,0,0,0,0,0,0,0,0,0,49,49,55,55,55,55,55,55,49,0,

0,0,0,0,0,0,0,0,0,0,0,49,49,49,49,49,49,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="warp journey",author="fara",id="#1660769192",direction="forward",cost=257,elevation=12,map=[47,47,47,47,0,0,1,5,2,2,5,1,0,0,0,0,0,0,0,1,47,137,137,47,0,0,0,5,5,5,5,0,0

,0,0,0,0,0,0,0,1,47,90,47,0,1,0,5,5,5,5,0,0,97,0,0,23,23,0,0,90,47,47,47,0,0,0,5,131,131,5,0,0,23,0,0,90,23,0,0,47,88,88,47,0,0,0,5,5,5,5,0,0,0,0,1,0,0,0,0,47,138,138,47,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,

0,47,47,47,47,0,0,0,0,0,0,0,0,0,0,0,0,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,37,100,37,1,23,23,96,23,23,23,23,23,1,1,0,0,0,0,0,1,0,0,0,

1,23,136,96,23,90,23,23,134,23,30,30,30,30,30,0,1,0,0,0,1,23,136,96,23,23,90,23,134,23,7,7,91,7,30,0,1,37,1,37,1,23,23,96,90,23,23,90,23,23,7,133,133,7,30,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,91,7,7,90,30,0,

1,0,0,0,1,0,0,0,0,0,0,0,0,0,7,91,7,1,30,0,1,37,37,37,1,0,0,0,0,0,23,23,0,0,7,90,7,7,30,0,1,37,139,37,1,1,0,0,0,0,1,0,0,0,7,132,132,7,30,0,1,37,37,37,37,1,0,0,0,0,0,0,0,0,7,7,7,7,30,0,1,37,37,37,37,1,0

,23,0,0,23,23,0,1,30,30,30,30,30,0,1,37,2,2,37,1,0,97,0,0,23,90,0,0]});}},

{function Run(){maps.push({name="pl",author="bunnyhop",id="#1660769240",direction="forward",cost=368,elevation=0,map=[0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,17,17,17,17,17,17,17,17,17,17,

17,17,17,17,0,0,0,1,17,17,17,18,18,18,18,18,18,18,18,18,18,18,18,18,0,0,1,17,17,18,18,18,19,19,19,19,19,19,1,18,18,18,1,19,0,1,17,17,18,18,19,19,19,19,19,19,19,19,1,19,19,19,1,19,1,17,17,18,18,1,1,20,

20,20,20,20,20,20,1,19,19,19,1,20,1,17,18,18,19,1,1,20,21,21,21,21,21,21,1,18,18,18,1,21,1,17,18,19,19,20,20,20,21,22,1,22,22,22,22,1,18,1,22,22,1,17,18,19,19,20,21,21,21,22,1,22,22,22,22,22,1,22,22,2

2,1,17,18,19,19,20,21,22,22,22,1,22,22,22,22,22,94,22,22,22,1,17,18,19,19,20,21,22,22,22,1,22,22,22,22,22,93,22,22,22,1,17,18,19,19,20,21,21,21,22,1,22,22,22,22,22,1,22,22,22,1,17,18,19,19,20,20,20,21

,22,1,22,22,22,22,1,18,1,22,22,1,17,18,18,19,1,1,20,21,21,21,21,21,21,1,18,18,18,1,21,1,17,17,18,18,1,1,20,20,20,20,20,20,20,1,19,19,19,1,20,0,1,17,17,18,18,19,19,19,19,19,19,19,19,1,19,19,19,1,19,0,0

,1,17,17,18,18,18,19,19,19,19,19,19,1,18,18,18,1,18,0,0,0,1,17,17,17,18,18,18,18,18,18,18,18,18,18,18,18,18,0,0,0,0,1,1,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,

1]});}},

{function Run(){maps.push({name="Loop",author="ZpLit",id="#1660772609",direction="right",cost=214,elevation=-12,map=[0,0,2,2,0,0,0,0,0,0,0,0,13,13,13,13,15,0,0,0,0,19,19,19,0,0,0,0,0,0,0,13,13,13,13,1

3,15,15,0,0,0,19,19,19,0,0,0,0,0,0,13,13,13,13,13,13,15,15,15,0,0,19,19,19,1,0,0,0,0,13,13,13,13,0,0,0,15,15,15,0,0,19,19,19,19,1,0,0,11,11,13,13,0,0,0,0,15,15,15,0,0,19,19,19,19,1,0,11,11,11,11,0,0,0

,0,0,15,15,15,0,0,1,19,19,19,17,1,111,11,11,0,0,0,0,0,15,15,15,15,0,0,0,1,19,17,17,17,51,111,11,0,0,0,0,15,15,15,15,0,0,0,0,0,1,17,17,51,95,51,111,1,1,1,15,15,15,15,0,0,0,0,0,0,0,1,111,51,95,51,17,17,

17,17,17,15,15,0,0,0,0,0,0,0,0,0,11,111,51,17,17,17,17,17,17,17,1,0,0,0,0,0,0,0,0,0,11,11,111,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,0,0,0,0,0,0,7,7,7,7,

88,7,0,0,0,0,0,11,11,11,0,0,0,0,0,7,7,7,88,7,7,2,0,0,0,0,0,11,11,9,9,0,0,0,9,9,9,7,7,7,7,2,0,0,0,0,0,11,9,9,9,9,126,126,9,9,9,7,7,88,7,7,0,0,0,0,0,0,9,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9

,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Grid Walls",author="TF2 Pencil",id="#1660800852",direction="forward",cost=296,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,13,13,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,13,13,1,0,0,0,0,1,13,13,13,134,1,13,13,13,132,1,13,13,13,13,1,0,0,0,0,1,13,13,13,13,1,13,13,13,13,1,13,13,13,13,1,0,0,0,0,1,13,13,13,13,1,13,13,13,13,1,13,1

3,13,13,1,0,0,0,0,1,136,13,13,13,1,133,13,13,13,1,131,13,13,13,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,13,13,13,134,1,13,13,13,132,1,13,13,13,132,1,0,0,0,0,1,13,13,13,13,1,13,13,13,13,1,13

,13,13,13,1,0,0,0,0,1,13,13,13,13,1,13,13,13,13,1,13,13,13,13,1,0,0,0,0,1,136,13,13,13,1,133,13,13,13,1,133,13,13,13,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,13,13,13,137,1,13,13,13,134,1,1

3,13,13,134,1,0,0,0,0,1,13,13,13,13,1,13,13,13,13,1,13,13,13,13,1,0,13,13,13,13,13,13,13,13,1,13,13,13,13,1,13,13,13,13,1,0,13,13,13,13,13,13,13,13,1,136,13,13,13,1,136,13,13,13,1,0,13,13,0,1,1,1,1,1,

1,1,1,1,1,1,1,1,1,1,1,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Island with Triggers",author="TF2 Pencil",id="#1660800894",direction="right",cost=530,elevation=0,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,13,13,66,66,66,66,66,66,66,66,66,66,66,66,66,66,13,0,0,0,13,13,66,72,73,73,73,73,73,73,73,73,73,73,73,66,13,0,0,0,13,13,66,

72,74,74,74,74,74,74,74,74,74,72,71,66,13,0,0,0,13,13,66,72,71,66,66,66,66,66,66,66,66,72,71,66,13,0,0,0,13,13,66,72,71,66,13,13,13,13,13,13,66,72,71,66,13,0,0,0,13,13,66,72,71,66,13,23,23,23,23,13,66

,72,71,66,13,0,0,0,13,13,66,72,71,66,13,23,97,97,23,3,66,72,71,66,13,96,2,0,13,13,66,72,71,66,13,23,97,97,23,3,66,72,71,66,13,96,2,0,13,13,66,72,71,66,13,23,23,23,23,13,66,72,71,66,13,0,0,0,13,13,66,7

2,71,66,13,13,13,13,13,13,66,72,71,66,13,0,0,0,13,13,66,72,71,66,66,66,66,66,66,66,66,72,71,66,13,0,0,0,13,13,66,72,71,73,73,73,73,73,73,73,73,73,71,66,13,0,0,0,13,13,66,74,74,74,74,74,74,74,74,74,74,

74,71,66,13,0,0,0,13,13,66,66,66,66,66,66,66,66,66,66,66,66,66,66,13,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0]});}},

{function Run(){maps.push({name="Slowly going down",author="TF2 Pencil",id="#1660808433",direction="forward",cost=460,elevation=-19,map=[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,130,130,20,20,130

,130,130,130,130,130,130,130,130,130,130,130,130,0,24,24,130,130,20,20,130,130,130,130,130,130,130,130,130,130,130,130,130,0,24,24,130,130,130,130,130,130,16,16,130,130,130,130,130,130,130,130,130,0,2

4,24,130,130,130,130,130,130,16,16,130,130,130,130,130,130,130,130,130,0,24,24,130,130,20,20,130,130,130,130,130,130,12,12,130,130,8,8,130,0,24,24,130,130,20,20,130,130,130,130,130,130,12,12,130,130,8

,8,130,0,0,0,130,130,130,130,130,130,16,16,130,130,130,130,130,130,130,130,130,0,0,0,130,130,130,130,130,130,16,16,130,130,130,130,130,130,130,130,130,0,0,0,130,130,20,20,130,130,130,130,130,130,12,12

,130,130,8,8,130,0,0,0,130,130,20,20,130,130,130,130,130,130,12,12,130,130,8,8,130,0,0,0,130,130,130,130,130,130,16,16,130,130,130,130,130,130,130,130,130,0,0,0,0,0,0,0,130,130,16,16,130,130,130,130,1

30,130,130,130,130,0,0,0,0,0,0,0,130,130,130,130,130,130,12,12,130,130,8,8,5,5,0,0,0,0,0,0,130,130,130,130,130,130,12,12,130,130,8,8,5,5,0,0,0,0,0,0,0,0,0,0,130,130,130,130,130,130,130,130,5,5,0,0,0,0

,0,0,0,0,0,0,130,130,130,130,130,130,130,130,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2]});}},

{function Run(){maps.push({name="Triggering Room",author="TF2 Pencil",id="#1660808543",direction="right",cost=388,elevation=0,map=[2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,9,9,0,1,97,9,0,29,0,29,1,130,

130,130,130,24,102,1,0,0,9,9,0,1,9,9,0,0,0,0,1,130,17,130,130,24,24,1,0,0,9,9,0,1,0,0,0,29,0,29,1,130,17,130,130,130,130,1,0,0,9,9,0,1,0,0,0,0,0,0,1,130,17,130,130,130,130,1,0,0,9,9,0,1,0,29,0,29,0,29

,1,130,130,130,17,17,130,1,0,0,9,9,0,1,0,0,0,0,0,0,1,130,130,130,130,130,130,1,0,0,9,9,0,1,0,29,0,29,0,9,1,9,130,130,130,130,130,1,0,0,9,9,0,1,1,1,1,1,1,9,1,9,1,1,1,1,1,1,0,0,9,9,9,9,9,9,9,9,9,9,9,9,9

,96,98,101,103,9,9,2,9,9,9,9,9,9,9,9,9,9,9,9,9,96,98,101,103,9,9,2,0,0,0,1,1,1,1,1,1,9,1,9,1,1,1,1,1,1,0,0,0,0,0,1,9,9,9,9,9,9,1,9,10,11,12,13,13,1,0,0,0,0,0,1,76,76,76,76,76,76,1,9,9,9,9,9,14,1,0,0,0

,0,0,1,9,9,9,9,9,9,1,9,9,9,9,9,15,1,0,0,0,0,0,1,76,76,76,76,76,76,1,16,16,9,16,16,16,1,0,0,0,0,0,1,9,9,9,9,9,9,1,17,9,9,1,1,1,1,0,0,0,0,0,1,76,76,76,76,76,76,1,18,9,9,9,19,19,1,0,0,0,0,0,1,99,9,9,9,9,

9,1,19,9,19,9,19,104,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0]});}},

{function Run(){maps.push({name="hey i know this one",author="fara",id="#1660816821",direction="right",cost=275,elevation=7,map=[0,0,0,0,2,2,31,31,32,32,33,33,34,34,35,35,0,0,0,0,0,0,0,0,30,30,31,31,3

2,32,33,33,34,34,35,35,0,0,0,0,0,0,0,0,29,29,28,28,38,38,37,37,36,36,35,35,0,0,0,0,0,0,0,0,29,29,28,28,38,38,37,37,36,36,35,35,0,0,0,0,0,0,0,0,24,24,24,24,58,58,24,24,24,24,0,0,0,0,0,0,0,0,0,0,24,100,

24,24,58,58,24,24,100,24,0,0,0,0,0,0,0,0,0,0,24,24,24,24,58,58,24,24,24,24,0,0,0,0,0,0,29,29,38,38,18,18,18,18,58,58,18,18,18,18,0,0,0,0,0,0,29,29,38,38,18,18,18,18,58,58,18,18,18,18,38,38,37,37,37,2,

30,30,38,38,18,18,18,18,58,58,18,18,18,18,38,38,37,37,37,2,30,30,38,38,18,18,18,18,58,58,18,18,18,18,0,0,0,0,0,0,31,31,37,37,19,19,18,18,58,58,18,18,19,19,0,0,0,0,0,0,31,31,37,37,20,20,18,18,58,58,18,

18,20,20,0,0,0,0,0,0,32,32,36,36,21,21,18,18,58,58,18,18,21,21,0,0,0,0,0,0,32,32,36,36,22,22,18,18,58,58,18,18,22,22,0,0,0,0,0,0,33,33,35,35,23,23,18,18,58,58,18,18,23,23,0,0,0,0,0,0,33,33,35,35,24,24

,24,24,24,24,24,24,24,24,0,0,0,0,0,0,34,34,34,34,24,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,34,34,34,34,24,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,34,34,34,34,24,24,24,24,100,24,24,24,24,24,0,0,0,0,0,0]

});}},

{function Run(){maps.push({name="i know this one too",author="fara",id="#1660818384",direction="left",cost=149,elevation=14,map=[0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,26,27,27,28,28,29,29

,30,30,31,31,32,32,33,33,0,0,0,0,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,3,3,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,24,24,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,24,93,0,0

,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,23,23,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,22,22,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,21,21,2,40,40,40,40,40,40,40,40,40,40,40,20,20,20,20,20,20,20,20,

2,40,40,40,40,40,40,40,40,40,40,40,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,41,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,42,0,0,0]});}},

{function Run(){maps.push({name="rng trigger",author="fara",id="#1660820923",direction="forward",cost=402,elevation=0,map=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,2,0,0,1,132,1,132,1,132,1,132,1,132,1,132,1

,132,1,0,14,14,0,0,1,14,96,14,96,14,96,14,96,14,96,14,96,14,1,0,14,90,0,0,1,131,96,131,96,131,96,133,96,131,96,131,96,131,1,0,14,14,0,0,1,1,96,1,96,1,96,1,96,1,96,1,96,1,1,0,90,88,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,14,14,0,0,0,14,14,14,90,14,14,14,90,14,14,14,14,86,14,14,14,14,24,24,0,14,14,14,14,14,86,14,14,14,14,90,14,14,14,14,14,14,137,24,0,90,14,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,14,14,0

,22,100,22,22,0,0,24,0,0,24,24,24,24,24,24,24,0,14,14,0,22,97,22,0,0,23,0,24,0,0,24,24,24,24,24,24,0,14,14,0,0,0,0,0,0,0,0,0,0,0,14,14,14,0,0,0,0,14,86,14,14,14,14,14,86,14,90,14,14,14,14,14,14,90,14,

0,0,14,14,14,14,90,14,14,14,14,14,14,88,14,14,127,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,14,0,1,96,1,96,1,96,1,96,1,96,1,96,1,96,1,130,0,14,14,0,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,0,

0,14,90,0,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,130,0,14,14,0,1,133,1,133,1,133,1,133,1,133,1,133,1,136,1,24,0,14,14,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,131,24,2,2,0]});}},

{function Run(){maps.push({name="Lazy River",author="Block",id="#1660826442",direction="forward",cost=622,elevation=-19,map=[24,2,2,24,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,24,24,24,24,1,14,14,13,13,12,12,1

1,11,10,10,9,9,9,9,9,24,24,24,24,1,14,74,74,74,74,74,74,74,74,74,74,74,72,72,8,24,70,70,24,1,15,74,74,74,74,74,74,74,74,74,74,74,72,72,8,24,70,70,24,1,15,71,71,1,1,1,1,1,1,1,1,1,72,72,8,24,72,72,24,1,

15,71,71,73,73,73,73,73,18,17,16,1,72,72,8,24,72,72,24,1,16,71,71,73,73,73,73,73,18,0,15,1,72,72,7,23,72,72,24,1,16,16,17,17,17,18,69,69,18,0,14,1,72,72,7,23,72,72,23,1,1,1,1,1,0,18,69,69,18,0,13,1,72

,72,7,23,72,72,23,23,23,23,23,1,0,18,69,69,18,0,12,1,72,72,7,23,74,74,74,74,72,72,22,1,0,18,69,69,18,0,11,1,72,72,6,23,74,74,74,74,72,72,21,1,0,18,69,69,18,0,10,1,72,72,6,23,22,22,22,22,72,72,21,1,0,1

8,69,69,18,0,9,1,72,72,6,0,1,1,1,22,72,72,20,1,0,18,69,69,18,1,8,1,72,72,6,0,0,0,1,22,74,74,74,74,74,74,71,71,18,1,7,1,72,72,5,38,0,0,1,22,74,74,74,74,74,74,71,71,18,1,6,1,72,72,5,0,0,0,1,22,21,21,21,

20,20,19,19,19,18,1,5,5,66,66,5,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,5,5,5,5,5,34,0,0,31,30,29,29,29,28,27,27,27,26,26,0,5,5,5,5,5,0,0,0,31,30,30,29,29,28,28,27,27,26,26,0,5,5,5,2,2]});}},

{function Run(){maps.push({name="strafe practice v2",author="fara",id="#1660828426",direction="forward",cost=295,elevation=0,map=[22,22,2,2,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,23,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,22,22,86,22,23,24,135,135,135,135,135,135,135,135,135,135,135,135,0,0,22,22,22,22,23,24,135,135,135,135,135,135,135,135,135,135,135,135,0,0,22,21,22,0,23,24,135,135,135,135,135,135,

135,135,135,135,135,135,0,0,90,22,22,22,21,23,0,0,0,0,0,0,0,0,0,0,130,0,0,0,22,22,22,22,87,22,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,22,21,90,22,22,0,0,0,0,0,0,0,0,0,0,130,0,0,0,22,22,22,22,22,22,0,0,0,0,0,0

,0,0,0,0,130,0,0,0,22,86,22,22,22,22,0,0,0,0,0,0,0,0,0,0,130,0,0,0,22,22,22,21,22,22,0,0,0,0,0,0,0,0,0,0,130,0,0,0,22,21,22,22,22,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,22,22,22,0,22,0,0,67,0,0,0,0,0,133,1

1,19,11,133,0,22,22,22,22,22,22,41,41,21,67,0,0,0,0,67,19,39,19,67,0,22,22,87,21,22,22,41,134,41,0,0,0,0,67,20,39,39,39,20,67,22,22,22,22,22,22,41,94,41,0,0,0,0,0,39,39,93,39,39,0,0,22,22,22,90,22,41,

132,41,0,0,0,0,0,39,39,39,39,39,0,22,21,22,22,22,22,41,41,21,67,0,0,0,0,39,39,131,39,39,0,22,22,22,22,22,22,0,0,67,0,0,0,0,67,20,39,39,39,20,67,22,22,2,2,22,22,0,0,0,0,0,0,0,0,67,0,0,0,67,0]});}},

{function Run(){maps.push({name="spxs high heels",author="spxctator",id="#1660828564",direction="left",cost=260,elevation=7,map=[0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,15,15,

15,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,15,15,15,15,15,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,15,15,15,15,15,15,1,0,0,0,0,0,0,0,0,0,0,1,22,132,1,15,15,15,15,15,1,0,0,0,0,0,0,0,0,0,1,22,22,22,1,15,15,15,15,15,15

,1,0,0,0,0,0,0,0,1,22,22,22,1,15,15,15,15,15,15,15,1,0,0,0,0,0,0,1,22,22,22,22,1,15,15,15,15,15,15,15,1,0,0,0,0,0,1,22,22,22,22,1,15,15,15,15,15,15,15,1,0,0,0,0,0,1,22,22,22,22,1,15,15,15,15,15,15,1,1

,0,0,1,1,1,1,22,22,22,22,1,15,15,15,15,15,15,1,0,0,0,0,62,62,96,22,22,22,22,1,15,15,15,15,15,1,1,0,0,0,0,0,2,62,96,22,22,22,1,15,15,15,15,15,1,0,0,0,0,0,0,0,2,62,96,22,22,1,15,15,15,15,15,1,1,1,1,1,1,

1,1,0,62,62,96,22,1,134,15,15,15,15,15,15,15,15,15,15,15,91,94,1,1,1,1,133,1,15,15,15,15,15,15,15,15,15,15,15,15,91,97,1,0,0,0,1,1,15,15,15,15,15,15,15,15,15,1,1,1,1,1,0,0,0,0,0,1,131,15,15,15,15,15,1

,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,15,15,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Trappy hilly billy",author="Luffaren",id="#1660831571",direction="right",cost=187,elevation=19,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5

,0,0,0,0,0,0,0,0,0,0,0,0,5,85,5,85,5,5,85,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,85,5,5,85,5,5,0,0,0,0,0,0,0,0,0,0,0,0,6,85,6,6,85,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,7,7,85,7,7,7,85,7,0,0,0,0,0,0,0,0,0,0,0,0,8,85,8

,8,85,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,9,9,85,9,9,85,9,9,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,85,10,10,10,85,0,0,0,0,0,0,0,0,0,0,0,0,11,85,11,11,85,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,12,12,85,12,12,12,85,12,0,

0,0,0,0,0,0,0,0,0,0,0,85,13,13,13,85,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,14,14,85,14,14,14,85,14,0,0,0,0,0,0,0,0,0,0,0,0,35,85,35,85,35,35,35,35,122,122,122,123,124,85,0,0,0,0,0,0,36,36,36,36,85,36,85,36

,122,85,122,85,85,124,0,0,0,0,0,0,36,85,36,37,38,39,40,41,42,122,122,123,124,124,0,0,0,0,0,0,36,36,36,85,38,85,40,85,42,122,85,123,124,2,0,0,0,0,0,0,85,36,36,37,85,39,40,41,42,122,122,123,124,2,0,0,0,

0,0,0,0,0,0,0,38,39,85,41,85,122,122,85,124,124,0,0,0,0,0,0,0,0,0,0,0,39,40,41,42,122,122,123,124,85]});}},

{function Run(){maps.push({name="under and over",author="fara",id="#1660845002",direction="left",cost=274,elevation=6,map=[0,67,0,12,2,2,12,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,0,25,25,25,25,0,0,0,0,0,0,0,

0,0,0,0,0,0,100,21,0,25,25,25,25,0,67,0,0,0,0,0,0,0,12,13,12,0,21,21,0,21,25,25,21,0,20,0,19,67,0,67,0,0,11,11,11,0,0,67,0,25,25,25,25,0,0,0,0,0,0,17,0,0,11,132,11,0,0,0,0,25,25,25,25,0,0,0,0,18,0,15,

67,0,11,11,11,0,0,0,25,16,25,25,12,25,0,67,12,14,0,0,0,11,90,11,67,0,0,25,25,25,25,25,25,25,25,0,0,0,0,0,11,11,11,11,0,0,11,11,45,11,45,45,11,45,11,11,11,11,11,11,11,90,11,11,0,0,2,11,45,11,45,45,11,4

5,90,11,11,11,11,86,11,88,11,11,0,0,2,11,45,11,45,45,11,45,11,11,11,87,90,86,11,11,11,11,0,0,11,11,45,11,45,45,11,45,11,11,11,11,11,11,11,11,90,11,0,0,0,25,25,25,25,25,25,25,25,0,0,0,0,0,90,11,11,11,0

,0,0,0,25,19,25,25,12,25,0,0,0,0,0,0,0,11,11,11,67,0,0,0,0,25,88,25,25,0,0,0,0,0,0,12,0,0,11,11,11,0,0,67,0,25,25,25,25,0,67,0,0,0,67,13,0,0,11,132,11,0,21,21,0,20,25,25,20,0,19,0,0,0,0,0,0,0,11,11,11

,0,100,21,0,25,25,25,25,0,0,0,18,0,0,0,15,0,12,13,12,0,21,21,0,25,25,25,25,0,0,67,17,0,16,0,67,0,0,0,0,0,0,67,0,9,131,131,11,0,0,0,0,0,67,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="criss cross",author="fara",id="#1660847268",direction="forward",cost=354,elevation=18,map=[23,23,5,2,2,5,128,23,135,135,135,135,0,0,0,0,0,128,23,1,127,23,5,5,5,5,23,0,

0,0,0,0,0,0,0,0,0,0,23,23,11,11,45,45,45,45,11,11,86,11,10,11,11,11,11,11,88,11,11,11,132,11,45,45,45,45,11,11,11,10,86,11,11,11,10,11,11,11,11,133,132,11,45,45,45,45,11,88,11,11,11,11,11,86,11,11,11,

11,11,133,11,11,45,45,45,45,11,11,11,11,11,11,10,11,11,11,10,11,11,11,34,34,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,67,23,23,23,23,23,23,67,0,0,0,126,23,0,5,5,5,5,0,0,0,23,23,137,137,23,23

,0,0,0,0,23,23,0,5,5,5,5,0,0,67,23,23,23,23,23,23,67,0,0,0,130,23,0,5,5,5,5,0,0,0,0,23,23,23,23,0,0,0,0,0,130,100,0,5,5,5,5,0,0,0,0,23,23,23,23,0,0,0,0,0,130,23,0,3,3,3,3,0,0,0,0,23,23,23,23,130,130,1

30,130,130,130,129,23,11,11,11,11,23,23,23,23,23,23,23,23,0,0,0,0,0,0,17,17,51,51,51,51,17,17,17,17,57,57,57,57,17,17,90,17,17,17,134,17,51,51,51,51,17,90,17,17,57,57,57,57,17,17,17,17,17,136,134,17,5

1,51,51,51,17,17,88,17,57,57,57,57,17,90,17,17,17,136,17,17,51,51,51,51,17,17,17,17,57,57,57,57,17,17,17,90,17,17,0,0,11,11,11,11,0,0,0,0,23,23,23,23,0,0,0,0,0,0,1,0,11,131,131,11,0,0,0,0,23,2,2,23,0,

0,0,0,0,1]});}},

{function Run(){maps.push({name="generic interior",author="fara",id="#1660848848",direction="forward",cost=280,elevation=0,map=[0,0,0,0,0,0,0,18,52,2,2,52,18,0,0,0,0,0,0,0,0,0,0,0,18,18,18,18,52,52,52

,52,18,18,18,18,0,0,0,0,0,0,0,0,18,91,52,52,52,52,52,52,52,52,91,18,0,0,0,0,0,0,0,0,18,52,91,52,52,52,89,52,52,91,52,18,0,0,0,0,0,0,0,0,18,52,52,18,18,52,52,18,18,52,52,18,0,0,0,0,0,0,0,0,18,52,52,18,

18,52,52,18,18,52,52,18,0,0,0,0,0,0,0,0,18,52,52,52,52,52,52,52,52,52,52,18,0,0,0,0,0,0,0,18,18,52,52,52,52,52,52,52,52,52,52,18,18,0,0,0,0,0,0,18,18,95,95,18,18,52,52,18,18,95,95,18,18,0,0,0,0,0,18,1

8,52,52,52,18,18,95,95,18,18,52,52,52,18,18,0,0,0,0,18,52,52,89,52,52,18,52,52,18,52,52,52,52,52,18,0,0,0,0,18,52,52,52,52,52,52,52,89,52,52,52,52,52,52,18,0,0,0,0,18,52,52,18,18,18,52,52,52,52,18,18,

18,52,52,18,0,0,0,0,18,52,52,52,52,52,52,91,91,52,52,52,52,89,52,18,0,0,0,0,18,18,52,52,52,52,52,91,91,52,52,52,52,52,18,18,0,0,0,0,0,18,18,18,91,18,52,52,52,52,18,91,18,18,18,0,0,0,0,0,0,0,0,18,52,52

,52,52,52,52,52,52,18,0,0,0,0,0,0,0,0,0,0,18,18,52,52,52,52,52,52,18,18,0,0,0,0,0,0,0,0,0,0,0,18,18,95,95,95,95,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,18,52,2,2,52,18,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="BACK TO THE KEEP",author="fara",id="#1660853459",direction="forward",cost=323,elevation=12,map=[0,0,0,0,0,0,0,0,0,5,5,5,2,2,5,5,5,5,5,1,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,6

,5,5,5,1,0,0,0,0,0,0,0,0,0,5,5,5,5,6,6,6,6,5,5,1,0,0,0,0,0,0,0,0,5,5,5,5,5,7,7,7,6,6,6,1,0,0,0,0,0,0,0,5,5,5,5,5,7,8,8,8,8,8,7,1,0,0,0,0,0,0,5,5,5,5,5,17,17,9,9,9,17,17,17,1,0,0,0,0,0,5,5,5,5,5,17,15,

15,49,49,49,15,15,15,1,0,0,0,0,5,5,5,5,5,17,15,15,15,49,49,49,15,15,15,1,1,5,5,5,5,5,5,5,17,15,15,11,10,9,9,9,9,49,15,1,1,5,5,5,5,5,5,17,15,15,12,11,10,9,9,9,9,49,9,1,1,12,6,12,12,12,17,15,15,13,12,11

,11,10,24,24,24,15,24,1,1,10,7,10,10,10,17,15,14,13,13,12,24,24,22,22,22,55,22,1,1,10,7,10,10,10,17,15,14,14,24,24,22,22,22,17,15,15,15,1,1,7,7,7,7,9,17,15,14,14,22,22,22,21,19,15,15,15,15,1,1,7,7,7,7

,11,17,15,14,14,15,15,15,15,15,15,15,15,15,1,1,7,7,7,7,13,17,14,14,14,15,15,15,15,15,15,15,15,15,1,1,8,8,8,7,14,14,14,14,14,15,15,15,15,15,15,15,15,15,1,1,1,1,1,1,1,1,1,1,1,1,20,20,20,16,16,16,16,20,1

,0,0,0,0,0,0,0,0,0,0,1,20,20,20,17,17,17,17,20,1,0,0,0,0,0,0,0,0,0,0,1,20,20,20,18,2,2,18,20,1]});}},

{function Run(){maps.push({name="Turnabout",author="Luffaren",id="#1660876989",direction="left",cost=405,elevation=19,map=[0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,1,1,1,1,1,67,67,67,67,0,5,5,5,5,0,67,67,67,67,6

7,1,124,94,124,1,24,24,24,24,90,5,5,90,5,24,24,24,24,24,24,1,93,94,93,1,2,24,89,24,24,24,5,5,24,24,24,89,24,24,90,1,124,124,124,1,2,24,24,24,24,24,5,5,24,24,24,24,24,24,24,1,1,95,1,1,24,24,24,24,90,5,

90,5,5,24,90,24,24,24,24,90,24,24,24,90,0,0,0,0,0,5,5,5,5,0,0,0,0,24,89,24,24,24,24,24,67,67,67,67,0,5,5,5,5,0,67,67,0,24,24,24,24,24,24,24,10,10,10,10,11,1,45,45,1,11,11,11,11,24,24,24,90,24,24,24,10

,10,89,10,11,45,89,45,45,11,11,89,11,0,0,0,23,23,23,23,10,89,10,10,11,45,45,45,45,11,11,11,11,67,0,0,22,22,22,22,10,10,10,10,11,1,45,45,1,11,11,11,11,67,0,0,21,21,21,21,10,10,10,10,0,5,5,5,5,11,11,11,

11,67,0,0,20,20,20,20,9,9,9,9,0,5,5,5,5,11,11,11,11,0,0,0,19,19,19,19,8,8,8,8,0,5,5,89,5,12,12,12,12,0,0,0,18,18,18,18,7,7,7,7,0,5,5,5,5,13,13,13,13,0,0,0,17,17,17,17,7,7,7,7,6,5,89,5,5,14,14,14,90,14

,15,16,17,17,17,17,7,7,7,7,6,5,5,5,5,14,14,14,14,14,15,16,17,17,89,17,90,7,7,7,6,5,5,89,5,14,14,14,14,14,15,16,17,89,17,17,90,7,7,7,6,5,5,5,5,90,14,90,14,14,15,16,17,17,17,17]});}},

{function Run(){maps.push({name="GFhoLd",author="Niikos",id="#1660879248",direction="forward",cost=167,elevation=-8,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,34,34,34,34,34,34,34,34,34,0,0,0,

0,0,0,0,0,0,34,34,34,34,34,34,34,34,34,34,34,0,0,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,34,34,0,0,97,40,40,0,0,34,34,0,0,0,0,0,0,0,0,0,34

,34,0,0,0,40,0,0,0,34,34,0,0,0,0,0,0,0,0,0,34,34,0,0,0,38,38,36,36,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,96,96,96,96,96,96,96,96,96,0,0,0,0,0,0,0,0,0,0,0,96,30,30,30,30,30,30,30,30,30,30,0,0,0,0,0,0,0,0,0,0

,30,30,30,30,30,30,30,30,30,30,0,0,0,0,0,0,0,0,0,0,30,30,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,30,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,30,0,0,30,30,98,0,0,0,0,0,0,0,0,0,0,0,0,0,30,30,0,0,98,98,

98,0,0,0,0,0,0,0,0,99,30,0,0,0,92,30,0,0,98,26,26,26,26,26,26,26,26,26,0,0,0,0,0,0,0,0,0,0,98,26,26,26,26,26,26,26,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2

6,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0]});}},

{function Run(){maps.push({name="HoldThisL",author="Niikos",id="#1660879798",direction="forward",cost=159,elevation=0,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,54,54,129,54,54,54,

54,54,54,54,54,54,54,54,54,54,54,0,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,127,54,54,0,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,0,129,54,54,54,54,54,54,54,129,54,54,54,54,54,54

,54,54,54,54,0,0,0,0,0,0,0,0,92,1,0,0,0,0,0,0,0,54,54,127,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,54,54,54,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,54,54,54,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,54,54,54,0,0,0,0,0,0,0

,0,0,1,0,0,0,0,0,0,0,54,54,54,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,54,54,54,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,54,54,54,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,54,54,54,93,94,93,54,54,54,54,54,54,1,0,0,0,0,0,0,

0,54,54,54,94,93,94,54,54,54,54,54,54,1,0,0,0,0,0,0,0,2,2,0]});}},

{function Run(){maps.push({name="Mako Reactor Descend",author="Block",id="#1660880254",direction="right",cost=351,elevation=-11,map=[1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,24,24,24,24,1,24,24,24,24

,24,24,24,24,24,24,24,24,24,24,1,24,24,24,91,0,24,1,1,1,1,1,1,1,1,1,1,1,3,3,1,24,24,24,24,1,1,1,5,5,5,5,5,5,5,5,5,5,5,5,1,95,95,24,24,1,0,0,94,5,5,5,5,5,5,5,1,1,1,1,1,24,24,1,1,1,0,0,0,0,0,0,5,5,5,0,0

,0,0,0,1,44,0,1,0,0,0,26,27,28,29,0,5,5,5,0,9,9,9,9,1,44,0,1,1,1,1,25,0,0,30,0,5,5,5,0,9,11,11,11,1,44,0,1,40,40,40,105,5,5,45,5,5,5,5,7,9,11,13,13,1,44,0,1,41,1,39,105,94,5,45,5,5,5,5,7,9,11,13,2,1,4

4,0,0,41,1,38,105,5,5,45,5,5,5,5,7,9,11,13,2,1,44,0,0,42,1,37,105,105,105,45,5,5,5,5,7,9,11,13,13,1,44,43,42,42,1,37,1,1,1,31,105,25,25,0,0,9,11,11,11,1,1,1,1,1,1,37,0,0,0,32,105,25,25,0,0,9,7,7,7,1,1

,116,116,116,0,36,0,0,0,33,105,25,25,0,0,0,13,13,13,1,1,116,1,1,1,36,35,35,34,34,105,25,25,0,0,0,15,15,15,1,1,116,114,112,111,110,109,108,107,106,105,25,25,0,0,0,15,17,17,1,1,36,36,0,0,32,32,0,0,27,27

,25,25,0,0,0,15,17,93,1,1,36,36,0,0,32,32,0,0,27,27,25,25,77,77,77,15,17,17,1,1,1,1,1,1,1,1,1,1,1,1,1,1,24,24,24,1,1,1]});}},

{function Run(){maps.push({name="FFXII Eastersand",author="Block",id="#1660881530",direction="forward",cost=525,elevation=-6,map=[0,21,21,21,21,21,95,21,21,2,2,21,21,95,21,21,21,21,21,0,0,94,21,21,21,

21,95,21,21,21,21,21,21,95,21,21,21,21,94,0,0,21,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,21,0,0,21,1,93,21,19,17,15,15,15,15,15,15,15,15,15,15,1,21,0,1,21,1,21,19,19,17,15,90,15,90,15,90,15,90,15,90,1,21,1,1,

21,1,17,17,17,17,15,15,90,15,90,15,94,15,90,15,1,21,1,1,21,1,15,15,15,15,15,15,15,15,15,15,15,15,15,15,1,21,1,115,55,115,95,66,73,73,73,73,73,73,73,73,73,73,73,67,115,55,115,115,55,115,95,66,73,73,73,

73,73,73,73,73,73,73,73,67,115,55,115,115,55,115,95,66,73,73,73,73,73,73,73,73,73,73,73,67,115,55,115,115,55,115,95,66,73,73,73,73,73,73,73,73,73,73,73,67,115,55,115,115,55,1,15,15,16,17,18,20,22,24,2

2,20,18,18,16,15,1,55,115,115,55,1,15,15,16,17,18,20,22,93,22,20,18,18,16,16,1,55,115,115,55,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,55,115,115,55,55,55,55,55,21,21,21,21,55,55,55,55,55,55,55,55,55,115,115,55

,55,55,55,55,21,21,21,21,55,55,55,55,55,55,55,55,55,115,1,23,23,23,55,55,21,21,21,21,55,55,21,21,21,21,21,21,21,1,1,23,24,1,115,115,1,1,1,1,55,55,1,90,21,23,23,23,90,1,1,23,94,1,15,15,1,1,1,1,92,92,1,

90,21,23,94,23,21,1,1,1,1,1,2,2,1,1,1,1,21,21,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Mako Reactor Ascend",author="Block",id="#1660881733",direction="forward",cost=389,elevation=19,map=[1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,2,2,0,0,0,24,24,24,24,24,24,24,24,128

,24,24,1,1,1,1,5,5,1,1,1,24,24,24,24,24,24,24,24,128,24,24,91,24,12,32,32,33,33,13,18,127,127,1,1,1,1,1,1,1,1,1,1,24,12,0,5,5,0,13,18,24,24,1,13,13,13,13,13,12,12,12,1,24,12,0,5,5,0,13,18,24,24,1,14,1

4,14,14,14,11,11,11,1,24,12,0,5,5,0,3,18,24,24,1,15,15,15,15,15,10,10,10,1,24,12,0,5,5,0,0,18,24,24,1,16,16,16,16,16,9,9,9,1,24,12,0,5,5,0,0,18,24,24,1,17,17,17,17,17,8,8,8,1,24,12,0,3,5,0,0,18,24,24,

1,18,18,18,18,18,8,8,8,1,24,52,52,52,52,18,18,18,24,24,1,19,19,19,19,19,7,7,7,1,24,19,0,0,0,0,0,0,127,127,1,20,20,20,20,20,20,5,5,1,24,19,19,19,40,40,40,40,24,24,1,21,21,21,20,20,20,5,5,24,24,24,0,0,0

,0,0,41,24,24,1,22,22,21,20,20,20,5,5,24,24,24,0,0,44,43,42,41,24,24,1,23,23,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,24,24,1,24,24,24,24,24,24,24,24,24,24,24,24,24,24,95,24,24,24,24,1,24,24,24,24,24,24,24,24,24

,24,24,24,24,24,95,24,24,24,24,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,24,88,24,24,24,24,129,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,129,24,24,24,24,24,24,24,24,24,24,24,2,2,24,24]});}},

{function Run(){maps.push({name="Big Bridge",author="TF2 Pencil",id="#1660891049",direction="forward",cost=152,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20

,20,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,40,40,40,40,40,40,40,40,0,0,0,0,0,0,0,0,0,0,0,0,40,125,40,40,40,40,125,40,0,0,0,0,0,0,0,0,0,0,0,0,60,60,60,60,60,60,60,60,0,

0,0,0,0,0,0,0,0,0,0,0,60,60,60,60,60,60,60,60,0,0,0,0,0,0,0,0,0,0,0,0,60,60,60,60,60,60,60,60,0,0,0,0,0,0,0,0,0,0,0,0,60,60,60,60,60,60,60,60,0,0,0,0,0,0,0,0,0,0,0,0,60,60,60,60,60,60,60,60,0,0,0,0,0,

0,0,0,0,0,0,0,60,60,60,60,60,60,60,60,0,0,0,0,0,0,0,0,0,0,0,0,60,60,60,60,60,60,60,60,0,0,0,0,0,0,0,0,0,0,0,0,60,60,60,60,60,60,60,60,0,0,0,0,0,0,0,0,0,0,0,0,60,60,60,60,60,60,60,60,0,0,0,0,0,0,0,0,0,

0,0,0,60,60,60,60,60,60,60,60,0,0,0,0,0,0,0,0,0,0,0,0,60,60,60,60,60,60,60,60,0,0,0,0,0,0,0,0,0,0,0,0,60,60,60,60,60,60,60,60,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,20

,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Up to the trigger",author="TF2 Pencil",id="#1660891186",direction="forward",cost=128,elevation=15,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,24,24,24,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,24,132,24,0,0,24,24,24,14,14,14,9,9,0,0,0,0,0,0

,0,24,24,24,24,24,24,97,24,15,14,14,9,9,0,0,0,0,0,0,0,0,24,24,0,0,24,24,24,16,14,14,9,9,0,0,0,0,0,0,0,0,24,24,0,0,0,0,24,17,14,14,9,9,0,0,0,0,0,0,0,0,24,24,0,0,0,0,24,18,14,14,9,9,0,0,0,0,0,0,0,0,24,2

4,0,0,0,0,23,19,14,14,9,9,0,0,0,0,0,0,0,0,24,24,0,0,0,0,22,20,14,14,4,9,0,0,0,0,0,0,0,0,24,24,0,0,0,0,21,21,14,14,4,9,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,9,

9,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,96,96,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,9,9,9,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,9,131,9,0,0,0,0,0,0,0,0,2,2,0,0,0,

0,0,0,0,9,9,9]});}},

{function Run(){maps.push({name="Diving pool",author="TF2 Pencil",id="#1660891297",direction="right",cost=610,elevation=-15,map=[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,9,9,9,9,9,9,9,9,9,9,9,9,9

,9,9,9,9,0,24,24,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,9,0,24,24,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,9,0,24,24,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,9,0,24,24,66,66,66,

66,66,66,66,66,66,66,66,66,66,66,66,66,9,0,129,24,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,9,0,24,24,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,9,0,24,24,66,66,66,66,66,66,66,66,66,66,66,6

6,66,66,66,66,9,0,129,24,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,9,2,24,24,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,9,2,24,24,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,9,0,129,24,

66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,9,0,24,24,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,9,0,24,24,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,9,0,129,24,66,66,66,66,66,66,66,66,6

6,66,66,66,66,66,66,66,9,0,24,24,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,9,0,24,24,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,9,0,24,24,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Second Floor",author="TF2 Pencil",id="#1660893367",direction="forward",cost=214,elevation=19,map=[0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,0

,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,5,92,5,92,5,92,5,92,5,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,

24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,2

4,24,24,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24

,24,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Figure 8",author="TF2 Pencil",id="#1660893431",direction="forward",cost=102,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,18,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,18,18,18,18,17,17,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,16,16,0,0,0,0,0,0,0,

0,0,0,0,20,20,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,15,15,15,0,0,0,0,0,0,0,14,14,14,14,54,54,14,14,14,14,15,15,0,0,0,0,0,0,15,15,14,14,14,14,5

4,54,14,14,14,14,0,0,0,0,0,0,0,15,15,15,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,19,19,0,0,0,0,0,0,0,

0,0,0,0,16,16,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,17,17,18,18,18,18,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,

0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="RoomFromMinasMorgul",author="fara",id="#1660903761",direction="left",cost=261,elevation=-14,map=[0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,0,0,1,22,22,22,22,22,22,22,22,

22,22,22,22,22,1,22,22,1,0,0,1,8,8,8,8,8,8,8,0,8,8,8,22,22,98,22,22,1,0,0,1,0,18,0,8,8,8,8,8,8,8,8,22,22,98,22,22,1,0,0,1,0,0,0,0,0,8,8,8,8,8,8,22,22,1,99,22,1,0,0,1,18,0,0,0,0,8,8,0,0,0,0,22,22,1,1,1

,1,0,0,1,0,0,0,0,0,8,8,0,0,0,0,0,22,1,0,0,0,0,0,1,18,18,0,0,0,8,0,0,0,0,0,22,22,1,0,0,0,0,0,1,18,18,0,0,0,8,8,0,0,0,0,21,21,1,0,0,0,0,0,1,97,18,0,0,0,0,8,0,0,0,0,20,20,1,0,0,0,0,0,1,18,18,18,18,18,8,8

,18,0,18,18,19,19,1,0,0,0,0,0,1,18,18,18,0,18,8,0,0,18,18,18,19,19,1,0,0,0,0,0,1,0,0,0,0,0,8,8,0,0,0,0,19,19,1,0,0,0,0,0,1,15,0,0,0,0,8,8,0,0,0,0,19,19,1,0,0,0,1,1,1,0,0,0,0,0,8,0,0,0,0,0,0,19,1,0,0,0

,8,8,1,11,0,0,0,0,8,8,0,0,0,0,19,19,1,0,0,0,2,8,96,8,8,8,8,8,8,8,8,8,8,8,19,19,1,0,0,0,2,8,96,8,8,8,8,8,8,95,95,95,8,8,19,19,1,0,0,0,8,8,1,8,8,8,8,8,8,95,93,95,8,8,19,19,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,

1,1,1,1,1,1,0,0,0]});}},

{function Run(){maps.push({name="enter Amon Amarth",author="fara",id="#1660905134",direction="forward",cost=352,elevation=11,map=[1,24,22,12,100,12,19,16,16,7,6,5,5,2,2,5,5,22,24,1,1,24,22,12,12,12,19

,16,16,7,6,6,6,5,5,5,6,22,24,1,1,24,22,12,12,12,19,19,16,7,7,6,6,6,6,6,6,22,24,1,1,24,22,13,13,13,13,19,16,7,7,7,6,6,6,6,6,22,24,1,1,24,22,13,13,13,13,19,16,7,7,7,7,7,6,6,6,22,24,1,1,24,22,22,13,13,13

,19,16,7,7,7,7,7,7,6,22,24,24,1,1,24,24,22,13,13,13,19,16,16,8,8,7,7,7,7,22,24,1,0,0,1,24,22,14,14,14,19,19,16,8,8,8,8,8,7,22,24,1,0,0,1,24,22,14,14,14,14,19,16,8,8,8,8,8,8,22,24,1,0,0,1,24,22,14,14,1

4,14,19,16,3,8,16,8,8,22,24,1,0,0,0,1,24,22,15,15,15,15,19,16,13,16,16,8,8,22,24,1,0,0,0,1,24,22,15,15,15,15,19,16,13,16,10,49,8,22,24,1,0,0,0,1,24,22,22,15,15,15,19,13,13,16,11,16,49,22,24,1,0,0,0,1,

24,24,22,16,16,16,19,13,13,13,12,11,10,22,24,1,0,0,0,0,1,24,22,16,16,16,19,14,14,14,13,12,12,22,24,1,0,0,0,0,1,24,22,16,16,16,16,15,15,15,14,19,22,24,24,1,0,0,0,0,1,24,22,16,16,16,16,16,16,15,15,19,22

,24,1,0,0,0,0,0,1,24,22,16,16,16,16,16,16,16,16,22,24,24,1,0,0,0,0,0,1,24,22,16,16,16,16,16,16,16,16,22,24,1,0,0,0,0,0,0,1,24,24,16,16,16,2,2,16,16,16,22,24,1,0,0,0,0]});}},

{function Run(){maps.push({name="simple reward",author="fara",id="#1660906099",direction="forward",cost=267,elevation=0,map=[0,0,0,0,0,0,67,8,28,2,2,28,8,67,0,0,0,0,0,0,0,67,0,0,0,0,0,28,28,28,28,28,2

8,0,0,0,0,0,67,0,30,10,30,0,0,0,0,28,28,90,28,86,28,0,0,0,0,30,10,30,30,100,30,0,0,0,0,28,28,28,28,28,28,0,0,0,0,30,100,30,30,30,30,0,0,0,0,28,28,28,28,28,28,0,0,0,0,30,30,30,0,30,0,0,0,0,67,8,28,28,2

8,28,8,67,0,0,0,0,30,0,0,29,0,0,0,0,8,28,28,28,88,28,28,8,0,0,0,0,29,0,0,28,0,0,0,0,28,28,86,28,28,90,90,28,0,0,0,0,28,0,14,48,14,0,0,0,28,28,28,28,28,28,28,28,0,0,0,14,48,14,14,48,48,48,48,48,48,49,4

9,48,48,49,49,48,48,48,48,48,48,14,93,48,48,48,48,48,48,49,49,48,48,49,49,48,48,48,48,48,48,94,14,48,14,0,0,0,28,28,90,28,87,28,28,28,0,0,0,14,48,14,0,28,0,0,0,0,28,28,28,28,28,28,28,28,0,0,0,0,28,0,0

,29,0,0,0,0,8,28,28,13,13,28,28,8,0,0,0,0,29,0,0,30,0,0,0,0,67,8,28,13,13,90,8,67,0,0,0,0,30,0,30,30,30,0,0,0,0,28,28,3,3,28,28,0,0,0,0,30,30,30,30,100,30,0,0,0,0,28,88,28,28,28,28,0,0,0,0,30,100,30,3

0,10,30,0,0,0,0,28,28,28,28,28,28,0,0,0,0,30,10,30,0,67,0,0,0,0,0,28,28,28,28,86,28,0,0,0,0,0,67,0,0,0,0,0,0,0,67,8,28,2,2,28,8,67,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="generic01dotvtf",author="fara",id="#1660907421",direction="forward",cost=208,elevation=7,map=[17,2,2,17,0,0,0,0,0,0,0,0,0,0,51,11,11,51,0,0,17,17,17,17,17,0,0,0,0,0,0,

0,0,0,51,125,125,51,0,0,0,17,17,17,17,17,0,0,0,0,0,0,0,0,51,11,11,51,0,0,0,0,17,17,17,17,17,0,0,0,0,0,0,0,51,51,51,51,0,0,0,0,0,17,17,17,17,17,0,0,0,0,0,51,51,51,51,51,51,0,0,0,0,0,17,17,17,17,0,0,0,0

,0,51,51,51,51,51,51,0,0,0,0,0,17,17,17,17,0,0,24,24,24,51,51,17,17,51,51,24,0,0,0,0,17,127,127,17,0,0,24,24,24,51,51,125,125,51,51,24,0,0,0,0,17,17,17,17,0,0,24,24,24,51,51,17,17,51,51,24,0,0,0,0,0,0

,0,0,0,0,24,24,0,51,51,51,51,51,51,0,0,0,0,0,0,0,0,0,0,0,24,24,0,51,51,51,51,51,51,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,51,51,51,51,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,51,51,51,51,0,0,0,0,0,0,16,16,16,16,0,0

,24,24,0,0,51,51,51,51,0,0,0,0,0,0,17,17,17,17,0,0,24,24,0,0,51,51,51,51,0,0,0,0,0,0,17,131,131,17,0,0,24,24,0,0,11,132,132,11,0,0,0,0,0,0,17,17,17,17,0,0,24,24,0,0,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0

,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,2,2,24,0,0]});}},

{function Run(){maps.push({name="Split Hold",author="MoistNoodlez",id="#1660948166",direction="forward",cost=194,elevation=0,map=[1,1,1,0,0,0,0,0,1,2,2,1,0,0,0,0,0,1,1,1,1,137,1,0,0,0,0,0,1,14,14,1,0,

0,0,0,0,1,137,1,1,14,1,0,0,0,0,0,1,14,14,1,0,0,0,0,0,1,14,1,1,13,1,0,0,0,0,0,1,14,14,1,0,0,0,0,0,1,15,1,1,12,1,0,0,0,0,0,1,14,14,1,0,0,0,0,0,1,16,1,1,11,1,0,0,0,0,0,1,14,14,1,0,0,0,0,0,1,17,1,1,10,1,0

,0,0,0,0,1,136,136,1,0,0,0,0,0,1,18,1,1,9,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,19,1,1,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,1,1,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,1,1,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,

1,1,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,22,1,1,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,1,1,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,1,1,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,1,1,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,1,18,1,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,1,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,1,1,13,14,95,95,14,0,0,14,14,14,14,0,0,14,95,95,14,15,1,1,14,14,95,95,14,14,14,14,2,2,14,14,14,14,95,95,14,14,

1]});}},

{function Run(){maps.push({name="Secret Pool",author="MoistNoodlez",id="#1660949561",direction="forward",cost=335,elevation=0,map=[0,0,0,0,0,19,14,14,14,2,2,14,14,14,19,0,0,0,0,0,0,0,0,0,0,19,14,14,14

,14,14,14,14,14,19,0,0,0,0,0,0,0,0,0,0,19,14,14,14,14,14,14,14,14,19,0,0,0,0,0,0,0,0,0,0,19,14,14,14,14,14,14,14,14,19,0,0,0,0,0,0,0,0,0,0,19,14,90,14,14,14,14,14,90,19,0,0,0,0,0,0,0,0,0,0,19,14,14,66

,66,127,66,66,14,19,0,0,0,0,0,0,0,0,0,0,19,14,90,66,66,127,66,66,90,19,14,93,14,93,0,0,0,0,0,0,19,14,14,66,66,66,66,66,14,19,14,14,14,14,0,0,0,0,0,0,19,14,90,66,66,66,66,66,90,19,14,93,14,93,0,0,0,0,0

,0,19,14,14,66,66,66,66,66,14,19,14,14,14,14,0,0,0,0,0,0,19,14,90,66,66,66,66,66,66,19,14,66,14,94,0,0,0,0,0,0,19,14,14,66,66,66,66,66,66,19,14,69,14,14,0,0,0,0,0,0,19,14,90,66,66,66,66,66,66,19,14,69

,14,94,0,0,0,0,0,0,19,14,14,66,66,66,66,66,66,19,14,69,14,14,0,0,0,0,0,0,19,14,90,66,66,66,66,66,66,19,14,69,14,94,0,0,0,0,0,0,19,14,14,66,66,66,66,66,66,69,69,69,14,14,0,0,0,0,0,0,19,14,90,14,90,14,9

0,14,90,19,14,14,14,94,0,0,0,0,0,0,19,14,14,14,14,14,14,14,14,19,0,0,0,0,0,0,0,0,0,0,19,14,14,14,14,14,14,14,14,19,0,0,0,0,0,0,0,0,0,0,19,14,14,14,2,2,14,14,14,19,0,0,0,0,0]});}},

{function Run(){maps.push({name="PoopSpiral EasyFlush",author="MoistNoodlez",id="#1660950656",direction="forward",cost=326,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,2,2,1,0,0,0,0,0,93,93,93,0

,0,0,0,0,0,0,1,92,45,45,1,0,0,0,0,93,59,59,59,58,58,57,90,57,56,56,56,45,45,45,1,0,0,0,0,93,59,94,58,58,58,57,57,57,56,56,56,45,45,45,1,0,0,0,0,93,59,59,94,45,45,45,45,45,45,55,55,45,46,46,1,0,0,0,0,0

,90,58,45,45,45,45,45,45,45,55,90,45,46,46,1,0,0,0,0,0,58,58,45,48,48,47,47,47,45,55,55,45,46,46,1,0,0,0,0,0,58,58,45,48,48,47,47,47,45,54,54,45,90,47,1,0,0,0,0,0,57,57,45,48,48,45,90,47,45,54,54,45,4

7,47,1,0,0,0,0,0,57,57,45,90,49,45,47,47,45,54,54,45,47,47,1,0,0,0,0,0,57,57,45,49,49,45,47,47,45,90,53,81,48,90,1,0,0,0,0,0,56,56,45,49,49,45,46,46,45,53,53,81,48,48,1,0,0,0,0,0,56,90,45,50,50,45,45,

45,45,53,53,81,48,48,1,0,0,0,0,0,56,56,45,50,50,51,45,45,52,52,52,81,49,49,1,0,0,0,0,0,55,55,45,90,50,51,45,45,52,52,90,81,49,49,1,0,0,0,0,0,55,55,84,84,84,12,45,45,12,84,84,81,49,49,1,0,0,0,0,0,55,55

,82,82,82,12,45,45,12,82,82,82,50,50,1,0,0,0,0,0,54,54,54,53,53,53,45,45,52,51,51,51,50,50,1,0,0,0,0,0,54,54,90,53,53,53,45,45,52,51,51,51,50,90,1,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Moldy Cheese",author="MoistNoodlez",id="#1660951741",direction="forward",cost=357,elevation=2,map=[0,0,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,54,54,54,54,54,1,1,1,1

,1,1,1,1,0,0,0,0,1,1,54,54,36,36,54,54,54,54,54,54,54,54,93,1,0,0,0,0,1,54,54,36,36,36,36,36,36,36,36,36,36,36,54,1,0,0,0,0,1,54,54,54,36,58,58,58,58,36,36,36,36,58,54,1,0,0,0,0,1,54,58,54,58,58,58,97

,58,58,58,58,58,58,54,1,1,0,0,0,1,54,58,54,58,36,36,58,58,58,36,58,58,36,54,93,1,1,0,0,1,54,36,54,54,36,58,58,58,58,58,58,58,36,36,54,1,1,0,0,1,54,36,36,54,58,58,58,58,58,58,97,58,58,58,54,94,1,0,0,1,

54,58,58,54,36,36,58,97,58,58,58,58,58,58,58,54,1,1,0,1,54,58,58,54,54,36,58,36,36,58,58,58,58,58,36,54,94,1,0,1,54,93,58,58,54,58,58,36,36,58,58,58,58,58,36,36,54,1,0,1,54,58,58,36,54,54,58,58,58,58,

58,97,58,58,58,58,54,1,1,1,94,54,58,36,36,54,58,58,58,58,58,58,58,58,97,58,54,54,1,1,1,54,54,58,58,54,54,58,36,36,58,36,58,58,36,58,58,54,1,0,1,93,54,54,58,58,54,58,36,36,97,58,58,58,54,54,54,54,1,0,1

,1,1,94,54,58,54,58,58,58,58,58,36,54,16,16,1,1,1,0,0,0,1,1,93,54,54,54,54,58,58,58,58,54,16,16,16,16,16,0,0,0,0,1,1,1,1,1,94,54,54,54,54,54,1,16,16,96,96,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2]});}}

,

{function Run(){maps.push({name="KeepOnTPing",author="MoistNoodlez",id="#1660952919",direction="forward",cost=245,elevation=0,map=[0,0,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14

,14,1,0,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,1,0,0,0,

0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,1,1,1,1,1,1,1,0,0,0,0,0,1,14,14,14,14,14,14,14,1,100,14,94,14,132,1,0,0,0,0,0,1,14,14,14,14,14,14,14,1,97,14,93,14,132,1,0,0,0,0,0,1,132,132,132,132,132,132,132,

1,131,14,94,14,132,1,0,0,0,0,0,1,14,14,14,14,14,14,14,1,1,1,1,1,1,1,0,0,0,0,0,1,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,1,0,0

,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,0,1,131,131,96,96,131,131,131,1,0,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,1,0,0,0,0,0,

0,0,0,0,0,0,1,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,0,1,14,14,2,2,14,93,14,1,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="City Walkway",author="MoistNoodlez",id="#1660969278",direction="forward",cost=346,elevation=0,map=[0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,1,90,5,5,5,5,5,5,5,5,5,5

,5,5,90,1,0,0,0,0,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,0,0,0,0,1,5,3,5,5,5,90,5,5,90,5,5,5,92,5,1,0,0,0,0,1,5,17,17,17,17,88,5,5,88,17,17,17,17,5,1,0,0,0,0,1,5,17,17,17,17,5,5,5,5,17,17,17,17,5,1,0,0,0,0,1

,5,17,17,17,17,5,5,5,5,17,17,17,17,5,1,0,0,0,0,1,93,5,5,5,5,88,5,5,88,5,5,5,5,93,1,0,0,0,0,1,5,19,19,19,19,5,5,5,5,19,19,19,19,5,1,0,0,0,0,1,5,19,19,19,19,5,5,5,5,19,19,19,19,5,1,0,0,0,0,1,90,5,5,5,5,

88,5,5,88,19,19,19,19,5,1,0,0,0,0,1,5,21,21,21,21,5,5,5,5,19,19,19,127,5,1,0,0,0,0,1,5,21,21,21,21,5,5,5,5,19,19,19,19,5,1,0,0,0,0,1,94,5,5,5,5,88,5,5,88,5,5,5,5,94,1,0,0,0,0,1,5,5,23,23,5,5,5,5,5,5,9

0,90,90,5,1,0,0,0,0,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,0,0,0,0,1,24,24,24,24,24,95,95,95,95,24,24,24,24,24,1,0,0,0,0,1,24,24,1,5,5,5,5,5,5,5,5,1,24,24,1,0,0,0,0,1,100,24,1,66,5,5,5,5,5,5,66,1,24,100,1,0,

0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0]});}},

{function Run(){maps.push({name="Castle Flick",author="MoistNoodlez",id="#1660969789",direction="left",cost=296,elevation=12,map=[0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,1,0,0,0,0,0,0,0,0,1,55,55,55,55,

55,61,88,61,9,9,1,0,0,0,0,0,0,1,1,55,55,55,55,55,55,55,61,61,9,9,1,0,0,0,0,0,1,61,92,55,55,55,88,55,55,55,55,55,90,9,1,0,0,0,0,0,1,61,92,55,55,55,1,55,55,55,61,61,9,9,1,0,0,0,0,0,0,1,1,1,1,1,1,88,55,5

5,61,93,9,9,1,0,0,0,0,0,0,1,93,55,55,55,55,55,55,55,55,61,90,9,1,0,0,0,0,0,0,1,102,55,55,55,55,55,55,55,55,55,9,9,1,0,0,0,0,0,0,0,1,1,1,1,1,88,55,55,55,55,9,90,1,1,1,1,1,1,1,1,1,61,61,90,61,55,55,55,5

5,61,9,9,1,2,61,101,98,96,61,61,61,61,61,61,61,55,55,55,55,55,9,9,1,2,61,101,98,96,61,61,61,61,90,61,61,1,88,55,55,61,90,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,55,55,55,49,49,1,0,0,0,0,0,0,0,0,1,93,49,49,49,

49,49,55,55,49,49,1,0,0,0,0,0,0,0,0,1,97,49,49,49,49,49,49,49,49,90,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,49,55,49,49,49,1,0,0,0,0,0,0,0,0,0,0,0,1,55,92,49,49,49,61,49,1,0,0,0,0,0,0,0,0,0,0,0,1,55,92,49,55,61

,99,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Shape your destiny",author="Luffaren",id="#1660979430",direction="forward",cost=212,elevation=0,map=[0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,114,114,114,

114,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,114,114,114,114,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,91,91,91,91,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,91,91,91,91,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,91,91,91,91,1,0,0,0,0,0,0,0,

0,0,0,1,93,114,1,1,91,91,91,91,1,0,0,0,0,0,0,0,0,0,0,1,93,114,1,1,91,91,91,91,1,0,0,0,0,0,0,0,0,0,0,1,93,114,1,1,91,91,91,91,1,0,0,0,0,0,0,0,0,0,0,1,114,114,114,114,91,91,91,91,1,0,0,0,0,0,0,0,0,0,0,1

,94,114,1,1,91,91,91,91,1,0,0,0,0,0,0,0,0,0,0,1,94,114,1,1,91,91,91,91,1,0,0,0,0,0,0,0,0,0,0,1,94,114,1,1,91,91,91,91,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,91,91,91,91,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,91,91,

91,91,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,91,91,91,91,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,91,91,91,91,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,114,114,114,114,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,114,114,114,114,1,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="test area 01",author="fara",id="#1660984854",direction="forward",cost=377,elevation=10,map=[14,2,2,14,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,14,14,14,14,0,0,0,0,0,0,5,5,5

,5,5,0,24,24,24,24,14,14,14,14,0,0,0,0,0,0,5,76,76,76,5,0,24,24,24,24,14,14,14,14,3,5,5,5,5,5,5,76,133,76,5,0,24,24,24,24,14,14,14,14,0,5,66,66,66,5,5,76,76,76,5,0,23,23,23,23,14,14,14,14,0,5,66,131,6

6,5,5,5,25,5,5,0,22,22,22,22,14,14,14,14,0,5,66,66,66,5,0,5,25,5,5,0,21,21,21,21,14,14,14,14,3,5,5,25,5,5,5,5,25,5,5,0,20,20,20,20,14,96,14,14,0,0,5,5,25,5,5,25,5,5,0,0,19,19,19,19,96,3,96,14,0,0,0,5,

5,25,25,5,5,0,0,0,18,18,18,18,24,24,24,24,0,0,0,5,5,25,25,5,5,0,0,0,17,17,17,17,24,97,24,24,0,0,5,5,25,5,5,25,5,5,0,0,16,16,16,16,24,24,24,24,0,5,5,25,5,5,5,5,25,5,5,0,15,15,15,15,24,24,24,23,0,5,66,6

6,66,5,0,5,25,5,5,0,14,14,14,14,24,24,24,23,0,5,66,134,66,5,5,5,25,5,5,5,12,13,13,13,24,24,24,23,0,5,66,66,66,5,5,76,76,76,5,5,11,12,13,13,24,24,24,24,0,5,5,5,5,5,5,76,132,76,5,5,11,12,13,13,24,24,24,

24,0,0,0,0,0,0,5,76,76,76,5,5,11,12,13,13,24,24,24,24,0,0,0,0,0,0,5,5,5,5,5,5,12,13,13,13,24,2,2,24,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13]});}},

{function Run(){maps.push({name="Windows",author="Niikos",id="#1660994855",direction="forward",cost=786,elevation=0,map=[1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,76,76,76,76,76,76,76,76,22,22,70,70,7

0,70,70,70,70,70,1,1,76,76,76,76,76,76,76,76,22,22,70,70,70,70,70,70,70,70,1,1,76,76,76,76,76,76,76,76,22,22,70,70,70,70,70,70,70,70,1,1,76,76,76,76,76,76,76,76,22,22,70,70,70,70,70,70,70,70,1,1,76,76

,76,76,76,76,76,76,22,22,70,70,70,70,70,70,70,70,1,1,76,76,76,76,76,76,76,76,22,22,70,70,70,70,70,70,70,70,1,1,76,76,76,76,76,76,76,76,22,22,70,70,70,70,70,70,70,70,1,1,76,76,76,76,76,76,76,76,22,22,7

0,70,70,70,70,70,70,70,1,1,93,93,22,22,22,22,22,22,22,22,22,22,22,22,22,22,94,94,1,1,100,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,100,1,1,126,126,126,126,126,126,126,126,22,22,40,40,40,40,40,40

,40,40,1,1,126,126,126,126,126,126,126,126,22,22,40,40,40,40,40,40,40,40,1,1,126,126,126,126,126,126,126,126,22,22,40,40,40,40,40,40,40,40,1,1,126,126,126,126,126,126,126,126,22,22,40,40,40,40,40,40,4

0,40,1,1,126,126,126,126,126,126,126,126,22,22,40,40,40,40,40,40,40,40,1,1,126,126,126,126,126,126,126,126,22,22,40,40,40,40,40,40,40,40,1,1,126,126,126,126,126,126,126,126,22,22,40,40,40,40,40,40,40,

40,1,1,126,126,126,126,126,126,126,126,22,22,40,40,40,40,40,40,40,40,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="TwistyTurnySlope",author="Niikos",id="#1660995434",direction="forward",cost=210,elevation=19,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,45,45,0,0,48,48,48,49,49,49,0,0,56,56,56,56,57,57,0,0,45,45,0,0,48,48,48,49,49,49,0,0,56,56,56,56,57,57,0,0,45,45,0,0,48,48,0,0,49,49,0,0,55,55,0,0,57,57,0,0,45,45,0,0,48,48,0,0,50,50,0

,0,55,55,0,0,57,57,0,0,45,45,0,0,48,48,0,0,50,50,0,0,55,55,0,0,58,58,0,0,45,45,0,0,47,47,0,0,50,50,0,0,55,55,0,0,58,58,0,0,45,45,0,0,47,47,0,0,50,50,0,0,55,55,0,0,58,58,0,0,45,45,0,0,47,47,0,0,50,50,0

,0,54,54,0,0,58,58,0,0,45,45,0,0,47,47,0,0,51,51,0,0,54,54,0,0,59,59,0,0,45,45,0,0,47,47,0,0,51,51,0,0,54,54,0,0,59,59,0,0,45,45,0,0,47,47,0,0,51,51,0,0,54,54,0,0,59,59,0,0,45,45,0,0,47,47,0,0,51,51,0

,0,53,53,0,0,59,59,0,0,45,45,0,0,46,46,0,0,52,52,0,0,53,53,0,0,60,60,0,0,46,46,46,46,46,46,0,0,52,52,52,53,53,53,0,0,60,60,0,0,46,46,46,46,46,46,0,0,52,52,52,53,53,53,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,60,60,0,64,64,64,64,64,64,64,64,64,63,63,63,63,62,62,62,61,61,61,0,64,2,2,64,64,64,64,64,64,63,63,63,63,62,62,62,61,61,61,0]});}},

{function Run(){maps.push({name="DefendTheBoost",author="Niikos",id="#1660996419",direction="left",cost=173,elevation=0,map=[14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,14,2,2,14,2,14,14,14,14,14,0,0,0,0,0,

0,0,0,0,0,14,14,14,14,2,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,65,65,65,0,0,0,0,0,0,128,14,14,14,14,14,14,14,14,14,14,65,65,65,0,0,0,0,0,0,128,14,14,14,14,14,14,14,14,14,14,65,65,65,0

,0,0,0,0,0,14,14,14,14,14,14,14,14,0,0,0,65,65,65,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,65,65,65,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,126,126,0,0,0,0,0,0,0,0,0,0,0,0,22,22,0,93,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,24,24,0,93,24,24,24,24,24,24,65,65,65,0,0,0,0,0,0,

128,24,24,0,94,94,24,24,24,24,24,65,65,65,0,0,0,0,0,0,128,24,100,0]});}},

{function Run(){maps.push({name="TheHiddenPath",author="Niikos",id="#1660997156",direction="forward",cost=272,elevation=0,map=[0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,34,34,1,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,1,34,34,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,1,0,0,1,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,1,0,0,1,34,34,34,34,34,34,34,34,34,34,34,

34,34,34,34,34,1,0,0,1,91,91,1,1,1,1,1,1,1,1,1,1,1,34,34,34,1,0,0,1,86,91,1,0,0,0,0,0,0,0,0,0,1,34,34,34,1,0,0,1,91,86,1,0,0,0,0,0,0,0,0,0,1,34,34,34,1,0,0,1,86,91,1,0,0,34,100,34,0,0,0,0,1,34,34,34,1

,0,0,1,94,94,0,0,0,34,34,34,0,0,0,0,92,34,34,34,1,0,0,1,94,94,0,0,0,34,34,34,0,0,0,0,92,34,34,34,1,0,0,1,91,86,1,0,0,93,34,93,0,0,0,0,1,34,34,34,1,0,0,1,86,91,1,0,0,0,0,0,0,0,0,0,1,34,34,34,1,0,0,1,91

,86,1,0,0,0,0,0,0,0,0,0,1,34,34,34,1,0,0,1,91,91,1,1,1,1,1,1,1,1,1,1,1,34,34,34,1,0,0,1,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,1,0,0,1,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,1,0,0,1,

34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,1,0,0,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Liquids optimized",author="Luffaren",id="#1661001699",direction="left",cost=572,elevation=10,map=[1,1,1,1,1,1,1,1,14,14,14,14,14,14,14,2,2,14,0,0,1,94,22,22,21,94,14,1

4,14,14,14,14,14,14,14,14,14,14,34,0,1,22,90,22,20,14,90,14,14,14,65,65,65,65,65,65,65,14,0,0,1,94,22,22,19,94,14,14,14,14,65,65,65,66,66,66,66,14,34,0,1,1,1,22,18,17,16,15,14,14,14,14,66,66,66,72,72,

14,0,0,1,0,1,22,22,22,22,22,90,68,68,68,66,66,66,74,74,74,67,0,1,0,1,22,22,22,22,22,14,68,14,14,66,66,66,74,74,74,67,0,1,1,1,20,20,22,22,22,90,68,14,14,66,70,66,74,74,74,67,0,90,24,24,20,20,22,22,90,1

4,68,14,90,14,14,90,14,14,14,0,0,24,24,24,20,20,21,21,22,1,69,1,22,22,22,22,22,22,22,0,0,0,24,24,20,20,20,20,20,1,68,68,66,14,14,93,14,22,22,0,0,24,24,24,20,20,127,20,20,1,1,1,14,14,14,14,93,65,65,67,

0,0,24,24,20,20,20,20,20,1,1,1,80,75,75,75,14,65,65,67,0,24,24,24,14,14,20,14,20,1,1,1,14,75,75,75,93,14,65,67,0,2,75,77,84,84,84,84,84,82,20,20,20,76,76,76,20,20,20,40,0,2,75,77,84,84,84,84,82,82,20,

94,20,76,76,76,20,93,20,0,0,24,24,24,20,20,14,20,82,82,14,20,14,82,82,82,14,20,14,0,0,24,24,23,22,21,20,20,82,84,84,84,84,84,84,84,84,84,84,77,0,24,24,23,22,21,20,20,84,84,84,84,84,84,84,84,84,84,84,7

7,0,24,24,24,24,24,20,20,14,14,20,14,20,20,20,20,20,14,20,40,40]});}},

{function Run(){maps.push({name="rapid water v2",author="fantasy",id="#1661001916",direction="left",cost=612,elevation=0,map=[1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,2,2,1,1,72,73,73,73,73,73,73,73,73,73,1,

0,0,0,0,1,14,14,1,1,72,72,73,73,73,73,73,73,73,71,1,1,1,0,1,1,72,72,1,1,72,72,1,1,1,1,1,1,71,71,73,1,1,1,1,72,72,73,1,1,72,72,1,0,0,0,0,1,71,73,71,73,1,1,72,72,72,1,1,1,72,72,1,1,1,1,0,1,1,1,71,71,1,1

,72,72,73,1,0,1,72,74,74,74,72,1,0,0,0,1,71,73,73,73,72,73,1,1,0,1,74,74,74,74,72,1,1,1,0,1,1,1,71,73,73,1,1,0,0,1,1,1,1,72,72,74,72,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,74,74,74,72,1,1,1,0,0,0,0,0,0,0,0,0

,0,0,0,1,1,1,72,72,74,72,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,74,74,74,74,74,74,74,74,74,74,74,74,72,1,1,1,1,1,0,1,1,1,1,74,74,74,74,74,71,1,1,1,72,1,2,14,66,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,72,1,2,14,66,1,1,

1,1,0,0,0,1,1,1,1,1,1,1,1,72,1,1,1,71,73,73,73,1,0,0,0,1,72,73,73,73,73,73,1,72,1,0,1,71,73,73,71,1,1,1,1,1,72,72,73,73,73,71,1,72,1,0,1,1,1,1,71,73,73,73,73,73,73,73,1,1,1,71,1,72,1,0,0,0,0,1,71,73,7

3,73,73,73,73,1,1,0,1,71,73,73,1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1]});}},

{function Run(){maps.push({name="DNA DOWN v2",author="MoistNoodlez",id="#1661012785",direction="forward",cost=228,elevation=-19,map=[0,0,1,124,124,93,124,2,2,124,94,124,124,1,0,0,0,0,0,0,0,0,1,123,123

,1,1,1,1,1,1,123,123,1,0,0,0,0,0,0,0,0,1,1,122,65,65,65,65,65,65,122,1,1,0,0,0,0,0,0,0,0,0,1,121,121,0,0,0,0,121,121,1,0,0,0,0,0,0,0,0,0,0,1,1,120,120,0,0,120,120,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,119,119

,119,119,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,118,118,118,118,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,117,117,0,0,117,117,1,1,0,0,0,0,0,0,0,0,0,0,1,116,116,65,65,65,65,116,116,1,0,0,0,0,0,0,0,0,0,0,1,95,0,0,0,0,0,0,

95,1,0,0,0,0,0,0,0,0,0,0,1,95,75,75,75,75,75,75,95,1,0,0,0,0,0,0,0,0,0,0,1,95,0,0,0,0,0,0,95,1,0,0,0,0,0,0,0,0,0,0,1,116,116,65,65,65,65,116,116,1,0,0,0,0,0,0,0,0,0,0,1,1,115,115,0,0,115,115,1,1,0,0,0

,0,0,0,0,0,0,0,0,1,1,114,114,114,114,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,113,113,113,113,1,1,1,0,0,0,0,0,0,0,0,0,1,1,110,111,112,0,0,112,111,110,1,1,0,0,0,0,0,0,0,0,1,108,109,65,65,65,65,65,65,109,108,1,0

,0,0,0,0,0,0,0,1,107,1,1,1,1,1,1,1,1,107,1,0,0,0,0,0,0,0,0,1,106,105,94,105,2,2,105,93,105,106,1,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Boost Jump Break",author="MoistNoodlez",id="#1661012905",direction="forward",cost=171,elevation=0,map=[14,14,14,14,0,0,0,0,0,128,14,14,0,0,0,0,0,2,2,0,14,14,14,14,0,0,

0,0,0,128,14,14,0,0,0,0,0,14,14,0,14,14,14,14,0,0,0,0,0,0,14,14,0,0,0,0,0,14,14,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,127,127,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,91,91,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,91,91,91,0,0,0,0,0,0,126,126,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,14,14,0,0,0,0,0,14,14,

0,14,14,14,14,0,0,0,0,0,0,14,14,0,0,0,0,0,14,14,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,127,127,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,91,91,91,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,91,91,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,126,126,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,14,14,14,0,0,0,0,14,14,14,0,14,14,14,14,0,0,0,0,0,14,14,

14,0,0,0,14,14,14,14,0,14,2,2,14,0,0,0,0,0,14,14,14,14,14,14,14,14,14,128,0]});}},

{function Run(){maps.push({name="magma chamber",author="fraz",id="#1661016405",direction="left",cost=507,elevation=-10,map=[1,1,1,1,77,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,2,10,10,10,81,5,5,5,5,5,5,5,5,5,5,5

,120,120,120,1,2,10,10,10,81,5,5,5,5,5,5,5,5,5,5,5,119,119,119,1,1,10,10,10,81,5,5,5,5,5,5,5,5,5,5,5,119,119,119,1,1,10,10,10,81,5,5,5,5,5,5,5,5,5,5,5,119,119,119,1,1,5,5,5,81,5,5,5,5,5,5,5,5,5,5,3,11

9,119,119,1,77,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,77,83,83,1,1,5,12,5,5,5,5,5,5,81,5,5,5,5,5,5,119,119,119,1,1,112,112,112,5,5,5,5,5,81,5,5,5,5,5,5,119,119,119,1,1,112,112,112,5,5,5,5,5,81,8

3,83,81,5,5,5,119,119,119,1,1,112,112,112,5,5,5,5,5,81,5,5,81,5,5,5,118,118,118,1,1,112,112,112,5,5,5,5,5,81,5,5,81,5,5,5,117,117,117,1,1,112,112,112,5,5,5,5,5,81,5,5,83,83,81,5,116,116,116,1,1,112,11

2,112,5,5,5,5,5,81,5,5,5,5,81,5,1,1,95,1,1,112,112,112,5,5,5,5,5,81,5,5,5,5,83,83,77,83,83,1,1,112,112,112,5,5,5,5,5,81,5,5,5,5,5,5,115,115,115,1,1,112,112,112,112,112,112,112,112,77,1,113,113,113,113

,114,115,115,115,1,1,112,112,112,112,112,112,112,112,81,1,113,113,113,113,114,115,115,115,1,1,112,112,112,112,112,112,112,112,81,95,113,113,113,113,114,115,115,115,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,

1,1,1]});}},

{function Run(){maps.push({name="water feature",author="fraz",id="#1661020004",direction="right",cost=335,elevation=-11,map=[24,24,2,2,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,21,21,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1

5,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13

,24,24,24,24,24,24,24,24,24,24,24,24,24,24,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,24,13,13,13,74,74,74,74,74,74,74,74,72,13,90,13,90,13,97,13,24,13,13,13,71,13,71,13,71,13,13,13,72,1

3,13,13,13,13,13,13,24,13,13,24,67,24,67,24,67,24,13,13,72,13,90,13,90,13,13,13,24,13,13,24,71,24,71,24,71,24,24,13,72,13,13,13,13,13,13,13,24,13,13,24,65,65,65,65,65,74,67,74,74,74,74,74,74,74,24,24,

24,13,13,24,24,24,24,24,24,24,24,13,13,13,24,13,13,13,96,13,2,13,13,13,13,13,13,13,13,13,13,13,13,13,24,13,13,13,96,13,2,97,13,13,13,13,13,13,13,13,13,13,13,13,24,13,13,13,24,24,24]});}},

{function Run(){maps.push({name="Ladder Defense",author="MoistNoodlez",id="#1661024292",direction="right",cost=201,elevation=-11,map=[0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,16

,16,1,3,3,24,100,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,3,3,24,94,1,0,0,0,0,0,0,0,0,0,0,0,1,3,3,1,3,3,24,93,1,0,0,0,0,0,0,0,0,0,0,0,1,117,117,1,3,67,24,94,1,0,0,0,0,0,0,0,0,0,0,0,1,116,116,1,3,67,24,93,1,0,0

,0,0,0,0,0,0,0,0,0,1,115,115,1,3,67,24,94,1,0,0,0,0,0,0,0,0,0,0,0,1,114,114,1,3,67,24,24,1,0,0,0,0,0,0,0,0,0,0,0,1,113,113,1,3,0,67,67,67,0,0,0,0,0,0,0,0,0,0,0,1,112,112,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,1,111,111,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,110,110,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,109,109,1,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,1,108,108,1,1,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,1,107,107,1,105,5,5,

5,93,0,0,0,0,0,0,0,0,0,0,0,1,106,106,1,105,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,1,105,105,105,105,5,5,5,2,0,0,0,0,0,0,0,0,0,0,0,1,105,105,105,105,5,5,5,2,0,0,0,0,0,0,0,0,0,0,0,1,105,105,105,105,5,5,5,5,0,0,0

,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Sus lava",author="MoistNoodlez",id="#1661024881",direction="right",cost=374,elevation=-13,map=[0,0,0,0,0,1,18,2,2,18,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,18,18,18,18,66,66,

66,66,1,0,0,0,0,0,0,0,0,0,0,1,18,18,18,18,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,1,66,19,19,19,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,1,66,19,19,19,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,1,66,66,19,19,19,66,66,66,1,

0,0,0,0,0,0,0,0,0,0,1,66,66,19,19,19,20,20,20,1,0,0,0,0,0,0,0,0,0,0,1,66,66,66,19,19,20,20,20,1,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,20,20,20,121,1,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,66,66,1,121,1,0,0,0,0

,0,0,0,0,0,0,1,66,66,66,66,66,66,1,121,1,0,0,0,0,0,0,0,0,1,1,1,1,1,121,122,1,1,1,95,1,0,0,0,0,0,0,0,0,1,113,114,76,79,79,79,79,76,1,121,1,0,0,0,0,0,0,0,0,1,113,114,76,79,79,79,79,76,119,120,1,0,0,0,0,

0,0,0,0,1,113,114,114,115,116,117,118,119,119,1,1,1,1,1,1,1,1,1,1,1,113,114,96,96,96,96,96,96,119,1,105,96,5,5,5,5,1,112,112,112,113,113,77,77,77,77,77,77,1,1,105,96,5,5,5,2,1,112,1,1,1,1,44,44,44,44,

44,44,105,97,105,96,5,5,5,2,1,112,111,111,111,111,110,109,108,107,106,105,105,105,105,96,5,5,5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Duality v2",author="MoistNoodlez",id="#1661026802",direction="forward",cost=310,elevation=0,map=[0,0,0,0,0,0,0,0,14,2,2,14,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,1

4,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,92,0,0,0,0,0,0,67,67,67,0,0,14,65,65,14,0,0,0,0,0,0,0,0,0,0,0,44,44,44,67,0,14,65,65,14,0,0,77,77,0,0,0,0,0,0,0,9,9,44,67,0,14,65,65,14,0,77,

44,44,77,0,0,0,0,0,0,93,9,44,67,0,14,65,65,14,0,77,44,44,77,0,0,0,0,0,0,9,9,44,67,0,14,65,65,14,0,77,44,44,77,0,0,0,0,0,0,93,9,44,67,0,14,65,65,14,0,77,44,44,77,0,0,0,0,0,0,9,9,44,67,0,14,65,65,14,0,0

,0,0,0,0,0,0,0,0,0,93,9,44,67,0,14,65,65,14,14,0,0,0,0,0,128,14,0,0,0,9,9,44,67,0,14,65,65,14,129,0,0,0,0,0,14,93,0,0,0,93,9,44,67,0,14,65,65,14,0,0,0,0,0,0,0,0,16,16,0,125,9,44,67,0,14,65,65,14,0,77,

44,14,14,0,0,0,16,16,0,9,9,44,67,0,14,65,65,14,0,77,44,14,94,14,0,0,16,125,0,44,44,44,67,0,14,65,65,14,0,77,44,14,94,14,128,0,0,0,0,67,67,67,0,0,14,65,65,14,0,77,44,14,94,14,0,0,0,0,0,0,0,0,0,0,14,88,

88,14,0,77,44,14,14,0,0,0,0,0,0,0,0,0,0,0,14,95,95,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="DIGlett v2",author="MoistNoodlez",id="#1661029794",direction="left",cost=377,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,14

,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,14,90,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,14,90,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,90,14,14,14,90,1,0,0,1,1,91,91,91,91,91,91,91,91,91,91,91,14,90,14,93,1,0,0,1,

91,91,91,91,91,91,91,91,91,91,91,91,14,14,14,1,1,0,1,1,91,91,0,1,1,91,76,76,91,91,91,91,1,14,14,14,1,1,2,14,91,91,91,91,91,91,76,76,91,91,91,91,90,14,14,14,90,1,2,14,91,91,91,91,91,91,76,76,91,91,91,9

1,91,90,14,14,93,1,1,1,91,91,0,1,1,91,76,76,91,91,91,91,91,14,14,14,90,1,0,1,91,91,91,91,91,91,91,91,91,91,91,91,1,14,90,14,1,1,0,1,1,91,91,91,91,91,91,91,91,91,91,91,1,14,14,14,93,1,0,0,1,1,91,91,91,

91,91,91,91,91,91,91,14,14,14,14,90,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,90,14,14,14,93,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,94,14,14,14,90,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,14,14,90,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,

94,14,90,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,90,94,94,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0]});}},

{function Run(){maps.push({name="Breakable Sabotage",author="MoistNoodlez",id="#1661030364",direction="forward",cost=161,elevation=-5,map=[0,0,0,0,0,0,0,19,19,2,2,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,

19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,91,91,91,91,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,14,91,14,91,14,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,14,91,14,91,14,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,14,91,14,91,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,89,14,91,14,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,14,91,14,91,14,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,14,91,14,89,14,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,14,91,14,91,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,91,14,91,14,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,14,91,14,89,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,91

,14,91,14,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,14,89,14,91,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,91,14,91,14,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,14,91,14,91,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,88,88,2,2,88,88,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Underwater Mountain",author="MoistNoodlez",id="#1661031626",direction="left",cost=280,elevation=-9,map=[0,0,0,0,0,0,0,14,2,2,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,1

4,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,66,66,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,67,66,66,67,1,1,1,1,1,1,0,0,0,2,5,66,67,66,120,95,65,67,67,65,120,119,119,119,119,1,0,0,0,2,5,66,67

,66,120,95,120,54,54,120,120,119,119,119,119,1,0,0,0,1,1,1,1,1,1,1,115,115,115,115,1,1,1,118,118,1,0,0,0,0,0,0,0,0,0,1,115,66,66,115,1,93,1,118,118,1,0,0,0,0,0,0,0,0,0,1,115,69,69,115,1,116,1,118,118,

1,0,0,0,0,0,0,0,0,0,1,69,69,69,69,69,66,1,118,118,1,0,0,0,0,0,0,0,0,0,1,69,69,69,69,1,1,1,118,118,1,0,0,0,0,0,0,0,0,0,1,69,69,69,69,69,69,66,116,116,1,0,0,0,0,0,0,0,0,0,1,69,69,69,69,69,69,66,116,116,

1,0,0,0,0,0,0,0,0,0,1,69,69,69,69,69,69,66,116,116,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0]});}},

{function Run(){maps.push({name="Waterfall Mountain",author="MoistNoodlez",id="#1661033650",direction="forward",cost=247,elevation=-9,map=[0,0,0,0,0,0,1,14,2,2,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,93,14

,14,94,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,125,125,125,125,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,67,67,67,1,0,0,0,0,0,0

,0,0,0,0,0,0,0,1,1,65,65,65,65,1,1,1,0,0,0,0,0,0,0,0,0,0,1,124,124,124,124,124,124,115,115,115,1,0,0,0,0,0,0,0,0,0,1,124,124,115,115,115,115,115,66,66,1,0,0,0,0,0,0,0,0,0,1,123,123,115,115,115,88,1,69

,69,1,0,0,0,0,0,0,0,0,0,1,123,123,115,76,76,115,1,69,69,1,0,0,0,0,0,0,0,0,0,1,123,123,115,115,115,88,1,69,69,1,0,0,0,0,0,0,0,0,0,1,122,122,115,115,115,115,1,69,69,1,0,0,0,0,0,0,0,0,0,1,122,122,114,114

,114,114,1,69,69,1,0,0,0,0,0,0,0,0,0,1,122,122,115,115,115,115,1,69,69,1,0,0,0,0,0,0,0,0,0,1,121,121,116,116,116,116,1,67,67,1,0,0,0,0,0,0,0,0,0,1,121,121,117,117,117,117,1,66,66,1,0,0,0,0,0,0,0,0,0,1

,120,88,119,119,118,118,1,5,5,1,0,0,0,0,0,0,0,0,0,1,120,120,119,119,118,88,1,5,5,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,0,0,0,0,0]});}},

{function Run(){maps.push({name="Water Corridors",author="MoistNoodlez",id="#1661033783",direction="forward",cost=368,elevation=-5,map=[0,0,0,0,1,19,19,19,2,2,19,19,19,1,0,0,0,0,0,0,0,0,0,0,1,19,19,19

,19,19,19,19,19,1,0,0,0,0,0,0,0,0,0,0,1,19,19,19,19,19,19,19,19,1,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,1,69,69,1,69,69,1,69,69,1,0,0,0,0,0,0,0,0,0,0,1,69,69,1,69,69,1,69

,69,1,0,0,0,0,0,0,0,0,0,0,1,69,69,1,69,69,1,69,69,1,0,0,0,0,0,0,0,0,0,0,1,69,69,1,69,69,1,69,69,1,0,0,0,0,0,0,0,0,0,0,1,69,69,1,69,69,1,69,69,1,0,0,0,0,0,0,0,0,0,0,1,69,69,1,69,69,1,69,69,1,0,0,0,0,0,

0,0,0,0,0,1,69,69,1,69,69,1,69,69,1,0,0,0,0,0,0,0,0,0,0,1,69,69,1,69,69,1,69,69,1,0,0,0,0,0,0,0,0,0,0,1,69,69,1,69,69,1,69,69,1,0,0,0,0,0,0,0,0,0,0,1,69,69,1,69,69,1,69,69,1,0,0,0,0,0,0,0,0,0,0,1,69,6

9,1,69,69,1,69,69,1,0,0,0,0,0,0,0,0,0,0,1,67,67,67,67,67,67,67,67,1,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,14,14,14,1,0,0,0,0,0,0,0,0,0,0,1,14,14,14,95,95

,14,14,14,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Wat u Twat",author="MoistNoodlez",id="#1661047165",direction="forward",cost=186,elevation=5,map=[0,0,0,0,0,0,1,11,2,2,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,93,11,11,94,1,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,11,11,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,125,125,125,125,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,67,67,67,1,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,1,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,24,24,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,24,24,24,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,67,67,67,1,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,125,125,125,125,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,1,67,67,67,67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,16,16,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,95,95,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,

0,0,0,0]});}},

{function Run(){maps.push({name="Breakable Split Hold",author="MoistNoodlez",id="#1661098806",direction="forward",cost=152,elevation=0,map=[0,0,0,0,0,88,94,14,2,2,14,94,88,0,0,0,0,0,0,0,0,0,0,0,0,14,1

4,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,14,102,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,103,103,0,0,0,0,91,91,0,0,0

,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,104,14,0,0,0,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,101,101,0,0,0,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,14

,99,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,96,96,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,97,14,0,0,0,

0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,98,98,0,0,0,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,88,93,

14,2,2,14,93,88,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Penis Destination",author="MoistNoodlez",id="#1661100924",direction="forward",cost=240,elevation=0,map=[0,0,0,0,88,14,14,14,2,2,14,14,14,14,0,0,0,0,0,0,0,0,0,0,14,14,0

,0,14,14,0,0,14,14,0,0,0,0,0,0,0,0,0,0,14,14,0,0,75,75,0,0,14,14,0,0,0,0,0,0,0,0,0,0,88,91,0,0,65,65,0,0,91,91,0,0,0,0,0,0,0,0,0,0,91,91,0,0,75,75,0,0,91,91,0,0,0,0,0,0,0,0,0,0,91,88,0,0,65,65,0,0,91,

91,0,0,0,0,0,0,0,0,0,0,91,91,0,0,75,75,0,0,91,91,0,0,0,0,0,0,0,0,0,0,88,91,0,0,65,65,0,0,91,91,0,0,0,0,0,0,0,0,0,0,91,91,0,0,114,114,0,0,91,91,0,0,0,0,0,0,0,0,0,0,91,88,0,0,75,75,0,0,91,91,0,0,0,0,0,0

,0,0,0,0,91,91,0,0,65,65,0,0,91,91,0,0,0,0,0,0,0,0,0,0,88,91,0,0,75,75,0,0,91,91,0,0,0,0,0,0,0,0,0,0,91,91,0,0,65,65,0,0,91,91,0,0,0,0,0,0,0,0,0,0,91,88,0,0,75,75,0,0,91,91,0,0,0,0,0,0,0,0,0,0,91,91,0

,0,65,65,0,0,91,91,0,0,0,0,0,0,0,0,0,0,91,91,0,0,91,91,0,0,91,91,0,0,0,0,0,0,0,0,0,0,95,95,0,0,95,95,0,0,95,95,0,0,0,0,0,0,0,0,0,0,95,95,0,0,95,95,0,0,95,95,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14

,14,14,0,0,0,0,0,0,0,0,0,0,88,14,14,14,2,2,14,14,14,14,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="crypt",author="fraz",id="#1661105648",direction="right",cost=456,elevation=0,map=[16,50,2,2,50,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,50,50,50,50,50,50,95,50,

50,50,50,50,50,50,95,50,50,50,16,16,50,50,50,50,50,50,95,50,50,50,50,50,50,50,95,50,94,50,16,16,50,50,16,16,50,50,16,16,50,50,16,16,50,50,16,16,50,50,16,16,50,50,16,16,50,50,16,16,50,50,16,16,50,50,16

,16,50,50,16,16,50,50,50,50,50,50,95,50,50,50,50,50,50,50,95,50,50,50,16,16,50,50,50,50,50,50,95,50,50,50,50,50,50,50,95,50,50,50,16,16,95,95,16,16,95,95,16,16,50,50,16,16,50,50,16,16,50,50,16,16,50,5

0,16,16,50,50,16,16,50,50,16,16,50,50,16,16,50,50,16,16,50,50,50,50,50,50,50,50,50,50,50,50,50,50,95,50,50,50,16,16,50,50,50,50,50,50,50,50,50,50,50,50,50,50,95,50,50,50,16,16,50,50,16,16,50,50,16,16,

50,50,16,16,50,50,16,16,50,50,16,16,50,50,16,16,50,50,16,16,50,50,16,16,50,50,16,16,50,50,16,16,50,50,50,50,50,50,50,50,50,50,50,50,50,50,95,50,50,50,16,16,50,50,50,50,50,50,50,50,50,50,50,50,50,50,95

,50,50,50,16,16,95,95,16,16,95,95,16,16,95,95,16,16,95,95,16,16,95,95,16,16,50,50,16,16,50,50,16,16,50,50,16,16,50,50,16,16,10,10,10,16,50,94,50,50,50,50,50,50,50,50,50,50,50,50,95,10,10,10,2,16,50,50

,50,50,50,50,50,50,50,50,50,50,50,50,95,10,10,10,2,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,10,10,10,10]});}},

{function Run(){maps.push({name="pratformer",author="fraz",id="#1661107007",direction="right",cost=132,elevation=-10,map=[35,2,2,35,0,0,0,0,0,0,0,0,0,0,1,25,25,25,25,25,35,35,35,35,0,0,0,0,0,0,0,0,0,0

,1,25,25,25,25,2,0,35,0,0,0,0,0,0,0,0,0,0,0,0,1,25,25,25,25,2,0,35,0,0,0,0,0,0,0,0,0,0,0,0,1,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,105,1,1,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,92,120,0,0,35

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,120,120,0,0,34,0,0,0,0,38,38,0,0,35,35,0,0,0,0,0,0,0,0,0,33,0,0,0,0,38,0,0,0,0,34,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,1,0,0,33,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,1,0,0,32,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,31,0,0,0,0,0,0,0,0,0,31,0,0,0,0,92,0,1,0,0,30,0,0,0,0,0,0,0,0,0,92,0,0,0,0,38,0,1,40,40,29,40,40,0,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,28,0,40,0,0,0,0,0,0,0,35,0,0,0,

0,0,0,1,40,0,27,0,40,0,0,0,0,0,0,0,35,0,0,0,0,0,0,1,0,0,26,0,40,0,0,0,0,0,0,0,35,0,0,0,0,92,0,1,40,0,26,0,40,0,1,0,92,0,0,0,35,35,36,37,38,38,0,1,0,0,26,0,40,0,0,0,40,0,0,0,0,0,0,0,0,0,0,1,40,3,26,0,4

0,40,40,40,40,0,0]});}},

{function Run(){maps.push({name="In and out",author="Luffaren",id="#1661125260",direction="left",cost=252,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,67,24,24,2,2,24,24,67,0,0,0,0,0,0,0,0,0,0,0,0,67,24,24,

24,24,24,24,67,0,0,0,0,0,0,0,0,0,0,0,0,67,24,24,24,24,24,24,67,0,0,0,0,0,0,0,0,0,44,85,0,67,24,90,24,24,90,24,67,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,124,124,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,124,124,124,124

,1,0,0,0,0,0,0,0,0,0,85,0,0,0,0,1,123,123,123,123,1,0,0,0,0,0,0,0,0,0,44,0,0,0,0,1,122,122,122,122,1,0,0,0,0,0,44,85,0,0,0,0,0,0,0,1,121,121,121,121,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,121,89,121,121,1,0,

0,0,85,0,0,0,0,0,0,0,0,0,0,1,121,121,121,121,1,0,0,0,44,0,0,0,0,0,0,0,0,0,0,1,90,121,121,90,1,0,0,24,24,24,1,1,1,1,1,1,1,1,1,1,1,95,95,1,1,0,0,24,24,90,1,124,123,122,121,121,94,121,90,1,121,121,121,12

1,1,0,0,2,24,24,95,124,123,122,121,121,121,121,121,121,121,65,65,121,1,0,0,2,132,24,95,124,123,122,121,89,121,121,121,121,121,65,65,121,1,0,0,24,24,90,1,124,123,122,121,121,94,121,90,1,121,121,121,121

,1,0,0,24,24,24,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,131,0,67,67,67,0,44,0,0,44,0,0,44,0,0,44,0,0,44,93,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="water is your def",author="Kitty",id="#1661144691",direction="forward",cost=58,elevation=19,map=[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,125,25,34,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,34,125,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44

,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="slidy",author="kitty",id="#1661145208",direction="right",cost=260,elevation=0,map=[2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,135,135,1,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,95,2

,135,135,1,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,95,2,135,135,1,0,0,0,0,1,135,135,1,1,1,1,1,1,1,1,1,1,135,135,1,0,0,0,0,1,135,135,1,0,0,0,0,0,0,0,0,0,135,135,1,0,0,0,0,1,135,135,1,0,0,0,0,0,0,0,0,0,135,135,1,

0,0,0,0,1,135,135,1,0,0,0,0,0,0,0,0,0,135,135,1,0,0,0,0,1,135,135,1,0,0,0,0,0,0,0,0,0,135,135,1,0,0,0,0,1,135,135,1,0,0,0,0,0,0,0,0,0,135,135,1,0,0,0,0,1,135,135,1,0,0,0,0,0,0,0,0,0,135,135,1,0,0,0,0,

1,135,135,1,0,0,0,0,0,0,0,0,0,135,135,1,0,0,0,0,1,135,135,1,0,0,0,0,0,0,0,0,0,135,135,1,0,0,0,0,1,135,135,1,0,0,0,0,0,0,0,0,0,135,135,1,0,0,0,0,1,135,135,1,0,0,0,0,0,0,0,0,0,135,135,1,0,0,0,0,1,135,13

5,1,0,0,0,0,0,0,0,0,0,135,135,1,0,0,0,0,1,135,135,1,0,0,0,0,0,0,0,0,0,135,135,1,1,1,1,1,1,135,135,1,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,95,135,1,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,95,135,1,0,0,0,0,0,0,0,

0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Float",author="tilgep",id="#1661199570",direction="right",cost=130,elevation=12,map=[0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,130,130,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,130,130,125,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,6,130,130,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,17,17,

17,17,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,18,18,18,0,0,0,0,0,0,1,0,0,26,26,92,17,17,0,0,0,0,18,18,130,130,130,130,130,130,26,106,106,26,130,130,17,2,0,0,0,0,0,18,130,130,130,130,130,130,26,106,106,26,13

0,130,17,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26,26,92,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="RockClimbing V2",author="MoistNoodlez",id="#1661209503",direction="forward",cost=312,elevation=19,map=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,15,13,13,13,11,11,11,9

,9,9,7,7,7,5,5,5,5,5,1,1,15,13,13,13,11,11,11,9,9,9,7,7,7,5,5,5,5,5,1,1,15,15,1,1,1,1,1,1,1,1,1,1,1,5,5,5,5,5,1,1,15,15,1,0,0,0,0,0,0,0,0,0,1,5,5,5,5,5,1,1,15,15,1,0,0,0,0,0,0,0,0,0,1,4,4,4,4,4,1,1,15

,15,1,0,0,0,0,0,0,0,0,0,1,9,9,9,9,9,1,1,17,17,1,0,0,0,0,0,0,0,0,0,1,93,94,93,94,93,1,1,17,17,1,0,0,0,0,0,0,0,0,0,1,9,9,9,9,9,1,1,17,17,1,0,0,0,0,0,0,0,0,0,1,4,4,4,4,4,1,1,17,17,1,0,0,0,0,0,0,0,0,0,1,1

4,14,14,14,14,1,1,19,19,1,0,0,0,0,0,0,0,0,0,1,94,93,94,93,94,1,1,19,19,1,0,0,0,0,0,0,0,0,0,1,14,14,14,14,14,1,1,19,19,1,0,0,0,0,0,0,0,0,0,1,4,4,4,4,4,1,1,19,19,1,0,0,0,0,0,0,0,0,0,1,24,24,24,24,24,1,1

,21,21,1,0,0,0,0,0,0,0,0,0,1,24,24,24,24,24,1,1,21,21,1,1,1,1,1,1,1,1,1,1,1,24,24,24,24,24,1,1,21,23,23,23,23,24,24,24,24,24,24,24,24,24,24,24,24,24,1,1,21,23,23,23,23,24,24,96,96,24,24,24,24,24,24,97

,24,24,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Salmon Ladders",author="MoistNoodlez",id="#1661213060",direction="forward",cost=444,elevation=19,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,5,66,66,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,72,72,5,0,0,19,19,19,19,19,19,19,19,19,19,0,0,0,0,5,72,72,5,0,0,19,72,72,73,73,73,73,73,73,19,0,0,0,0,5,72,72,5,0,0,19,72,72,73,73,73,73,73,73,19,0,0,0,0

,5,72,72,5,0,0,19,72,72,19,19,19,19,66,66,19,0,0,0,0,5,72,72,5,0,0,19,72,72,19,0,0,3,67,67,3,0,0,0,0,5,66,66,5,0,0,19,72,72,19,0,0,14,66,66,14,0,0,0,0,3,67,67,3,0,0,19,72,72,19,0,0,14,71,71,14,0,0,0,0

,9,66,66,9,0,0,19,66,66,19,0,0,14,71,71,14,0,0,0,0,9,72,72,9,0,0,3,67,67,3,0,0,14,71,71,14,0,0,0,0,9,72,72,9,0,0,24,66,66,24,0,0,14,71,71,14,0,0,0,0,9,72,72,9,0,0,24,72,72,24,0,0,14,71,71,14,0,0,0,0,9

,72,72,9,0,0,24,72,72,24,0,0,14,71,71,14,0,0,0,0,9,72,72,9,0,0,24,72,72,24,0,0,14,71,71,14,3,9,9,9,9,72,72,9,0,0,24,72,72,24,0,0,14,71,71,66,67,66,73,73,73,73,73,9,0,0,24,72,72,24,0,0,14,71,71,66,67,6

6,73,73,73,73,73,9,0,0,24,66,66,24,0,0,14,14,14,14,3,9,9,9,9,9,9,9,0,0,24,2,2,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="City SkyBridge",author="MoistNoodlez",id="#1661213339",direction="forward",cost=248,elevation=4,map=[0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,113,113,1,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,1,88,113,113,88,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,113,113,113,113,33,33,33,33,53,54,55,88,1,0,0,1,1,1,0,1,113,113,113,113,33,33,33,33,53,54,55,55,1,0,1,123,123,100,1,1,88,113,113,88,1,

0,0,1,119,1,56,56,1,0,1,88,123,123,1,0,1,1,1,1,0,0,0,1,118,118,57,57,43,43,43,43,123,88,1,0,0,0,0,0,0,0,0,1,88,118,57,57,43,43,43,43,123,88,1,0,0,0,0,0,0,0,0,0,1,1,43,43,94,0,1,88,123,123,1,0,1,1,1,1,

1,0,0,0,0,0,43,43,0,0,1,123,123,123,1,1,100,123,123,123,88,1,0,0,0,0,43,43,0,0,1,88,123,123,1,1,88,123,123,123,123,43,43,43,43,43,43,43,0,0,0,1,123,123,1,1,88,123,123,123,123,43,43,43,43,43,43,43,0,0,

0,0,0,0,0,1,123,123,123,123,88,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,123,92,92,92,123,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,123,57,57,57,123,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,123,57,57,57,123,1,0,0,0,0,0,0,0,0,0,35,66,66

,35,1,1,1,117,1,1,1,0,0,0,0,0,0,0,0,0,36,66,66,36,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,37,37,37,37,37,0,0,93,37,37,37,37,37,37,37,37,37,37,37,37,37,2,2,37,93]});}},

{function Run(){maps.push({name="Rapids",author="MoistNoodlez",id="#1661214381",direction="right",cost=458,elevation=-18,map=[0,0,24,2,2,24,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,24,72,72,24,1,10,10,10,10,10

,8,8,8,6,6,6,6,6,0,0,24,72,72,24,1,10,74,74,74,74,67,74,74,67,74,74,66,2,0,0,24,72,72,24,1,10,74,74,74,74,67,74,74,67,74,74,66,2,0,0,22,67,67,22,1,10,71,71,10,10,8,8,8,6,6,6,6,6,0,0,22,72,72,22,1,10,6

7,67,10,0,0,0,0,0,0,0,0,0,0,0,22,72,72,22,1,12,71,71,12,0,0,0,0,0,0,0,0,0,0,0,22,72,72,22,1,12,71,71,12,14,14,14,14,0,0,0,0,0,0,0,22,72,72,22,1,12,71,71,67,73,73,73,14,0,0,0,0,0,0,0,20,67,67,20,1,12,7

1,71,67,73,73,73,14,0,0,0,0,0,0,0,20,72,72,20,1,12,12,12,12,14,71,71,14,0,0,0,0,0,0,0,20,72,72,20,1,0,0,0,0,14,71,71,14,0,0,0,0,0,0,0,20,72,72,20,1,0,0,0,0,14,71,71,14,0,0,0,0,0,0,0,20,72,72,20,1,0,0,

0,0,14,71,71,14,0,0,0,0,0,0,0,20,72,72,20,1,0,0,0,0,14,67,67,14,0,0,0,0,0,0,0,20,72,72,20,18,18,18,16,16,16,71,71,16,0,0,0,0,0,0,0,20,74,74,74,67,74,74,67,74,74,71,71,16,0,0,0,0,0,0,0,20,74,74,74,67,7

4,74,67,74,74,71,71,16,0,0,0,0,0,0,0,20,20,20,20,18,18,18,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Cave Spelunking V2",author="MoistNoodlez",id="#1661214619",direction="forward",cost=588,elevation=-19,map=[1,124,2,2,124,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,124,72,72,124,

1,114,114,114,114,114,114,109,109,109,109,109,109,109,1,1,124,72,72,124,1,114,74,74,74,74,74,67,74,74,74,74,74,109,1,1,124,72,72,124,1,114,74,74,74,74,74,67,74,74,74,74,74,109,1,1,124,72,72,124,1,114,

71,71,114,114,114,109,109,109,109,72,72,109,1,1,124,72,72,124,1,114,71,71,114,1,1,1,1,1,109,72,72,109,1,1,124,72,72,124,1,114,71,71,114,114,114,114,114,1,109,72,72,109,1,1,124,72,72,124,1,114,71,71,73

,73,73,73,114,1,109,72,72,109,1,1,119,67,67,119,1,114,71,71,73,73,73,73,114,1,105,67,67,105,1,1,119,72,72,119,1,114,114,114,114,114,71,71,114,1,105,72,72,105,1,1,119,72,72,119,1,1,1,1,1,114,71,71,114,

1,105,66,66,105,1,1,119,72,72,119,1,1,1,1,1,114,71,71,114,1,105,66,66,105,1,1,119,72,72,119,119,119,119,114,114,114,71,71,114,1,105,66,66,105,1,1,119,74,74,74,74,74,74,67,74,74,71,71,114,1,105,66,66,1

05,1,1,119,74,74,74,74,74,74,67,74,74,71,71,114,1,105,66,66,105,1,1,119,119,119,119,119,119,119,114,114,114,114,114,114,1,105,66,66,105,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,105,66,66,105,1,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,1,105,66,66,105,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,66,66,105,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,2,2,105,1]});}},

{function Run(){maps.push({name="Anal Fissures",author="MoistNoodlez",id="#1661218474",direction="forward",cost=402,elevation=-14,map=[0,0,0,1,121,122,122,123,124,124,124,124,124,124,2,2,124,124,124,1

,0,0,0,1,121,88,122,123,76,124,124,88,124,124,124,124,124,124,124,1,0,0,0,1,121,122,122,76,123,123,124,124,76,124,124,124,124,76,123,1,0,0,0,1,1,121,122,76,76,123,123,123,123,76,76,76,76,123,123,1,0,0

,0,0,1,121,76,76,122,76,123,123,123,76,123,123,76,76,1,1,0,0,0,0,1,121,76,121,122,122,76,122,76,76,122,122,76,76,1,0,0,0,0,0,1,120,120,121,121,88,121,76,76,121,121,76,121,88,1,0,0,0,0,0,1,120,120,76,1

20,120,120,120,120,120,76,120,120,120,1,0,0,0,0,0,0,1,119,76,76,119,119,119,119,119,76,119,119,1,1,0,0,0,0,0,0,0,1,119,76,76,76,119,76,76,119,119,88,1,0,0,0,0,0,0,0,0,1,1,1,119,119,119,119,76,119,119,

1,1,0,0,0,0,0,0,0,0,0,0,1,1,119,91,91,91,91,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,91,91,76,1,76,119,1,0,0,0,0,0,0,0,0,0,1,116,93,116,76,76,116,76,116,1,1,0,0,0,0,0,0,0,0,0,1,94,88,114,76,114,114,76,114,114,1,

1,0,0,0,0,0,0,0,0,1,1,114,114,76,114,114,76,76,112,112,1,1,0,0,0,0,0,0,1,1,112,112,112,112,112,112,112,76,112,112,112,1,0,0,0,0,0,0,1,1,111,111,111,88,111,111,76,76,76,111,88,1,0,0,0,0,0,0,1,111,76,76

,76,110,110,76,76,110,110,110,110,1,1,0,0,0,0,0,1,76,76,110,110,2,2,110,110,110,110,76,110,110,1]});}},

{function Run(){maps.push({name="freebie",author="iProbie",id="#1661224451",direction="forward",cost=52,elevation=0,map=[0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,95,95,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="freebie but oh no",author="iProbie",id="#1661225550",direction="forward",cost=108,elevation=-14,map=[0,0,0,0,0,0,0,0,19,2,2,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19

,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,65,65,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,94,5,5,5,0,5,5,5

,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,5,5,5,94,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,94,5,5,5,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,5,5,5,5,5,5,0,5,5,5,94,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,94,5,5,5,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,5,5,5,94,0,0,0,0,0,

0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,95,95,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Diglett Ex",author="HaRyDe",id="#1661276816",direction="forward",cost=424,elevation=0,map=[0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,0,0,0,0,0,0,1,5,93,1,1,5,5,95,5,5,1,

5,5,1,1,1,1,1,1,1,1,5,1,1,1,5,5,95,5,5,1,5,5,1,1,5,5,95,91,90,5,90,5,5,1,91,91,1,5,90,1,5,5,1,1,5,5,95,91,5,5,5,5,5,1,90,5,1,5,90,1,5,5,1,1,5,5,1,1,1,5,1,5,90,1,5,5,1,86,5,1,5,90,1,1,90,5,1,0,1,5,1,5,

5,1,5,90,1,90,5,1,90,5,1,1,90,5,1,0,1,94,1,90,86,1,5,86,1,90,5,1,90,90,1,1,86,90,1,0,1,1,1,5,90,1,90,5,1,5,5,95,5,86,1,1,5,90,1,0,0,0,1,90,5,1,90,5,1,5,5,95,5,5,1,1,5,5,1,1,1,1,1,5,5,1,5,5,1,1,1,1,1,1

,1,1,5,90,5,86,5,5,1,5,90,1,5,5,90,91,95,5,5,1,0,1,5,5,5,90,5,5,1,5,5,1,5,90,5,91,95,5,5,1,0,1,1,1,1,1,95,95,1,95,95,1,1,1,1,1,1,5,90,1,0,1,5,5,90,90,5,5,1,5,5,5,90,90,5,5,95,5,5,1,0,1,5,5,5,5,5,5,1,9

0,5,5,90,5,90,5,95,5,90,1,0,1,5,90,1,91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,5,5,1,91,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,96,96,1,5,5,5,5,97,1,0,0,0,0,0,0,0,0,0,0,1,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Omaha Bitch",author="HaRyDe",id="#1661277830",direction="forward",cost=371,elevation=3,map=[0,0,66,66,5,5,5,5,2,2,5,5,5,5,66,66,0,0,0,0,0,0,66,66,5,5,90,5,5,5,5,90,5,5

,66,66,0,0,0,0,0,0,66,66,5,5,5,86,90,5,86,5,5,5,66,66,0,0,0,0,0,0,66,66,5,90,5,5,5,5,5,5,90,5,66,66,0,0,0,0,0,0,66,66,5,5,86,90,5,86,90,5,86,5,66,66,0,0,0,0,0,0,66,66,5,5,5,5,5,5,5,5,5,5,66,66,0,0,0,0

,0,0,66,66,6,6,6,6,6,6,6,6,6,6,66,66,0,0,0,0,0,0,66,66,7,7,7,7,97,7,7,7,7,7,66,66,0,0,0,0,0,0,0,0,96,96,96,96,96,96,96,96,96,96,0,0,0,0,0,0,0,0,0,0,5,5,5,5,6,5,5,5,6,5,0,0,0,0,0,0,0,0,0,0,5,5,5,5,7,5,

5,5,6,5,0,0,0,0,0,0,0,0,0,0,5,5,5,5,8,5,5,8,6,5,0,0,0,0,0,0,1,1,1,1,1,1,1,8,8,8,8,1,1,1,1,1,1,1,1,1,1,8,86,8,86,8,1,8,8,8,8,1,1,8,8,86,8,1,0,0,1,8,1,1,1,8,1,95,1,1,1,1,1,1,8,1,86,1,0,0,1,86,1,0,1,8,8,

8,1,8,86,8,8,1,8,1,8,1,1,99,1,86,1,0,1,1,1,1,1,86,1,1,86,1,86,1,8,8,8,8,1,8,1,1,1,1,1,1,1,8,1,8,8,1,8,1,8,8,1,8,1,8,8,86,8,86,8,8,86,8,1,8,1,1,8,1,98,98,1,0,1,1,1,1,1,1,1,1,1,1,1,8,8,86,8,1,2,2,1,0]})

;}},

{function Run(){maps.push({name="Wet walkway",author="Luffaren",id="#1661283640",direction="right",cost=617,elevation=0,map=[1,0,0,0,0,0,0,0,0,0,0,0,90,14,14,2,2,14,14,90,1,0,0,0,0,0,0,0,0,0,0,0,1,14,

14,14,14,14,14,1,1,14,0,67,67,0,14,0,0,0,0,0,1,89,14,65,65,14,89,1,1,90,14,65,65,14,90,0,36,93,94,0,1,14,65,65,65,65,14,1,1,14,14,65,65,14,14,1,1,1,1,1,1,65,65,65,65,65,65,1,1,65,65,65,65,65,65,65,65,

65,65,65,65,65,65,65,65,65,65,1,1,1,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,1,1,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,1,1,1,1,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,1,

1,1,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,1,1,1,1,1,65,65,65,65,65,65,65,65,65,65,65,65,65,1,1,1,1,1,1,65,65,65,65,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,65,65,65,1,1,1,1,65,65,65,65,65,65,65,14,

14,14,90,1,65,65,65,65,1,1,1,65,65,65,65,65,65,65,65,65,14,89,14,1,1,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,14,14,1,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,14,2,1,1,1,1,65,65,65,65

,65,65,65,65,65,65,65,65,65,65,14,2,1,1,1,1,65,65,65,65,65,65,65,65,65,65,65,65,65,65,14,14,1,1,1,1,65,65,65,65,65,65,65,65,65,65,65,65,65,14,89,14,1,1,1,1,67,67,67,67,67,67,67,67,67,67,67,67,14,14,14

,90]});}},

{function Run(){maps.push({name="Shallow climbing",author="Luffaren",id="#1661284170",direction="left",cost=622,elevation=19,map=[5,5,2,2,5,5,0,67,67,0,0,0,67,67,67,0,0,0,0,0,5,5,5,5,5,5,7,7,7,9,9,9,1

1,11,11,13,13,13,13,13,5,65,65,65,65,65,67,65,65,67,65,65,67,65,65,67,65,65,65,13,5,65,65,65,65,65,67,65,65,67,65,65,67,65,65,67,65,65,65,13,5,65,65,65,65,65,67,65,65,67,65,65,67,65,65,67,65,65,65,13,

5,5,5,5,5,5,7,7,7,9,9,9,11,11,11,13,65,65,65,13,5,5,5,5,5,5,5,5,5,5,1,1,1,1,1,13,65,65,65,13,5,5,5,94,5,94,5,94,5,5,1,93,105,93,1,15,67,67,67,15,90,24,5,5,94,5,94,5,5,5,96,105,93,105,1,15,65,65,65,15,

24,97,5,5,5,5,5,5,5,5,1,93,105,93,1,15,65,65,65,15,90,24,5,90,5,90,5,90,5,90,1,1,1,1,1,15,65,65,65,15,24,24,24,23,23,23,21,21,21,19,19,19,17,17,17,17,67,67,67,17,24,24,65,65,65,67,65,65,67,65,65,67,65

,65,65,65,65,65,65,17,24,24,65,65,65,67,65,65,67,65,65,67,65,65,65,65,65,65,65,17,24,24,65,65,65,67,65,65,67,65,65,67,65,65,65,65,65,65,65,17,2,24,65,65,65,67,65,65,67,65,65,67,65,65,65,65,65,65,65,17

,2,24,65,65,65,67,65,65,67,65,65,67,65,65,65,65,65,65,65,17,24,24,65,65,65,67,65,65,67,65,65,67,65,65,65,65,65,65,65,17,24,24,24,23,23,23,21,21,21,19,19,19,17,17,17,17,17,17,17,17,24,0,0,67,67,67,0,0,

0,67,67,67,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Badlands",author="Luffaren",id="#1661284664",direction="forward",cost=526,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,24,77,0,5,2,2,5,0,77,24,24,24,24,24,24,24,24,24,24,24,24

,77,0,5,5,5,76,0,77,24,24,0,77,77,77,77,77,77,77,77,77,0,0,5,5,89,5,0,77,24,24,77,0,0,0,0,0,0,0,0,0,0,0,5,76,5,5,0,77,24,24,77,0,5,76,76,5,5,94,5,76,5,5,76,5,5,5,0,77,24,24,77,0,76,76,5,5,5,5,89,5,5,5

,5,89,5,76,0,77,24,24,77,0,5,5,5,89,5,76,5,76,76,76,5,5,5,5,0,77,24,24,77,0,5,5,76,0,0,0,0,0,0,0,0,0,0,0,0,77,24,24,77,0,5,5,76,0,0,77,77,77,77,77,77,77,77,77,77,0,24,24,77,0,76,76,5,0,77,24,24,24,24,

24,24,24,24,24,24,24,24,24,77,0,5,76,5,0,0,77,77,77,77,77,77,77,77,77,77,0,24,24,77,0,76,5,5,0,0,0,0,0,0,0,0,0,0,0,0,77,24,24,77,0,5,89,5,76,76,5,5,5,5,89,5,76,5,5,0,77,24,24,77,0,5,5,5,5,76,76,5,5,5,

5,5,76,76,76,0,77,24,24,77,0,76,5,5,5,5,5,5,5,5,5,5,5,76,5,0,77,24,24,77,0,5,76,76,5,89,5,76,76,76,5,5,89,5,5,0,77,24,24,77,0,93,5,76,5,5,5,76,5,5,5,5,5,5,76,0,77,24,24,77,0,0,0,0,0,0,0,0,0,0,0,76,5,5

,5,0,77,24,24,0,77,77,77,77,77,77,77,77,77,0,0,5,5,5,76,0,77,24,24,24,24,24,24,24,24,24,24,24,24,77,0,5,2,2,5,0,77,24]});}},

{function Run(){maps.push({name="fraz fortress",author="fraz",id="#1661287474",direction="forward",cost=437,elevation=19,map=[66,66,66,66,66,66,66,66,66,2,2,66,66,66,66,66,66,66,66,66,5,5,5,5,5,5,5,5,

66,66,66,66,5,5,5,5,5,5,5,5,5,5,124,124,124,5,5,5,5,5,5,5,5,5,5,124,124,124,5,5,5,5,124,97,124,5,5,5,5,5,5,5,5,5,5,124,97,124,5,5,5,5,124,124,124,123,123,123,123,105,123,123,123,123,123,124,124,124,5,

5,5,5,5,5,123,5,3,5,5,5,5,5,5,3,5,123,5,5,5,5,5,5,5,5,123,3,5,5,5,5,5,5,5,5,3,123,5,5,5,5,5,5,5,5,123,5,5,5,5,5,5,5,5,5,5,123,5,5,5,5,5,5,5,5,123,5,5,5,65,65,65,5,5,5,5,123,5,5,5,5,5,5,5,5,105,5,5,5,6

5,90,65,5,5,5,5,105,5,5,5,5,5,5,5,5,123,5,5,5,65,65,65,5,5,5,5,123,5,5,5,5,5,5,5,5,123,5,5,5,5,5,5,5,5,5,5,123,5,5,5,5,5,5,5,5,123,3,5,5,5,5,5,5,5,5,3,123,5,5,5,5,5,5,5,5,123,5,3,5,5,5,5,5,5,3,5,123,5

,5,5,5,5,5,124,124,124,123,123,123,123,123,123,123,123,123,123,124,124,124,5,5,5,5,124,97,124,5,5,0,0,24,24,0,0,5,5,124,97,124,5,5,5,5,124,124,124,5,5,0,96,24,24,96,0,5,5,124,124,124,5,5,5,5,5,5,5,5,5

,0,0,96,96,0,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,24,24,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,2,2,0,5,5,5,5,5,5,5,5]});}},

{function Run(){maps.push({name="Enigma",author="Block",id="#1661304481",direction="forward",cost=550,elevation=0,map=[0,0,0,0,0,0,0,0,12,2,2,12,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,

12,12,12,12,12,12,12,127,17,17,17,17,16,15,14,13,12,12,13,14,15,16,17,17,17,17,127,0,17,66,66,17,16,15,14,13,12,12,13,14,15,16,17,66,66,17,0,0,17,72,72,67,0,12,12,12,12,12,12,12,12,0,67,72,72,17,0,0,1

7,72,72,67,0,12,12,12,12,12,12,12,12,0,67,72,72,17,0,0,17,72,72,67,0,12,75,75,75,75,75,75,12,0,67,72,72,17,0,0,17,72,72,67,0,12,75,77,77,77,77,75,12,0,67,72,72,17,0,0,17,72,72,67,0,12,75,77,0,0,77,75,

12,0,67,72,72,17,0,12,17,72,72,67,0,12,75,77,0,0,77,75,12,0,67,72,72,17,12,127,17,72,72,67,0,12,75,77,0,0,77,75,12,0,67,72,72,17,127,0,17,72,72,67,0,12,75,77,0,0,77,75,12,0,67,72,72,17,0,0,17,72,72,67

,0,12,75,77,77,77,77,75,12,0,67,72,72,17,0,0,17,72,72,67,0,12,75,75,75,75,75,75,12,0,67,72,72,17,0,0,17,72,72,67,0,12,12,12,12,12,12,12,12,0,67,72,72,17,0,0,17,72,72,67,0,12,12,12,12,12,12,12,12,0,67,

72,72,17,0,0,17,66,66,17,16,15,14,13,12,12,13,14,15,16,17,66,66,17,0,12,17,17,17,17,16,15,14,13,12,12,13,14,15,16,17,17,17,17,12,129,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,128,0,0,0,0,0,0,0,0

,12,2,2,12,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Fractured",author="Block",id="#1661304507",direction="left",cost=338,elevation=-19,map=[1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,5,5,5,5,0,6,6,107,44,44,107,7,7,7,0,7

,8,8,21,2,5,5,5,5,0,6,6,107,44,44,107,7,7,7,0,7,8,0,0,0,0,5,5,5,0,6,6,107,44,44,107,7,7,7,0,7,8,8,16,18,7,0,6,1,1,1,1,1,24,24,1,1,1,1,1,1,9,9,18,19,0,7,7,1,16,16,16,117,58,58,118,119,119,120,120,1,9,9

,0,20,8,8,8,1,16,16,16,117,58,58,118,119,119,120,120,1,9,0,9,10,0,9,9,1,16,16,16,117,58,58,118,119,119,120,120,1,9,0,9,0,10,10,10,1,50,50,50,110,24,24,23,22,21,21,21,1,10,10,17,0,10,89,10,110,50,50,50

,110,24,24,23,22,21,21,21,1,10,0,0,10,0,0,10,110,50,50,50,110,109,1,1,1,1,1,1,1,10,10,0,0,10,0,0,1,50,50,110,0,77,77,77,77,0,128,10,10,10,10,16,0,0,10,0,1,50,50,110,0,77,76,76,77,0,128,10,10,10,0,0,0,

10,0,10,1,50,50,110,0,77,77,77,77,0,128,10,10,0,0,10,10,0,10,0,1,16,16,16,1,1,1,0,0,1,11,11,11,0,10,10,0,0,10,0,1,15,15,15,14,13,13,1,1,12,12,12,11,0,0,0,0,10,89,10,1,0,14,14,14,13,13,13,12,12,12,12,0

,0,11,11,10,0,10,0,24,0,0,14,0,0,13,0,12,12,0,0,0,12,0,0,0,10,93,10,23,0,0,0,0,0,0,0,0,0,0,11,0,0,0,11,0,0,10,0,22,21,20,0,24,0,0,22,0,17,0,0,11,0,11,94]});}},

{function Run(){maps.push({name="Enveloped",author="Mrs Block",id="#1661304593",direction="forward",cost=392,elevation=0,map=[0,12,12,95,95,12,2,2,12,12,12,12,12,12,12,95,95,12,12,12,0,12,12,95,95,12,

12,12,12,12,12,12,12,12,12,95,95,12,12,102,0,12,12,95,95,12,12,12,12,12,12,12,12,12,12,95,95,12,12,12,0,12,12,0,0,0,12,12,0,0,0,12,12,0,0,0,0,0,127,127,0,12,12,0,0,0,12,12,0,0,0,12,12,0,0,0,0,0,0,0,0,

13,13,0,0,0,12,12,0,0,0,13,13,0,77,77,77,77,76,76,0,14,14,0,0,0,96,96,0,0,0,14,14,0,77,24,24,77,76,76,0,15,15,0,0,0,12,12,0,0,0,15,15,0,77,24,24,77,76,76,0,16,16,0,0,0,12,12,0,0,0,16,16,0,77,77,77,77,

76,76,0,17,17,0,0,0,12,12,0,0,0,17,17,0,0,75,75,0,0,0,0,18,18,0,0,0,98,98,0,0,0,18,18,0,0,75,75,0,12,12,0,19,19,0,0,0,12,12,0,0,0,19,19,0,0,75,75,0,127,127,0,97,19,0,0,0,12,12,0,0,0,19,99,0,77,77,77,7

7,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,77,24,24,77,76,76,0,0,0,0,0,0,12,12,0,0,0,0,0,0,77,24,24,77,76,76,77,77,77,77,0,0,101,101,0,0,0,0,0,0,77,77,77,77,76,76,77,24,24,77,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,

0,77,24,24,77,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,0,0,12,12,12,12,12,12,12,12,12,12,12,128,12,12,0,0,0,0,0,0,2,2,12,12,12,12,12,12,12,12,12,128,12,12]});}},

{function Run(){maps.push({name="Step it up",author="Luffaren",id="#1661330497",direction="forward",cost=231,elevation=19,map=[0,0,0,5,5,2,2,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,5,94,5,5,94,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,125,125,125,125,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,1,1,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,90,1,1,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,90,14,14,24,24,24,24,91,91,

93,24,0,0,0,14,14,14,14,14,14,125,14,14,24,24,24,24,24,91,91,93,0,0,0,14,14,14,14,89,14,125,14,14,24,24,24,24,24,24,91,91,0,0,0,14,14,89,89,14,14,125,14,14,24,24,24,24,24,24,24,91,0,0,0,14,14,14,14,14

,14,125,14,14,24,24,24,89,24,24,24,24,0,0,0,14,14,14,14,14,14,125,14,14,24,24,24,24,24,24,24,24,0,0,0,14,14,14,14,14,14,14,14,14,24,24,90,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,90,24,24,24,24,0,

0,0,0,0,0,0,0,0,0,0,0,0,1,1,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,2,2,24]});}},

{function Run(){maps.push({name="the armory",author="iProbie",id="#1661337069",direction="left",cost=330,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,

5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,5,1,1,1,1,1,1,96,96,1,1,1,1,1,1,1,5,0,0,0,5,1,99,5,5,5,5,5,5,5,5,5,5,5,5,1

,5,0,0,0,5,1,5,1,1,1,1,98,98,1,1,1,1,1,5,1,5,0,0,0,5,1,5,1,5,5,5,5,5,5,5,5,5,1,5,1,5,0,0,0,5,1,5,1,5,1,101,101,101,101,101,1,5,1,5,1,5,0,0,0,5,1,5,1,5,1,5,93,93,93,5,1,5,1,5,1,5,0,0,0,5,96,5,98,5,101,

5,93,5,93,5,101,5,98,5,96,5,0,0,0,5,1,5,1,5,1,5,93,93,93,5,1,5,1,5,1,5,0,0,0,5,1,5,1,5,1,101,101,101,101,101,1,5,1,5,1,5,0,0,0,5,1,5,1,5,5,5,5,5,5,5,5,102,1,5,1,5,0,5,5,5,1,5,1,1,1,1,98,98,1,1,1,1,1,5

,1,5,0,2,5,5,1,5,5,5,5,5,5,5,5,5,5,5,5,5,1,5,0,2,5,5,1,1,1,1,1,1,96,96,1,1,1,1,1,1,1,5,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,97,5,5,0]});}},

{function Run(){maps.push({name="ooooh a button",author="iProbie",id="#1661338023",direction="right",cost=309,elevation=0,map=[0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,5,5,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,5,5,5,5,5,5,1,94,1,94,1,94,1,0,0,0,0,1,94,96,5,5,5,5,5,5,1,96,1,96,1,96,1,0,0,0,0,1,1,1,5,5,5,5,5,5,5,5

,5,5,5,5,1,0,0,0,0,1,94,96,5,5,5,5,5,5,5,5,5,5,1,1,1,0,0,0,0,1,1,1,5,5,6,6,6,6,6,5,5,5,96,94,1,0,0,0,0,1,94,96,5,5,6,7,7,7,6,5,5,5,1,1,1,0,0,0,0,1,1,1,5,5,6,7,97,7,6,5,5,5,96,94,1,0,0,0,0,1,94,96,5,5,

6,7,7,7,6,5,5,5,1,1,1,0,0,0,0,1,1,1,5,5,6,6,6,6,6,5,5,5,5,5,5,5,5,0,0,1,94,96,5,5,5,5,5,5,5,5,5,5,5,5,5,5,2,0,0,1,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,2,0,0,1,94,96,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,0,1,1,1,

5,1,96,1,96,1,96,1,96,1,96,1,1,0,0,0,0,1,94,96,5,1,94,1,94,1,94,1,94,1,94,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Amogus",author="Darnias",id="#1661349462",direction="forward",cost=326,elevation=-6,map=[0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,120,120,1,1,1,1,0,0,0,0,

0,0,0,0,0,0,0,1,120,120,120,120,120,120,120,120,1,0,0,0,0,0,0,0,0,0,0,1,120,120,120,120,120,120,120,120,1,0,0,0,0,0,0,0,0,0,0,1,120,120,120,120,120,120,120,120,1,0,0,0,0,0,0,0,0,1,1,1,1,120,120,120,1,

1,1,1,1,1,1,1,1,1,0,0,1,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,1,1,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,1,1,120,120,120,120,120,120,120,

120,120,120,120,120,120,120,120,120,120,120,1,1,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,1,1,120,120,120,120,120,120,120,120,120,120,120,120,1,1,1,1,1,1,0,1,120,120,120,

120,120,120,120,120,120,120,120,120,1,0,0,0,0,0,0,1,120,120,1,1,1,1,120,120,120,120,120,120,1,1,1,1,1,1,0,1,120,120,66,66,66,71,1,120,120,120,120,120,1,120,120,120,120,120,1,1,120,1,65,65,66,71,1,120,

120,120,120,120,120,120,120,120,120,120,1,1,120,1,65,65,66,71,1,120,120,120,120,120,120,120,120,120,120,120,1,1,120,1,65,65,66,71,1,120,120,120,120,120,120,120,120,120,120,120,1,0,1,1,65,65,66,67,1,1,

1,1,1,1,1,1,1,1,1,1,0,0,0,1,65,65,66,67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Ez tp",author="HaRyDe",id="#1661369900",direction="forward",cost=168,elevation=14,map=[0,0,0,0,0,0,0,10,2,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,10,10,10,10,24,24,0,0,

0,0,0,0,0,0,0,0,10,10,10,98,10,10,10,10,96,10,10,10,0,0,0,0,0,0,0,0,10,133,10,98,10,10,10,10,96,10,131,10,0,0,0,0,0,0,0,0,10,10,10,98,10,99,97,10,96,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,24,24,24,24,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,24,24,24,24,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,24,24,24,24,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,24,24,24,24,18,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,24,24,24,24,16,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,24,24,24,24,14,14,14,0,0,0,0,0,0,0,0,0,0,14,134,14,24,24,24,24,14,132,14,0,0,0,0,0,0,0,0,0,0,14,14,14,24,24,24,24,14,14,1

4,0,0,0,0,0,0,0,93,24,24,24,24,24,24,2,2,24,24,24,24,24,24,93,0,0,0]});}},

{function Run(){maps.push({name="tp jumps are easy",author="fara",id="#1661372710",direction="forward",cost=180,elevation=0,map=[5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,7,27,7,0,0,25,25,25,25,0,0,0,26,0,0,0,7,0,0,0,27,97,27,0,0,25,25,25,25,0,5,0,0,0,26,0,0,0,28,0,7,27,7,0,0,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,

25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,1,1,1,1,1,1,1,1,1,1,1,1,5,5,5,5,25,5,132,25,5,131,5,5,131,5,5,131,5,5,131,5,5,93,94,5,25,5,5,25,1,1,1,1

,1,1,1,1,1,1,1,1,5,93,94,5,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,25,25,25,25,0,26,0,0,0,7,0,0,0,7,0,6,26,6,0,0,25,25,25,25,0,0,0,6,0,0,0,26,0,0,0,26,97,26,0,0,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,6,26,6,0,0,96,96,96,96,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Swim To Heaven",author="MoistNoodlez",id="#1661379042",direction="forward",cost=128,elevation=18,map=[0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,66,66,5,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,67,67,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,66,66,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,66,66,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,67,67,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1

1,66,66,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,66,66,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,67,67,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,66,66,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,66,66,14,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,14,67,67,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,66,66,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,66,66,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,67,67,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,66

,66,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,66,66,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,67,67,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,66,66,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,2,2,23,0,0,0,0,0,0,0,0,0]}

);}},

{function Run(){maps.push({name="Sussy Baka",author="MoistNoodlez",id="#1661379970",direction="right",cost=525,elevation=0,map=[0,0,0,0,0,1,1,1,1,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,76,107,107,107,107,1

07,107,1,1,0,0,0,0,0,0,0,0,0,1,76,76,76,107,107,107,107,107,107,1,0,0,0,0,0,0,0,0,0,1,76,76,76,76,107,107,107,107,107,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,5,5,5,1,1,1,1,1,1,1,1,0,1,1,76,76,76,76,76,107,107,1

07,107,107,107,107,107,107,107,107,1,1,1,76,76,76,76,76,76,76,76,76,107,107,107,107,107,107,107,107,1,1,76,76,76,76,76,76,76,76,76,76,76,107,107,107,107,107,107,107,1,1,76,76,76,76,76,76,76,76,76,76,7

6,76,107,107,107,67,67,1,0,1,76,76,76,1,1,76,76,76,76,76,76,76,107,107,91,91,67,1,0,1,76,76,1,70,70,1,76,76,76,76,76,76,107,91,91,91,1,1,0,1,76,1,66,66,70,70,1,76,76,76,76,76,91,91,91,91,67,1,0,1,76,1

,65,66,66,70,1,76,76,76,76,76,91,91,91,67,67,107,1,1,1,1,65,66,66,70,1,76,76,76,76,91,91,91,107,107,107,107,2,0,1,1,65,66,66,70,1,76,76,76,91,91,91,91,107,107,107,107,2,0,0,1,65,66,66,70,1,1,1,1,91,91

,91,1,1,1,1,1,1,0,0,0,1,66,66,1,0,0,0,91,91,91,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,93,91,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Severed",author="Block",id="#1661380130",direction="forward",cost=270,elevation=0,map=[14,14,13,12,11,10,9,9,9,0,0,9,0,0,9,0,9,9,2,2,14,14,13,12,11,10,9,0,0,9,0,0,18,0

,0,9,0,9,9,9,15,15,1,1,1,9,9,0,0,0,9,0,0,9,9,0,9,9,0,9,16,16,1,0,0,9,0,0,9,0,14,9,9,0,0,9,9,0,9,9,17,17,1,24,9,9,0,24,0,9,0,0,0,0,9,0,0,0,0,9,18,18,1,0,9,9,0,0,19,19,19,19,0,9,9,0,24,0,9,9,19,19,0,9,9

,0,0,9,0,0,0,19,9,9,0,0,0,9,9,9,20,20,0,9,0,0,0,0,0,0,9,9,9,0,0,9,9,0,9,10,21,21,9,9,0,0,9,0,9,9,0,9,0,9,9,0,0,0,9,11,22,22,9,0,0,0,0,0,0,0,49,49,15,14,13,12,11,10,9,12,23,23,0,0,9,0,9,0,0,49,49,49,15

,14,13,12,11,10,9,13,24,24,0,9,0,0,0,0,49,49,0,1,1,1,1,1,1,9,9,14,24,24,9,0,18,18,0,49,49,0,0,1,94,9,9,0,0,9,1,15,24,24,9,0,0,0,49,49,0,0,0,1,9,0,0,0,0,9,1,16,24,24,9,0,49,49,49,0,0,9,9,1,9,9,0,0,0,0,

1,17,9,9,0,0,0,49,0,24,9,0,0,1,0,0,0,9,0,9,1,18,9,9,9,9,0,0,9,24,0,9,0,1,9,9,9,9,9,9,1,19,9,9,9,9,13,0,0,24,9,0,0,9,9,9,9,1,1,1,1,20,9,9,9,9,0,9,9,9,9,9,9,9,24,24,24,24,23,22,21,21,2,2,9,9,9,9,24,24,2

4,24,24,24,24,24,24,24,23,22,21,21]});}},

{function Run(){maps.push({name="833",author="Niikos",id="#1661382568",direction="forward",cost=833,elevation=10,map=[80,2,2,80,80,80,80,80,80,80,80,80,80,1,1,1,80,80,80,80,80,34,34,80,80,80,80,100,40

,40,40,86,40,100,1,34,34,86,34,100,80,34,34,80,80,80,80,40,86,40,100,40,40,40,1,34,100,34,34,34,80,80,80,80,80,80,80,40,40,80,80,80,38,86,1,34,34,1,34,86,80,54,54,40,100,40,86,40,40,80,80,80,100,38,1,

100,34,1,100,86,80,100,54,40,40,40,40,40,100,80,80,80,36,36,1,34,86,1,36,36,80,80,80,80,80,80,80,80,80,80,80,80,86,36,1,34,34,1,36,100,80,54,100,80,80,80,80,80,80,80,80,80,34,100,1,34,100,1,38,38,80,5

4,54,80,80,80,80,80,80,80,80,80,34,34,1,34,34,1,100,38,80,80,80,80,80,80,80,80,80,80,80,80,100,34,86,34,34,1,86,40,80,54,54,80,80,80,80,80,80,80,80,80,34,34,34,100,34,1,40,100,80,54,100,80,80,80,80,80

,80,80,80,80,80,80,80,80,80,80,42,42,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,100,42,80,100,54,40,100,40,40,100,80,80,80,44,44,44,100,42,86,42,42,42,80,54,54,40,40,40,93,93,80,80,80,44,10

0,44,44,42,42,100,42,42,80,80,80,80,80,40,40,40,80,80,80,44,86,80,80,80,80,80,80,80,80,54,54,36,36,38,94,94,80,80,80,100,44,80,80,80,80,80,80,80,80,54,54,36,100,38,38,100,80,80,80,44,44,80,80,80,80,80

,80,80,80,80,80,80,80,80,80,80,80,80,80,44,44,100,44,86,44,100,44,80,80,80,80,80,80,80,80,80,80,80,80,86,44,44,44,100,44,2,2,80]});}},

{function Run(){maps.push({name="900",author="Niikos",id="#1661384985",direction="forward",cost=900,elevation=13,map=[0,0,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,2,2,80,0,0,80,80,80,80,80,80,80,8

0,94,29,29,29,29,29,29,29,29,80,0,0,80,93,100,80,80,80,80,80,94,29,29,29,29,29,29,29,29,80,0,80,80,42,42,80,80,80,80,80,94,29,29,29,29,29,29,29,29,80,0,80,80,127,42,80,80,80,80,80,80,80,80,80,80,80,80

,29,29,80,0,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,4,4,80,0,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,34,34,80,0,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,34,34,80,0,80,80,80,80,8

0,80,80,80,80,80,80,93,34,34,34,34,34,34,80,0,80,80,80,80,80,80,80,80,80,80,80,97,34,34,34,34,34,34,80,0,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,34,34,80,0,80,80,42,126,80,80,80,80,42,42,80,80

,80,80,80,80,34,34,80,0,80,80,42,42,80,80,80,80,42,42,80,80,80,80,80,0,96,96,0,0,80,80,42,42,80,80,80,80,132,132,80,80,80,80,80,80,34,34,80,0,80,80,42,42,80,80,80,80,42,42,80,80,80,80,80,80,34,34,80,0

,80,80,42,42,80,80,80,80,42,42,80,80,80,80,80,80,34,34,80,0,80,80,42,42,80,80,80,80,42,42,80,80,80,80,80,80,34,34,80,0,0,80,42,42,42,42,42,42,42,42,80,80,80,80,80,80,34,34,80,0,0,80,42,42,42,42,42,42,

42,42,80,80,80,80,80,80,131,131,80,0,0,80,2,2,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80]});}},

{function Run(){maps.push({name="eden",author="blasian",id="#1661389638",direction="right",cost=315,elevation=0,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,14,14,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,1,14,14,14,14,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,14,14,14,14,1,1,14,131,1,0,0,0,0,0,0,1,1,1,1,1,14,14,1,1,1,1,14,14,1,0,0,0,0,0,0,1,14,14,96,14,14,14,14,14,1,1,14,14,1,0,0,0,0,0,0,1,14,14,96,14,

14,14,94,97,1,1,14,14,1,0,0,0,0,0,0,1,14,14,1,1,1,1,1,1,1,1,14,14,1,0,0,0,0,0,0,1,14,14,1,67,67,67,67,93,1,67,101,101,1,0,0,0,0,0,0,1,14,14,1,14,14,14,14,14,1,67,14,14,1,0,0,0,0,0,0,1,14,14,1,14,14,14

,14,14,1,67,14,14,1,1,1,1,1,1,0,1,14,14,1,14,132,14,104,133,1,67,14,14,103,14,14,14,14,2,0,1,14,14,1,14,14,14,14,14,1,67,14,14,103,14,14,134,14,2,0,1,99,14,1,14,14,14,14,14,1,67,14,14,1,1,1,1,1,1,0,1,

94,14,1,67,67,67,67,93,1,67,14,14,1,0,0,0,0,0,0,1,14,14,1,1,1,1,1,1,1,67,14,14,1,0,0,0,0,0,0,1,14,14,98,14,14,14,14,14,14,14,14,94,1,0,0,0,0,0,0,1,14,14,98,14,14,14,14,14,14,14,14,102,1,0,0,0,0,0,0,1,

1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="copied city",author="blasian",id="#1661389689",direction="forward",cost=206,elevation=7,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,14,14,14,94,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,18,18,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,20,20,20,1,1,1,1,1,1,0,0,0,0,0,1,93,85,21,21,1,21,21,90,1,21,21,85,93,1,0,0,0,0,0,1,21,21,85,21,1,90,21,2

1,1,21,85,21,21,1,0,0,0,0,0,1,85,21,21,21,1,21,21,21,1,21,21,21,85,1,0,0,0,0,0,1,93,91,85,85,1,90,21,90,1,85,85,91,93,1,0,0,0,0,0,1,85,21,85,85,1,21,21,21,1,85,85,21,85,1,0,0,0,0,0,1,21,21,21,21,1,21,

90,21,1,21,21,21,21,1,0,0,0,0,0,1,21,87,21,21,21,21,21,21,21,21,21,87,21,1,0,0,0,0,0,1,99,21,21,94,21,21,21,21,21,94,21,21,97,1,0,0,0,0,0,1,1,1,1,1,1,0,96,96,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,98,98,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="limbo",author="blasian",id="#1661389900",direction="forward",cost=238,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,9

4,0,0,15,15,15,15,15,15,15,15,14,14,13,13,13,13,13,13,13,13,0,0,15,15,15,15,15,15,15,15,1,1,13,13,13,13,13,13,13,13,0,0,15,15,0,0,0,0,0,1,0,0,1,0,0,0,0,0,13,13,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13

,13,0,0,15,15,0,0,0,1,1,1,1,1,1,1,1,0,0,0,13,13,0,0,15,133,0,0,0,1,93,15,1,1,13,93,1,0,0,0,131,13,0,0,0,0,0,0,0,1,99,1,0,0,1,97,1,0,0,0,0,0,0,0,0,0,0,0,0,1,15,1,0,0,1,13,1,0,0,0,0,0,0,0,0,0,0,0,0,1,15

,1,0,0,1,13,1,0,0,0,0,0,0,1,15,15,1,0,0,1,15,1,0,0,1,13,1,0,0,1,13,13,1,1,15,15,1,0,0,1,15,1,0,0,1,13,1,0,0,1,134,13,1,1,15,132,1,0,0,1,15,1,0,0,1,13,1,0,0,1,13,13,1,1,15,15,1,1,1,1,15,1,0,0,1,13,1,1,

1,1,13,13,1,1,15,15,15,15,15,15,15,96,14,14,98,13,13,13,13,13,13,13,1,1,15,15,15,15,15,15,15,96,14,14,98,13,13,13,13,13,13,13,1,1,1,1,1,1,1,1,1,1,14,14,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,14,14,1,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Double Tower",author="MoistNoodlez",id="#1661390957",direction="forward",cost=356,elevation=0,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,90,5,5,90,5,90,5,1,1

,1,1,1,1,1,1,0,0,5,5,5,5,5,5,5,5,5,5,5,124,124,124,124,124,124,1,0,0,90,5,5,5,5,5,5,5,5,90,5,124,124,124,124,124,124,1,0,0,90,5,5,5,5,5,5,5,90,65,5,124,55,54,53,52,124,1,0,0,90,5,5,5,5,5,5,5,5,90,5,12

4,56,5,5,51,124,1,0,0,5,5,5,5,5,5,5,5,5,5,5,124,57,5,5,50,124,1,0,0,90,5,90,5,90,5,5,5,5,5,5,124,58,5,5,49,124,1,0,1,1,1,1,1,1,1,5,5,5,5,5,91,45,46,47,48,124,1,0,1,124,124,124,124,124,124,5,5,5,5,5,1,

1,1,1,1,124,1,0,1,124,52,53,54,55,124,5,90,5,5,90,1,100,124,124,124,124,1,0,1,124,51,5,5,56,124,5,65,90,5,5,1,1,1,1,1,1,1,0,1,124,50,5,5,57,124,5,90,5,5,5,5,5,90,5,90,5,5,0,1,124,49,5,5,58,124,5,5,5,5

,5,5,5,5,5,5,5,5,0,1,124,48,47,46,45,91,5,5,5,5,5,5,5,5,5,5,5,5,0,1,124,1,1,1,1,1,5,5,5,5,5,5,90,5,90,5,90,5,0,1,124,124,124,124,100,1,5,5,5,5,5,5,5,5,5,5,5,5,0,1,124,124,124,124,124,1,5,5,5,5,5,5,5,5

,5,5,5,5,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0]});}},

{function Run(){maps.push({name="Twin Skyscraper v2",author="MoistNoodlez",id="#1661390991",direction="forward",cost=274,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,5,5,5

,5,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,5,5,5,5,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,5,5,5,5,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,90,5,90,90,5,5,5,5,93,93,5,5,5,5,90,90,5,90,0,0,5,5,5,

5,5,5,90,5,5,5,5,90,5,5,5,5,5,5,0,0,5,5,90,124,124,90,5,5,65,65,5,5,90,124,124,90,5,5,0,0,5,5,105,105,92,124,5,90,65,65,90,5,124,92,105,105,5,5,0,0,5,5,124,124,97,124,5,90,65,65,90,5,124,97,124,124,5,

5,0,0,5,5,90,124,124,5,5,5,65,65,5,5,5,124,124,90,5,5,0,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,0,90,5,5,90,5,5,5,5,5,5,5,5,5,5,90,5,5,90,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,

5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,96,96,96,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,96,96,96,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,5,5,2,2,5,5,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Binate Belfries",author="Soft Serve",id="#1661413743",direction="forward",cost=213,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,94,45,45,5,5,2,2,0,0,0,0,0,0,0,0,0,0,0,0,

0,45,45,90,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,1,1,105,1,1,1,1,90,5,0,0,0,0,0,0,0,0,0,0,0,1,36,26,38,39,127,1,5,5,0,0,0,0,0,0,0,0,0,94,45,105,26,127,0,0,0,1,26,26,0,0,0,0,0,0,0,0,0,45,45,1,0,0,0,0,0,1,27,27

,0,0,0,0,0,0,0,0,0,45,45,1,0,0,0,24,24,64,26,26,0,0,0,93,93,0,0,0,0,0,0,1,126,31,0,24,100,1,5,5,0,0,0,22,22,0,3,0,0,0,0,1,1,1,1,64,1,1,5,5,94,5,125,5,45,90,45,25,26,27,27,26,25,45,45,45,5,5,5,90,90,5,

5,5,45,45,45,25,26,27,27,26,25,45,90,45,5,125,5,94,5,5,1,1,64,1,1,1,1,0,0,0,0,3,0,22,22,0,0,0,5,5,1,100,24,50,0,0,1,0,0,0,0,0,0,93,93,0,0,0,26,26,64,24,24,0,0,48,1,45,45,0,0,0,0,0,0,0,0,0,27,27,1,56,0

,52,0,0,1,45,45,0,0,0,0,0,0,0,0,0,26,26,1,0,0,0,26,26,105,45,94,0,0,0,0,0,0,0,0,0,5,5,1,0,54,0,26,0,1,0,0,0,0,0,0,0,0,0,0,0,5,90,1,1,1,1,105,1,1,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,90,45,45,0,0,0,0,0,0,0,0,

0,0,0,0,0,2,2,5,5,45,45,94,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Infernal Spire",author="Soft Serve",id="#1661425582",direction="left",cost=481,elevation=18,map=[0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,1,1,77,77,77,77,6,1,106,106,

1,77,0,0,0,77,1,1,0,1,1,75,75,75,75,75,6,1,106,106,1,0,5,5,5,5,5,1,1,1,94,75,75,75,6,75,6,95,106,106,95,26,5,76,76,76,5,77,1,1,6,75,6,75,75,75,6,1,106,106,1,0,5,76,76,76,5,0,1,1,94,75,75,75,75,75,6,1,

106,106,1,0,5,76,76,76,5,0,1,1,75,75,75,75,75,75,6,1,1,1,1,77,5,5,5,3,5,0,1,1,75,14,75,14,75,14,1,1,77,77,1,1,77,0,0,32,0,77,1,1,1,1,95,1,1,1,1,0,0,0,0,1,1,1,1,95,1,1,1,2,124,124,124,124,124,95,0,0,44

,93,0,77,1,112,112,112,112,112,1,2,124,124,124,124,124,95,0,0,44,93,0,77,1,112,112,112,112,112,1,1,1,1,95,1,1,1,1,0,0,0,0,1,1,1,1,95,1,1,1,1,4,24,24,24,24,24,1,1,77,77,1,1,0,33,32,32,32,33,1,1,21,0,44

,0,0,92,16,1,1,1,1,77,0,34,19,19,19,34,1,1,21,0,44,0,0,0,16,1,118,118,1,77,0,35,19,93,19,35,1,1,21,0,24,0,0,0,17,1,118,118,1,0,0,36,18,18,18,36,1,1,21,21,92,15,36,37,18,95,118,118,95,18,17,17,17,17,17

,17,1,1,1,21,21,0,0,0,18,1,118,118,1,0,0,0,0,0,0,1,1,0,1,1,21,21,21,21,4,1,118,118,1,77,77,0,77,77,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0]});}},

{function Run(){maps.push({name="Mesh Garden",author="Soft Serve",id="#1661432710",direction="forward",cost=288,elevation=6,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,14,14,0,0,0,0,0,0,0,0,0,0,24,97,54,40,54,24,54,54,54,54,0,0,1,1,1,0,0,0,0,0,0,54,54,40,54,54,54,54,54,54,0,0,1,134,20,102,54,54,24,0,0,54,54,0,0,103,103,103,54,54,0,0,1,1,1,0,0,54,0,0,0,54,54,0,0,103

,131,103,54,54,0,0,0,0,0,0,96,96,96,96,96,96,96,96,0,103,103,103,54,24,0,0,0,0,0,0,0,54,0,0,0,54,54,0,0,0,0,0,54,54,0,0,0,0,0,24,0,54,0,0,95,95,95,95,0,0,0,0,40,40,0,0,0,0,54,54,54,54,54,54,95,65,65,9

5,54,24,54,54,54,54,0,0,0,0,54,54,54,54,24,54,95,65,65,95,54,54,54,54,54,54,0,0,0,0,40,40,0,0,0,0,95,95,95,95,0,0,54,0,24,0,0,0,0,0,54,54,0,0,0,0,0,54,54,0,0,0,54,0,0,0,0,0,0,0,24,54,101,101,101,0,98,

98,98,98,98,98,98,98,0,0,0,0,0,0,54,54,101,133,101,0,0,54,54,0,0,0,54,0,0,1,1,1,0,0,54,54,101,101,101,0,0,54,54,0,0,24,54,54,104,20,132,1,0,0,54,54,54,54,54,54,40,54,54,0,0,0,0,0,0,1,1,1,0,0,54,54,54,

54,24,54,40,54,99,24,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="EpicCrouchDefense",author="Niikos",id="#1661436399",direction="forward",cost=320,elevation=10,map=[1,1,1,1,1,1,49,49,49,2,2,49,49,49,1,1,1,1,1,1,49,49,49,49,94,1,49,49

,49,49,49,49,49,49,1,132,49,49,49,93,49,49,49,49,94,1,49,49,49,49,49,49,49,49,1,49,49,49,49,93,49,49,49,49,94,1,49,49,49,49,49,49,49,49,1,49,49,49,49,97,49,49,49,49,94,1,49,49,49,49,49,49,49,49,1,49,4

9,49,49,136,49,49,1,1,1,1,106,106,106,106,106,106,106,106,1,1,1,1,1,1,49,49,49,49,49,49,48,48,48,48,48,48,48,48,108,0,0,0,0,0,49,49,49,49,49,49,49,49,49,49,49,49,49,49,109,0,0,0,0,0,49,49,49,49,49,49,

49,49,49,49,49,49,49,49,109,4,34,36,38,40,49,133,133,49,49,49,49,49,49,49,49,49,49,49,109,0,0,0,0,0,49,133,133,49,49,49,49,49,49,49,49,49,49,49,109,0,0,0,0,40,49,49,49,49,49,49,49,49,49,49,49,49,49,49

,109,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,39,39,39,39,39,39,39,39,39,39,39,0,0,0,0,0,0,128,44,44,39,134,134,39,39,39,39,39,39,39,39,0,0,0,0,0,0,128,44,44,39,134,134,39,39,39,39,39,39,39

,39,0,0,0,0,0,0,128,44,44,39,39,39,39,39,39,39,39,39,39,39,0,0,0,0,0,0,44,44,44,0,0,0,0,0,0,0,0,0,39,39,0,0,0,0,0,0,44,137,44,0,0,0,0,0,0,0,0,0,96,96,0,0,0,0,0,0,44,44,44,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0

,0,0,0,0,0]});}},

{function Run(){maps.push({name="Just Smile",author="Niikos",id="#1661437167",direction="forward",cost=401,elevation=0,map=[24,24,24,24,24,24,24,24,24,2,2,24,24,24,24,24,24,24,24,24,24,24,24,1,24,24,2

4,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,1,1,1,24,24,24,24,24,24,24,24,1,24,24,24,24,24,24,24,1,1,1,1,1,24,24,24,24,24,24,24,24,1,24,24,24,24,24,24,24,1,1,1,24,24,24,24,24,24,24,24,24,24,1,24,24

,24,24,24,24,24,1,24,24,24,24,24,24,24,24,24,24,24,24,1,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,1,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,1,24,24,24,24,24,24,24

,24,24,24,24,24,24,24,24,24,24,24,24,1,94,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,1,94,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,1,94,24,24,24,24,24,24,24,24,24,24,24,24,24,2

4,24,24,24,24,1,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,1,100,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,1,24,24,24,24,24,1,24,24,24,24,24,24,24,24,24,24,24,24,1,93,24,24,24,2

4,1,1,1,24,24,24,24,24,24,24,24,24,24,1,93,24,24,24,24,1,1,1,1,1,24,24,24,24,24,24,24,24,1,93,24,24,24,24,24,24,1,1,1,24,24,24,24,24,24,24,24,1,24,24,24,24,24,24,24,24,24,1,24,24,24,24,24,24,24,24,24,

24,24,24,24,24,24,24,24,24,24,24,24,2,2,24,24,24,24,24,24,24,24,24,24,24,24,24]});}},

{function Run(){maps.push({name="Boost Yo Self",author="Block",id="#1661437476",direction="forward",cost=216,elevation=0,map=[0,0,0,0,12,12,12,12,2,2,12,12,12,12,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,

12,12,12,12,0,0,0,0,0,0,0,0,0,0,12,12,1,1,12,12,1,1,12,12,0,0,0,0,0,0,0,0,0,0,12,12,1,1,12,12,1,1,12,12,0,0,0,0,0,0,0,0,0,0,127,127,1,1,12,12,1,1,127,127,0,0,0,0,0,0,0,0,0,0,12,12,1,1,12,12,1,1,12,12,

0,0,0,0,0,0,0,0,0,0,12,12,1,1,12,12,1,1,12,12,0,0,0,0,0,0,0,0,0,0,12,12,1,1,12,12,1,1,12,12,0,0,0,0,0,0,0,0,0,0,12,12,1,1,12,12,1,1,12,12,0,0,0,0,0,0,0,0,0,0,12,12,1,1,12,12,1,1,12,12,0,0,0,0,0,0,0,0,

0,0,12,12,1,1,12,12,1,1,12,12,0,0,0,0,0,0,0,0,0,0,127,127,1,1,12,12,1,1,127,127,0,0,0,0,0,0,0,0,0,0,12,12,1,1,12,12,1,1,12,12,0,0,0,0,0,0,0,0,0,0,12,12,1,1,12,12,1,1,12,12,0,0,0,0,0,0,0,0,0,0,12,12,1,

1,12,12,1,1,12,12,0,0,0,0,0,0,0,0,0,0,12,12,1,1,12,12,1,1,12,12,0,0,0,0,0,0,0,0,0,0,12,12,1,1,12,12,1,1,12,12,0,0,0,0,0,0,0,0,0,0,12,12,1,1,12,12,1,1,12,12,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,

12,12,0,0,0,0,0,0,0,0,0,0,12,12,12,12,2,2,12,12,12,12,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Got Em",author="Niikos",id="#1661438235",direction="forward",cost=268,elevation=0,map=[0,0,0,0,0,0,0,0,1,2,2,39,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,39,39,39,39,39,39,39,1,

0,0,0,0,0,0,0,0,0,0,1,39,39,39,39,39,39,39,39,39,1,0,0,0,0,0,0,0,0,0,1,39,39,1,1,1,39,39,39,39,39,1,0,0,0,0,0,0,0,0,1,39,39,1,0,0,1,39,39,39,39,39,1,0,0,0,0,1,0,0,1,39,39,1,0,0,0,1,39,39,39,39,39,1,0,

0,1,39,1,0,1,39,39,1,0,0,0,1,39,39,39,39,39,1,0,1,1,39,39,1,1,39,39,39,1,1,1,39,39,39,39,39,39,1,1,39,1,97,39,39,39,1,39,39,39,39,39,39,39,39,39,39,39,1,1,39,39,1,39,39,39,39,1,39,39,39,39,39,39,39,39

,39,39,1,1,39,39,39,1,39,39,39,39,1,1,39,39,39,39,39,39,39,39,1,1,39,39,39,39,1,39,39,39,39,39,39,39,39,39,39,39,39,94,1,0,1,39,39,39,39,1,1,1,39,39,39,39,39,39,39,39,93,94,1,0,0,1,39,39,39,39,1,1,1,3

9,39,39,39,39,39,39,93,1,0,0,0,0,1,39,39,39,39,39,39,39,39,39,39,39,39,39,1,0,0,0,0,0,0,1,39,39,39,39,39,39,39,39,39,39,39,1,0,0,0,0,0,0,0,0,1,39,39,39,39,39,39,39,39,39,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,

1,1,1,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0]});}},

{function Run(){maps.push({name="Tower bridge",author="Luffaren",id="#1661441593",direction="forward",cost=262,elevation=0,map=[0,0,0,93,24,0,0,0,0,0,0,0,0,5,5,2,2,5,5,0,0,0,0,24,93,0,0,0,0,0,0,0,0,5,

5,5,5,5,5,0,0,0,0,44,44,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,44,44,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,5,5,5,44,44,5,5,5,0,0,0,0,5,5,90,3,3,90,5,5,5,1,1,124,124,1,1,5,0,0,0,0,5,1,1,124,124,1,1,5,5,1,90,124,1

24,90,1,5,0,67,67,0,5,1,90,124,124,90,1,5,5,1,124,89,124,124,124,44,44,44,44,44,44,124,124,124,124,124,1,5,5,1,124,124,124,124,124,44,44,44,44,44,44,124,124,124,89,124,1,5,5,1,90,124,124,90,1,5,0,67,6

7,0,5,1,90,124,124,90,1,5,5,1,1,124,124,1,1,5,0,0,0,0,5,1,1,124,124,1,1,5,5,5,90,3,3,90,5,5,0,0,0,0,5,5,5,44,44,5,5,5,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,44,44,0,0,0,0,90,5,5,5,5,90,0,0,0,0,0,0,0,0,44,44,0,

0,0,0,5,5,89,5,5,5,0,0,0,0,0,0,0,0,44,44,0,0,0,0,90,5,5,5,5,90,0,0,0,0,0,0,0,0,44,44,0,0,0,0,5,5,5,89,5,5,0,0,0,0,0,0,0,0,24,94,0,0,0,0,90,5,5,5,5,90,0,0,0,0,0,0,0,0,94,24,0,0,0,0,5,5,5,5,5,5,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,5,5,2,2,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Skid",author="tilgep",id="#1661443293",direction="right",cost=318,elevation=-2,map=[0,0,16,2,2,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,14,14,0,0,135,135,135,135,0,0,0,0,0,0,0,0,135,135,135,14,14,2,0,0,135,135,135,135,0,0,0,0,0,0,0,0,135,135,135,14,14,2,0,0,135,135,135,135,0,0,0,0,0,0,0,0,135,135

,0,14,14,14,0,0,135,135,135,135,0,0,0,0,0,0,0,0,135,135,0,0,14,14,0,0,135,135,135,135,0,0,0,0,0,0,0,0,135,135,0,0,0,0,0,0,135,135,135,135,0,0,0,0,0,0,0,0,135,135,0,0,0,39,0,0,135,135,135,135,16,16,0,0

,0,0,0,0,135,135,0,0,0,38,0,0,135,135,135,135,14,16,0,0,0,0,0,0,135,135,0,0,0,37,0,0,135,135,135,135,14,16,16,17,18,19,125,0,135,135,0,36,36,37,0,0,135,135,135,135,0,0,0,16,0,0,0,0,135,135,0,0,0,0,0,0

,135,135,135,135,0,0,0,15,0,0,0,0,135,135,0,0,0,0,0,0,135,135,135,135,0,0,14,14,0,0,0,0,135,135,0,0,0,0,0,0,135,135,135,135,135,135,135,135,135,135,135,135,135,135,14,1,0,0,0,0,135,135,135,135,135,135

,135,135,135,135,135,135,135,135,14,1,0,0,0,0,135,135,135,135,135,135,135,135,135,135,135,135,135,135,14,1,0,0,0,0,135,135,135,135,135,135,135,135,135,135,135,135,135,135,14,1,0,0,0,0,14,14,14,14,0,0,

0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="A Precarious Ride",author="tilgep",id="#1661443599",direction="forward",cost=290,elevation=11,map=[0,0,0,0,0,0,7,7,7,2,2,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,7,7,7,7,7,

0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,7,7,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,7,81,81,135,135,76,76,77,0,0,0,0,0,0,0,0,0,0,0,0,8,81,81,135,135,76,76,77,0,0,0,0,0,0,0,0,0,0,0,

0,9,81,81,135,135,76,76,77,0,0,0,0,0,0,0,0,0,0,0,0,10,81,81,135,135,76,76,77,0,0,0,0,0,0,0,0,0,0,0,0,11,81,81,135,135,76,76,77,0,0,0,0,0,0,0,0,0,0,0,0,12,81,81,135,135,76,76,77,0,0,0,0,0,0,0,0,0,0,0,0

,13,81,81,135,135,76,76,77,0,0,0,0,0,0,0,0,0,0,0,0,14,81,81,135,135,76,76,77,0,0,0,0,0,0,0,0,0,0,0,0,15,81,81,135,135,76,76,77,0,0,0,0,0,0,0,0,0,0,0,0,16,81,81,135,135,76,76,77,0,0,0,0,0,0,0,0,0,0,0,0

,17,81,81,135,135,76,76,77,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,135,135,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,18,1,1,0,0,1,1,18,0,0,0,0,0,0,0,0,0,0,0,0,18,18,0,3,3,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,18,1

8,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,2,2,18,18,18,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="MS01 tp edging",author="fara",id="#1661449874",direction="forward",cost=196,elevation=0,map=[17,12,2,2,12,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,12,12,132,132,12,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,12,86,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,88,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,0,0,1,1,1,1,1,0,0,12,12,12,0,0,0,0,12,12,12,12,12,12,131,131,131,131,131,12,12,12,93,12,0,0,0,0,12,1

2,90,12,12,12,131,131,131,131,131,12,12,12,94,12,0,0,0,0,12,87,12,12,0,0,1,1,1,1,1,0,0,12,12,12,0,0,0,0,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,86,12

,88,0,0,0,0,12,0,12,0,0,0,0,0,0,0,0,0,12,12,12,12,0,0,0,12,0,67,0,12,0,0,0,0,0,0,0,12,12,12,12,12,12,0,0,0,67,19,67,0,0,12,102,0,0,0,0,12,12,132,132,12,12,0,0,12,0,67,0,12,0,0,0,0,0,0,0,12,12,101,101,

12,12,0,0,0,12,0,12,0,0,0,0,0,0,0,0,17,101,2,2,101,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="MS02 tp bounce",author="fara",id="#1661449892",direction="forward",cost=300,elevation=0,map=[0,0,0,0,0,18,2,2,18,0,1,0,24,3,17,65,17,1,24,24,0,0,0,0,0,38,38,38,38,0,1,

0,17,1,1,1,17,1,24,3,0,0,0,0,0,38,38,90,38,0,1,0,17,1,133,24,17,1,134,17,0,0,0,0,0,38,38,38,38,0,1,0,131,1,24,24,17,1,24,131,100,0,0,0,0,38,38,89,38,0,1,0,17,1,5,5,3,1,0,17,38,0,0,0,0,90,38,38,38,0,1,

0,17,1,131,131,5,1,0,12,0,0,0,0,0,38,38,38,38,0,1,0,131,1,5,5,131,1,0,12,0,0,0,0,38,38,38,90,38,38,1,0,17,1,5,5,5,1,0,131,38,0,1,0,38,38,38,38,38,38,1,1,3,1,5,5,5,1,0,12,38,38,95,38,18,89,18,18,18,18,

3,24,24,1,24,17,17,1,0,5,38,38,95,38,18,18,18,18,18,18,3,24,24,1,24,3,17,1,0,5,0,0,1,0,38,38,38,38,38,38,0,0,0,1,0,0,25,1,0,5,0,0,0,0,38,38,38,90,38,38,0,0,0,0,0,25,65,1,0,131,21,21,0,0,0,38,38,38,38,

0,0,0,0,0,0,25,65,5,0,5,135,135,0,0,0,38,38,89,38,3,25,25,25,25,25,25,25,25,25,5,38,38,38,38,0,38,38,38,38,0,0,0,0,0,0,0,0,0,0,65,44,44,0,0,0,38,38,38,38,0,0,0,0,0,0,44,44,44,44,44,93,44,0,0,0,38,90,3

8,131,0,0,0,0,0,0,44,128,44,94,44,44,44,0,0,0,38,38,38,38,0,0,0,0,0,0,44,44,44,44,44,0,0,0,0,0,18,2,2,18,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="amogus",author="bunnyhop",id="#1661487713",direction="forward",cost=221,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,1

2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,5,5,5,5,5,5,5,6,7,8,9,10,11,12,12,0,0,0,0,5,5,5,5,5,5,5,5,6,7,8,9,10,11,12,12,0,0,0,5,5,5,5,5,5,5,5,5,6,

7,8,9,10,11,12,12,0,0,5,5,5,21,21,5,5,5,5,5,6,7,8,9,10,11,12,12,0,0,5,5,21,21,21,21,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,21,21,21,21,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,21,21,21,21,5,5,5,5,0,0,0,0,0,0,0,0,0,0,

5,5,21,22,21,21,3,5,5,5,0,0,0,0,0,0,12,12,0,0,5,5,22,93,21,21,5,5,5,5,0,0,0,0,0,0,12,12,0,0,5,5,22,94,21,21,5,5,5,5,0,0,0,0,0,0,12,12,0,0,5,5,21,22,21,21,5,5,5,5,0,0,0,0,0,0,12,12,0,0,5,5,5,21,21,5,5,

5,5,5,6,7,8,9,10,11,12,12,0,0,0,5,5,5,5,5,5,5,5,5,6,7,8,9,10,11,12,12,0,0,0,0,5,5,5,5,5,5,5,5,6,7,8,9,10,11,12,12,0,0,0,0,0,5,5,5,5,5,5,5,6,7,8,9,10,11,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0]

});}},

{function Run(){maps.push({name="awesome",author="bunnyhop",id="#1661489911",direction="forward",cost=381,elevation=0,map=[0,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,39,39,39,39,39,39,1,1,0

,0,0,0,0,0,0,0,0,1,39,39,1,1,39,39,1,39,39,39,1,0,0,0,0,0,0,0,1,39,39,1,0,0,39,39,1,1,1,39,39,1,0,0,0,0,0,1,39,39,1,0,0,0,39,39,1,76,76,1,39,39,1,0,0,0,1,39,39,39,1,1,1,0,39,39,1,76,76,76,1,39,39,1,0,

0,1,39,39,39,39,1,1,0,39,39,1,76,76,76,76,1,39,1,0,1,39,39,39,39,39,39,1,1,39,39,1,76,76,76,76,76,1,39,1,1,39,39,39,39,39,39,39,39,39,39,1,76,76,76,76,76,1,39,1,1,39,39,39,39,39,39,39,39,39,39,1,76,76

,76,1,1,1,39,1,1,39,39,39,39,39,39,39,39,39,39,1,76,76,1,76,76,1,39,1,1,39,39,39,39,39,39,1,1,39,39,1,76,76,1,76,76,1,39,1,1,39,39,39,39,39,1,0,0,39,39,1,76,76,1,76,76,1,39,1,0,1,39,39,39,1,0,0,0,39,3

9,1,76,76,1,76,76,1,1,0,0,1,39,39,39,1,0,0,0,39,39,1,76,76,1,76,1,39,1,0,0,0,1,39,39,1,1,1,0,39,39,1,76,76,1,1,39,1,0,0,0,0,0,1,39,39,1,1,0,39,39,1,76,76,1,39,1,0,0,0,0,0,0,0,1,39,39,1,1,39,39,1,1,1,3

9,1,0,0,0,0,0,0,0,0,0,1,1,39,39,39,39,39,39,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="fast trigger or die",author="bunnyhop",id="#1661490051",direction="right",cost=422,elevation=0,map=[1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,9,9,105,9,90,9,9,9,105,9,

9,9,9,9,90,9,9,9,1,1,9,9,105,9,9,9,90,9,105,9,9,90,9,9,9,9,9,9,1,1,9,9,105,9,9,105,9,9,105,9,9,105,105,105,105,9,9,9,1,1,9,90,105,9,9,105,9,9,105,9,90,105,100,93,105,9,9,9,1,1,9,9,105,9,9,105,9,9,105,

9,9,105,5,5,105,9,9,9,1,1,9,9,105,9,90,105,9,90,105,9,9,105,6,6,105,9,9,9,1,1,9,9,105,9,9,105,9,9,105,9,9,105,7,7,105,9,9,9,1,1,90,9,105,9,9,105,9,9,105,90,9,105,8,8,105,9,9,9,1,1,9,9,105,9,9,105,9,9,

105,9,9,105,9,9,105,9,9,9,2,1,9,9,105,9,9,105,90,9,105,9,9,105,9,9,105,9,9,9,2,1,9,9,105,90,9,105,9,9,105,9,90,105,9,9,105,9,9,9,1,1,9,9,105,9,9,105,9,9,105,9,9,105,9,9,105,9,9,9,1,1,9,9,105,9,9,105,9

,9,105,9,9,105,9,9,105,9,9,9,1,1,9,90,105,9,90,105,9,90,105,9,9,105,9,9,94,9,9,9,1,1,9,9,105,9,9,105,9,9,105,9,9,105,9,9,105,9,9,9,1,1,9,9,105,9,9,105,9,9,105,9,9,105,9,9,105,9,9,9,1,1,9,9,90,9,9,105,

9,9,9,90,9,105,9,3,17,9,9,9,1,1,9,9,9,9,9,105,9,90,9,9,9,105,9,9,17,4,9,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Spider Palace",author="Soft Serve",id="#1661531428",direction="forward",cost=362,elevation=9,map=[0,0,0,0,0,0,1,7,7,2,2,7,7,1,0,0,0,0,0,0,0,0,0,0,0,0,1,7,1,7,7,1,7,1,0

,0,0,0,0,0,0,1,1,1,1,1,1,108,1,108,108,1,108,1,1,1,1,1,1,0,0,1,132,1,132,1,1,49,49,49,49,49,49,1,1,134,1,134,1,0,0,1,120,1,116,1,49,49,49,49,49,49,49,49,1,116,1,120,1,0,0,1,119,1,115,1,49,49,1,8,8,1,4

9,49,1,115,1,119,1,0,0,1,118,1,95,115,49,49,49,7,7,49,49,49,115,95,1,118,1,0,0,1,117,1,1,1,49,49,49,6,6,49,49,49,1,1,1,117,1,0,0,1,95,117,116,115,49,49,1,5,5,1,49,49,115,116,117,95,1,0,1,1,1,1,1,1,49,

49,77,75,75,77,49,49,1,1,1,1,1,1,1,132,1,132,1,93,49,49,77,75,75,77,49,49,94,1,134,1,134,1,1,122,1,118,1,93,49,49,1,5,5,1,49,49,94,1,118,1,122,1,1,121,1,117,1,1,1,49,49,6,6,49,49,1,1,1,117,1,121,1,1,1

20,1,95,117,116,115,49,49,7,7,49,49,115,116,117,95,1,120,1,1,119,1,1,1,1,1,49,1,8,8,1,49,1,1,1,1,1,119,1,1,95,119,118,117,116,115,49,49,49,49,49,49,115,116,117,118,119,95,1,1,1,1,1,1,1,1,49,49,131,133

,49,49,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,115,115,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,116,116,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Annoying Wait",author="ZpLit",id="#1661532834",direction="right",cost=64,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,1,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,1,5,

5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,4,4,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,95,1,16,16,1,88,9,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,50,50,49,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,50,50,49,9,2,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,1,88,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="equaliser",author="fraz",id="#1661540454",direction="right",cost=241,elevation=19,map=[5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,93,93,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,5,5,5,5,5,92,24,96,24,24,24,24,24,24,24,24,1,0,0,0,5,5,5,5,0,0,1,1,1,1,1,1,24,

24,24,24,1,0,0,0,5,5,5,5,5,92,24,96,24,24,24,24,24,24,24,24,1,0,0,0,5,5,5,5,0,0,1,1,1,1,1,1,24,24,24,24,1,0,0,0,5,5,5,5,5,92,24,96,24,24,24,24,24,24,24,24,1,0,0,0,5,5,5,5,0,0,1,1,1,1,1,1,24,24,24,24,1

,1,1,1,5,5,5,5,5,92,24,96,24,24,24,24,24,24,24,24,24,24,24,24,5,5,5,5,0,0,1,1,1,1,1,1,24,24,24,24,24,24,24,2,5,5,5,5,5,92,24,96,24,24,24,24,24,24,24,24,24,24,24,2,5,5,5,5,0,0,1,1,1,1,1,1,1,1,1,1,24,24

,24,24,5,5,97,5,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0]});}},

{function Run(){maps.push({name="crack",author="fraz",id="#1661542565",direction="right",cost=521,elevation=-3,map=[24,8,2,2,8,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,8,8,8,8,7,6,5,5,5,75,5,5,

5,5,5,5,5,5,24,24,7,7,7,7,7,6,75,5,5,5,5,5,5,5,75,5,5,5,24,24,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,75,24,24,75,5,5,5,5,5,5,5,5,5,75,5,5,5,5,5,5,5,24,24,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,24,24,5,5,5,5,7

5,5,5,75,5,5,5,5,5,5,75,5,5,5,24,24,5,5,5,5,5,5,5,5,5,5,75,5,5,5,5,5,5,75,24,24,5,5,75,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,24,24,5,5,5,5,5,5,5,5,5,5,84,84,84,84,84,84,84,84,24,24,5,5,5,5,5,5,5,5,75,5,81,5,5

,5,5,5,5,5,24,24,5,5,5,5,5,5,5,5,5,5,81,5,75,5,5,5,75,5,24,24,5,5,5,5,75,5,84,84,84,84,84,5,5,5,5,5,5,5,24,24,5,75,5,5,5,5,81,5,5,5,84,84,84,84,84,84,84,84,24,24,5,5,5,5,5,5,81,5,5,5,5,5,5,5,5,5,5,5,2

4,76,77,84,84,84,84,84,81,5,5,5,5,5,5,5,75,5,5,95,5,24,5,5,5,5,5,5,5,5,5,5,75,5,5,5,5,5,5,95,2,24,5,75,5,92,15,15,5,75,5,5,5,5,5,75,5,5,5,95,2,24,5,5,5,15,93,15,5,5,5,5,5,5,5,5,5,5,5,95,5,24,24,24,24,

24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24]});}},

{function Run(){maps.push({name="trigger crush",author="fraz",id="#1661543193",direction="forward",cost=175,elevation=0,map=[0,0,0,0,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,105,105,1,1,0,0,0

,0,0,0,0,0,0,0,0,0,0,1,105,105,1,92,110,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,105,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,92,110,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,105,1,1,0,0,0,0,0,0,0,0,0,0

,0,0,0,1,105,105,1,92,110,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,105,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,92,110,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,96,96,1,105,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105

,1,92,110,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,105,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,92,110,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,105,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,92,110,1,0,

0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,105,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,92,110,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,97,105,105,105,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,105,105,1,105,105,105,105,1,0,0,0,

0,0,0,0,0,0,0,0,1,2,2,1,1,105,93,105,1,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="High Rise",author="Soft Serve",id="#1661545932",direction="forward",cost=273,elevation=-18,map=[24,2,2,24,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,24,24,24,1,1,1,1,1,1,0,0,0,

0,0,0,0,0,0,0,96,64,64,64,63,62,61,61,1,1,0,0,0,0,0,0,0,0,0,0,96,64,64,64,90,64,64,60,1,1,0,0,0,0,0,0,0,0,0,0,96,64,64,64,64,64,64,59,1,1,1,1,1,1,0,0,0,0,0,0,1,96,96,96,1,64,64,58,1,1,1,1,1,1,0,0,0,0,

0,0,42,0,0,0,96,58,58,58,57,56,55,55,1,1,0,0,0,0,0,0,41,0,0,0,96,58,58,58,90,58,58,54,1,1,0,0,0,0,0,0,41,0,0,0,96,58,58,58,58,58,58,53,1,1,1,1,1,1,0,0,93,41,41,42,1,96,96,96,1,58,58,52,1,1,1,1,1,1,0,0

,0,0,0,0,36,0,0,0,96,52,52,52,51,50,49,49,1,1,0,0,0,0,0,0,35,0,0,0,96,52,52,52,90,52,52,48,1,1,0,0,0,0,0,0,35,0,0,0,96,52,52,52,52,52,52,47,1,1,1,1,0,0,0,0,93,35,35,36,1,96,96,96,1,52,52,46,1,1,1,1,0,

0,0,0,0,0,0,0,30,0,0,0,96,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,29,0,0,0,96,46,46,46,90,46,46,46,0,0,0,0,0,0,0,0,29,0,0,0,96,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,93,29,29,30,1,96,96,96,1,46,46,46,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,2,2,6]});}},

{function Run(){maps.push({name="Luffaren",author="Trust the bounce",id="#1661548843",direction="left",cost=235,elevation=0,map=[0,0,0,0,0,0,0,0,14,2,2,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,127,127,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,5,5,5,5,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,5,65,65,5,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,5,65,65,5,67,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,67,5,65,65,5,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,5,65,65,5,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,5,65,65,5,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,5,65,65,5,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,5,5,5,5,67,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,67,5,131,131,5,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,5,5,5,5,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,5,65,65,5,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,5,65,65,5,67,0,0,0,0,0,0,0,67,67,67,67,0,0

,0,0,5,65,65,5,0,0,0,0,0,0,0,0,14,14,14,14,1,0,0,0,5,5,5,5,5,5,5,0,0,0,0,0,2,14,14,14,14,14,14,14,14,14,14,14,14,14,5,0,0,0,0,0,2,14,14,89,14,14,14,90,14,14,14,14,14,14,3,0,0,0,0,0,14,14,14,14,14,14,1

4,90,1,1,1,1,90,14,5,0,0,0,0,0]});}},

{function Run(){maps.push({name="Bandaid",author="MoistNoodlez",id="#1661557159",direction="forward",cost=140,elevation=0,map=[0,0,0,0,0,0,54,54,2,2,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,54,54,54,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,54,88,54,54,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,88,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,54,88,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,54,54,54,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,66,66,66,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,67,67,67,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,66,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,59,59,59,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,88,59,88,5

9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,59,88,59,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,88,59,88,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,59,59,59,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,66,66,66,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,67,67,67,67,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,66,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,54,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,88,54,88,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,2,2,5

4,54,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Bounce v2",author="MoistNoodlez",id="#1661557928",direction="forward",cost=131,elevation=0,map=[0,0,0,22,22,22,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,22,22,22,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,14,136,136,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,136,136,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,66,66,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,22,22,22,22,94,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,14,133,133,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,133,133,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,22,22,22,22,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,133,133,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,133,133,14,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,22,22,22,22,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,133,133,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,133,133,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,22,22,22,22,14,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,136,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,2

2,2,2,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="SFOTH Classic",author="Dogeeri",id="#1661575950",direction="left",cost=158,elevation=10,map=[0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,30,0,0,0,96,8,8,9,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9

6,96,0,0,10,10,0,0,0,0,0,0,0,0,0,10,10,0,0,7,7,96,0,10,10,10,10,10,0,0,0,0,0,0,90,10,10,90,7,7,0,0,0,10,16,17,18,19,2,40,0,0,0,10,10,10,10,10,7,0,0,0,0,11,16,20,20,20,2,40,0,0,0,10,10,10,10,10,94,0,0,

0,0,12,15,20,93,20,0,40,0,0,0,0,90,10,10,90,0,0,0,0,0,13,14,20,20,20,0,40,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,20,20,0,40,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,95,40,0,40,0,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,95

,95,0,20,90,20,40,40,40,54,54,40,40,40,40,40,40,40,40,40,40,40,0,91,91,20,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,100,91,20,0,0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,10,10

,0,0,0,0,0,0,14,97,14,14,0,0,0,0,0,0,0,0,10,10]});}},

{function Run(){maps.push({name="Jump fast fix",author="HaRyDe",id="#1661600863",direction="forward",cost=246,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5

,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,124,124,130,122,121,0,0,0,0,5,5,0,0,0,0,102,44,44,0,0,127,124,130,122,121,39,37,15,0,5,5,0,0,1,1,1,1,44,1,0,0,0,0,0,1,1,1,13,0,5,5,0,0,1,13

1,101,44,44,1,0,0,0,0,0,1,97,1,11,0,91,91,0,0,1,44,101,44,44,1,1,22,22,0,0,1,124,1,9,0,91,91,0,0,1,44,101,124,124,98,0,22,22,0,124,124,124,1,7,5,5,5,0,0,1,44,101,124,124,98,0,22,22,0,124,124,124,1,7,5

,5,5,0,0,1,44,101,44,44,1,1,22,22,0,0,1,96,1,9,0,5,5,0,0,1,131,101,44,44,1,0,0,0,0,0,1,99,1,11,0,5,5,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,13,0,5,5,0,0,1,1,1,1,1,0,0,126,124,130,122,121,39,37,15,0,5,5,0,0,0

,5,5,5,1,0,0,124,124,130,122,121,0,0,0,0,5,5,0,0,0,5,132,5,1,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,5,5,5,1,0,0,0,0,0,0,0,0,0,0,0,91,91,0,0,0,86,86,86,1,0,0,0,0,0,0,0,0,0,0,0,91,91,0,0,5,5,5,5,1,0,0,0,0,0,0,

0,0,5,5,5,5,5,5,5,5,2,2,5,1,0,0,0,0,0,0,0,0,5,93,5,93,5,93,5]});}},

{function Run(){maps.push({name="Climbable",author="Niikos",id="#1661614231",direction="forward",cost=400,elevation=15,map=[9,2,2,9,9,31,31,33,33,33,115,115,117,117,117,19,19,21,93,93,9,9,9,9,9,31,31,

31,33,33,115,115,115,117,117,19,19,19,21,93,9,9,9,9,9,31,31,31,31,33,115,115,115,115,117,19,19,19,19,21,9,9,9,9,9,31,31,31,33,33,115,115,115,117,117,19,19,19,21,21,9,9,9,9,9,31,31,33,33,33,115,115,117

,117,117,19,19,21,21,21,31,31,31,31,31,111,111,111,113,113,15,15,17,17,19,39,39,39,41,41,31,31,31,31,31,111,111,113,113,113,15,17,17,19,19,39,39,41,41,43,33,31,31,31,33,111,113,113,113,113,17,17,17,19

,19,39,41,41,43,43,33,33,31,33,33,113,113,113,113,113,17,19,19,19,19,41,41,43,43,43,33,33,33,33,33,113,113,113,113,113,19,19,19,19,19,41,43,43,43,43,115,115,115,115,115,15,15,17,17,19,39,39,39,41,41,1

23,123,123,123,124,115,115,115,115,115,15,17,17,19,19,39,39,41,41,43,123,123,123,124,124,117,115,115,115,117,17,17,17,19,19,39,41,41,43,43,123,123,124,124,124,117,117,115,117,117,17,19,19,19,19,41,41,

43,43,43,123,124,124,124,124,117,117,117,117,117,19,19,19,19,19,41,43,43,43,43,124,124,124,124,124,19,19,19,19,19,39,39,39,41,41,123,123,123,123,124,24,24,24,24,24,19,19,19,19,19,39,39,41,41,43,123,12

3,123,124,124,24,24,24,24,24,21,19,19,19,21,39,41,41,43,43,123,123,124,124,124,24,24,24,24,24,94,21,19,21,21,41,41,43,43,43,123,124,124,124,124,24,24,24,24,24,94,94,21,21,21,41,43,43,43,43,124,124,124

,124,124,24,24,2,2,24]});}},

{function Run(){maps.push({name="TeleWorlds",author="Niikos",id="#1661617026",direction="left",cost=338,elevation=17,map=[5,2,2,5,0,110,134,134,110,1,1,24,137,137,24,1,1,0,0,0,5,5,5,5,0,110,110,110,11

0,1,1,24,24,24,24,1,1,34,34,34,5,5,5,5,0,110,110,110,110,1,1,24,24,24,24,1,1,132,132,34,94,5,5,94,0,110,110,110,110,1,1,24,24,24,24,1,1,34,34,34,94,5,5,94,0,110,110,110,110,1,1,24,24,24,24,1,1,34,34,3

4,0,5,5,0,0,110,110,110,110,1,1,0,0,0,0,1,1,34,34,34,0,5,5,0,0,92,92,92,92,1,1,0,0,0,0,1,1,34,34,0,0,5,5,0,0,120,120,120,120,1,1,65,65,65,65,1,1,34,34,0,0,5,5,0,0,120,120,120,120,1,1,65,65,65,65,1,1,1

27,127,0,0,131,131,0,0,120,120,120,120,1,1,5,5,5,5,1,1,0,0,0,1,1,1,0,0,120,120,120,120,1,1,5,5,5,5,1,1,0,0,0,0,0,0,0,0,120,120,120,120,1,1,5,5,5,5,1,1,0,0,0,0,0,0,0,0,120,136,136,120,1,1,5,5,5,5,1,1,0

,0,0,0,0,0,0,0,1,1,1,1,1,1,5,138,138,5,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,65,65,0,0,0,0,0,0,0,62,139,139,62,0,0,0,0,0,0,0,65,65,0,62,62,62,62,0,0,62,62,62,62,0,0,0,0,0,0,0,14,14,0,2,62,62,62,

62,62,62,62,62,62,0,0,0,0,93,14,14,14,14,14,2,62,62,62,62,62,62,62,62,62,0,0,0,0,93,14,14,14,14,14,62,62,62,62,0,0,0,0,0,0,0,0,0,0,93,14,14,133,133,14]});}},

{function Run(){maps.push({name="Abyss",author="ZpLit",id="#1661627682",direction="left",cost=238,elevation=0,map=[0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,87,33,32,32,32,32,32,32,32,32,32,32,32,32,3

2,32,33,33,1,1,33,33,32,32,32,32,32,32,32,32,32,32,32,32,32,32,33,33,1,1,32,32,0,0,0,0,127,0,0,0,0,127,0,0,0,0,32,32,1,1,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,1,1,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3

2,32,1,1,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,1,1,32,32,129,0,0,0,0,0,0,0,0,0,0,0,0,128,32,32,1,1,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,1,1,32,32,0,0,0,0,0,0,94,94,0,0,0,0,0,0,32,32,1,1,32,32,0,0

,0,0,0,0,94,94,0,0,0,0,0,0,32,32,1,1,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,1,1,32,32,129,0,0,0,0,0,0,0,0,0,0,0,0,128,32,32,1,1,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,1,1,32,32,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,32,32,1,1,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,1,1,32,32,0,0,0,0,126,0,0,0,0,126,0,0,0,0,32,32,1,2,33,33,32,95,32,32,32,32,32,32,32,32,32,32,32,32,33,33,1,2,88,33,32,95,32,32,32,32,32,32,32,

32,32,32,32,32,33,87,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0]});}},

{function Run(){maps.push({name="Call of the Void",author="ZpLit",id="#1661644563",direction="forward",cost=200,elevation=0,map=[0,0,0,0,0,0,0,0,22,2,2,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,87,22,22,22,22,22,22,22,22,22,22,22,22,87,0,0,0,0,0,0,22,23,23,23,23,23,23,23,23,23,23,23,23,22,0,0,0,0,0,0,22,23,24,24,24,24,24,24,24,

24,24,24,23,22,0,0,0,0,0,0,22,23,24,0,0,0,130,130,0,0,0,24,23,22,0,0,0,0,0,0,22,23,24,0,0,0,130,130,0,0,0,24,23,22,0,0,0,0,0,0,22,23,24,0,0,0,12,12,0,0,0,24,23,22,0,0,0,0,0,0,22,23,24,130,130,12,94,94

,12,130,130,24,23,22,0,0,0,0,0,0,22,23,24,130,130,12,94,94,12,130,130,24,23,22,0,0,0,0,0,0,22,23,24,0,0,0,12,12,0,0,0,24,23,22,0,0,0,0,0,0,22,23,24,0,0,0,130,130,0,0,0,24,23,22,0,0,0,0,0,0,22,23,24,0,

0,0,130,130,0,0,0,24,23,22,0,0,0,0,0,0,22,23,24,24,24,24,24,24,24,24,24,24,23,22,0,0,0,0,0,0,22,23,23,23,23,23,23,23,23,23,23,23,23,22,0,0,0,0,0,0,87,22,22,22,22,22,22,22,22,22,22,22,22,87,0,0,0,0,0,0

,0,0,0,0,0,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,2,2,86,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Serene Grace",author="ZpLit",id="#1661653850",direction="left",cost=232,elevation=0,map=[0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,105,105,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,106,106,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,107,107,13,13,13,0,0,0,0,0,0,0,0,0,0,0,13,108

,108,108,108,108,108,108,108,13,0,0,0,0,0,0,0,0,0,0,13,108,90,108,108,108,108,90,108,13,0,0,0,0,0,0,0,0,0,13,108,108,108,65,65,65,65,108,108,108,13,0,0,0,0,0,0,0,0,13,93,108,108,65,65,65,65,108,108,93

,13,0,0,0,0,0,0,0,0,13,93,108,108,65,65,65,65,108,108,93,13,0,0,0,0,0,0,0,0,13,108,90,108,65,65,65,65,108,90,108,13,0,0,0,0,0,0,0,0,0,13,108,108,90,108,108,90,108,108,13,0,0,0,0,0,0,0,0,0,0,13,108,108

,108,108,108,108,108,108,13,0,0,0,0,0,0,0,0,0,0,0,13,13,18,47,47,18,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,46,46,17,0,0,0,0,0,0,0,0,24,22,16,16,16,16,16,16,16,45,45,16,16,16,16,16,0,0,0,0,2,5,88,45,45,4

5,45,90,45,45,45,45,45,45,45,45,5,5,92,9,2,5,45,45,90,45,45,45,45,45,45,45,45,45,45,45,5,5,92,9,24,22,16,16,16,16,16,16,16,16,16,16,16,16,16,16,100,0,0,0]});}},

{function Run(){maps.push({name="Go Around",author="ZpLit",id="#1661698326",direction="left",cost=126,elevation=-6,map=[0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,11,1,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,1,11,45,105,5,6,7,7,0,0,0,0,0,0,0,0,0,0,0,0,1,45,45,105,5,6,7,7,7,0,0,0,0,0,0,0,0,100,96,5,105,45,90,105,5,6,7,7,7,7,0,0,0,0,0,0,0,96,97,5,105,45,45,1,0,0,7,7,7,7,0,0,0,0,0,0,0,5,5,5,105,45,11

,1,0,0,0,8,8,8,0,0,0,0,0,0,0,88,5,5,1,11,11,1,0,0,0,9,9,9,0,0,0,0,0,0,0,2,5,11,96,11,90,11,0,0,9,90,9,9,0,0,0,0,0,0,0,2,5,11,96,11,11,11,10,9,9,9,9,9,0,0,0,0,0,0,0,0,0,94,94,96,11,11,10,9,9,9,9,0,0,0,

0,0,0,0,0,0,0,0,0,0,96,11,10,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Knockoff v2",author="MoistNoodlez",id="#1661698700",direction="forward",cost=448,elevation=0,map=[0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,92,112,2,2,0,0,0,0,0,0,0,112,0,0,0,0,

0,0,0,0,0,0,112,112,0,0,0,77,44,77,0,112,0,77,44,77,0,0,0,0,0,0,112,112,0,0,0,77,44,77,0,112,0,77,44,77,0,0,0,0,0,0,112,112,0,0,0,77,44,77,0,112,0,77,44,77,0,0,0,0,0,0,112,112,0,114,92,77,44,77,0,112,

0,77,44,77,92,114,0,0,0,0,112,112,0,114,92,77,44,77,0,112,0,77,44,77,92,114,0,0,0,0,112,112,0,114,92,77,44,77,0,112,0,77,44,77,92,114,0,0,0,0,112,112,0,113,92,77,44,77,0,112,0,77,44,77,92,113,0,0,0,0,

112,112,0,114,92,77,44,77,0,112,0,77,44,77,92,114,0,0,0,0,112,112,0,114,92,77,44,77,0,112,0,77,44,77,92,114,0,0,0,0,112,112,0,113,92,77,44,77,0,112,0,77,44,77,92,113,0,0,0,0,112,112,0,114,92,77,44,77,

0,112,0,77,44,77,92,114,0,0,0,0,112,112,0,113,92,77,44,77,0,112,0,77,44,77,92,113,0,0,0,0,112,112,0,114,92,77,44,77,0,112,0,77,44,77,92,114,0,0,0,0,112,112,0,113,92,77,44,77,0,112,0,77,44,77,92,113,0,

0,0,0,112,112,0,114,92,77,44,77,0,112,0,77,44,77,92,114,0,0,0,132,112,112,132,113,92,77,44,77,0,112,0,77,44,77,92,113,0,0,0,0,112,112,0,0,0,77,44,77,0,112,0,1,1,1,1,1,1,1,0,0,112,112,0,0,0,0,0,0,0,88,

112,112,93,112,100,112,131,1,0,0,2,2,0]});}},

{function Run(){maps.push({name="Eruption",author="ZpLit",id="#1661729189",direction="left",cost=468,elevation=0,map=[0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,2,2,0,0,0,0,0,0,8,8,8,8,8,7,81,81,7,8,8,8,8,8,0,0,

0,0,0,8,8,8,8,8,8,7,81,81,7,8,8,8,8,8,8,0,0,0,8,8,8,8,8,11,11,11,77,77,11,11,11,8,8,8,8,8,0,0,8,8,8,8,11,11,13,11,81,81,11,13,11,11,8,8,8,8,0,0,8,8,8,11,9,11,11,16,77,77,16,11,9,11,11,8,8,8,0,0,8,8,11

,13,11,13,16,16,81,81,16,16,11,13,11,11,8,8,0,0,8,8,11,9,11,16,18,22,77,77,21,16,16,11,9,11,8,8,0,0,7,7,11,11,16,16,21,24,76,76,24,20,16,16,13,11,7,7,0,77,83,83,77,83,77,83,77,76,24,24,76,77,84,77,84,

77,84,84,77,77,83,83,77,83,77,83,77,76,24,24,76,77,84,77,84,77,84,84,77,0,7,7,11,11,16,18,21,24,76,76,24,23,18,16,11,11,7,7,0,0,8,8,11,13,11,16,16,22,77,77,21,16,16,11,13,11,8,8,0,0,8,8,11,11,9,11,16,

16,82,82,16,16,11,9,11,11,8,8,0,0,88,8,8,11,13,11,9,16,77,77,16,11,11,13,11,8,8,8,0,2,8,8,8,8,11,11,13,11,82,82,13,9,11,11,8,8,8,8,0,2,8,8,8,8,8,11,11,11,77,77,11,11,11,8,8,8,8,8,0,0,0,88,8,8,8,8,8,7,

82,82,7,8,8,8,8,8,8,0,0,0,0,0,8,8,8,8,8,7,82,82,7,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="LITERALLY SOMETHING",author="IProbie",id="#1661753196",direction="forward",cost=369,elevation=0,map=[25,2,2,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,25,25,25,25,

25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25

,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,2

5,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,

25,25,90,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25

,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,2

5,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,2,2,25]});}},

{function Run(){maps.push({name="notitle1",author="KizanFlandre",id="#1661769470",direction="left",cost=268,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,5

,5,0,0,1,5,5,5,5,5,5,5,5,1,0,0,0,0,0,1,5,5,0,0,1,5,5,5,5,5,5,5,5,1,0,0,0,0,0,1,5,5,0,0,1,5,5,1,1,1,1,5,5,1,0,0,0,0,0,1,5,5,0,0,1,5,5,1,0,0,1,5,5,1,0,0,0,0,0,1,5,5,0,0,1,5,5,1,0,0,1,98,98,1,1,1,1,1,1,1

,5,5,0,2,101,5,5,1,0,0,1,5,5,5,5,5,5,5,5,96,5,5,0,2,101,5,5,1,0,0,1,5,5,5,5,5,5,5,5,96,5,5,0,0,1,130,130,1,0,0,1,130,130,1,1,1,1,1,1,1,130,130,0,0,1,130,130,1,0,0,1,130,130,1,0,0,0,0,0,1,130,130,0,0,1

,130,130,1,0,0,1,130,130,1,0,0,0,0,0,1,130,130,0,0,1,130,130,1,0,0,1,130,130,1,0,0,0,0,0,1,130,130,0,0,1,130,130,1,0,0,1,130,130,1,0,0,0,0,0,1,5,5,0,0,1,130,130,1,0,0,1,130,130,1,0,0,0,0,0,1,97,5,0,0,

1,130,130,1,0,0,1,5,5,1,0,0,0,0,0,1,1,1,0,0,1,130,130,1,0,0,1,5,99,1,0,0,0,0,0,0,0,0,0,0,1,102,5,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0]});}},

{function Run(){maps.push({name="In the clouds",author="Applily",id="#1661798990",direction="forward",cost=280,elevation=17,map=[0,0,0,135,5,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252)

,2,2,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),5,135,0,0,0,0,0,0,0,0,135,6,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),6,Vector(255,252,252),Vector(255,252,252),93,Ve

ctor(255,252,252),6,135,0,0,0,0,0,0,0,0,135,7,Vector(255,252,252),93,Vector(255,252,252),Vector(255,252,252),7,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),7,135,0,0,0,0,0,0,0,0,135,8,V

ector(255,252,252),Vector(255,252,252),Vector(255,252,252),8,Vector(255,252,252),Vector(255,252,252),94,Vector(255,252,252),8,135,0,0,0,0,0,0,0,0,135,9,Vector(255,252,252),94,Vector(255,252,252),Vecto

r(255,252,252),9,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),9,135,0,0,0,0,0,0,0,0,135,10,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),10,Vector(255,252,252),Vector(255,

252,252),Vector(255,252,252),Vector(255,252,252),10,135,0,0,0,0,0,0,0,0,135,11,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),11,Vector(255,252,252),Vector(255,252,252

),Vector(255,252,252),11,135,0,0,0,0,0,0,0,0,135,12,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),12,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),12,13

5,0,0,0,0,0,0,0,0,135,13,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),13,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),13,135,0,0,0,0,0,0,0,0,135,14,Ve

ctor(255,252,252),Vector(255,252,252),Vector(255,252,252),14,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),14,135,0,0,0,0,0,0,0,0,135,15,Vector(255,252,252),Vector(25

5,252,252),Vector(255,252,252),Vector(255,252,252),15,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),15,135,0,0,0,0,0,0,0,0,135,16,Vector(255,252,252),Vector(255,252,252),Vector(255,252,2

52),16,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),16,135,0,0,0,0,0,0,0,0,135,17,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),17,

Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),17,135,0,0,0,0,0,0,0,0,135,18,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),18,Vector(255,252,252),Vector(255,252,252),Vector(

255,252,252),Vector(255,252,252),18,135,0,0,0,0,0,0,0,0,135,19,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),19,Vector(255,252,252),Vector(255,252,252),Vector(255,252

,252),19,135,0,0,0,0,0,0,0,0,135,20,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),20,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),20,135,0,0,0,0,0,0,0,

0,135,21,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),21,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),21,135,0,0,0,0,0,0,0,0,135,22,Vector(255,252,252

),Vector(255,252,252),Vector(255,252,252),22,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),22,135,0,0,0,0,0,0,0,0,135,23,Vector(255,252,252),Vector(255,252,252),Vecto

r(255,252,252),Vector(255,252,252),23,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),23,135,0,0,0,0,0,0,0,0,135,24,Vector(255,252,252),Vector(255,252,252),Vector(255,252,252),2,2,Vector(2

55,252,252),Vector(255,252,252),Vector(255,252,252),24,135,0,0,0,0,0]});}},

{function Run(){maps.push({name="Overhead v2",author="MoistNoodlez",id="#1661811949",direction="forward",cost=231,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0

,0,0,0,0,0,131,5,0,7,125,125,7,7,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,5,0,0,0,12,14,19,19,0,134,89,129,24,130,130,130,130,0,0,0,5,0,0,0,66,66,66,19

,0,24,24,24,24,0,0,0,0,0,0,0,5,0,0,0,0,0,0,92,0,1,1,1,1,1,1,1,0,0,0,0,5,0,0,0,0,0,0,0,0,22,22,21,21,20,20,20,0,0,0,0,5,0,0,10,10,10,8,8,8,135,135,135,135,135,135,135,135,130,0,0,5,0,0,74,74,67,66,133,

133,135,135,135,135,135,135,135,135,130,0,0,5,0,0,74,74,67,66,133,133,22,22,21,21,20,20,20,0,0,0,0,5,0,0,10,10,10,8,8,8,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,21,92,0,0,0

,21,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,20,92,0,20,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,126,0,0,1,0,0,0,0,0,0,0,65,65,0,0,0,0,0,0,0,24,65,132,1,0,19,92,0,0,0,0

,5,5,0,0,0,0,19,19,19,24,3,18,1,0,0,0,0,0,0,0,2,2,0,0,0,0,100,93,97]});}},

{function Run(){maps.push({name="Tic Tac Toe",author="TF2 Pencil",id="#1661835870",direction="forward",cost=310,elevation=-4,map=[0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,15,15,0,0,18,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,13,13,13,130,18,130,13,0,13,130,18,130,13,13,13,0,0,0,0,0,13,0,13,130,18,130,0,13,0,130,18,130,13,0,13,0,0,0,0,0,13,13,13,130,18,130,13,0,

13,130,18,130,13,13,13,0,0,0,0,0,130,130,130,130,18,130,130,130,130,130,18,130,130,130,130,0,0,0,0,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,0,0,0,0,130,130,130,130,18,130,130,130,130,130,18,

130,130,130,130,0,0,0,0,0,13,0,13,130,18,130,13,13,13,130,18,130,13,0,13,0,0,0,0,0,0,13,0,130,18,130,13,0,13,130,18,130,0,13,0,0,0,0,0,0,13,0,13,130,18,130,13,13,13,130,18,130,13,0,13,0,0,0,0,0,130,13

0,130,130,18,130,130,130,130,130,18,130,130,130,130,0,0,0,0,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,0,0,0,0,130,130,130,130,18,130,130,130,130,130,18,130,130,130,130,0,0,0,0,0,13,13,13,130,

18,130,13,0,13,130,18,130,13,13,13,0,0,0,0,0,13,0,13,130,18,130,0,13,0,130,18,130,13,0,13,0,0,0,0,0,13,13,13,130,18,130,13,0,13,130,18,130,13,13,13,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,18,0,0,11,11,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0]});}},

{function Run(){maps.push({name="Big Hill",author="TF2 Pencil",id="#1661838602",direction="forward",cost=220,elevation=17,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,22,22,21,20,19,18,17,16,15,14,13,

12,11,10,9,8,7,6,5,5,22,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,5,22,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,5,22,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,5,22,22,21,20,19,18

,17,16,15,14,13,12,11,10,9,8,7,6,5,5,22,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,5,22,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,5,22,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,5,2

2,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,5,22,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,5,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Do Not Go Right",author="TF2 Pencil",id="#1661838646",direction="forward",cost=167,elevation=-13,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,19,19,0,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,127,127,0,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,19,19,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0

,76,76,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,13,13

,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,76,76

,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,76,76,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,100,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0

,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Fox McCloud Shine",author="TF2 Pencil",id="#1661838915",direction="forward",cost=290,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,11,11,66,66,66,66,66,66,11,11,0,0,0,0,0,0,0,0,0,11,11,66,66,66,66,66,66,66,66,11,11

,0,0,0,0,0,0,0,11,11,66,66,66,65,65,65,65,66,66,66,11,11,0,0,0,0,0,11,11,66,66,66,65,11,11,11,11,65,66,66,66,11,11,0,0,0,0,11,66,66,66,65,11,11,0,0,11,11,65,66,66,66,11,0,0,0,0,11,66,66,65,11,11,0,0,0

,0,11,11,65,66,66,11,0,0,0,0,11,66,66,65,11,0,0,0,0,0,0,11,65,66,66,11,0,0,0,0,11,66,66,65,11,11,0,0,0,0,11,11,65,66,66,11,0,0,0,0,11,66,66,66,65,11,11,0,0,11,11,65,66,66,66,11,0,0,0,0,11,11,66,66,66,

65,11,11,11,11,65,66,66,66,11,11,0,0,0,0,0,11,11,66,66,66,65,65,65,65,66,66,66,11,11,0,0,0,0,0,0,0,11,11,66,66,66,66,66,66,66,66,11,11,0,0,0,0,0,0,0,0,0,11,11,66,66,66,66,66,66,11,11,0,0,0,0,0,0,0,0,0

,0,0,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Budget Frostdrake",author="FrostdrakeReady",id="#1661872546",direction="forward",cost=243,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25

,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,25,25,85,85,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,25,25,25,25,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,26,26,0,0,0,

0,0,0,38,38,39,40,41,42,43,24,92,38,38,1,27,27,0,0,0,0,0,0,38,1,1,1,1,1,1,1,38,38,38,1,28,28,0,0,0,0,0,0,90,1,99,25,25,25,25,25,1,90,90,1,29,29,0,0,0,0,0,0,38,1,1,1,1,1,1,3,1,38,38,1,30,30,0,0,0,0,0,0

,38,1,1,44,44,44,44,24,1,37,37,1,31,31,0,0,0,0,0,0,38,1,44,44,44,44,44,44,44,116,116,1,32,32,0,0,0,44,44,44,58,44,90,44,44,1,98,98,44,115,115,1,33,33,0,0,0,44,85,44,58,44,44,44,1,0,0,0,1,114,114,96,34

,34,0,0,0,44,0,0,38,1,1,1,1,0,0,0,1,1,1,1,34,34,0,34,0,44,0,0,38,38,1,0,0,0,0,0,0,0,1,1,19,1,0,34,0,44,1,1,1,38,1,0,0,0,135,135,0,0,1,93,3,1,1,1,34,44,124,3,118,38,1,0,0,0,135,135,0,0,1,97,34,1,1,1,0,

0,1,1,1,0,1,0,0,0,25,25,0,0,1,0,34,1,1,1,34,0,41,93,41,0,1,0,0,0,2,2,0,0,1,0,0,34,0,34,85]});}},

{function Run(){maps.push({name="RNG",author="tilgep",id="#1661884041",direction="forward",cost=225,elevation=0,map=[0,0,15,2,2,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,15,15,15,15,1,0,0,0,0,0,1,15,15,15,15,15,15,1,0,0,15,15,15,15

,1,1,0,0,0,0,1,15,132,132,132,132,15,1,0,0,15,15,15,15,15,15,15,15,15,15,15,15,132,132,132,132,15,1,0,0,15,15,15,15,15,15,15,15,15,15,15,15,132,132,132,132,15,1,0,0,15,15,15,15,15,15,15,15,15,15,15,15

,15,15,15,15,15,1,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,1,1,0,0,0,0,0,0,0,0,15,15,15,15,1,1,1,15,131,15,1,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,1,15,15,15,1,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,

1,0,0,0,1,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,1,132,1,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,1,14,1,0,0,0,0,0,0,0,15,134,15,15,0,0,0,0,0,0,0,97,1,0,0,0,0,0,0,0,96,96,96,96,0,0,0,0,0,0,96,96,1,0,0,0

,0,0,0,96,15,15,15,15,96,0,0,0,0,0,0,133,1,0,0,0,0,0,0,0,15,2,2,15,0,0,0,0,0,0,0,1,0]});}},

{function Run(){maps.push({name="defend or skill",author="blasian",id="#1661898835",direction="right",cost=230,elevation=-2,map=[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,96,14,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,96,14,14,0,0,0,0,0,0,12,12,12,0,0,90,12,12,93,0,96,96,9

0,14,0,0,0,0,0,0,12,134,12,12,12,12,12,90,12,2,0,1,135,135,1,0,0,0,0,0,12,12,12,90,12,12,12,12,12,2,0,1,135,135,1,0,0,0,0,0,12,12,12,0,0,90,12,12,93,0,0,1,135,135,1,0,0,0,0,0,0,130,130,0,0,0,0,0,0,0,0

,1,135,135,1,0,0,0,0,0,0,130,130,0,0,0,0,0,0,0,0,1,135,135,1,0,0,0,0,0,0,130,130,0,0,0,0,0,0,0,0,1,135,135,1,0,0,0,0,0,0,130,130,0,0,0,0,0,0,0,0,1,135,135,1,0,0,0,0,0,0,130,130,0,0,0,0,0,0,0,0,1,135,1

35,1,1,1,1,14,97,14,130,130,0,0,0,0,0,0,0,0,1,135,135,135,135,135,135,94,14,14,14,14,1,1,1,1,1,0,0,0,1,135,135,135,135,135,135,14,132,14,14,14,91,91,91,133,1,0,0,0,1,1,1,1,1,1,1,94,14,14,90,14,1,1,1,1

,1,0,0,0,0,0,0,0,0,0,0,1,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,93,1,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="split",author="blasian",id="#1661899196",direction="forward",cost=190,elevation=0,map=[0,0,0,0,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,94,3,14,14,14,14,3,94,1,0,0,0,

0,0,0,0,0,0,0,1,19,0,0,14,14,0,0,19,1,0,0,0,0,0,0,0,0,0,0,1,19,0,0,14,14,0,0,19,1,0,0,0,0,0,0,0,0,0,0,1,19,0,0,14,14,0,0,19,1,0,0,0,0,0,0,0,0,0,0,1,19,0,0,14,14,0,0,19,1,0,0,0,0,0,0,0,0,0,0,1,19,3,14,

94,94,14,3,19,1,0,0,0,0,0,0,0,0,0,0,1,19,0,1,14,14,1,0,19,1,0,0,0,0,0,0,0,0,0,0,1,19,0,1,14,14,1,0,19,1,0,0,0,0,0,0,131,19,93,19,19,19,3,14,14,14,14,3,19,19,19,93,19,131,0,0,0,0,0,0,1,19,0,1,14,14,1,0

,19,1,0,0,0,0,0,0,0,0,0,0,1,19,0,1,132,132,1,0,19,1,0,0,0,0,0,0,0,0,0,0,1,19,0,1,14,14,1,0,19,1,0,0,0,0,0,0,0,0,0,0,1,19,3,14,14,14,14,3,19,1,0,0,0,0,0,0,0,0,0,0,1,19,0,1,14,14,1,0,19,1,0,0,0,0,0,0,0,

0,0,0,1,19,0,1,14,14,1,0,19,1,0,0,0,0,0,0,0,0,0,0,1,100,0,1,14,14,1,0,100,1,0,0,0,0,0,0,0,0,0,0,1,19,0,1,134,134,1,0,19,1,0,0,0,0,0,0,0,0,0,0,1,19,0,0,14,14,0,0,19,1,0,0,0,0,0,0,0,0,0,0,1,93,133,0,2,2

,0,133,93,1,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Gamba",author="blasian",id="#1661900188",direction="forward",cost=230,elevation=0,map=[0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,

0,133,14,14,0,0,0,0,54,54,0,0,0,0,0,0,14,14,133,0,0,0,93,14,94,0,0,0,54,54,0,0,0,0,54,94,14,93,0,0,0,0,100,132,14,54,0,0,54,54,0,0,0,0,54,14,132,100,0,0,0,0,93,14,94,54,0,0,54,54,0,0,0,0,54,94,14,93,0

,0,0,136,14,14,0,54,0,0,54,54,0,0,0,0,54,0,14,14,136,0,0,0,0,0,0,54,0,0,131,131,0,0,0,0,54,0,0,0,0,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,54,1,1,1,1,1,1,1,1,0,54,0,0,0,0,0,0,0,0,0,54,1,1

34,14,54,54,14,134,1,0,54,0,0,0,0,0,0,0,0,0,54,1,1,1,54,54,1,1,1,0,54,0,0,0,0,0,0,0,0,0,54,1,1,1,54,54,1,1,1,0,54,0,0,0,0,0,0,0,0,0,54,1,137,14,54,54,14,137,1,0,54,0,14,14,136,0,0,133,14,14,54,1,1,1,5

4,54,1,1,1,0,54,94,14,93,0,0,0,0,93,14,94,1,1,1,54,54,1,1,1,0,54,14,132,100,0,0,0,0,100,132,14,1,139,14,54,54,14,139,1,0,54,94,14,93,0,0,0,0,93,14,94,1,1,1,95,95,1,1,1,0,54,0,14,14,138,0,0,138,14,14,5

4,54,54,95,54,54,95,54,54,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="SNES Ghost Valley 1",author="TF2 Pencil",id="#1661928716",direction="forward",cost=183,elevation=3,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,28,28,28,28,28,28,28,

28,125,28,28,28,28,28,0,0,0,25,25,0,28,28,28,28,28,28,28,28,28,28,28,28,28,28,0,0,0,25,25,0,28,28,28,28,28,28,28,28,125,28,28,28,28,28,0,0,0,25,25,0,28,28,0,0,0,0,0,0,0,0,0,0,28,28,0,0,25,25,25,0,28,2

8,0,0,0,0,0,0,0,0,0,0,28,28,0,0,25,131,25,0,28,28,0,0,0,0,0,0,0,0,0,0,28,28,0,0,25,25,25,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,28,28,0,0,0,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,28,28,0,0,0,0,0,0,

0,0,28,28,0,0,0,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,28,28,28,28,28,28,0,0,0,28,28,28,0,0,0,0,0,0,0,0,28,28,28,28,28,28,0,0,28,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,28,28,0,0,28,28,0,0,0,0,28,28,28,1,0,0,0,0,0,0

,28,28,0,0,28,28,0,0,0,0,28,132,28,1,0,0,28,0,0,0,28,28,0,0,28,28,0,0,0,0,28,28,28,1,0,0,28,0,0,0,28,28,0,0,28,28,28,28,28,28,28,28,28,1,28,28,28,28,28,28,28,28,0,0,28,28,28,28,28,28,28,28,28,1,28,28,

28,28,28,28,28,28,0,0,0,0,0,0,0,0,0,0,0,1,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Elevator Escape",author="KizanFlandre",id="#1661930561",direction="forward",cost=100,elevation=19,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,105,

105,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,105,105,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,105,105,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,92,92,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,110,110,110,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,110,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,110,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,92,92,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,115,115,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,115,115,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,92,92,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,120,120,120,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,120,120,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,120,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,92,92,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,124,124,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

124,124,124,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="GoGoShooter Baguette",author="mangaka7",id="#1661986141",direction="left",cost=414,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,105,105,2,2,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,105,77,56,56,56,56,105,0,0,0,0,0,0,0,0,0,0,0,105,105,56,77,77,56,56,56,105,0,0,0,0,0,0,0,0,0,0,105,77,56,91,89,77,77,56,56,105,0,0,0,0,0,0,0,0,0,105,56,77,77,56,91,89,77,56,56,56,105,0,0,0,0,0,0,0,10

5,91,56,89,89,77,91,91,77,77,56,56,105,0,0,0,0,0,0,105,77,56,91,56,89,77,56,91,89,77,56,56,105,0,0,0,0,0,105,56,77,77,56,91,89,77,56,91,89,77,56,105,0,0,0,0,0,105,91,89,89,77,56,91,89,77,77,91,89,77,5

6,105,0,0,0,0,105,56,56,91,89,77,77,56,91,89,77,56,91,77,105,0,0,0,0,0,105,77,77,56,91,89,77,56,91,89,77,56,56,105,0,0,0,0,0,105,56,89,77,77,91,89,77,56,56,91,77,56,56,105,0,0,0,0,0,105,56,56,56,77,91

,89,77,56,56,91,77,77,105,0,0,0,0,0,105,56,91,56,89,77,91,89,77,77,56,56,91,105,0,70,70,70,70,0,105,56,56,91,89,77,56,91,56,77,77,56,105,0,0,70,70,70,70,0,105,56,56,91,89,77,77,56,91,89,77,105,0,0,0,0

,0,0,0,0,2,56,56,91,56,89,77,56,91,56,105,0,0,0,0,0,0,0,0,0,2,56,56,56,91,89,77,77,56,105,0,0,0,0,0,76,76,76,76,0,105,56,56,56,56,91,56,105,105,0,0,0,0,0,0,76,76,76,76,0,0,105,105,105,105,105,105,0,0,

0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Akala2 Waiting Room",author="ZpLit",id="#1661997650",direction="forward",cost=92,elevation=-2,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0

,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,111,111,111,111,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,90,51,90,51,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,51,90,51,90,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,90,51,90,51

,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,51,90,51,90,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,90,51,90,51,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,51,51,51,51,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,88,2,2,88,16,0,0,0,0,0,0,0]

});}},

{function Run(){maps.push({name="Rem",author="mangaka7",id="#1661998615",direction="forward",cost=499,elevation=4,map=[0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,66,66,66,66,66,66,60,60,60,60,0,0

,0,0,0,0,0,0,0,66,65,65,65,65,65,65,65,65,64,64,60,0,0,0,0,0,0,0,66,65,65,66,66,66,66,66,66,66,64,64,64,60,0,0,0,0,0,66,65,65,65,65,65,65,65,65,65,65,75,64,64,64,60,0,0,0,0,66,65,65,66,66,66,66,66,66,

66,66,75,64,64,64,64,60,0,0,66,65,66,66,65,65,65,65,65,65,65,65,75,64,64,64,64,60,0,0,66,65,65,65,65,65,65,65,65,65,65,65,64,64,64,64,64,64,60,0,66,65,65,65,65,65,65,65,65,65,65,65,64,64,64,64,64,64,6

0,0,66,65,65,65,66,66,66,66,66,66,66,66,64,64,64,81,64,64,60,0,66,65,66,66,65,65,65,65,65,65,65,65,64,64,64,81,64,64,60,0,66,65,65,65,65,65,64,64,64,64,64,64,64,64,64,81,64,64,60,0,66,65,65,65,65,64,6

4,64,64,64,64,64,64,64,64,64,64,64,60,0,66,65,66,66,65,64,64,64,64,70,0,64,64,64,64,64,64,64,60,0,66,65,65,65,66,65,64,64,70,0,71,71,75,64,64,64,64,60,0,0,0,66,65,86,65,86,64,64,70,73,100,71,75,64,64,

64,64,60,0,0,0,66,65,65,86,65,66,64,70,73,71,71,75,64,64,64,60,0,0,0,0,0,66,86,65,86,65,66,64,70,0,64,64,64,64,60,0,0,0,0,0,0,0,66,65,65,86,65,66,64,64,64,64,64,60,0,0,0,0,0,0,0,0,0,2,2,65,65,66,65,60

,60,60,60,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Supply Room",author="TF2 Pencil",id="#1662005941",direction="forward",cost=265,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,15,15,4,22,15,15,22,22,1,0,0,0,0,1,15,15,15,15,15,96,15,15,15,15,15,15,15,22,1,0,0,0,0,1,15,93,15,93,15,96,15,15,15,15,15,15,15,1

5,1,0,0,0,0,1,15,15,93,15,15,96,15,15,1,19,3,15,15,22,1,0,0,0,0,1,15,93,15,93,15,96,15,15,1,19,15,15,15,15,1,0,0,0,0,1,15,15,15,15,15,96,15,15,1,15,15,15,15,15,1,0,0,0,0,1,1,1,1,1,1,1,15,15,1,19,15,15

,15,22,1,0,0,0,0,0,0,0,0,0,0,1,15,15,1,15,15,15,15,15,1,0,0,0,0,1,1,1,1,1,1,1,15,15,1,19,15,15,15,15,1,0,0,0,0,1,15,15,15,15,15,15,15,15,1,15,15,15,15,22,1,0,0,0,0,1,15,94,15,94,15,15,15,15,1,19,15,15

,15,15,1,0,0,0,0,1,15,15,15,15,15,15,15,15,1,15,15,15,15,15,1,0,0,0,0,1,15,94,15,94,15,15,15,15,1,19,19,15,22,22,1,0,0,0,0,1,15,15,15,15,15,15,15,15,1,100,19,15,22,97,1,0,0,0,0,1,1,1,1,1,1,1,15,15,1,1

,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="UPRAMPS",author="TF2 Pencil",id="#1662006117",direction="forward",cost=181,elevation=18,map=[0,0,0,0,0,0,0,0,0,0,0,0,97,25,0,0,0,0,2,2,40,40,39,38,37,37,0,41,40,39,0,0

,25,25,0,0,0,0,6,6,40,40,39,38,37,37,0,41,40,39,0,0,26,26,0,0,0,0,6,6,41,41,0,0,0,0,0,0,0,38,0,0,27,27,0,0,0,0,6,6,42,42,0,0,0,0,0,36,36,37,0,0,28,28,0,0,0,0,6,6,0,0,0,0,0,0,0,36,36,37,0,0,29,29,0,0,0

,0,6,6,39,39,40,41,41,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,39,39,40,41,41,0,0,35,0,0,0,30,30,29,29,0,0,0,26,26,40,0,0,42,42,0,0,35,0,0,0,30,30,29,29,0,0,0,27,27,41,0,0,43,43,0,0,35,0,0,0,31,31,0,0,0,0,0,28,

28,42,0,0,0,0,0,0,34,0,0,0,31,31,0,0,0,0,0,29,29,43,0,0,39,39,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,39,39,0,0,33,0,0,0,32,32,0,31,30,29,28,27,27,0,0,0,40,40,0,0,33,0,0,0,32,32,0,31,30,29,28,27,27,0,0,

0,41,41,0,0,0,0,0,0,33,33,0,0,0,0,0,28,28,44,44,43,42,42,0,0,14,14,96,14,34,34,0,0,0,0,0,29,29,44,44,43,42,42,0,0,14,14,96,14,34,34,0,0,0,0,0,30,30,24,24,0,0,0,0,0,0,0,0,0,33,33,0,35,34,33,32,31,31,24

,24,0,0,0,0,0,0,0,0,0,33,33,0,35,34,33,32,31,31,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="One Side Than Two",author="TF2 Pencil",id="#1662006286",direction="forward",cost=308,elevation=0,map=[17,17,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,17,17,66,68,68,68,66,66

,66,1,0,0,0,0,0,0,0,0,17,17,17,17,66,1,1,1,66,66,66,1,0,0,0,0,0,0,0,0,17,17,17,17,66,66,66,66,66,66,66,1,0,0,0,0,0,0,0,0,17,17,17,17,1,1,1,1,68,1,66,1,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,1,68,1,66,1,0,0

,0,0,0,17,17,17,17,17,17,17,0,0,0,1,68,1,66,1,0,0,0,0,0,17,132,17,17,17,17,17,0,0,0,1,66,66,66,1,0,0,0,0,0,17,17,17,17,17,17,17,0,0,0,1,17,139,17,1,0,0,0,0,0,17,17,17,17,17,17,17,0,0,0,1,17,17,17,1,0,

0,0,0,0,1,17,1,17,1,17,17,0,0,0,1,1,1,1,1,0,0,0,0,0,1,131,1,133,1,17,17,0,0,0,17,136,1,138,17,0,0,0,0,0,1,1,1,1,1,17,17,0,0,0,17,17,1,17,17,0,0,0,0,0,1,17,17,17,1,17,17,0,0,0,17,17,1,17,17,0,0,0,0,0,1

,17,134,17,1,17,17,0,0,0,17,17,17,17,17,0,0,0,0,0,1,17,17,17,1,17,17,0,0,0,17,17,17,17,17,17,1,1,1,1,1,17,17,17,1,17,17,0,0,0,17,17,17,17,17,17,1,136,17,17,17,17,17,17,1,17,17,0,0,0,17,17,17,17,137,17

,1,1,1,17,17,17,17,17,1,17,17,0,0,0,17,17,17,17,17,17,1,133,17,17,17,17,17,17,1,2,2,0,0,0,17,17,17,17,17,17,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="SNES Rainbow Road",author="TF2 Pencil",id="#1662050164",direction="forward",cost=172,elevation=6,map=[0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,1,1,1,1,1,1

,0,0,0,0,0,0,0,0,0,38,38,38,38,38,1,38,38,38,38,38,38,38,38,38,38,38,0,0,0,38,38,38,38,38,1,38,38,38,38,38,38,38,38,38,38,38,0,0,0,38,38,0,0,0,1,131,38,100,38,1,0,0,0,0,0,38,0,0,0,38,38,0,0,0,1,1,1,1,

1,1,0,0,0,0,0,38,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,0,0,38,38,0,0,0,38,38,38,38,38,38,0,0,0,0,38,0,38,0,0,38,38,0,0,0,38,38,38,38,38,38,0,0,0,0,38,0,38,0,0,38,38,0,0,0,38,38,0,0,0,38,0,0,0

,0,38,126,38,0,0,38,38,0,0,0,38,38,0,0,0,38,0,0,0,0,38,38,38,0,0,38,38,0,0,0,38,38,0,0,0,38,0,0,0,0,0,38,0,0,0,38,38,38,38,38,38,38,0,0,0,38,0,0,0,0,0,38,0,0,0,38,38,38,38,38,38,38,0,0,0,38,0,0,0,0,0,

38,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,38,0,0,0,0,0,0,0,44,44,44,0,0,0,38,0,0,0,0,0,38,0,0,0,44,44,44,44,44,132,44,0,0,0,38,0,0,0,0,0,38,0,0,0,44,44,0,0,44,44,44,0,0,0,38,38,38,38,38,38,38,0,0,0,44

,44,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Uphills",author="TF2 Pencil",id="#1662050224",direction="forward",cost=182,elevation=19,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,5,5,10,66,66,40,39,38,37,36,35,34,33,32,32,32,0,0,0,0,5,5,10,66,66,40,39,38,37,36,35,34,33,32,32,32,0,0,0,0,5,5,10,66,66,10,0,0,0,0,0,0,0,0,31,31,0,0,0,0,5,5,10,66,66,10,0,0,0,0,0,0,0,0,30,30,0,

0,0,0,5,5,10,66,66,10,0,0,0,0,0,0,0,0,29,29,0,0,0,0,5,5,10,66,66,110,110,111,112,113,113,0,0,0,29,29,0,0,0,0,6,6,10,66,66,110,110,111,112,113,113,0,0,0,0,0,0,0,0,0,7,7,10,10,10,10,0,0,0,114,115,0,0,0,

34,34,0,0,0,0,8,8,0,0,0,0,0,0,0,115,115,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,116,116,0,0,0,34,34,0,0,0,0,10,10,0,122,122,121,120,119,118,117,117,0,0,0,34,34,0,0,0,0,11,11,0,122,122,121,120,119,118,117,

117,0,0,0,33,33,0,0,0,0,12,12,0,123,123,0,0,0,0,0,0,0,0,0,32,32,0,0,0,0,13,13,0,124,124,0,0,0,0,0,0,0,0,0,31,31,0,0,0,0,14,14,0,24,24,0,0,0,0,0,0,0,0,0,30,30,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,29,2

9,30,0,32,32,32,32,0,24,24,0,0,0,0,0,0,0,0,0,29,29,30,0,32,32,32,32,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="My Butt",author="Shellbert",id="#1662070743",direction="forward",cost=563,elevation=-2,map=[0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,64,64,64,64,64,64,6

4,62,62,1,1,1,0,0,0,1,1,72,72,1,1,62,64,64,1,64,62,62,62,62,94,94,0,Vector(249,249,250),1,72,72,72,74,74,1,1,62,62,62,1,62,62,62,62,94,94,0,1,1,72,74,74,74,74,74,74,1,62,62,1,62,62,62,62,94,94,1,1,74,

74,74,74,74,74,74,74,74,91,62,1,62,62,62,62,94,94,1,74,74,74,74,70,70,70,70,70,74,70,91,91,62,62,62,62,94,94,74,74,74,74,70,70,70,74,74,70,70,70,70,70,1,1,62,62,94,94,74,74,74,70,70,74,74,74,74,74,74,

70,70,70,1,0,1,1,1,1,70,74,74,70,74,74,74,74,1,1,1,91,91,91,1,0,1,62,93,93,70,70,74,74,74,74,1,1,1,62,62,62,62,1,1,1,62,62,93,93,70,74,74,74,1,1,1,64,64,62,62,62,62,1,62,62,62,62,93,93,74,74,74,1,1,64

,64,64,64,64,62,62,62,1,62,62,62,62,93,93,74,74,1,1,64,64,64,64,64,64,62,62,62,1,62,62,62,62,93,93,74,74,1,64,64,64,64,64,64,64,62,62,1,62,62,62,62,62,93,93,74,70,1,64,64,64,64,64,64,62,62,62,62,62,62

,62,62,62,93,93,70,70,1,64,64,64,64,64,62,62,62,62,62,62,62,62,62,62,93,93,70,70,70,1,64,64,62,62,62,62,62,62,62,62,62,62,62,62,1,1,1,1,1,1,1,1,62,62,62,62,62,62,62,62,62,62,1,1,0,0,0,0,0,0,0,1,1,2,2,

1,1,1,1,1,1,1,1,0,0,0]});}},

{function Run(){maps.push({name="Bumpy Slide",author="MoistNoodlez",id="#1662073754",direction="right",cost=212,elevation=-17,map=[0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,135,135,24,0,0,0,0,0,0,0,0,0,0,7,7,7,7,0,0,24,135,135,24,0,0,0,0,0,0,0,0,0,0,7,135,135,2,0,0,23,135,135,23,0,0,0,0,0,0,0,0,0,0,7,135,135

,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,135,135,7,0,0,21,135,135,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,135,135,20,0,0,0,0,0,0,0,0,0,0,11,135,135,11,0,0,19,135,135,19,0,0,0,0,0,0,0,0,0,0,10,135,135,10,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,135,135,9,0,0,17,135,135,17,0,0,0,0,0,0,0,0,0,0,8,135,135,8,0,0,16,135,135,16,0,0,0,0,0,0,0,0,0,0,7,135,135,7,0,0,15,135,135,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,9,135,135,9,0,0,14,135,135,14,0,12,11,10,0,9,10,11,0,9,9,135,135,9,0,0,14,135,135,135,0,135,135,135,0,135,135,135,0,135,135,135,135,9,0,0,14,135,135,135,0,135,135,135,0,135,135,135,

0,135,135,135,135,9,0,0,14,14,14,14,0,12,11,10,0,9,10,11,0,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Bumpy River",author="MoistNoodlez",id="#1662073959",direction="right",cost=504,elevation=-8,map=[24,2,2,24,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,24,72,72,24,1,18,18,18,18,18

,18,18,18,18,1,0,0,0,0,0,24,72,72,24,1,18,74,74,74,74,74,72,72,18,1,0,0,0,0,0,22,67,67,22,1,18,66,66,74,74,74,72,72,18,1,0,0,0,0,0,22,72,72,22,1,18,67,67,18,18,18,66,66,18,1,16,16,16,16,16,20,67,67,20

,1,16,66,66,16,1,20,67,67,20,1,16,74,74,66,2,20,72,72,20,1,16,66,66,16,1,20,66,66,20,1,16,74,74,66,2,20,66,66,20,1,16,67,67,16,1,18,67,67,18,1,16,71,71,16,16,22,67,67,22,1,18,66,66,18,1,18,66,66,18,18

,16,71,71,16,0,22,66,66,22,1,18,66,66,18,1,18,74,74,74,74,67,71,71,16,0,22,72,72,22,1,18,67,67,18,1,18,74,74,74,74,67,71,71,16,0,22,66,66,22,1,16,66,66,16,1,18,18,18,18,18,16,16,16,16,0,20,67,67,20,1,

16,71,71,16,1,0,0,0,0,0,0,0,0,0,0,20,66,66,20,1,16,67,67,16,1,0,0,0,0,0,0,0,0,0,0,20,72,72,20,1,18,71,71,18,1,0,0,0,0,0,0,0,0,0,0,20,72,72,20,1,18,71,71,18,1,0,0,0,0,0,0,0,0,0,0,20,72,72,20,18,18,71,7

1,18,0,0,0,0,0,0,0,0,0,0,0,20,74,74,74,67,74,71,71,18,0,0,0,0,0,0,0,0,0,0,0,20,74,74,74,67,74,71,71,18,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,18,18,18,18,18,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Platform Walker",author="MoistNoodlez",id="#1662075872",direction="forward",cost=374,elevation=1,map=[93,18,2,2,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,18,18,18,24,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,14,3,3,14,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,14,14,14,24,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,14,91,18,14,24,67,14,14,14,0,0,0,0,19,0,0,0,0,0,0,14,18,14,77,24,67,127,127,14,18,0,0,0,

0,0,19,0,0,0,0,14,14,91,77,24,67,14,14,91,14,77,24,67,0,0,0,0,0,0,0,14,91,18,77,24,67,14,14,91,14,77,24,67,0,19,0,0,0,0,0,14,14,91,77,24,67,14,14,18,14,77,24,67,0,0,0,0,0,0,0,18,14,14,77,24,67,14,14,9

1,14,77,24,67,0,0,0,19,0,0,0,14,91,91,77,24,67,14,14,91,14,77,24,67,0,0,0,0,0,0,0,14,14,18,77,24,67,14,18,14,18,77,24,67,0,0,19,0,0,0,0,14,14,91,77,24,67,127,14,91,14,77,24,67,0,0,0,0,0,0,0,18,126,14,

77,24,67,14,14,91,14,77,24,67,0,0,0,19,0,0,0,14,14,91,77,24,67,14,18,14,18,77,24,67,0,19,0,0,19,0,0,14,14,18,77,24,67,14,14,14,14,77,24,67,0,0,0,0,0,0,0,18,91,14,14,14,14,18,91,18,14,77,24,67,0,19,0,0

,19,0,0,91,14,14,14,14,14,14,14,14,14,77,24,67,0,0,0,0,0,0,0,91,14,18,91,14,18,91,18,14,14,77,24,67,0,0,19,19,0,0,0,14,126,14,14,14,14,14,14,14,128,77,24,67,0,19,2,2,19,0,0]});}},

{function Run(){maps.push({name="Juicer",author="MoistNoodlez",id="#1662076216",direction="right",cost=212,elevation=-7,map=[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,14,14,13,12,11,10,9,8,0,0,0,0,0,0,0,0,0,94,0,0,12,0,0,76,76,76,76,8,7,0,0,0,0,0,0,0,0,9,0,0,10,0,0,76,0,0,76,76,7,6,0,0,0,0,0,0,0,10,0,0,8,0,0,76,

76,76,76,76,76,6,5,0,0,0,0,0,0,11,0,0,6,0,0,76,76,76,76,76,76,76,5,0,0,0,0,0,12,0,0,0,6,0,0,76,76,76,76,76,76,76,5,6,7,8,9,10,11,0,0,0,8,0,0,76,76,76,76,76,76,76,5,0,0,0,0,0,12,0,0,0,10,0,0,76,76,76,7

6,76,76,6,5,0,0,0,0,0,0,11,0,0,12,0,0,76,76,76,76,76,7,6,0,0,0,0,0,0,0,10,0,0,12,0,0,76,76,76,76,8,7,0,0,0,0,0,0,0,0,9,0,0,100,14,13,12,11,10,9,8,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0]});}},

{function Run(){maps.push({name="Water Loop",author="MoistNoodlez",id="#1662077988",direction="left",cost=332,elevation=7,map=[0,0,0,0,0,88,88,2,2,88,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,54,54,54,54,88,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,88,54,72,72,54,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,72,72,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,69,69,54,44,97,0,0,0,0,0,0,0,0,0,0,0,0,0,41,54,69,69,54,44,44,0,0,0,0,0,0,0,0,

41,41,41,96,96,41,54,69,69,54,59,59,0,0,0,0,0,0,0,0,2,41,41,96,96,41,54,69,69,54,59,59,59,59,0,0,0,0,0,0,2,41,41,96,96,41,54,69,69,54,59,66,69,59,59,0,0,0,0,0,41,41,41,96,96,41,54,69,69,54,59,66,69,59

,59,0,0,0,0,0,0,0,0,0,0,41,55,69,69,55,59,59,69,69,59,0,0,0,0,0,0,0,0,0,0,0,55,69,69,55,1,59,59,69,59,59,0,0,0,0,0,0,0,0,0,0,55,72,72,55,1,1,59,69,69,58,88,0,0,0,0,0,0,0,0,0,56,72,72,56,1,1,88,58,69,5

8,88,1,1,1,0,0,0,0,0,0,56,69,69,56,1,1,58,69,69,58,88,1,93,93,0,0,0,0,0,88,57,69,69,57,88,88,58,69,58,58,1,1,56,93,0,0,0,0,0,0,57,69,69,69,57,57,69,69,68,69,69,69,66,56,0,0,0,0,0,0,57,57,57,69,69,69,6

9,58,58,1,1,1,56,94,0,0,0,0,0,0,0,0,57,57,57,57,58,58,0,0,0,1,94,94,0,0,0,0,0,0,0,0,0,88,88,88,88,0,0,0,0,1,1,1]});}},

{function Run(){maps.push({name="Ruin pass",author="Luffaren",id="#1662079029",direction="left",cost=382,elevation=19,map=[0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2,2,0,24,132,19,24,9,0,0,0,0,0,0,0,0,0,0,

5,5,5,5,0,24,19,24,93,19,9,0,67,67,0,0,0,85,5,5,90,5,5,5,5,24,19,24,19,19,9,5,71,71,5,5,5,90,5,5,5,5,5,5,5,67,73,74,74,67,74,74,71,71,74,72,5,5,5,5,89,5,5,90,85,67,73,74,74,67,74,74,74,74,72,72,72,5,6

,5,5,5,5,5,0,19,19,19,19,0,0,5,5,5,74,74,74,74,74,74,74,74,72,5,0,0,89,19,0,0,0,90,5,5,5,5,74,74,74,74,72,74,74,67,0,0,0,19,0,0,0,5,5,65,65,5,5,5,5,5,72,67,67,0,0,0,0,39,0,0,0,5,5,5,65,65,65,65,5,5,67

,0,0,0,0,0,0,85,0,0,0,5,94,5,65,65,65,65,65,5,0,0,0,0,0,0,0,85,0,0,0,0,5,5,5,65,65,65,5,5,0,0,0,0,0,0,0,39,0,0,0,0,5,94,5,5,65,65,65,5,5,0,0,0,0,0,0,19,19,0,0,0,0,5,5,5,5,65,5,5,5,0,0,0,0,0,85,24,20,2

1,0,0,0,0,5,5,5,5,5,5,0,0,67,0,0,24,24,24,24,22,0,0,0,0,85,5,5,5,5,85,0,0,19,0,0,24,90,24,24,23,24,0,0,0,0,85,90,5,90,0,0,0,0,0,93,2,24,24,89,24,24,92,0,0,0,0,0,25,0,0,22,67,0,24,44,2,24,24,24,24,85,0

,0,0,0,0,1,131,1,0,0,0,0,67,93,0,90,24,24,24,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Wait for it",author="TF2 Pencil",id="#1662101215",direction="forward",cost=115,elevation=0,map=[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,0,37,0,37,0,37,0,37,0,37,0,37,0,37,0,37,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,37,0,0,37,0,0,37,0,0,37,0,0,37,0,0,37,17,17,17,17,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,17,17,17,17,0,37,0,37,0,37,0,37,0,37,0,37,0,37,0,37,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

17,17,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,17,132,17,17,17,131,17,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,2,2]});}},

{function Run(){maps.push({name="Canadian Flag",author="TF2 Pencil",id="#1662106376",direction="forward",cost=136,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,119,119,119,1

19,119,119,119,119,1,0,0,0,0,0,0,0,0,0,0,1,119,119,119,119,119,119,119,119,1,0,0,0,0,0,0,0,0,0,0,1,119,119,119,119,119,119,119,119,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1

19,119,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,119,119,119,0,119,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,119,119,119,119,0,1,0,0,0,0,0,0,0,0,0,0,1,0,119,119,119,119,119,119,0,1,0,0,0,0,0,0,0,0,0,0,1,119,119,119,1

19,119,119,119,119,1,0,0,0,0,0,0,0,0,0,0,1,0,119,119,119,119,119,119,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,119,119,119,119,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,119,119,119,0,119,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,119,1

19,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,119,119,119,119,119,119,119,119,1,0,0,0,0,0,0,0,0,0,0,1,119,119,119,119,119,119,119,119,1,0,0,0,0,0,0,0,0,0,0,1,119,119,119,1

19,119,119,119,119,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,19,19,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="One at a time",author="TF2 Pencil",id="#1662106418",direction="forward",cost=328,elevation=0,map=[2,2,0,0,0,0,0,1,7,97,7,7,1,0,0,0,0,0,0,0,7,7,7,0,0,0,0,1,7,7,7,7,1,0,

0,0,0,0,0,0,0,7,7,7,0,0,0,1,7,7,7,7,1,0,0,0,0,0,0,0,0,0,7,7,7,0,0,1,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,7,7,7,0,1,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,0,7,7,7,1,66,66,66,66,1,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,

95,95,95,95,7,7,0,0,0,0,0,0,1,1,1,1,1,1,7,7,7,7,7,7,7,7,1,1,1,1,1,1,7,7,7,66,66,66,96,7,7,7,7,7,7,101,66,66,66,7,7,7,7,7,7,66,66,66,96,7,7,7,7,7,7,101,66,66,66,7,7,100,99,7,7,66,66,66,96,7,7,7,7,7,7,1

01,66,66,66,7,7,7,7,7,7,66,66,66,96,7,7,7,7,7,7,101,66,66,66,7,7,7,1,1,1,1,1,1,7,7,7,7,7,7,7,7,1,1,1,1,1,1,0,0,0,0,0,0,7,7,98,98,98,98,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,1,7,7,7,0,0,0,0,0,0,0

,0,0,0,0,1,66,66,66,66,1,0,7,7,7,0,0,0,0,0,0,0,0,0,0,1,66,66,66,66,1,0,0,7,7,7,0,0,0,0,0,0,0,0,0,1,7,7,7,7,1,0,0,0,7,7,7,0,0,0,0,0,0,0,0,1,7,7,7,7,1,0,0,0,0,7,7,7,0,0,0,0,0,0,0,1,7,7,102,7,1,0,0,0,0,0

,2,2]});}},

{function Run(){maps.push({name="Upward",author="TF2 Pencil",id="#1662106590",direction="right",cost=248,elevation=18,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,1,14,14,14,14,14,14,14,13,12,11,10,9,8,7,6,5,5,0,0,1,14,14,14,14,14,14,14,13,12,11,10,9,8,7,6,5,5,0,0,1,14,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,14,14,1,1,1

,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,14,14,1,34,34,0,30,31,32,33,0,30,30,0,0,23,23,23,2,1,14,14,1,34,34,0,30,31,32,33,0,30,30,0,0,23,23,23,2,1,14,14,1,34,34,0,0,0,0,0,0,31,31,0,0,23,23,0,0,1,92,0,1,34,34,0,

0,0,0,0,0,32,32,0,0,23,23,0,0,1,0,0,1,34,34,0,0,0,0,0,0,33,33,0,0,23,23,0,0,1,0,0,1,34,34,1,118,118,117,116,115,34,34,0,0,23,23,0,0,1,0,0,1,0,0,1,118,118,117,116,115,34,34,0,0,23,23,0,0,1,0,0,1,0,0,1,

119,119,0,0,0,14,14,19,19,22,22,22,0,1,0,0,1,0,0,1,120,120,0,0,0,14,14,100,19,22,22,22,0,1,0,92,1,0,0,1,121,121,1,1,1,1,1,1,1,1,1,22,0,1,14,14,14,126,126,1,122,122,22,135,135,135,135,135,135,135,22,22

,0,1,14,14,14,14,14,1,122,122,22,135,135,135,135,135,135,135,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Flyboys",author="Niikos",id="#1662126466",direction="forward",cost=186,elevation=18,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,1,94

,93,1,132,32,32,32,32,129,0,0,26,26,0,0,65,32,32,32,32,32,94,1,132,32,32,32,32,129,0,0,26,26,0,0,65,32,32,32,32,32,1,1,0,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,34

,0,0,0,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,35,0,0,38,38,38,38,38,65,0,0,26,26,0,0,128,38,38,38,37,36,1,1,38,38,38,38,38,65,0,0,26,26,0,0,128,38,38,38,37,36,94,1,39,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,1,94,9

3,1,40,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,1,1,1,1,41,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,42,42,43,44,44,129,0,0,26,26,0,0,65,44,44,125,0,0,64,64,42,42,43,44,44,129,0,0,26,26,0,0,65,44,44,125,0,0,64,6

4,0,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,26,26,26,131,0,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,44,44,64,64,64,64,64,64,0,0,0,0,0,0,0,0,0

,0,0,0,44,44,44,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,2,2,44,0,0,0]});}},

{function Run(){maps.push({name="SB kinda SUS",author="MoistNoodlez",id="#1662140155",direction="forward",cost=450,elevation=0,map=[1,1,1,62,62,62,62,62,62,62,2,2,1,1,0,Vector(254,254,254),0,0,Vector(

254,254,254),0,1,1,62,62,62,1,1,1,1,62,62,62,62,62,1,1,0,0,0,0,1,1,62,62,62,1,1,1,1,1,62,62,62,62,62,1,0,0,91,91,1,62,62,62,1,1,1,1,1,62,62,121,62,62,62,62,1,91,91,91,1,62,62,1,1,1,1,1,62,62,121,121,1

21,62,62,62,91,91,91,91,1,62,1,1,1,1,1,1,62,121,121,121,62,62,62,91,91,91,91,91,62,62,1,1,1,1,1,62,62,121,121,62,62,62,91,91,91,91,91,0,93,1,1,1,1,1,62,62,121,121,62,62,62,62,91,91,91,91,62,1,1,1,1,1,

1,62,62,121,121,62,62,1,1,1,88,91,91,62,62,1,1,1,1,1,62,62,121,121,62,62,1,0,0,1,1,66,62,62,62,1,94,1,1,1,62,121,121,121,62,1,0,0,1,1,1,76,66,62,62,1,62,1,1,62,121,121,121,62,62,1,0,1,1,77,76,76,76,94

,97,1,62,62,62,121,121,121,62,62,62,1,1,1,76,76,77,77,76,76,62,1,5,5,62,62,121,62,62,62,62,62,1,1,1,76,76,76,77,76,66,1,5,5,5,62,62,62,62,62,62,62,62,62,62,76,76,76,76,77,66,74,5,5,5,5,5,5,5,5,62,62,6

2,62,62,62,62,62,62,62,66,1,1,5,5,5,5,5,5,5,5,5,62,62,62,62,62,62,62,1,1,0,1,1,97,5,5,5,62,62,62,62,62,62,62,62,62,1,1,1,0,0,0,0,1,3,62,62,96,96,96,96,62,62,62,1,1,1,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,1,1,

0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="HenTie",author="MoistNoodlez",id="#1662141148",direction="forward",cost=289,elevation=0,map=[0,0,0,0,0,0,0,0,11,11,11,2,2,11,11,11,11,0,0,0,0,0,0,0,0,0,11,11,13,13,13,

13,13,13,13,13,11,0,0,0,0,0,0,11,11,11,13,13,15,15,15,15,15,15,15,15,13,11,0,0,11,11,11,13,13,13,15,15,17,17,17,17,17,17,17,15,15,13,11,0,13,13,13,13,15,15,17,17,0,0,0,0,0,0,17,17,15,13,11,11,15,15,15

,15,17,17,17,0,0,0,0,0,0,0,0,17,17,15,13,11,15,17,17,17,0,0,0,76,0,0,76,76,76,76,0,0,17,15,13,39,15,17,0,0,0,39,0,76,76,76,76,76,76,76,76,0,39,39,39,11,15,76,0,1,0,39,0,76,0,0,0,0,0,0,0,0,17,15,13,39,

76,76,0,0,0,0,0,0,0,0,0,0,0,19,0,Vector(255,249,254),17,15,13,39,100,76,0,1,0,0,0,0,0,0,0,0,Vector(248,255,253),19,Vector(249,253,252),Vector(253,248,252),39,39,39,11,76,76,0,0,0,0,0,0,0,0,0,0,0,19,0,

0,17,15,13,39,15,17,17,0,0,17,17,0,0,0,Vector(255,255,250),0,93,0,0,0,17,15,13,11,13,15,17,17,17,17,15,17,0,0,0,0,19,0,0,17,15,15,13,11,13,15,15,15,15,15,15,17,17,0,0,0,0,0,17,17,15,13,11,11,11,13,13,

13,13,13,15,15,17,17,0,0,0,17,17,15,15,13,11,0,11,11,11,11,11,11,13,13,15,17,17,17,17,15,15,15,13,13,11,0,0,0,0,0,0,11,11,11,13,15,15,15,15,15,13,13,11,11,11,0,0,0,0,0,0,0,0,0,11,13,13,13,13,13,11,11,

11,0,0,0,0,0,0,0,0,0,0,0,11,11,11,2,2,11,11,0,0,0,0,0]});}},

{function Run(){maps.push({name="MS03 multi tp dest",author="Fara",id="#1662149872",direction="forward",cost=222,elevation=0,map=[0,0,0,0,0,0,7,100,7,0,0,1,0,0,0,30,11,2,2,11,0,0,0,0,0,0,133,7,132,0,0

,0,0,0,0,30,11,11,11,11,0,30,30,0,0,0,0,30,30,0,0,0,0,0,0,30,11,94,11,11,133,7,132,0,0,0,0,0,0,0,0,1,0,0,0,30,90,11,11,1,7,100,7,0,0,0,0,0,0,0,0,0,0,0,0,30,11,89,11,11,0,0,0,0,0,0,7,100,7,0,0,0,0,0,0,

30,11,11,11,11,0,0,0,0,0,0,133,7,132,0,0,1,0,0,0,67,11,11,11,90,0,30,30,0,0,0,0,30,30,0,0,0,0,0,1,11,11,11,11,11,133,7,132,0,0,0,0,0,0,0,0,0,0,0,11,11,11,1,11,11,7,100,7,0,0,0,0,0,0,0,0,0,0,0,11,131,1

34,11,11,89,0,0,0,0,0,0,7,100,7,0,0,0,0,0,11,131,134,11,11,11,0,0,0,0,0,0,133,7,132,0,0,0,0,0,11,11,11,11,11,11,0,30,30,0,0,0,0,30,30,0,0,0,0,0,1,11,11,11,93,11,133,7,132,0,0,0,0,0,0,0,0,1,0,0,0,67,11

,90,11,11,7,100,7,0,0,0,0,0,0,0,0,0,0,0,0,30,11,11,11,11,0,0,0,0,0,0,7,100,7,0,0,0,0,0,0,30,11,11,89,11,0,0,0,0,0,0,133,7,132,0,0,1,0,0,0,30,11,11,11,1,0,30,30,0,0,0,0,30,30,0,0,0,0,0,0,30,11,90,11,11

,133,7,132,0,0,0,0,0,0,0,0,0,0,0,0,30,11,11,11,11,7,100,7,0,0,0,0,0,0,0,0,1,0,0,0,30,11,2,2,11]});}},

{function Run(){maps.push({name="The Superior Nation",author="sivi",id="#1662157748",direction="forward",cost=181,elevation=0,map=[16,2,2,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,16,16,16,16,16,16

,16,16,116,116,0,116,116,16,0,0,0,0,0,0,0,0,0,0,0,0,0,16,116,116,0,116,116,16,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,16,116,116,0,116,116,16,0,0,0,0,0,0,0,0,0,0,0,0,0,16,1

16,116,0,116,116,16,0,0,0,0,0,0,0,0,0,0,0,0,0,16,116,116,0,116,116,16,0,0,0,0,0,0,0,0,0,0,0,0,0,16,116,116,0,116,116,16,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,1

6,1,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,1,16,1,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,16,135,135,36,135,135,16,0,0,0,0,0,0,0,0,0,0,0,0,0,16,135,135,36,135,

135,16,0,0,0,0,0,0,0,0,0,0,0,0,0,16,36,36,36,36,36,16,0,0,0,0,0,0,0,0,0,0,0,0,0,16,135,135,36,135,135,16,0,0,0,0,0,0,0,0,0,0,0,0,0,16,135,135,36,135,135,16,0,0,0,0,0,0,0,0,0,0,0,0,0,16,135,135,36,135,

135,16,0,0,0,0,0,0,16,16,16,16,16,16,16,16,135,135,36,135,135,16,0,0,0,0,0,0,16,2,2,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Bounce House",author="MoistNoodlez",id="#1662157851",direction="forward",cost=664,elevation=0,map=[1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,19,19,19,19,19,19,19,19,19

,19,19,19,19,19,19,19,19,19,1,1,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,19,19,19,19,19,1,1,93,19,14,131,133,131,131,131,131,131,131,14,1,19,19,19,19,19,1,1,

19,14,131,131,131,131,131,133,131,133,131,14,1,19,19,19,19,19,1,1,19,14,131,133,131,131,131,131,131,131,131,14,1,19,19,19,19,19,1,1,19,14,131,131,131,131,133,131,133,131,131,14,1,19,75,75,75,19,1,1,19

,14,131,131,133,131,131,131,131,131,131,14,19,19,75,75,75,19,1,1,19,14,133,131,131,131,131,131,131,133,131,14,19,19,75,75,75,19,1,1,19,14,131,131,133,131,131,131,131,131,131,14,19,19,75,75,75,19,1,1,1

9,14,131,131,131,133,131,131,131,131,131,14,19,19,75,75,75,19,1,1,19,14,131,131,131,131,131,133,131,131,131,14,19,19,75,75,75,19,1,1,19,14,131,133,131,131,131,131,131,131,131,14,1,19,75,75,75,19,1,1,1

9,14,131,131,131,131,133,131,131,133,131,14,1,19,66,66,66,19,1,1,100,19,14,131,133,131,131,131,131,131,131,14,1,19,66,93,66,19,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,19,66,66,66,19,1,1,19,19,19,19,19,19,19,19,

19,19,19,19,19,19,19,19,19,19,1,1,134,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1]});}},

{function Run(){maps.push({name="Squid Game Dalgona",author="TF2 Pencil",id="#1662174986",direction="forward",cost=527,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,130,130,130,130,130,13

0,130,130,15,15,130,130,130,130,38,38,130,130,0,0,130,130,130,38,130,130,130,130,130,130,130,130,130,38,38,38,130,130,0,0,130,130,130,38,38,130,38,38,130,130,130,130,38,38,38,38,130,130,0,0,130,130,38

,38,38,38,38,130,130,130,130,38,38,38,38,38,130,130,0,0,130,38,38,38,38,38,130,130,130,130,38,38,38,38,38,38,130,130,0,0,130,130,38,38,38,38,38,130,130,130,130,38,38,38,38,38,130,130,0,0,130,130,130,3

8,38,130,38,38,130,130,130,130,38,38,38,38,130,130,0,0,130,130,130,38,130,130,130,130,130,130,130,130,130,38,38,38,130,130,0,0,130,130,130,130,130,130,130,130,130,130,130,130,130,130,38,38,130,130,0,0

,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,0,0,130,130,38,38,130,130,130,130,130,130,130,130,38,38,38,130,130,130,0,0,130,38,38,130,130,130,38,38,130,130,130,38,38,38,38,

38,130,130,0,0,130,38,38,38,130,130,130,38,130,130,38,38,38,38,38,38,38,130,0,0,38,38,38,38,38,38,38,38,130,130,38,38,38,38,38,38,38,130,0,0,130,38,38,38,130,130,130,130,130,130,38,38,38,38,38,38,38,1

30,0,0,130,38,38,130,130,130,130,130,130,130,130,38,38,38,38,38,130,130,0,0,130,130,38,38,130,130,130,130,130,130,130,130,38,38,38,130,130,130,0,0,130,130,130,130,130,130,130,130,15,15,130,130,130,130

,130,130,130,130,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="digger",author="iProbie",id="#1662175591",direction="forward",cost=335,elevation=0,map=[0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,5,5,1,1,1,1,1,1,1,1,1,1,1,45,45,91,45,45,45,45,45,45,1,45,45,91,85,45,45,45,45,1,1,45,45,91,45,45,45,45,45,45,1,45,45,91,85,45,45,45,45,1,1,91,

91,1,1,1,1,1,1,1,1,45,45,1,1,1,1,91,91,1,1,45,45,1,1,1,1,1,1,1,1,45,45,1,97,97,1,45,45,1,1,45,45,45,45,91,45,91,45,91,45,45,45,1,85,85,1,85,85,1,1,45,45,45,45,91,45,91,45,91,45,45,45,1,91,91,1,45,45,1

,1,1,1,1,1,1,1,1,1,1,1,1,1,1,45,45,1,45,45,1,1,45,45,91,45,91,45,91,45,91,45,45,91,45,91,91,1,91,91,1,1,45,45,91,45,91,45,91,45,91,45,45,91,45,91,91,1,45,45,1,1,91,91,1,1,1,1,1,1,1,1,1,1,1,45,45,1,45,

45,1,1,45,45,1,0,0,0,0,0,0,0,0,0,1,45,45,1,45,45,1,1,91,91,1,0,0,0,0,0,0,0,0,0,1,91,91,1,45,45,1,1,45,45,1,0,0,0,0,0,0,0,0,0,1,45,45,91,45,45,1,1,45,45,1,0,0,0,0,0,0,0,0,0,1,45,45,91,45,45,1,1,96,96,1

,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Going Down 1",author="TF2 Pencil",id="#1662177407",direction="forward",cost=163,elevation=-12,map=[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,23,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,23,0,43,43,42,41,40,39,39,0,35,34,33,32,31,31,0,0,0,23,23,0,43,43,42,41,40,39,39,0,35,34,33,32,31,31,0,0,0,0,0,1,1,1,1,1,1,0,0,0,35,34,33

,32,31,31,0,0,0,43,43,1,100,39,0,39,0,39,39,0,35,34,33,32,31,31,0,0,0,43,43,1,39,39,39,0,0,39,39,0,35,34,33,32,31,31,0,0,0,42,42,1,39,39,0,0,0,0,0,0,35,34,33,32,31,31,0,0,0,41,41,1,0,39,0,0,0,38,38,0,

35,34,33,32,31,31,0,0,0,40,40,1,39,0,0,0,0,38,38,0,35,34,33,32,31,31,0,0,0,39,39,1,0,0,0,0,0,37,37,0,35,34,33,32,31,31,0,0,0,39,39,0,39,39,0,38,37,36,36,0,35,34,33,32,31,31,0,0,0,39,39,0,39,39,0,38,37

,36,36,0,35,34,33,32,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0]});}},

{function Run(){maps.push({name="Going down type",author="TF2 Pencil",id="#1662177505",direction="right",cost=259,elevation=-17,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,1,1,1,1,0,0

,0,0,0,0,0,0,0,0,22,22,0,0,0,0,1,99,131,1,105,105,105,105,105,105,105,105,2,0,22,22,0,0,0,0,1,32,32,1,105,105,105,105,105,105,105,105,2,0,22,22,0,0,0,0,1,32,32,1,105,105,0,0,0,0,105,0,0,0,22,22,0,0,0,

0,1,0,0,1,105,105,105,105,105,105,105,0,0,0,22,22,0,0,0,0,1,0,0,1,105,105,105,105,105,105,105,0,0,1,22,22,0,0,0,0,1,32,32,1,105,105,0,0,0,0,0,0,0,1,22,22,1,1,1,1,1,0,0,1,105,105,0,0,0,0,0,0,0,1,66,66,

66,66,14,1,1,32,32,1,105,105,105,105,105,0,5,5,0,1,66,66,66,66,14,1,1,0,0,1,105,105,105,105,105,0,5,5,0,1,66,66,66,66,14,1,1,32,32,1,0,0,0,0,0,0,6,6,0,1,66,66,66,66,14,1,1,32,32,1,0,0,0,0,0,0,6,6,0,1,

14,14,14,14,14,1,1,0,0,1,0,0,0,0,0,0,7,7,0,1,14,0,14,1,96,14,14,14,14,98,14,14,0,0,0,0,8,8,0,1,0,14,0,1,14,14,14,14,14,98,14,14,13,12,11,10,9,9,0,1,14,14,14,1,14,132,14,14,14,98,14,14,13,12,11,10,9,9,

0,1,14,97,14,1,14,14,14,14,14,98,14,14,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Up top",author="TF2 Pencil",id="#1662177840",direction="forward",cost=257,elevation=0,map=[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,39,1

00,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,39,39,0,0,0,100,39,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,0,0,0,39,39,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,0,0,0,0,0,53,53,53,53,53,53,53,53,53,5

3,53,53,53,53,53,0,0,0,0,0,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,0,0,0,0,0,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,0,0,0,0,0,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,0,0,0,0,0,53,53,53

,53,53,53,13,13,13,53,53,53,53,53,53,0,0,0,0,0,53,53,53,53,53,53,13,125,13,53,53,53,53,53,53,0,0,0,0,0,53,53,53,53,53,53,13,13,13,53,53,53,53,53,53,0,0,0,0,0,53,53,53,53,53,53,53,53,53,53,53,53,53,53,

53,0,0,0,0,0,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,0,0,0,0,0,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,0,0,0,0,0,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,0,0,0,0,0,53,53,53,53,53,53,53,5

3,53,53,53,53,53,53,53,39,39,0,0,0,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,39,100,0,0,0,39,39,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,100,39,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0]});}},

{function Run(){maps.push({name="Pi",author="TF2 Pencil",id="#1662179039",direction="forward",cost=78,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,32,32,32,12,12,0,0,0,0,0,0,12,0,0,0,0,0

,0,0,0,0,32,32,0,12,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,32,0,32,0,0,12,0,0,0,0,12,0,0,0,0,0,0,0,0,32,0,0,0,0,0,12,0,0,0,0,12,0,0,0,0,0,0,0,32,0,0,0,0,0,0,12,0,0,0,0,12,0,0,0,0,0,0,32,0,0,0,0,0,0,0,12,0,0,0

,0,12,0,0,0,0,0,32,0,0,0,0,0,0,0,0,12,0,0,0,0,12,0,0,32,0,32,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,12,0,32,32,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,12,12,32,32,32,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,12,12,0,0,0,0,0

,0,0,0,12,12,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="surely we will win",author="sivi",id="#1662195868",direction="forward",cost=330,elevation=0,map=[0,0,0,0,1,1,1,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,24,24,24,24,24,24,24,2

4,1,1,0,0,0,0,0,0,0,0,1,24,24,1,24,24,24,24,24,24,24,1,1,1,0,0,0,0,0,1,24,24,1,1,24,24,1,1,24,24,24,24,24,1,1,0,0,0,0,1,24,1,1,1,1,24,24,1,1,24,24,24,24,24,1,1,0,0,1,1,1,1,1,24,1,24,24,24,1,24,24,24,2

4,24,24,1,1,0,1,1,24,1,1,24,1,24,24,24,1,24,24,24,24,24,24,24,1,0,1,1,24,1,24,24,1,24,24,24,1,24,24,24,24,24,24,24,24,1,1,1,24,1,24,1,24,24,24,24,1,24,24,24,24,1,1,24,24,1,1,1,24,24,1,24,24,24,24,24,1

,24,24,24,24,24,1,1,24,1,1,1,24,24,24,24,24,24,24,24,1,24,24,24,24,24,24,1,24,1,1,1,1,1,1,1,24,24,24,24,1,24,24,24,24,24,24,1,24,1,1,1,1,1,24,24,1,24,24,24,1,24,24,24,24,24,24,1,24,1,0,1,1,1,1,24,1,24

,24,24,1,24,24,24,24,24,1,1,24,1,0,1,1,1,1,24,1,24,24,1,1,24,24,24,1,1,1,24,24,1,0,0,1,1,24,24,1,24,24,1,24,24,1,1,1,24,24,24,24,1,0,0,0,0,1,1,24,24,24,1,24,1,1,24,24,24,24,24,1,0,0,0,0,0,0,1,24,24,24

,24,1,1,24,24,24,24,24,1,1,0,0,0,0,0,0,0,1,24,24,24,24,24,24,24,24,24,1,1,0,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,0,0,0,0]});}},

{function Run(){maps.push({name="ladder action",author="Fara",id="#1662200685",direction="forward",cost=192,elevation=0,map=[0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,20,93,100,131,20,0,0,0,0,0,0,0,0,5,5,5,5,0,0,

0,20,20,20,20,20,0,0,0,0,0,0,0,0,5,5,90,5,0,0,0,0,0,14,65,14,0,14,0,3,3,3,3,0,5,5,5,5,0,0,0,0,0,0,0,0,0,14,1,1,1,1,1,0,5,5,89,5,0,0,1,1,0,0,3,1,0,0,1,0,0,0,0,0,5,5,5,5,0,0,1,65,0,0,0,0,0,0,0,0,0,0,0,0

,5,5,5,90,0,0,1,6,65,0,0,0,0,3,1,0,0,0,0,0,90,5,5,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,1,0,0,0,3,1,0,3,1,0,0,0,0,0,5,5,5,5,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,1,6,65,0,0,0,0,3,1,0,0,0

,0,0,5,90,5,5,0,0,1,65,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,1,1,0,0,3,1,0,3,1,0,0,0,0,31,45,45,45,45,31,0,0,0,0,0,0,0,14,1,1,0,0,11,31,31,45,89,45,45,31,31,11,0,0,0,0,0,14,0,3,0,0,0,0,31,45,45,45,45,31

,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,5,132,5,90,22,94,22,1,0,0,1,0,0,0,0,0,0,0,0,0,5,2,2,5,93,22,93,0,0,0,0,0]});}},

{function Run(){maps.push({name="on diagonal",author="Fara",id="#1662207122",direction="forward",cost=288,elevation=0,map=[1,1,2,2,16,0,0,0,0,0,0,67,23,43,43,43,23,43,43,23,1,1,16,16,16,17,0,0,0,0,0,0

,0,0,0,0,0,43,93,43,100,98,1,17,17,17,18,0,0,0,0,0,0,0,0,0,67,23,43,43,98,97,17,1,18,18,18,19,0,0,0,0,0,0,0,0,0,67,0,23,16,16,17,18,1,19,19,19,20,0,0,67,0,92,0,0,0,0,0,43,0,17,17,18,19,1,20,20,20,21,0

,23,43,43,43,0,0,0,0,43,0,0,18,18,19,20,1,21,21,21,22,22,1,1,43,92,0,0,0,43,0,0,0,19,19,20,21,1,22,22,22,22,22,1,43,0,0,0,0,23,0,0,0,0,20,20,21,22,22,22,22,22,22,22,23,67,0,0,0,67,0,0,0,0,0,21,21,22,2

2,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,21,21,0,0,0,0,0,67,0,0,0,67,23,22,22,22,22,22,22,22,21,20,20,0,0,0,0,23,0,0,0,0,43,1,22,22,22,22,22,1,21,20,19,19,0,0,0,43,0,0,0,92,43,1,1

,22,22,21,21,21,1,20,19,18,18,0,0,43,0,0,0,0,43,43,43,23,0,21,20,20,20,1,19,18,17,17,0,43,0,0,0,0,0,92,0,67,0,0,20,19,19,19,1,18,17,16,16,23,0,67,0,0,0,0,0,0,0,0,0,19,18,18,18,1,17,99,96,43,43,23,67,0

,0,0,0,0,0,0,0,0,18,17,17,17,1,96,100,43,93,43,0,0,0,0,0,0,0,0,0,0,0,17,16,16,16,1,1,23,43,43,23,43,43,43,23,67,0,0,0,0,0,0,16,2,2,1,1]});}},

{function Run(){maps.push({name="NameAThingWorseThan",author="Fara",id="#1662207836",direction="forward",cost=344,elevation=0,map=[0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0

,0,0,0,0,0,0,67,67,67,0,0,0,5,5,5,5,5,5,0,0,0,67,67,67,0,0,1,23,23,0,0,5,5,5,5,5,5,5,5,0,0,23,23,1,0,0,23,100,23,3,5,5,5,5,5,5,5,5,5,5,3,23,100,23,0,0,1,23,23,0,5,5,5,5,5,5,5,5,5,5,0,23,23,1,0,0,67,67

,67,0,5,5,70,70,70,70,70,70,5,5,0,67,67,67,0,0,0,0,0,0,5,5,70,70,70,70,70,70,5,5,0,0,0,0,0,0,0,0,0,0,5,5,70,70,70,70,70,70,5,5,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0

,0,5,5,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,5,5,76,76,76,76,76,76,5,5,0,0,0,0,0,0,0,0,0,0,5,5,76,76,76,76,76,76,5,5,0,0,0,0,0,0,67,67,67,0,5,5,76,76,76,76,76,76,5,5,0,67,67,67,0

,0,1,23,23,0,5,5,5,5,5,5,5,5,5,5,0,23,23,1,0,0,23,100,23,3,5,5,5,5,5,5,5,5,5,5,3,23,100,23,0,0,1,23,23,0,0,5,5,5,5,5,5,5,5,0,0,23,23,1,0,0,67,67,67,0,0,0,5,5,5,5,5,5,0,0,0,67,67,67,0,0,0,0,0,0,0,0,0,5

,2,2,5,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Jump Around",author="sivi",id="#1662214706",direction="forward",cost=386,elevation=0,map=[0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,0,0,0,1,93,11,11,5,5,5,5,5,5,11,11,94,1,5

,5,1,0,0,0,1,11,100,11,5,131,5,5,131,5,11,100,11,1,5,5,1,0,0,0,1,11,11,11,5,5,5,5,5,5,11,11,11,1,5,5,1,0,0,0,1,5,5,5,5,5,5,5,5,5,5,5,5,1,6,6,1,0,0,0,1,5,131,5,5,131,5,5,131,5,5,131,5,1,7,7,1,0,0,0,1,5

,5,5,5,5,5,5,5,5,5,5,5,1,8,8,1,0,0,0,1,5,5,5,5,5,5,5,5,5,5,5,5,1,9,9,1,0,0,0,1,5,131,5,5,131,5,5,131,5,5,131,5,1,10,10,1,0,0,0,1,5,5,5,5,5,5,5,5,5,5,5,3,11,11,11,1,0,0,0,1,5,5,5,5,5,5,5,5,5,5,5,3,11,1

1,11,1,0,0,0,1,5,131,5,5,131,5,5,131,5,5,131,5,1,10,10,1,0,0,0,1,5,5,5,5,5,5,5,5,5,5,5,5,1,9,9,1,0,0,0,1,5,5,5,5,5,5,5,5,5,5,5,5,1,8,8,1,0,0,0,1,5,131,5,5,131,5,5,131,5,5,131,5,1,7,7,1,0,0,0,1,5,5,5,5

,5,5,5,5,5,5,5,5,1,6,6,1,0,0,0,1,11,11,11,5,5,5,5,5,5,11,11,11,1,5,5,1,0,0,0,1,11,100,11,5,131,5,5,131,5,11,100,11,1,5,5,1,0,0,0,1,94,11,11,5,5,5,5,5,5,11,11,93,1,5,5,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1

,1,2,2,1,0,0]});}},

{function Run(){maps.push({name="niapS",author="Escalope",id="#1662230820",direction="left",cost=585,elevation=-19,map=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,93,25,26,27,28,29,76,76,76,76,76,76,36

,38,40,42,44,44,1,1,25,25,26,27,28,29,76,76,76,76,76,76,36,38,40,42,44,44,1,1,25,25,26,27,28,29,76,76,76,76,76,76,36,38,40,42,44,44,1,1,25,25,26,27,28,29,76,0,76,0,65,76,36,38,40,42,44,44,1,1,25,25,26

,27,28,29,76,76,76,76,76,76,36,38,40,42,44,44,1,1,25,25,26,27,28,29,76,31,91,65,34,76,36,38,40,42,44,44,1,1,25,25,26,27,28,29,76,31,65,65,65,76,36,38,40,42,44,44,1,1,25,25,26,27,28,29,76,31,0,65,128,7

6,36,38,40,42,44,44,1,1,25,25,26,27,28,29,76,76,76,76,76,76,36,38,40,42,44,44,1,1,25,25,26,27,28,29,76,0,76,0,65,76,36,38,40,42,44,44,1,1,25,25,26,27,28,29,76,76,76,76,76,76,36,38,40,42,44,44,1,1,25,2

5,26,27,28,29,76,76,76,76,76,76,36,38,40,42,44,44,1,1,25,25,26,27,28,29,76,76,76,76,76,76,36,38,40,42,44,44,1,1,25,25,26,27,28,29,76,76,76,76,76,76,36,38,40,42,44,44,1,1,25,25,26,27,28,29,76,76,76,76,

76,76,36,38,40,42,44,44,1,1,25,25,26,27,28,29,76,76,76,76,76,76,36,38,40,42,44,44,1,2,25,25,26,27,28,29,76,76,76,76,76,76,36,38,40,42,44,44,1,2,25,25,26,27,28,29,76,76,76,76,76,76,36,38,40,42,44,94,1,

1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]});}},

{function Run(){maps.push({name="Perfect Squares",author="TF2 Pencil",id="#1662240003",direction="right",cost=156,elevation=-10,map=[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,36,36,36,36,0,35,35,35,35,0,0,0,0,42,0,0,0,0,0,36,36,36,36,36,0,35,35,35,35,0,0,0,0,0,0,0,0,0,0,36,36,36,36,36,0,35,35,35,35,0,0,0,41,41,0,0,0,0,0,36,36,36,36,36,0,35,3

5,35,35,0,0,0,41,41,0,0,0,0,0,36,36,36,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,34,0,0,40,40,40,0,0,0,37,37,37,37,37,37,0,0,0,34,34,34,0,0,40,40,40,0,0,0,37,37,37,37,37,37,0,0,0,34,34

,34,0,0,40,40,40,0,0,0,37,37,37,37,37,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,37,37,37,37,37,0,0,0,0,0,33,33,0,39,39,39,39,0,0,37,37,37,37,37,37,0,0,0,0,0,33,33,0,39,39,39,39,0,0,37,37,37,37,37,37,0,0,0,0,0

,0,0,0,39,39,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,39,39,39,39,0,38,38,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,38,0,0,0,0,0,0,0,12,12,2,0,0,0,0,0,38,38,38,38,38,0,0,0,0,0,0,0,12,12,2,0,0,0

,0,0,38,38,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,38,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Platform Jumps",author="Not Me",id="#1662243006",direction="right",cost=108,elevation=19,map=[0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,13,12,11,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,10,0,5,5,0,0,0,24,24,0,24,24,0,24,24,0,0,0,15,0,9,0,5,5,0,0,0,24,24,0,24,24,0,24,24,0,0,0,16,0,8,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,7,6,5,5

,0,0,0,24,24,0,0,0,0,24,24,0,0,0,18,0,0,0,0,0,0,0,0,24,24,0,0,0,0,24,24,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,24,24,0,24,24,0,0,0,0,24,24,24,2,0,19,0,0,24,24,0,24,24,0,24,24,0,0

,0,0,24,24,24,2,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,24,0,24,24,0,24,24,0,24,24,0,24,24,0,24,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,21,0,0

,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,22,23,23,24,24,24,24,0,24,24,0,24,24,0,24,24,0,24,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="defend for buttons",author="blasian",id="#1662309848",direction="forward",cost=262,elevation=0,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,14,93,95,14,14,95,93,14,90,0,0,0,0,0,0,0,0,0,0,14,77,77,77,14,14,77,77,77,14,0,0,0,0,0,0,0

,0,0,0,14,77,77,77,90,14,77,77,77,14,0,0,0,0,0,0,0,0,0,0,14,77,77,77,14,90,77,77,77,14,0,0,0,0,0,0,0,0,0,0,95,77,77,77,14,14,77,77,77,95,0,0,0,0,0,0,0,93,14,14,100,95,14,14,14,14,14,14,95,100,14,14,93

,0,0,0,0,0,0,0,95,77,77,77,14,14,77,77,77,95,0,0,0,0,0,0,0,0,0,0,14,77,77,77,14,90,77,77,77,14,0,0,0,0,0,0,0,0,0,0,14,77,77,77,90,14,77,77,77,14,0,0,0,0,0,0,0,0,0,0,14,77,77,77,14,14,77,77,77,14,0,0,0

,0,0,0,0,0,0,0,90,14,93,14,14,14,14,93,14,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="water temple",author="blasian",id="#1662310235",direction="forward",cost=410,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,1,14,14,1,

14,14,14,14,14,14,14,0,0,14,14,14,14,14,14,1,1,66,66,1,1,14,14,14,14,14,14,0,0,14,14,14,14,14,1,1,91,66,66,91,1,1,14,14,14,14,14,0,0,14,14,14,14,1,1,91,91,66,66,91,91,1,1,14,14,14,14,0,0,14,14,14,1,1,

91,91,14,14,14,14,91,91,1,1,14,14,14,0,0,14,14,1,1,91,91,65,65,65,65,65,14,91,91,1,1,14,14,0,0,14,1,1,91,91,90,65,90,65,90,65,14,90,91,91,1,1,14,0,0,1,1,94,95,14,14,65,65,65,65,65,14,14,14,95,94,1,1,0

,0,93,14,14,95,14,14,65,65,65,65,65,14,14,14,95,14,14,93,0,0,93,14,14,95,14,14,65,90,65,90,65,14,14,14,95,14,14,93,0,0,1,1,1,1,1,90,65,65,65,65,65,14,90,1,1,1,1,1,0,0,1,1,1,1,1,14,14,14,14,14,14,14,14

,1,1,1,1,1,0,0,93,14,14,14,14,95,14,90,14,14,90,14,95,14,14,14,14,93,0,0,14,14,14,14,14,14,1,1,66,66,1,1,14,14,14,14,14,14,0,0,14,14,14,14,14,14,14,1,14,14,1,14,14,14,14,14,14,14,0,0,14,14,14,14,14,14

,14,1,14,14,1,14,14,14,14,14,14,14,0,0,14,14,14,14,14,14,14,1,14,14,1,14,14,14,14,14,14,14,0,0,100,14,14,14,14,14,93,1,100,100,1,93,14,14,14,14,14,100,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="up or down",author="blasian",id="#1662310481",direction="right",cost=83,elevation=0,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,54,54,14,14,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,3,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,2,0,54,54,54,54,54,54,54,54,54,54,54,54

,54,54,54,54,54,54,2,0,0,0,0,0,0,132,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,20,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}

},

{function Run(){maps.push({name="defend for candy",author="blasian",id="#1662310772",direction="forward",cost=170,elevation=10,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,24,93,93,2

4,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,24,93,93,24,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,24,93,93,24,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,

0,0,131,133,0,0,0,0,0,24,93,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,21,22,23,23,24,24,24,24,23,22,21,0,0,0,0,0,0,0,0,0,20,0,0,0,24,24,24,24,0,0,20,0,0,0,0,0,0,0,0,0,1

9,0,0,0,90,24,24,24,0,0,19,0,0,0,0,0,0,0,0,0,18,0,0,0,24,24,24,90,0,0,18,0,0,0,0,0,0,0,0,0,17,0,0,0,24,90,24,24,0,0,17,0,0,0,0,0,0,0,0,1,16,1,0,0,24,24,24,24,0,1,16,1,0,0,0,0,0,0,0,1,15,1,0,0,24,24,90

,24,0,1,15,1,0,0,0,0,0,0,0,1,14,1,0,0,90,24,24,24,0,1,14,1,0,0,0,0,0,0,0,1,132,1,0,0,24,24,24,90,0,1,134,1,0,0,0,0,0,0,0,1,1,1,0,0,24,90,24,24,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Duality",author="Blasian",id="#1662311124",direction="forward",cost=562,elevation=0,map=[0,77,77,77,77,77,77,0,2,2,0,67,67,67,67,67,67,67,0,0,0,14,14,14,14,14,14,14,14

,14,14,14,14,14,14,14,14,14,0,0,0,14,14,14,14,77,77,77,14,14,67,67,67,14,14,14,14,14,0,0,0,14,14,14,77,77,93,77,14,14,67,93,67,67,14,14,14,14,0,0,0,14,14,77,77,14,14,77,14,14,67,14,14,67,67,14,14,14,0

,0,0,14,77,77,14,14,14,77,14,14,67,14,14,14,67,67,14,14,0,0,0,14,14,14,14,14,14,77,14,14,67,14,14,14,14,67,67,14,0,0,0,14,14,14,14,14,14,77,14,14,67,14,14,14,14,14,14,14,0,0,0,77,14,14,14,14,14,77,14,

14,67,14,14,14,14,14,14,67,0,0,0,77,77,14,14,14,14,77,96,96,67,14,14,14,14,14,67,67,0,0,0,93,77,77,14,14,14,77,14,14,67,14,14,14,14,67,67,93,0,0,0,14,14,77,77,14,14,77,14,14,67,14,14,14,67,67,14,14,0,

0,0,14,14,14,77,77,14,77,14,14,67,14,14,67,67,14,14,14,0,0,0,14,14,14,14,14,14,77,14,14,67,14,14,14,14,14,14,14,0,0,0,14,77,95,95,77,77,77,14,14,67,67,67,95,95,67,14,14,0,0,0,14,77,14,14,14,14,77,14,1

4,67,14,14,14,14,67,14,14,0,0,0,14,77,14,14,14,14,77,14,14,67,14,14,14,14,67,14,14,0,0,0,14,77,14,14,14,14,14,14,14,14,14,14,14,14,67,14,14,0,0,0,14,77,14,14,14,14,97,14,14,100,14,14,14,14,67,14,14,0,

0,0,77,77,77,77,77,77,0,2,2,0,67,67,67,67,67,67,67,0,0]});}},

{function Run(){maps.push({name="Boring Uphill",author="TF2 Pencil",id="#1662316103",direction="forward",cost=216,elevation=19,map=[2,2,0,0,9,9,10,11,12,12,0,0,19,19,20,21,22,22,0,0,5,5,0,0,9,9,10,11,

12,12,0,0,19,19,20,21,22,22,0,0,5,5,0,0,9,9,0,0,13,13,0,0,19,19,0,0,23,23,0,0,5,5,0,0,9,9,0,0,14,14,0,0,19,19,0,0,24,24,0,0,5,5,0,0,9,9,0,0,14,14,0,0,19,19,0,0,24,24,0,0,5,5,0,0,9,9,0,0,14,14,0,0,19,1

9,0,0,24,24,0,0,5,5,0,0,9,9,0,0,14,14,0,0,19,19,0,0,24,24,0,0,5,5,0,0,9,9,0,0,14,14,0,0,19,19,0,0,24,24,0,0,5,5,0,0,9,9,0,0,14,14,0,0,19,19,0,0,24,24,0,0,5,5,0,0,9,9,0,0,14,14,0,0,19,19,0,0,24,24,0,0,

5,5,0,0,9,9,0,0,14,14,0,0,19,19,0,0,24,24,0,0,5,5,0,0,9,9,0,0,14,14,0,0,19,19,0,0,24,24,0,0,5,5,0,0,9,9,0,0,14,14,0,0,19,19,0,0,24,24,0,0,5,5,0,0,9,9,0,0,14,14,0,0,19,19,0,0,24,24,0,0,5,5,0,0,9,9,0,0,

14,14,0,0,19,19,0,0,24,24,0,0,5,5,0,0,9,9,0,0,14,14,0,0,19,19,0,0,24,24,0,0,5,5,0,0,9,9,0,0,14,14,0,0,19,19,0,0,24,24,0,0,5,5,0,0,9,9,0,0,14,14,0,0,18,18,0,0,24,24,0,0,5,5,6,7,8,8,0,0,14,14,15,16,17,1

7,0,0,24,24,0,0,5,5,6,7,8,8,0,0,14,14,15,16,17,17,0,0,2,2,0,0]});}},

{function Run(){maps.push({name="Empty Hall",author="TF2 Pencil",id="#1662316149",direction="forward",cost=245,elevation=6,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,97,10,30,0,0,30,0,30,0,30,0,0,

0,0,0,0,9,9,0,0,10,10,0,0,0,0,0,0,0,0,0,0,1,1,1,1,9,9,0,0,10,10,1,1,1,1,1,1,110,110,110,110,1,1,109,109,109,109,0,0,110,110,110,110,110,110,96,110,110,110,110,110,109,95,109,109,109,109,0,0,110,110,11

0,110,110,110,96,110,110,110,110,110,109,95,109,109,109,109,0,0,10,10,1,1,1,1,1,1,110,110,110,110,1,1,109,109,109,109,0,0,3,3,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,115,116,117,118,119,98,119,118,117,116,115,115,115,0,0,0,114,114,114,114,115,116,117,118,119,98,119,118,117,116,115,115,115,0,0,0,92,0,1,1

,1,1,1,1,1,1,1,1,1,1,115,115,115,0,0,0,0,0,1,15,0,35,0,0,0,35,0,0,0,0,0,115,0,0,0,0,0,0,1,102,0,0,0,35,0,0,0,35,115,115,115,115,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,101,101,101,0,0,0,34,34,0,0,0,0,0,0,

34,99,1,100,0,0,0,115,115,0,0,0,34,34,92,0,0,0,0,0,34,34,1,43,41,39,37,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,1,43,41,39,37,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,2,0,0]});}},

{function Run(){maps.push({name="Top Floor To Trigger",author="TF2 Pencil",id="#1662316298",direction="forward",cost=217,elevation=13,map=[2,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,1,132,9,9,49,

49,49,49,49,50,51,52,53,54,54,0,8,8,0,0,1,9,4,9,49,49,49,49,49,50,51,52,53,54,54,0,8,8,0,0,1,15,15,15,15,0,0,0,0,0,0,0,0,53,53,0,8,8,0,0,1,132,15,15,1,1,0,0,0,0,0,0,0,52,52,0,8,8,8,0,1,1,1,1,1,0,0,0,0

,0,0,0,0,51,51,0,8,131,8,0,0,54,54,54,53,52,51,50,49,48,47,48,49,50,50,0,8,8,8,0,0,54,54,54,53,52,51,50,49,48,47,48,49,50,50,0,0,40,40,40,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,40,40,0,54,54,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,96,96,96,96,0,0,52,52,53,54,55,56,57,58,58,0,0,0,0,0,0,14,14,0,0,0,52,52,53,54,55,56,57,58,58,0,0,40,40,0,40,54,54,54,53,52,52,52,0,

0,0,0,0,59,59,0,0,0,0,0,40,54,54,54,53,52,52,52,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,61,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,62,0,0,41,0,0,0,21,21,61,61,61,61,60,59,58,59,60,61,62

,62,0,0,42,43,43,0,21,21,61,61,61,61,60,59,58,59,60,61,62,62,0,0,0,100,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Bumpy Platforms",author="TF2 Pencil",id="#1662316388",direction="forward",cost=156,elevation=1,map=[0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,34,34,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,35,35,35,0,0,0,35,35,35,35,0,0,0,0,0,0,0,0,0,36,36,36,36,0,0,0,35,132,134,35,0,0,0,0,0,0,0,0,0,35,35,35,35,0,0,0,35,35,35,35,0,0,0,0,0,0,0,0,0,34,34,34,34,0,0,0,36,36

,36,36,0,0,0,0,0,0,0,0,0,33,33,33,33,0,0,0,35,35,35,35,0,0,0,0,0,0,0,0,0,34,34,34,34,0,0,0,34,34,34,34,0,0,0,0,0,0,0,0,0,35,35,35,35,0,0,0,33,33,33,33,0,0,0,0,0,0,0,0,0,36,36,36,36,0,0,0,34,34,34,34,0

,0,0,0,0,0,0,0,0,35,35,35,35,0,0,0,35,35,35,35,0,0,0,0,0,0,0,0,0,34,34,34,34,0,0,0,36,36,36,36,0,0,0,0,0,0,0,0,0,33,33,33,33,0,0,0,35,35,35,35,0,0,0,0,0,0,0,0,0,34,34,34,34,0,0,0,34,34,34,34,0,0,0,0,0

,0,0,0,0,35,35,35,35,0,0,0,33,33,33,33,0,0,0,0,0,0,0,0,0,36,36,36,36,0,0,0,34,34,34,34,0,0,0,0,0,0,0,0,0,35,35,35,35,0,0,0,35,35,35,35,0,0,0,0,0,0,0,0,0,34,34,34,34,0,0,0,36,36,36,36,0,0,0,0,0,0,0,0,0

,33,33,33,33,0,0,0,35,35,35,35,0,0,0,0,0,0,0,0,0,33,131,133,33,0,0,0,35,2,2,35,0,0]});}},

{function Run(){maps.push({name="Chance to go fast",author="TF2 Pencil",id="#1662334196",direction="forward",cost=228,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,12,12,12,12,12,0,0,0,1,20

,20,1,0,0,0,12,12,12,12,12,12,132,137,134,12,0,0,0,1,20,20,1,0,0,0,12,134,137,132,12,12,139,12,139,12,0,0,0,1,20,20,1,0,0,0,12,139,12,139,12,12,134,137,132,12,0,0,0,1,20,20,1,0,0,0,12,132,137,134,12,1

2,12,12,12,12,0,0,0,1,20,20,1,0,0,0,12,12,12,12,12,12,12,0,0,0,0,0,0,1,20,20,1,0,0,0,0,0,0,12,12,12,12,0,0,0,0,1,1,1,20,20,1,1,1,0,0,0,0,12,12,0,0,0,0,0,0,1,20,20,20,20,20,20,1,0,0,0,0,0,0,12,12,0,0,0

,0,1,20,131,133,136,138,20,1,0,0,0,0,12,12,12,12,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,12,12,0,0,0,0,0,0,0,20,132,134,137,139,20,0,0,0,0,0,0,0,12,12,0,0,0,0,0,20,20,20,20,20,20,0,0,0,0,0,12,12,12,12,0,0,0,0

,0,0,20,20,20,20,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,12,12,12,12,13,14,15,16,17,18,19,20,20,19,18,17,16,15,14,13,12,12,12,12,13,14,15,16

,17,18,19,20,20,19,18,17,16,15,14,13,12,12,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Not Really Gravity",author="TF2 Pencil",id="#1662336080",direction="forward",cost=424,elevation=0,map=[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,20,20,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,20,20,20,129,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,20,20,20,20,135,135,135,135,135,135

,135,135,135,135,135,135,135,135,135,135,20,20,20,129,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,20,20,20,20,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,20,20,

20,129,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,20,20,20,20,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,20,20,20,129,135,135,135,135,135,135,135,135,135,135,

135,135,135,135,135,135,20,20,20,20,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,20,20,20,129,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135,20,20,20,20,135,135,135

,135,135,135,135,135,135,135,135,135,135,135,135,135,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2]});}},

{function Run(){maps.push({name="Like to go up",author="TF2 Pencil",id="#1662351415",direction="forward",cost=208,elevation=14,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,44,44,44,44,43,42,41,40,39

,38,37,36,35,34,34,0,0,6,6,0,44,44,44,0,0,0,0,0,0,0,0,0,0,33,33,0,0,6,6,9,9,9,9,1,1,1,1,1,0,0,0,0,0,32,32,0,0,0,0,9,66,66,66,66,9,15,132,1,0,0,0,0,0,31,31,0,0,26,26,9,66,66,66,66,9,15,15,1,0,0,33,33,0

,30,30,0,0,26,26,9,66,66,66,66,9,49,49,1,0,0,33,33,0,30,30,0,0,27,27,9,9,9,9,9,9,49,49,1,0,0,32,32,0,0,0,0,0,28,28,0,0,0,0,0,0,50,50,1,0,0,31,31,0,0,0,0,0,29,29,0,0,0,0,0,0,51,51,1,0,0,30,30,0,0,0,0,0

,0,0,57,57,56,55,54,53,52,52,1,0,0,29,29,0,0,0,0,0,29,29,57,57,56,55,54,53,52,52,1,0,0,29,29,0,32,31,30,29,29,29,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,59,59,0,0,0,0,0,0,0,0,0,0,39,39,39,0,0,0,30,

0,60,60,20,20,0,0,0,0,0,0,0,0,39,131,39,0,0,0,31,0,0,0,0,20,0,0,34,34,35,36,37,38,39,39,39,0,0,0,32,0,0,0,0,20,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,0,0,34,33,32,0,0,32,31,30,29,0,0,29,29,0,20,

20,20,20,0,0,34,33,32,0,0,32,31,30,29,0,0,29,29,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Grand entrance",author="Luffaren",id="#1662353625",direction="forward",cost=456,elevation=16,map=[0,0,0,5,5,5,5,5,5,2,2,5,5,5,5,5,5,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,5

,5,5,5,0,0,0,5,5,94,5,9,6,6,6,6,6,6,6,6,9,5,94,5,5,0,0,5,94,5,5,7,7,7,7,7,7,7,7,7,7,5,5,94,5,0,0,5,5,5,5,11,8,8,8,8,8,8,8,8,11,5,5,5,5,0,0,90,5,5,90,9,9,9,9,9,9,9,9,9,9,90,5,5,90,0,0,5,65,65,5,13,10,1

0,10,10,10,10,10,10,13,5,65,65,5,0,0,5,65,65,5,11,11,11,11,11,11,11,11,11,11,5,65,65,5,0,0,5,65,65,5,15,12,12,12,12,12,12,12,12,15,5,65,65,5,0,67,65,65,65,5,13,13,13,13,13,13,13,13,13,13,5,65,65,65,67

,67,65,65,65,5,17,14,14,14,14,14,14,14,14,17,5,65,65,65,67,67,65,65,65,5,15,15,15,15,15,15,15,15,15,15,5,65,65,65,67,67,65,65,65,5,19,16,16,16,16,16,16,16,16,19,5,65,65,65,67,67,65,65,65,5,17,17,17,17

,17,17,17,17,17,17,5,65,65,65,67,67,65,65,65,5,21,18,18,18,18,18,18,18,18,21,5,65,65,65,67,5,5,5,5,5,19,19,19,19,19,19,19,19,19,19,5,5,5,5,5,5,3,93,93,24,23,20,20,20,20,20,20,20,20,23,24,93,93,3,5,1,2

1,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,1,1,1,90,21,21,21,24,90,21,21,21,21,90,24,21,21,21,90,1,1,0,1,1,1,1,1,1,1,24,2,2,24,1,1,1,1,1,1,1,0]});}},

{function Run(){maps.push({name="Square Cake",author="TF2 Pencil",id="#1662363422",direction="forward",cost=296,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,0,0,0,7,9,9,9,9,9,9,9,9,9,9,9,9,9,7,0,0,0,0,0,7,9,91,91,91,91,91,91,91,91,91,91,91,9,7,0,0,0,0,0,7,9,91,125,9,9,9

,9,9,9,9,125,91,9,7,0,0,0,0,0,7,9,91,9,14,14,14,14,14,14,14,9,91,9,7,0,0,0,0,0,7,9,91,9,14,90,14,125,14,90,14,9,91,9,7,0,0,0,0,0,7,9,91,9,14,14,19,19,19,14,14,9,91,9,7,0,0,0,0,0,7,9,91,9,14,125,19,100

,19,125,14,9,91,9,7,0,0,0,0,0,7,9,91,9,14,14,19,19,19,14,14,9,91,9,7,0,0,0,0,0,7,9,91,9,14,90,14,125,14,90,14,9,91,9,7,0,0,0,0,0,7,9,91,9,14,14,14,14,14,14,14,9,91,9,7,0,0,0,0,0,7,9,91,125,9,9,9,9,9,9

,9,125,91,9,7,0,0,0,0,0,7,9,91,91,91,91,91,91,91,91,91,91,91,9,7,0,0,0,0,0,7,9,9,9,9,9,9,9,9,9,9,9,9,9,7,0,0,0,0,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Teleport Island",author="TF2 Pencil",id="#1662363458",direction="forward",cost=452,elevation=4,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0

,0,0,0,0,0,0,0,0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,0,0,10,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,10,0,0,10,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,10,0,0,10,66,66,

10,10,10,66,66,66,66,66,66,10,10,10,66,66,10,0,0,10,66,66,10,131,10,66,66,66,66,66,66,10,136,10,66,66,10,0,0,10,66,66,10,10,10,66,10,10,10,10,66,10,10,10,66,66,10,0,0,10,66,66,66,66,66,66,10,100,100,1

0,66,66,66,66,66,66,10,0,0,10,66,66,66,66,66,66,10,100,100,10,66,66,66,66,66,66,10,0,0,10,66,66,10,10,10,66,10,10,10,10,66,10,10,10,66,66,10,0,0,10,66,66,10,133,10,66,66,66,66,66,66,10,138,10,66,66,10

,0,0,10,66,66,10,10,10,66,66,66,66,66,66,10,10,10,66,66,10,0,0,10,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,10,0,0,10,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,10,0,0,14,14,14,14,14,14,14,

14,14,14,14,14,14,14,14,14,14,14,0,0,14,132,14,139,14,14,14,14,14,14,14,14,14,14,137,14,134,14,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Need Two Floors",author="TF2 Pencil",id="#1662363693",direction="forward",cost=291,elevation=6,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1

0,10,0,0,0,0,0,97,36,50,50,50,50,50,50,50,50,0,0,0,125,10,1,1,1,0,0,36,36,50,50,50,50,50,50,50,50,0,0,0,50,50,1,102,110,0,0,0,0,10,10,0,0,0,0,50,50,0,0,0,50,50,1,110,110,0,0,36,96,96,96,96,0,0,0,50,50

,50,50,50,50,50,1,74,74,0,0,0,0,50,50,0,0,0,0,50,50,50,50,50,50,50,1,110,74,0,0,36,0,50,50,0,0,0,0,0,0,0,0,0,0,0,1,74,74,0,0,0,0,50,50,1,1,1,1,1,1,1,1,1,1,1,1,110,110,0,0,0,0,50,50,50,50,50,50,110,10,

98,10,110,110,110,110,110,110,0,0,0,0,50,50,50,50,50,50,110,10,98,10,110,110,110,110,110,110,0,0,0,1,1,1,1,1,1,36,1,1,1,1,1,1,1,1,111,111,0,0,0,1,99,36,36,0,0,36,36,36,36,36,36,36,36,1,112,112,0,0,0,1

,1,1,1,1,1,1,1,1,1,1,1,98,98,1,113,113,0,0,0,16,66,66,103,42,42,42,41,40,39,38,37,36,36,1,114,114,0,0,0,16,66,66,1,1,1,1,1,1,1,1,1,1,1,1,115,115,0,0,0,16,16,16,56,56,56,56,56,56,56,56,56,116,101,101,1

16,116,0,0,0,104,16,16,56,56,56,56,56,56,56,56,56,116,101,101,116,116,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Digging Down",author="TF2 Pencil",id="#1662363799",direction="right",cost=362,elevation=-19,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,24,24,1,119,119,118,117,116,115,114,114,1,109,109,108,107,106,105,2,0,24,24,1,119,119,118,117,116,115,

114,114,1,109,109,108,107,106,105,2,1,91,91,1,96,96,1,1,1,1,114,114,1,110,110,1,1,1,1,0,1,124,124,1,119,119,1,97,114,1,91,91,1,111,111,1,114,100,1,0,1,91,91,1,91,91,1,114,114,1,114,114,1,112,112,1,114

,114,1,0,1,124,124,1,119,119,1,115,115,1,91,91,1,113,113,1,91,91,1,0,1,91,91,1,91,91,1,116,116,1,114,114,1,114,114,114,114,114,1,0,1,124,124,1,119,119,91,117,117,1,91,91,1,115,115,1,91,91,1,0,1,123,12

3,1,119,119,91,117,117,1,114,114,1,116,116,1,114,114,1,0,1,122,122,1,91,91,1,1,1,1,91,91,1,117,117,1,91,91,1,0,1,121,121,1,119,119,1,91,91,91,114,114,1,118,118,1,114,114,1,0,1,120,120,1,91,91,1,91,91,

91,114,114,1,119,119,1,91,91,1,0,1,119,119,119,119,119,1,91,91,91,114,114,120,120,120,1,114,114,1,0,1,119,119,119,119,119,1,131,91,91,114,114,120,120,132,1,100,114,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,

1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Is there treasure",author="TF2 Pencil",id="#1662363848",direction="right",cost=298,elevation=-17,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,24,24,0,0,1,132,117,116,115,114,113,112,111,110,109,108,107,107,2,0,124,124,0,0,1,117,117,116,115

,114,113,112,111,110,109,108,107,107,2,1,124,124,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,124,124,1,100,105,105,91,131,105,105,105,105,105,1,0,0,0,0,0,1,123,123,1,105,105,105,91,105,105,105,105,105,105,1,0

,0,0,0,0,1,122,122,1,105,105,105,91,105,105,105,1,106,106,1,0,0,0,0,0,1,121,121,1,105,105,105,105,105,105,105,1,107,107,1,0,0,0,0,0,1,120,120,1,91,91,91,91,91,91,91,1,108,108,1,0,0,0,0,0,1,119,119,1,1

05,105,105,105,105,105,105,1,109,109,1,0,0,0,0,0,1,118,118,1,94,94,94,105,93,93,93,1,110,110,1,0,0,0,0,0,1,117,117,1,94,94,94,105,93,93,93,1,111,111,1,0,0,0,0,0,1,116,116,1,94,94,94,105,93,93,93,1,112

,112,1,0,0,0,0,0,1,115,115,1,1,1,1,1,1,1,1,1,113,113,1,0,0,0,0,0,1,114,114,91,91,91,91,91,91,91,91,91,114,114,1,0,0,0,0,0,1,114,114,91,91,91,91,91,91,91,91,91,114,114,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1

,1,1,1,1,0,0,0,0,0]});}},

{function Run(){maps.push({name="Yellow Gman",author="Escalope",id="#1662366633",direction="left",cost=262,elevation=7,map=[0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,0,0,0,0,0,0,0,0,0,1,25,25,26,25,25,25,25,25,

25,25,1,0,0,0,0,0,0,0,1,27,27,28,27,28,26,26,26,26,26,26,1,0,0,0,0,0,0,0,1,29,29,36,36,36,36,36,27,27,27,27,29,1,0,0,0,0,0,0,1,31,35,35,36,35,35,35,36,36,36,36,31,1,0,0,0,0,0,0,1,33,35,35,35,35,35,35,

35,35,35,35,33,1,0,0,0,0,0,0,1,35,37,35,35,35,35,35,35,35,35,35,1,0,0,0,0,0,0,0,1,37,35,26,35,35,35,35,35,35,35,35,1,0,0,0,0,0,0,0,1,35,26,25,26,31,35,35,35,35,36,36,1,0,0,0,0,0,0,1,33,33,25,93,25,25,

31,27,25,26,26,36,1,0,0,0,0,0,0,1,31,37,27,25,27,29,33,27,28,94,26,34,1,0,0,0,0,0,0,1,32,35,33,27,33,32,35,33,30,26,31,29,1,0,0,0,0,0,0,1,34,35,35,35,32,35,37,31,27,30,31,1,0,0,0,0,0,0,0,1,33,33,35,35

,37,35,37,29,30,31,31,1,0,0,0,0,0,0,0,0,1,33,35,33,25,25,27,27,31,30,29,1,0,0,0,0,0,0,0,1,42,29,34,34,32,26,28,30,28,31,1,0,0,0,0,0,0,0,1,1,40,29,29,34,34,26,30,28,28,31,1,0,0,0,0,0,2,1,32,34,38,31,29

,27,29,29,26,25,29,1,0,0,0,0,0,0,2,32,34,34,36,30,31,31,31,27,27,29,31,1,0,0,0,0,0,0,35,31,30,32,34,32,34,36,31,29,29,31,1,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Flyover",author="sivi",id="#1662377968",direction="forward",cost=286,elevation=0,map=[0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,94,5,5,5,5,3,19,1,0,0,0,0,0

,0,0,0,0,0,0,1,65,90,5,5,90,65,128,1,0,0,0,0,0,0,0,0,0,1,1,1,65,5,5,5,5,65,1,1,0,0,0,0,0,0,0,0,0,1,18,129,65,88,5,5,88,65,1,0,0,0,0,0,0,0,0,0,0,1,1,1,65,5,5,5,5,65,1,1,1,0,0,0,0,0,0,0,0,0,0,1,65,90,5,

5,90,65,128,17,1,0,0,0,0,0,0,0,0,1,1,1,65,5,5,5,5,65,1,1,1,0,0,0,0,0,0,0,0,1,16,129,65,88,5,5,88,65,1,0,0,0,0,0,0,0,0,0,0,1,1,1,65,5,5,5,5,65,1,1,1,0,0,0,0,0,0,0,0,0,0,1,65,90,5,5,90,65,128,15,1,0,0,0

,0,0,0,0,0,1,1,1,65,5,5,5,5,65,1,1,1,0,0,0,0,0,0,0,0,1,14,129,65,88,5,5,88,65,1,0,0,0,0,0,0,0,0,0,0,1,1,1,65,5,5,5,5,65,1,1,1,0,0,0,0,0,0,0,0,0,0,1,65,90,5,5,90,65,128,13,1,0,0,0,0,0,0,0,0,1,1,1,65,5,

5,5,5,65,1,1,1,1,1,0,0,0,0,0,0,1,12,129,65,88,5,5,88,65,1,11,11,93,1,0,0,0,0,0,0,1,1,1,65,5,5,5,5,65,1,11,100,94,1,0,0,0,0,0,0,0,0,1,65,90,5,5,90,65,11,11,11,93,1,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1

,1,0,0]});}},

{function Run(){maps.push({name="Three islands",author="Luffaren",id="#1662395515",direction="left",cost=329,elevation=19,map=[0,0,0,67,67,67,0,0,0,0,0,0,0,0,5,2,2,5,0,0,0,0,67,10,9,48,14,14,67,0,0,0,

0,5,5,5,5,5,5,0,0,67,12,11,14,91,14,14,85,0,0,0,0,5,65,65,5,5,5,0,0,14,13,14,48,48,14,14,14,67,0,0,67,5,65,65,65,65,5,5,0,85,14,90,48,48,90,14,14,14,1,67,5,5,65,65,65,5,5,5,0,14,14,48,48,94,48,48,95,4

8,7,6,5,5,65,65,65,5,5,0,0,85,14,90,48,48,48,48,95,48,7,6,5,5,65,65,5,5,0,0,0,0,14,14,14,91,14,14,14,14,1,0,0,5,5,5,5,5,0,0,0,0,0,14,14,48,48,14,15,14,0,0,0,0,5,5,5,0,0,0,0,0,0,85,14,48,93,15,129,85,0

,0,0,0,67,34,34,67,0,0,0,0,0,0,14,14,14,15,129,0,0,0,0,0,67,34,34,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,34,34,67,0,0,0,0,0,0,0,0,0,0,0,0,24,24,85,0,0,85,85,0,0,0,1,0,77,77,77,77,77,0,0,90,24,24,24,24,

1,14,14,0,0,0,2,24,44,44,44,44,44,24,24,24,24,89,24,24,24,15,15,16,0,0,2,24,44,44,44,44,44,24,24,24,24,24,24,24,24,24,24,17,18,0,1,0,77,77,77,77,77,0,0,90,24,24,24,89,24,24,24,24,19,20,0,0,0,0,0,0,0,0

,0,0,85,24,24,24,24,24,24,24,24,21,0,0,0,0,0,0,0,0,0,0,0,0,85,24,24,89,24,24,23,22,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,0]});}},

{function Run(){maps.push({name="Choose Your Jumps",author="TF2 Pencil",id="#1662408189",direction="right",cost=221,elevation=0,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,8,8,2,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,8,2,0,8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,0,0,8,8,28,0,0,28,0,0,28,0,0,28,0,0,28,0,8,8,0,0,8,8,28,0,0,28,0,0,28,0,0,28,0,0,28,0,8,8,0,0,8,8,1,1,1,1,1,

1,1,1,1,1,1,1,1,1,8,8,0,0,8,8,108,0,108,0,108,0,108,0,108,0,108,0,108,0,8,8,0,0,8,8,108,0,108,0,108,0,108,0,108,0,108,0,108,0,8,8,0,0,8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,96,96,0,0,8,8,48,0,48,0,48,0,48,0,

48,0,48,0,48,0,96,96,0,0,8,8,0,48,0,48,0,48,0,48,0,48,0,48,0,48,96,96,0,0,8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,96,96,0,0,8,8,129,0,0,0,0,8,8,8,8,8,8,8,8,8,96,96,0,0,8,8,129,0,0,0,0,8,8,8,8,8,8,8,8,8,96,96,

0,0,8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0]});}},

{function Run(){maps.push({name="RAMPS",author="TF2 Pencil",id="#1662408274",direction="forward",cost=172,elevation=4,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9

,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,13,13,32,31,30,29,0,0,0,0,0,0,33,32,31,30,29,0,9,9,13,13,32,31,30,29,0,30,31,32,33,0,33,32,31,30,29,0,9,9,13,13,0,0,0,0,0,30,31,32,33,0,0,0,0,0,0,0,9,9,13,13

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,13,13,32,31,30,29,0,0,0,0,0,0,33,32,31,30,29,0,9,9,13,13,32,31,30,29,0,30,31,32,33,0,33,32,31,30,29,0,9,9,13,13,0,0,0,0,0,30,31,32,33,0,0,0,0,0,0,0,9,9,13,13,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,13,13,32,31,30,29,0,0,0,0,0,0,33,32,31,30,29,0,9,9,13,13,32,31,30,29,0,30,31,32,33,0,33,32,31,30,29,0,9,9,13,13,0,0,0,0,0,30,31,32,33,0,0,0,0,0,0,0,9,9,13,13,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,9,9,13,13,32,31,30,29,0,0,0,0,0,0,33,32,31,30,29,0,9,9,13,13,32,31,30,29,0,30,31,32,33,0,33,32,31,30,29,0,9,9,13,13,0,0,0,0,0,30,31,32,33,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Need Two Floors 2",author="TF2 Pencil",id="#1662408316",direction="forward",cost=261,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,125,0,0,52,52,52,52,52,52,112,96,96,112,112,52,52,52,52,52,52,52,0,0,52,52,52,52,52,52,112,96,96,112,112,52,52,52,52,52,52,52,0,0,52,52,1,1,1,38,1

,1,1,1,1,38,38,1,1,1,1,1,0,0,52,52,112,99,1,38,38,38,38,38,38,38,97,1,0,0,0,0,0,0,52,52,112,131,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,38,38,1,1,1,52,52,52,52,52,52,52,52,52,52,52,52,52,0,0,38,38,98,98,38,52

,52,52,52,52,52,52,52,52,52,52,52,52,0,0,38,38,98,98,38,12,132,12,0,0,0,0,0,1,112,112,52,52,0,0,0,0,0,0,0,12,12,12,0,0,0,0,0,1,102,112,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,52,52,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,38,38,101,38,52,52,0,0,38,0,38,0,38,0,38,0,38,0,38,0,38,1,1,1,112,112,0,0,38,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,12,12,0,0,38,38,0,12,12,12,12,12,12,103,103,103,12,12,12,12,12,12,0,0,104,38,0,12,

12,12,12,12,12,103,103,103,12,12,12,12,12,12,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Cave Mines",author="TF2 Pencil",id="#1662408445",direction="left",cost=324,elevation=-19,map=[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,124,124,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,91,91,1,94,93,91,

119,119,118,117,116,115,114,114,114,114,1,0,0,1,91,91,1,94,93,91,119,119,118,117,116,115,114,114,114,114,1,0,0,1,91,91,1,1,1,1,91,91,1,1,1,1,1,91,91,91,1,0,0,1,124,124,123,122,121,120,119,119,1,93,94,

114,91,114,114,114,1,0,0,1,124,124,123,122,121,120,119,119,1,93,94,114,91,114,114,114,1,0,0,1,1,1,1,1,1,1,1,1,1,91,91,91,91,91,91,91,1,0,0,1,1,114,114,114,91,114,114,114,91,114,114,114,91,114,114,114,

1,0,0,1,1,114,114,114,91,114,114,114,91,114,114,114,91,114,114,114,1,0,0,1,1,114,114,114,91,114,114,114,91,114,114,114,91,91,91,91,1,0,0,1,1,100,114,114,91,100,114,114,91,100,114,114,91,114,114,114,1,

0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,95,95,1,0,2,5,5,105,105,105,105,105,106,107,108,109,110,111,112,113,114,114,1,0,2,5,5,105,105,105,105,105,106,107,108,109,110,111,112,113,114,114,1,0,0,0,0,1,1,1,1,1,

1,1,1,1,1,1,1,1,1,1,1,0]});}},

{function Run(){maps.push({name="How to get up",author="TF2 Pencil",id="#1662408472",direction="forward",cost=259,elevation=11,map=[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,22,22,0,11,11,0,0,1,132,7,7,7,7,7,7,7,7,7,7,92,22,22,0,11,11,0,0,1,7,7,7,7,7,7,7,7,7,7,7,92,22,22,0,11,11,11

,0,1,7,1,1,1,1,1,1,1,1,1,1,1,22,22,0,11,131,11,0,1,132,7,7,7,7,7,7,7,7,7,7,3,22,22,0,11,11,11,0,1,7,7,7,7,7,7,7,7,7,7,7,3,22,96,0,0,0,0,0,1,7,1,1,1,1,1,1,1,1,1,1,1,96,96,0,0,0,0,0,1,132,7,7,7,7,7,10,1

25,14,14,18,125,22,22,0,0,0,0,0,1,7,7,7,7,7,125,10,10,14,125,18,18,22,22,0,0,0,0,0,1,7,1,1,1,1,1,1,1,1,1,1,1,22,22,0,0,0,0,0,1,132,7,7,7,7,7,7,7,7,7,7,4,22,22,0,0,0,0,0,1,7,7,7,7,7,7,7,7,7,7,7,4,22,22

,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,2,2,0]});}},

{function Run(){maps.push({name="Open Bridge",author="TF2 Pencil",id="#1662412164",direction="forward",cost=149,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0

,0,0,0,0,0,0,0,0,0,0,0,97,34,0,34,0,14,14,14,14,0,0,0,0,0,0,0,0,34,34,0,34,34,0,34,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0

,34,0,0,0,0,0,0,0,96,96,96,96,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,96,96,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,34,0,34,99,0,0,0,0,98

,98,98,98,0,0,0,0,0,0,0,0,34,0,34,34,0,0,0,0,98,98,98,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,101,101,101,101,0,0,0,

0,0,0,0,0,34,0,0,0,0,0,0,0,101,101,101,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,0,0,0,0,0,0,0,0,34,34,0,0,34,102,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,14,14,14,14,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Teleport Cage",author="TF2 Pencil",id="#1662412202",direction="forward",cost=227,elevation=0,map=[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,1,1,1

,1,1,1,1,1,1,0,0,13,13,0,0,0,0,0,0,0,1,132,13,96,13,96,13,132,1,0,0,13,13,0,0,0,0,0,0,0,1,13,13,96,13,96,13,13,1,0,0,13,13,0,0,0,0,0,0,0,1,1,1,1,13,1,1,1,1,0,0,13,13,0,0,0,0,0,0,0,1,132,13,96,13,96,13

,132,1,0,0,13,13,0,0,0,0,0,0,0,1,13,13,96,13,96,13,13,1,0,0,13,13,0,0,0,0,0,0,0,1,1,1,1,13,1,1,1,1,0,0,13,13,0,0,0,0,0,0,0,1,132,13,96,13,96,13,132,1,0,0,13,13,0,0,0,0,0,0,0,1,13,13,96,13,96,13,13,1,0

,13,13,13,13,13,0,0,0,0,0,1,1,1,1,13,1,1,1,1,0,13,13,13,131,13,0,0,0,0,0,1,132,13,96,13,96,13,132,1,0,13,13,13,13,13,0,0,0,0,0,1,13,13,96,13,96,13,13,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,13,1,1,1,1,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,33,33,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,0,0,35,35,0,37,0,0,37,0,0,37,0,0,37,37,13,13,13,13,0,0,37,37,0,37,0,0,37,0,0,37,0,0,37,97,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0]});}},

{function Run(){maps.push({name="34outh45987g543bgtry",author="TF2 Pencil",id="#1662412259",direction="right",cost=116,elevation=-19,map=[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,24,24,1,

11,11,10,9,8,7,6,5,5,0,0,25,25,0,0,0,0,24,24,1,12,12,10,9,8,7,6,5,5,0,0,25,25,0,0,0,0,24,24,1,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,1,14,14,0,0,0,0,0,25,25,0,0,0,0,0,0,0,0,23,23,1,15,15,0,0,0,0,0,

25,25,0,0,0,5,5,0,0,0,22,22,1,16,16,0,0,0,0,0,0,0,0,0,0,5,5,2,0,0,21,21,1,17,17,0,0,0,0,0,25,25,0,0,0,5,5,2,0,0,20,20,1,18,18,0,0,0,0,0,25,25,0,0,0,5,5,0,0,0,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,19,19,19,19,19,0,0,0,0,0,25,25,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Jump Around 2",author="TF2 Pencil",id="#1662412298",direction="right",cost=489,elevation=0,map=[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,16,16,0,0,0,0,0,0,0,1,16,132,16,16,16,16,1,0,0,1,127,127,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,0,0,1,127,127,1,16,16,128,128,128,128,128,128,128,16,1

6,1,16,16,0,0,1,127,127,1,16,16,128,128,128,128,128,128,128,16,16,1,16,16,0,0,1,127,127,1,127,127,1,1,1,1,1,1,1,126,126,1,16,16,0,0,1,127,127,1,127,127,1,16,16,16,16,16,1,126,126,1,16,16,0,0,1,127,127

,1,127,127,1,16,16,16,16,16,1,126,126,1,16,16,0,0,1,127,127,1,127,127,1,16,16,1,126,126,1,126,126,1,16,16,2,0,1,127,127,1,127,127,1,131,16,1,126,126,1,126,126,1,16,16,2,0,1,127,127,1,127,127,1,1,1,1,1

26,126,1,126,126,1,0,0,0,0,1,127,127,1,16,16,129,129,129,129,16,16,1,126,126,1,0,0,0,0,1,127,127,1,16,16,129,129,129,129,16,16,1,126,126,1,0,0,0,0,1,127,127,1,1,1,1,1,1,1,1,1,1,126,126,1,0,0,0,0,1,16,

16,129,129,129,129,129,129,129,129,129,129,16,16,1,0,0,0,0,1,16,16,129,129,129,129,129,129,129,129,129,129,16,16,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

]});}},

{function Run(){maps.push({name="23qniuwr92h3rn b9e8r",author="TF2 Pencil",id="#1662449465",direction="right",cost=58,elevation=14,map=[0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,22,22,0,22,0,22,0,22,0,0,0,0,10,10,0,0,0,0,0,0,22,22,0,22,0,22,0,22,0,0,0,0,10,10,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,22,22,0,0,0,0,0,22,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,14,14,16,16,18,18,20,20,22,22,0,0,22,0,0,22,2,0,0,0,14,14,16,16,18,18,20,20,

22,22,0,0,22,0,0,22,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Jump in",author="TF2 Pencil",id="#1662449511",direction="forward",cost=154,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,

11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,11,11,11,11,11,11,11,0,0,0,0,0,0,0,11,11,0,0,0,0,11,66,66,66,66

,66,11,0,0,0,0,0,0,0,11,11,0,0,0,0,11,66,66,66,66,66,11,0,0,0,0,0,0,0,11,11,0,0,0,0,11,66,66,66,66,66,11,0,0,0,0,0,0,0,11,11,0,0,0,0,11,66,66,66,66,66,11,0,0,0,128,11,11,11,11,11,0,0,0,0,11,66,66,66,6

6,66,11,0,0,0,128,11,11,11,11,11,0,0,0,0,11,66,66,66,66,66,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,66,66,66,66,66,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,66,66,66,66,66,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,

11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="u34bfu2ifberogbegeob",author="TF2 Pencil",id="#1662449574",direction="left",cost=162,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,19,19,0,2,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,2,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,1

35,135,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,135,135,0

,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,19,19,0,0,39,0,0,19,19,0,0,39,39,0,0,19,19,0,0,0,19,19,0,0,39,0,0,19,19,0,0,39,39,0,0,19,19,0,0,0,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,135,135,0,0,0,0

,0,0,0,0,0,0,0,0,0,135,135,0,0,0,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,19,19,135,135,135,135,135,19,19,135,135,135,135,135,135,19,19,0,0,0,19,19,135,135,135,135,135,19,19,135,135,135,135,135

,135,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Jump Around 3",author="TF2 Pencil",id="#1662449615",direction="left",cost=204,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,8,8,0,2,8,8,8,0,0,1,8,8,8,8,8,8,8,1,0,0,8,8,0,2,8,8,8,0,0,1,8,8,8,8,8,8,8,1,0,0,8,8,0,0,0,8,8,0,0,1,8,8,1,1,1,8,8,1,0,

0,8,8,0,0,0,8,8,0,0,1,8,8,1,0,1,8,8,1,0,0,8,8,0,0,0,8,8,0,0,1,127,127,1,0,1,8,8,1,0,0,127,127,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,

0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,1,126,126,1,0,1,8,8,1,0,1,126,126,1,0,1,8,8,1,0,1,8,8,1,1,1,8,8,1,0,1,8,8,1,1,1,8,8,1,0,1,8,8,8,8,8,8,8,1,0,1,8,8,8,8,8,8,8,1,0,1,8,8,8,8,8,8,

8,1,0,1,8,8,8,8,8,8,8,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="2 Floors and 2 Sides",author="TF2 Pencil",id="#1662449659",direction="forward",cost=132,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,1

7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,0,0,0,0,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,0,0,0,0,57,57,0,0,0,0,0,125,17

,0,0,0,0,0,57,57,0,0,0,0,57,57,0,0,0,0,0,17,17,0,0,0,0,0,57,57,0,0,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,57,57,0,0,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,57,57,0,0,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,57,57,0,0,0

,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,57,57,0,0,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,57,57,0,0,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,57,57,0,0,0,0,57,57,42,100,0,0,0,0,0,0,0,0,100,117,57,57,0,0,0,0,57,57,42,42,0,

0,0,0,0,0,0,0,117,117,57,57,0,0,0,0,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,0,0,0,0,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Need Two Floors 3",author="TF2 Pencil",id="#1662449701",direction="forward",cost=235,elevation=0,map=[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,14,14,14,0,

0,0,0,0,0,0,40,100,0,0,0,14,14,0,0,0,14,97,14,0,0,0,0,0,0,0,40,40,0,0,0,14,125,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,0,0,0,14,14,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,1,114,114,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,99,114,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,54,54,0,0,0,0,0,0,0,0,0,100,40,98,0,96,40,0,40,40,54,54,0,0,0,100,40,3,3,3,3,40,40,98,0,96,4

0,0,40,40,54,54,0,0,0,40,40,1,1,1,1,1,1,1,1,1,1,1,1,1,54,54,0,0,0,54,54,114,114,114,114,114,114,114,114,114,114,114,114,114,54,54,0,0,0,54,54,114,114,114,114,114,114,114,114,114,114,114,114,114,54,54,

0,0,0,54,54,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,40,100,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,34,104,34,0,0,0,0,0,14,14,114,114,114,114,114,114,114,14,14,114,114,114,114,5

4,54,0,0,0,14,14,114,114,114,114,114,114,114,14,14,114,114,114,114,54,54,0,0,0,14,14,0,0,0,0,0,0,0,40,40,1,1,1,1,1,40,0,0,0,2,2,0,0,0,0,0,0,0,100,40,40,103,103,40,40,40,0,0]});}},

{function Run(){maps.push({name="348grf3uyfbv87vbvier",author="TF2 Pencil",id="#1662449761",direction="left",cost=127,elevation=12,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,7,7,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,7,7,0,0,2,19,19,19,19,19,19,19,19,19,19,19,0,0,0,0,8,8,0,0,2,19,19,19,19,19,19,19,19,19,19,19,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,0,10,10,

0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,0,13,13,0,0,0,0,0,0,126,126,0,0,0,0,135,135,0,0,0,0,14,14,0,0,0,0,0,0,

19,19,0,0,0,0,135,135,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,0,16,16,0,0,0,0,0,0,39,39,0,0,0,0,135,135,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,0,18,18,0,0,0,0,0,0,19,19,0,39,3

9,0,19,19,19,19,19,19,19,19,0,0,0,0,0,0,100,19,0,39,39,0,19,19,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Is this stupid",author="TF2 Pencil",id="#1662449841",direction="right",cost=74,elevation=-12,map=[0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,22,22,

0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,125,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,62,61,60,59,58,57,56,55,54,53,52,51,50,10,10,2,0,0,0,62,62,61,60,59,58,57

,56,55,54,53,52,51,50,10,10,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]

});}},

{function Run(){maps.push({name="Jump or go jail",author="TF2 Pencil",id="#1662449897",direction="forward",cost=240,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,12,12,0,0,0,0,0,12,12,12,7,12,7,12,12,0,0,0,0,0,12,12,0,0,0,0,0,12,12,12,7,12,7,12,12,7,7,131,7,7,12,12,0,0,0,0,0,7,7,7,131,7,7,12,12,7,0,0,0,7,12,12,0,0,0,0,0,12,12,0,0,0,0,12,12,7,12,12,12,7,12,12,

0,0,0,0,0,7,7,7,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,12,12,7,0,0,0,1,132,12,12,1,12,12,132,1,0,0,0,0,0,7,7,131,0,0,0,1,12,12,12,1,12,12,12,1,0,0,0,0,0,12,12,7,0,12,97,1,12,12,12,1,12,12,12,1,0,0,0,0,0,7,

7,7,0,12,12,1,96,96,96,1,96,96,96,1,0,0,0,0,0,12,12,7,12,12,12,12,12,12,12,12,12,12,12,1,0,0,0,0,0,12,12,7,12,12,12,12,12,12,12,12,12,12,12,1,0,0,0,0,0,0,0,0,0,12,12,1,96,96,96,1,96,96,96,1,0,0,0,0,0,

0,0,0,0,12,12,1,12,12,12,1,12,12,12,1,0,0,0,0,0,0,0,0,0,12,12,1,12,12,12,1,12,12,12,1,0,0,0,0,0,0,0,0,0,12,12,1,132,12,12,1,12,12,132,1,0,0,0,0,0,0,0,0,0,12,12,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,12,1

2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="whatever this is",author="TF2 Pencil",id="#1662449989",direction="left",cost=129,elevation=0,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,40,40,18,100,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,40,40,18,18,0,0,0,0,0,0,135,135,0,0,0,0,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,135,135,0,0,0,0,0,0,0,0,42,42,0,0,0,0,0,0,0,0,135,135,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

0,0,0,0,18,18,0,0,0,0,0,0,0,0,40,40,18,18,135,135,135,135,135,18,18,18,0,0,0,0,0,0,0,0,40,40,18,18,135,135,135,135,135,18,18,18,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,0,0,0,0,0,0,2,18,18,18,135,135,135,135,135,18,18,0,0,0,0,0,0,0,0,0,2,18,18,18,135,135,135,135,135,18,18,0,

0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="DONT PUSH THE BUTTON",author="sivi",id="#1662465102",direction="forward",cost=236,elevation=0,map=[0,0,0,0,0,0,0,0,0,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,

0,0,0,0,0,0,0,0,0,10,93,93,10,0,0,5,5,5,0,0,10,93,93,10,0,0,0,0,0,10,93,93,10,0,5,5,5,5,5,0,10,93,93,10,0,0,0,0,0,10,93,93,10,0,5,90,5,90,5,0,10,93,93,10,0,0,0,0,0,10,10,10,10,0,5,5,97,5,5,0,10,10,10,

10,0,0,0,0,0,0,5,5,0,0,5,90,5,90,5,0,0,5,5,0,0,0,0,0,0,0,96,96,0,0,5,5,5,5,5,0,0,96,96,0,0,0,0,0,0,0,96,96,0,0,0,90,5,5,0,0,0,96,96,0,0,0,0,0,0,5,5,5,5,0,0,5,5,5,0,0,5,5,5,5,0,0,0,0,0,5,10,10,5,0,0,5,

90,5,0,0,5,10,10,5,0,0,0,0,0,5,10,10,5,0,0,5,5,5,0,0,5,10,10,5,0,0,0,0,0,5,9,9,5,0,0,90,5,5,0,0,5,9,9,5,0,0,0,0,0,5,9,9,5,0,0,5,5,5,0,0,5,9,9,5,0,0,0,0,0,5,8,8,5,0,0,5,5,90,0,0,5,8,8,5,0,0,0,0,0,5,8,8

,5,5,5,5,5,5,5,5,5,8,8,5,0,0,0,0,0,5,8,8,8,7,6,5,5,5,6,7,8,8,8,5,0,0,0,0,0,5,8,8,8,7,6,5,90,5,6,7,8,8,8,5,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,2,2,5,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Mini Tirith",author="ZpLit",id="#1662481187",direction="right",cost=289,elevation=6,map=[0,0,0,0,0,0,0,21,56,2,2,56,21,0,0,0,0,0,0,0,0,0,1,0,0,0,0,21,56,56,56,56,21,0,

0,0,0,0,0,0,0,1,0,1,24,24,24,24,56,90,56,56,21,0,0,0,0,0,0,0,1,94,1,87,22,22,22,22,56,56,56,56,21,0,0,0,0,0,0,0,1,22,22,22,22,22,22,22,56,56,56,56,24,24,24,0,0,0,0,0,1,22,22,22,22,22,22,22,56,56,90,56

,22,22,22,24,24,24,0,0,1,22,22,22,22,22,22,22,56,56,56,56,22,90,22,22,22,22,24,0,1,22,22,24,24,24,24,24,90,56,56,56,22,22,22,22,22,22,22,24,1,22,22,41,40,39,38,37,116,56,56,56,22,22,22,22,90,22,22,88,

1,22,22,41,40,39,38,37,116,56,56,56,90,22,22,22,22,22,22,2,1,22,22,41,40,39,38,37,116,56,56,56,22,22,22,90,22,22,22,2,1,22,22,41,40,39,38,37,116,56,56,56,22,22,22,22,22,22,22,88,1,22,22,24,24,24,24,24

,22,22,22,22,22,90,22,22,22,90,22,24,1,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,24,0,1,22,22,22,22,22,22,22,22,22,22,22,22,22,22,24,24,24,0,0,1,22,22,22,22,22,22,22,22,22,22,22,24,24,24,0,0,

0,0,0,1,94,1,87,22,22,22,22,24,24,24,24,0,0,0,0,0,0,0,0,0,1,0,1,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Shortcut",author="sivi",id="#1662484841",direction="left",cost=290,elevation=0,map=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,90,93,90,93,90,93,90,1,1,1,1,44,1,1,1,1,1,1

4,14,1,2,14,14,14,14,14,14,114,94,114,0,96,65,9,9,131,128,14,14,1,2,14,14,14,14,14,14,114,97,114,0,96,65,9,9,131,128,14,132,1,0,0,0,0,90,14,14,114,94,114,0,96,65,9,9,131,128,14,14,1,0,0,0,0,14,14,14,1

,1,1,1,44,1,1,1,1,1,14,14,1,0,0,0,0,90,14,14,1,0,0,1,1,1,0,0,0,1,14,14,1,0,0,0,0,14,14,14,1,0,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,90,14,14,1,0,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,14,14,14,1,0,0,0,0,0,0,0,0,1,

14,14,1,0,0,0,0,90,14,14,1,0,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,14,14,14,1,0,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,90,14,14,1,0,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,14,14,14,1,0,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,90,1

4,14,1,0,0,0,0,0,0,0,0,1,14,14,1,0,0,0,0,14,14,14,1,1,1,1,1,1,1,1,1,1,14,14,1,0,0,0,0,90,14,14,14,14,14,14,14,14,14,14,14,14,14,14,1,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,1,0,0,0,0,90,1

4,90,14,90,14,90,14,90,14,90,14,90,14,90,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]});}},

{function Run(){maps.push({name="Around Walls 1",author="TF2 Pencil",id="#1662524940",direction="forward",cost=138,elevation=14,map=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0

,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,29,29,29,0,0,29,29,0,0,29,29,9,9,0,0,0,0,0,0,0,29,1,1,1,1

,1,1,1,1,1,1,9,9,0,0,0,0,0,0,0,29,1,15,15,14,13,12,11,10,9,96,9,9,0,0,0,0,0,0,0,0,1,15,15,14,13,12,11,10,9,96,9,9,0,0,0,0,0,0,0,0,1,15,15,1,1,1,1,1,1,1,1,1,0,0,0,0,0,29,29,29,1,15,15,16,17,18,19,20,21

,22,23,23,0,0,0,0,0,97,29,29,1,15,15,16,17,18,19,20,21,22,23,23,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,23,23,0,0,0,0,0,0,0,29,29,0,29,0,29,0,29,0,9,3,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,23,0,0,0

,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,