<!DOCTYPE html>
<link rel="stylesheet" href="/_astro/about.d094f3b9.css" />
<link rel="stylesheet" href="/_astro/about.499147d6.css" />
<link rel="stylesheet" href="/_astro/not_found.e96c8b9c.css" /><script type="module" src="/_astro/hoisted.0e3086de.js"></script><center class="crt astro-OY4FIY26">
<html>
    <head>
        <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.7">
<title>[?]</title>
<link rel="icon" type="image/gif" href="/images/signature/signatureDS.png">
<link rel="shortcut icon" type="image/png" href="/images/signature/signatureDS.png">
<link rel="apple-touch-icon" href="/images/signature/signatureDS.png">

<!-- meta property -->
<meta property="og:title" content="[?]">
<meta property="og:description" content="What are you looking for?">
<meta property="og:type" content="article">
<meta property="og:url" content="https://tofokyo.com">
<meta property="og:image" content="https://tofokyo.com/images/meta/maintenance.png">
<meta property="og:image:type" content="image/png">  
  
<meta name="description" content="What are you looking for?">
<link rel="stylesheet" type="text/css" href="../styles/lightbox.css">
<script type="text/javascript" src="../scripts/lightbox-plus-jquery.min.js">
</script>

<!-- twitter embed -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@tofokyo">
<meta name="twitter:title" content="[?]">
<meta name="twitter:description" content="What are you looking for?">
<meta name="twitter:image" content="https://tofokyo.com/images/meta/maintenance.png">
<meta name="twitter:image:src" content="https://tofokyo.com/images/meta/maintenance.png">
<meta name="theme-color" content="#300b09">

<meta name="viewport" content="width=1920 height=1080">


  
  
  <script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous">
</script>
<script type="text/javascript" src="https://assets.website-files.com/5e2755779d8b8ea1d6373797/5ea88e92dce9b4b66f165490_zoom.txt"></script>


<script type="text/javascript">
  // <![CDATA[
  var colour="#FFFFFF";
  var sparkles=120;
  
  /****************************
  *  Tinkerbell Magic Sparkle *
  * (c) 2005 mf2fm web-design *
  *  http://www.mf2fm.com/rv  *
  * DON'T EDIT BELOW THIS BOX *
  ****************************/
  var x=ox=400;
  var y=oy=300;
  var swide=800;
  var shigh=600;
  var sleft=sdown=0;
  var tiny=new Array();
  var star=new Array();
  var starv=new Array();
  var starx=new Array();
  var stary=new Array();
  var tinyx=new Array();
  var tinyy=new Array();
  var tinyv=new Array();
  
  window.onload=function() { if (document.getElementById) {
    var i, rats, rlef, rdow;
    for (var i=0; i<sparkles; i++) {
      var rats=createDiv(3, 3);
      rats.style.visibility="hidden";
      document.body.appendChild(tiny[i]=rats);
      starv[i]=0;
      tinyv[i]=0;
      var rats=createDiv(5, 5);
      rats.style.backgroundColor="transparent";
      rats.style.visibility="hidden";
      var rlef=createDiv(1, 5);
      var rdow=createDiv(5, 1);
      rats.appendChild(rlef);
      rats.appendChild(rdow);
      rlef.style.top="2px";
      rlef.style.left="0px";
      rdow.style.top="0px";
      rdow.style.left="2px";
      document.body.appendChild(star[i]=rats);
    }
    set_width();
    sparkle();
  }}
  
  function sparkle() {
    var c;
    if (x!=ox || y!=oy) {
      ox=x;
      oy=y;
      for (c=0; c<sparkles; c++) if (!starv[c]) {
        star[c].style.left=(starx[c]=x)+"px";
        star[c].style.top=(stary[c]=y)+"px";
        star[c].style.clip="rect(0px, 5px, 5px, 0px)";
        star[c].style.visibility="visible";
        starv[c]=50;
        break;
      }
    }
    for (c=0; c<sparkles; c++) {
      if (starv[c]) update_star(c);
      if (tinyv[c]) update_tiny(c);
    }
    setTimeout("sparkle()", 40);
  }
  
  function update_star(i) {
    if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
    if (starv[i]) {
      stary[i]+=1+Math.random()*3;
      if (stary[i]<shigh+sdown) {
        star[i].style.top=stary[i]+"px";
        starx[i]+=(i%5-2)/5;
        star[i].style.left=starx[i]+"px";
      }
      else {
        star[i].style.visibility="hidden";
        starv[i]=0;
        return;
      }
    }
    else {
      tinyv[i]=50;
      tiny[i].style.top=(tinyy[i]=stary[i])+"px";
      tiny[i].style.left=(tinyx[i]=starx[i])+"px";
      tiny[i].style.width="2px";
      tiny[i].style.height="2px";
      star[i].style.visibility="hidden";
      tiny[i].style.visibility="visible"
    }
  }
  
  function update_tiny(i) {
    if (--tinyv[i]==25) {
      tiny[i].style.width="1px";
      tiny[i].style.height="1px";
    }
    if (tinyv[i]) {
      tinyy[i]+=1+Math.random()*3;
      if (tinyy[i]<shigh+sdown) {
        tiny[i].style.top=tinyy[i]+"px";
        tinyx[i]+=(i%5-2)/5;
        tiny[i].style.left=tinyx[i]+"px";
      }
      else {
        tiny[i].style.visibility="hidden";
        tinyv[i]=0;
        return;
      }
    }
    else tiny[i].style.visibility="hidden";
  }
  
  document.onmousemove=mouse;
  function mouse(e) {
    set_scroll();
    y=(e)?e.pageY:event.y+sdown;
    x=(e)?e.pageX:event.x+sleft;
  }
  
  function set_scroll() {
    if (typeof(self.pageYOffset)=="number") {
      sdown=self.pageYOffset;
      sleft=self.pageXOffset;
    }
    else if (document.body.scrollTop || document.body.scrollLeft) {
      sdown=document.body.scrollTop;
      sleft=document.body.scrollLeft;
    }
    else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
      sleft=document.documentElement.scrollLeft;
    sdown=document.documentElement.scrollTop;
    }
    else {
      sdown=0;
      sleft=0;
    }
  }
  
  window.onresize=set_width;
  function set_width() {
    if (typeof(self.innerWidth)=="number") {
      swide=self.innerWidth;
      shigh=self.innerHeight;
    }
    else if (document.documentElement && document.documentElement.clientWidth) {
      swide=document.documentElement.clientWidth;
      shigh=document.documentElement.clientHeight;
    }
    else if (document.body.clientWidth) {
      swide=document.body.clientWidth;
      shigh=document.body.clientHeight;
    }
  }
  
  function createDiv(height, width) {
    var div=document.createElement("div");
    div.style.position="absolute";
    div.style.height=height+"px";
    div.style.width=width+"px";
    div.style.overflow="hidden";
    div.style.backgroundColor=colour;
    return (div);
  }
  // ]]>
  </script>
   

      </head>
</html>
    <center class="astro-HPNW4VWY">
    <a href="/" class="astro-HPNW4VWY">
    </a><div class="headerSection astro-HPNW4VWY" style="transform: translateX(-5px) translateY(0px);"><a href="/" class="astro-HPNW4VWY">
      <br class="astro-HPNW4VWY">
        <img src="/images/signature.png" class="bump2 clockyclickycursor playSound astro-HPNW4VWY">
       </a>
          
          <div class="header astro-HPNW4VWY" style="transform: translateX(0px) translateY(0px); margin-bottom: 0px;">
              <ul class="cen headerbuttonsatthetop astro-HPNW4VWY" style="transform: translateX(30px) translateY(-10px); z-index: 5;">
                  <li class="astro-HPNW4VWY"><a class="playSound clockyclickycursor astro-HPNW4VWY" href="/homepage"><img class="zoom soc astro-HPNW4VWY" src="/images/buttons/navigator/home.gif"></a></li>
                  <li class="astro-HPNW4VWY"><a class="playSound clockyclickycursor astro-HPNW4VWY" href="/galleryportal"><img class="zoom soc astro-HPNW4VWY" src="/images/buttons/navigator/gallery.gif"></a></li>
                  <li class="astro-HPNW4VWY"><a class="playSound clockyclickycursor astro-HPNW4VWY" href="/blog"><img class="zoom soc astro-HPNW4VWY" src="/images/buttons/navigator/blog.gif"></a></li>
                  <li class="astro-HPNW4VWY"><a class="playSound clockyclickycursor astro-HPNW4VWY" href="/downloads"><img class="zoom soc astro-HPNW4VWY" src="/images/buttons/navigator/downloads.gif"></a></li>
                  <li class="astro-HPNW4VWY"><a class="playSound clockyclickycursor astro-HPNW4VWY" href="/about"><img class="zoom soc astro-HPNW4VWY" src="/images/buttons/navigator/about.gif"></a></li>
                  <li class="astro-HPNW4VWY"><a class="playSound clockyclickycursor astro-HPNW4VWY" href="https://www.patreon.com/tofokyo"><img class="zoom soc astro-HPNW4VWY" src="/images/buttons/navigator/patreon.gif"></a></li>
              </ul>
        <marquee scrollamount="7" class="titletxtsub astro-HPNW4VWY" style="margin-top: 0px; width: 100%; background-color:#000000; color: lightgray; transform: translateY(-25px); z-index: 1;"><b class="astro-HPNW4VWY">✦ Welcome to [www.tofokyo.com] ✦ I'd like to feature animators' cartoons on the channel, so if you've got a cartoon you've made that you think would fit the site, please go ahead and email me at <a href="/cdn-cgi/l/email-protection#01756e676e6a786e41756e676e6a786e2f626e6c" class="astro-HPNW4VWY"><span class="__cf_email__" data-cfemail="a6d2c9c0c9cddfc9e6d2c9c0c9cddfc988c5c9cb">[email&#160;protected]</span></a>, I'd love to talk abt that :J  ✦ Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ban-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Bang my- Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ban-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba-Ba- I want you to bang my shit- ✦ </b></marquee>
            </div>
            </div>
  </center>
    
  
      <div class="wrapper astro-OY4FIY26">
        <center class="astro-OY4FIY26">
      <div class="blogpost astro-OY4FIY26" style="float: none; margin-left: -1.75vw;">
      <h1 style="font-family: nueBold; color: white;" class="astro-OY4FIY26">Error 404</h1>
      <center class="astro-OY4FIY26"><p style="font-family: arial; color: white; font-size: 16px; margin-bottom: 10px;" class="astro-OY4FIY26"><i class="astro-OY4FIY26">What were you looking for?</i></p></center>
      <div id="video_box" style="margin-bottom: -2vh;" class="astro-OY4FIY26">
        <video id="artgalleryimage" class="artworkingalleryVideo magnify astro-OY4FIY26" type="video/mp4" autoplay>
            <source src="/videos/Confrontation.mp4" style="z-index: 1; pointer-events: none;" class="astro-OY4FIY26">
        </video>
        <div id="video_overlays" class="astro-OY4FIY26"><img class="video_overlay astro-OY4FIY26" src="/images/videoborder.png" style="z-index: -1;"></div>
    </div>
      </div></center>
        <audio autoplay loop class="astro-OY4FIY26">
          <source src="/music/barrier.wav" type="audio/wav" class="astro-OY4FIY26">
        </audio>
      </div>
    
  </center><script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script>