public static function global_lookup($shortcode)
 {
     $shortcode = strtolower($shortcode);
     if (isset(Downloader::inst()->docs[$shortcode])) {
         return new Download(Downloader::inst()->docs[$shortcode]);
     }
     return false;
 }