├── .htaccess ├── 404.html ├── Procfile ├── README.md ├── apache.conf ├── composer.json ├── composer.lock ├── css └── main.css ├── games.html ├── geographic ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── config.php ├── index.html ├── index.php ├── plugins │ ├── TestPlugin.php │ └── UrlFormPlugin.php ├── setup.txt ├── templates │ ├── main.php │ └── url_form.php └── vendor │ ├── athlon1600 │ ├── php-proxy-plugin-bundle │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── DailyMotionPlugin.php │ │ │ ├── TwitterPlugin.php │ │ │ ├── YoutubePlugin.php │ │ │ └── utils.php │ ├── php-proxy │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── src │ │ │ ├── Config.php │ │ │ ├── Event │ │ │ │ └── ProxyEvent.php │ │ │ ├── Html.php │ │ │ ├── Http │ │ │ │ ├── ParamStore.php │ │ │ │ ├── Request.php │ │ │ │ └── Response.php │ │ │ ├── Plugin │ │ │ │ ├── AbstractPlugin.php │ │ │ │ ├── BlockListPlugin.php │ │ │ │ ├── CookiePlugin.php │ │ │ │ ├── HeaderRewritePlugin.php │ │ │ │ ├── ProxifyPlugin.php │ │ │ │ └── StreamPlugin.php │ │ │ ├── Proxy.php │ │ │ ├── Redis.php │ │ │ └── helpers.php │ │ └── tests │ │ │ └── TestCase.php │ └── youtube-downloader │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Procfile │ │ ├── README.md │ │ ├── app.json │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── public │ │ ├── index.html │ │ ├── stream.php │ │ └── video_info.php │ │ ├── src │ │ ├── Browser.php │ │ ├── Parser.php │ │ ├── SignatureDecoder.php │ │ ├── YouTubeDownloader.php │ │ └── YoutubeStreamer.php │ │ └── tests │ │ └── YouTubeTest.php │ ├── autoload.php │ └── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json ├── gfiles ├── 2048 │ ├── .gitignore │ ├── .jshintrc │ ├── CONTRIBUTING.md │ ├── LICENSE.txt │ ├── README.md │ ├── Rakefile │ ├── favicon.ico │ ├── index.html │ ├── js │ │ ├── animframe_polyfill.js │ │ ├── application.js │ │ ├── bind_polyfill.js │ │ ├── classlist_polyfill.js │ │ ├── game_manager.js │ │ ├── grid.js │ │ ├── html_actuator.js │ │ ├── keyboard_input_manager.js │ │ ├── local_storage_manager.js │ │ └── tile.js │ ├── meta │ │ ├── apple-touch-icon.png │ │ ├── apple-touch-startup-image-640x1096.png │ │ └── apple-touch-startup-image-640x920.png │ └── style │ │ ├── fonts │ │ ├── ClearSans-Bold-webfont.eot │ │ ├── ClearSans-Bold-webfont.svg │ │ ├── ClearSans-Bold-webfont.woff │ │ ├── ClearSans-Light-webfont.eot │ │ ├── ClearSans-Light-webfont.svg │ │ ├── ClearSans-Light-webfont.woff │ │ ├── ClearSans-Regular-webfont.eot │ │ ├── ClearSans-Regular-webfont.svg │ │ ├── ClearSans-Regular-webfont.woff │ │ └── clear-sans.css │ │ ├── helpers.scss │ │ ├── main.css │ │ └── main.scss ├── astray │ ├── Box2dWeb.min.js │ ├── README.md │ ├── Three.js │ ├── ball.png │ ├── brick.png │ ├── concrete.png │ ├── index.html │ ├── jquery.js │ ├── keyboard.js │ └── maze.js ├── breaklock │ ├── .gitignore │ ├── LICENSE │ ├── app.css │ ├── app.js │ ├── assets │ │ ├── banner.png │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── robotomono-light-webfont.ttf │ │ │ ├── robotomono-light-webfont.woff │ │ │ └── robotomono-light-webfont.woff2 │ │ ├── icons │ │ │ ├── icon-128x128.png │ │ │ ├── icon-144x144.png │ │ │ ├── icon-152x152.png │ │ │ ├── icon-192x192.png │ │ │ ├── icon-256x256.png │ │ │ └── ios-180x180.png │ │ ├── intro.svg │ │ ├── ios-startup │ │ │ ├── startup-1080x1920.png │ │ │ ├── startup-640x1136.png │ │ │ ├── startup-640x960.png │ │ │ └── startup-750x1334.png │ │ └── vectors │ │ │ ├── cover.svg │ │ │ └── icon.svg │ ├── index.html │ ├── lab │ │ ├── bruteCalc.js │ │ └── cover_generator.js │ ├── manifest.json │ ├── package.json │ ├── readme.md │ ├── service-worker.js │ ├── src │ │ ├── _variables.scss │ │ ├── app.js │ │ ├── config.js │ │ ├── controllers │ │ │ ├── countdown │ │ │ │ ├── countdown.ctrl.js │ │ │ │ └── countdown.scss │ │ │ ├── extender │ │ │ │ ├── extender.ctrl.js │ │ │ │ └── extender.scss │ │ │ ├── game │ │ │ │ ├── game.ctrl.js │ │ │ │ └── game.scss │ │ │ ├── history │ │ │ │ ├── history.ctrl.js │ │ │ │ └── history.scss │ │ │ ├── lock │ │ │ │ ├── lock.ctrl.js │ │ │ │ └── lock.scss │ │ │ ├── menu │ │ │ │ ├── menu.ctrl.js │ │ │ │ └── menu.scss │ │ │ ├── option │ │ │ │ ├── option.ctrl.js │ │ │ │ └── option.scss │ │ │ ├── readme.md │ │ │ ├── selector │ │ │ │ ├── selector.ctrl.js │ │ │ │ └── selector.scss │ │ │ ├── statusBar │ │ │ │ ├── statusBar.ctrl.js │ │ │ │ └── statusBar.scss │ │ │ └── summary │ │ │ │ ├── summary.ctrl.js │ │ │ │ ├── summary.scss │ │ │ │ └── summaryFeedback.js │ │ ├── models │ │ │ └── pattern.js │ │ ├── style.scss │ │ └── utils │ │ │ ├── airportText.js │ │ │ ├── color.js │ │ │ ├── dom.js │ │ │ ├── leftPadNum.js │ │ │ ├── patternSVG.js │ │ │ └── polyfill.js │ └── webpack.config.js ├── cookies │ ├── DungeonGen.js │ ├── README.md │ ├── ajax.js │ ├── base64.js │ ├── dungeons.js │ ├── img │ │ ├── BGgarden.jpg │ │ ├── alchemylab.png │ │ ├── alchemylabBackground.png │ │ ├── alchemylabIcon.png │ │ ├── alteredGrandma.png │ │ ├── antiGrandma.png │ │ ├── antimattercondenser.png │ │ ├── antimattercondenserBackground.png │ │ ├── antimattercondenserIcon.png │ │ ├── ascendBox.png │ │ ├── ascendInfo.png │ │ ├── ascendSlot.png │ │ ├── ascendWisp.png │ │ ├── ascendedBakingPod.png │ │ ├── bank.png │ │ ├── bankBackground.png │ │ ├── bankGrandma.png │ │ ├── bgBlack.jpg │ │ ├── bgBlue.jpg │ │ ├── bgGold.jpg │ │ ├── bgMoney.jpg │ │ ├── bgMoneyChart.jpg │ │ ├── bgRed.jpg │ │ ├── bgWhite.jpg │ │ ├── blackGradient.png │ │ ├── blackGradientLeft.png │ │ ├── blackGradientSmallTop.png │ │ ├── bracketPanelLeftS.png │ │ ├── bracketPanelRightS.png │ │ ├── brokenCookie.png │ │ ├── brokenCookieHalo.png │ │ ├── buildings.png │ │ ├── bunnies.png │ │ ├── bunnyGrandma.png │ │ ├── buttonTile.jpg │ │ ├── caramelWave.png │ │ ├── chancemaker.png │ │ ├── chancemakerBackground.png │ │ ├── chocolateMilkWave.png │ │ ├── clayBG.jpg │ │ ├── contract.png │ │ ├── control.png │ │ ├── cookieShower1.png │ │ ├── cookieShower2.png │ │ ├── cookieShower3.png │ │ ├── cosmicGrandma.png │ │ ├── cursor.png │ │ ├── cursoricon.png │ │ ├── darkNoise.jpg │ │ ├── darkNoise.png │ │ ├── darkNoiseTopBar.jpg │ │ ├── dragon.png │ │ ├── dragonBG.png │ │ ├── dragonFrame.png │ │ ├── dungeonFactory.png │ │ ├── dungeonIcons.png │ │ ├── dungeonOverlay.png │ │ ├── dungeonTiles.png │ │ ├── easterEggs.png │ │ ├── elfGrandma.png │ │ ├── empty.png │ │ ├── emptyFrame.png │ │ ├── factory.png │ │ ├── factoryBackground.png │ │ ├── factoryIcon.png │ │ ├── farm.png │ │ ├── farmBackground.png │ │ ├── farmIcon.png │ │ ├── farmerGrandma.png │ │ ├── favicon.ico │ │ ├── featherLeft.png │ │ ├── featherRight.png │ │ ├── filler.png │ │ ├── fractalEngine.png │ │ ├── fractalEngineBackground.png │ │ ├── frameBorder.png │ │ ├── frostedReindeer.png │ │ ├── gardenPlants.png │ │ ├── gardenPlots.png │ │ ├── gardenTip.png │ │ ├── girlscoutChip.png │ │ ├── girlscoutCrumb.png │ │ ├── girlscoutDoe.png │ │ ├── girlscoutLucky.png │ │ ├── glint.jpg │ │ ├── goldCookie.png │ │ ├── grandma.png │ │ ├── grandmaBackground.png │ │ ├── grandmaIcon.png │ │ ├── grandmas1.jpg │ │ ├── grandmas2.jpg │ │ ├── grandmas3.jpg │ │ ├── grandmasGrandma.png │ │ ├── grimoireBG.png │ │ ├── heartStorm.png │ │ ├── hearts.png │ │ ├── heavenRing1.jpg │ │ ├── heavenRing2.jpg │ │ ├── heavenlyMoney.png │ │ ├── icons.png │ │ ├── imperfectCookie.png │ │ ├── infoBG.png │ │ ├── infoBGfade.png │ │ ├── levelUp.png │ │ ├── linkPulse.gif │ │ ├── linkPulse.png │ │ ├── luckyGrandma.png │ │ ├── mapBG.jpg │ │ ├── mapIcons.png │ │ ├── mapTiles.png │ │ ├── marbleBG.jpg │ │ ├── marshmallows.png │ │ ├── metaGrandma.png │ │ ├── milk.png │ │ ├── milkBanana.png │ │ ├── milkBlack.png │ │ ├── milkBlood.png │ │ ├── milkBlueFire.png │ │ ├── milkBlueberry.png │ │ ├── milkCaramel.png │ │ ├── milkChocolate.png │ │ ├── milkFire.png │ │ ├── milkGold.png │ │ ├── milkGreenFire.png │ │ ├── milkHoney.png │ │ ├── milkLime.png │ │ ├── milkOrange.png │ │ ├── milkPlain.png │ │ ├── milkRaspberry.png │ │ ├── milkStars.png │ │ ├── milkStrawberry.png │ │ ├── milkVanilla.png │ │ ├── milkWave.png │ │ ├── milkZebra.png │ │ ├── mine.png │ │ ├── mineBackground.png │ │ ├── mineIcon.png │ │ ├── minerGrandma.png │ │ ├── money.png │ │ ├── mysteriousHero.png │ │ ├── mysteriousOpponent.png │ │ ├── mysticBG.jpg │ │ ├── nest.png │ │ ├── orangeWave.png │ │ ├── panelBG.png │ │ ├── panelGradientBottom.png │ │ ├── panelGradientLeft.png │ │ ├── panelGradientRight.png │ │ ├── panelGradientTop.png │ │ ├── panelHorizontal.png │ │ ├── panelMenu.png │ │ ├── panelMenu2.png │ │ ├── panelMenu3.png │ │ ├── panelVertical.png │ │ ├── pantheonBG.png │ │ ├── perfectCookie.png │ │ ├── pieFill.png │ │ ├── portal.png │ │ ├── portalBackground.png │ │ ├── portalIcon.png │ │ ├── portraitChip.png │ │ ├── portraitCrumb.png │ │ ├── portraitDoe.png │ │ ├── portraitLucky.png │ │ ├── prestigeBar.jpg │ │ ├── prestigeBarCap.png │ │ ├── prism.png │ │ ├── prismBackground.png │ │ ├── rainbowGrandma.png │ │ ├── raspberryWave.png │ │ ├── roundFrameBorder.png │ │ ├── roundedPanelBG.png │ │ ├── roundedPanelBGS.png │ │ ├── roundedPanelLeft.png │ │ ├── roundedPanelLeftS.png │ │ ├── roundedPanelRight.png │ │ ├── roundedPanelRightS.png │ │ ├── santa.png │ │ ├── sentientFurnace.png │ │ ├── shadedBorders.png │ │ ├── shadedBordersGold.png │ │ ├── shadedBordersRed.png │ │ ├── shadedBordersSoft.png │ │ ├── shine.png │ │ ├── shineGold.png │ │ ├── shineRed.png │ │ ├── shineSpoke.png │ │ ├── shinyWrinkler.png │ │ ├── shinyWrinklerBits.png │ │ ├── shipment.png │ │ ├── shipmentBackground.png │ │ ├── shipmentIcon.png │ │ ├── smallCookies.png │ │ ├── smallDollars.png │ │ ├── snow.jpg │ │ ├── snow2.jpg │ │ ├── sparkles.jpg │ │ ├── spellBG.png │ │ ├── spinnyBig.png │ │ ├── spinnySmall.png │ │ ├── spookyCookie.png │ │ ├── starbg.jpg │ │ ├── storeTile.jpg │ │ ├── sugarLump.png │ │ ├── temple.png │ │ ├── templeBackground.png │ │ ├── templeGrandma.png │ │ ├── timemachine.png │ │ ├── timemachineBackground.png │ │ ├── timemachineIcon.png │ │ ├── timerBars.png │ │ ├── transmutedGrandma.png │ │ ├── upgradeFrame.png │ │ ├── upgradeFrameHeavenly.png │ │ ├── upgradeFrameOld.png │ │ ├── upgradeFrameShadowOld.png │ │ ├── upgradeHighlight.jpg │ │ ├── upgradeHighlight.png │ │ ├── upgradeSelector.png │ │ ├── weeHoodie.png │ │ ├── winterFrame.png │ │ ├── winterWrinkler.png │ │ ├── witchGrandma.png │ │ ├── wizardtower.png │ │ ├── wizardtowerBackground.png │ │ ├── workerGrandma.png │ │ ├── wrathContract.png │ │ ├── wrathCookie.png │ │ ├── wrinkler.png │ │ ├── wrinklerBits.png │ │ └── wrinklerBitsOld.png │ ├── index.html │ ├── main.js │ ├── minigameGarden.js │ ├── minigameGrimoire.js │ ├── minigamePantheon.js │ ├── showads.js │ ├── snd │ │ ├── buy1.mp3 │ │ ├── buy2.mp3 │ │ ├── buy3.mp3 │ │ ├── buy4.mp3 │ │ ├── buyHeavenly.mp3 │ │ ├── charging.mp3 │ │ ├── chime.mp3 │ │ ├── choir.mp3 │ │ ├── click1.mp3 │ │ ├── click2.mp3 │ │ ├── click3.mp3 │ │ ├── click4.mp3 │ │ ├── click5.mp3 │ │ ├── click6.mp3 │ │ ├── click7.mp3 │ │ ├── clickOff.mp3 │ │ ├── clickOn.mp3 │ │ ├── clickb1.mp3 │ │ ├── clickb2.mp3 │ │ ├── clickb3.mp3 │ │ ├── clickb4.mp3 │ │ ├── clickb5.mp3 │ │ ├── clickb6.mp3 │ │ ├── clickb7.mp3 │ │ ├── cookieBreak.mp3 │ │ ├── cymbalCrash.mp3 │ │ ├── cymbalRev.mp3 │ │ ├── jingle.mp3 │ │ ├── jingleClick.mp3 │ │ ├── levelPrestige.mp3 │ │ ├── page.mp3 │ │ ├── pop1.mp3 │ │ ├── pop2.mp3 │ │ ├── pop3.mp3 │ │ ├── press.mp3 │ │ ├── sell1.mp3 │ │ ├── sell2.mp3 │ │ ├── sell3.mp3 │ │ ├── sell4.mp3 │ │ ├── shimmerClick.mp3 │ │ ├── smallCymbalCrash.mp3 │ │ ├── smallTick.mp3 │ │ ├── spell.mp3 │ │ ├── spellFail.mp3 │ │ ├── spirit.mp3 │ │ ├── squish1.mp3 │ │ ├── squish2.mp3 │ │ ├── squish3.mp3 │ │ ├── squish4.mp3 │ │ ├── switch.mp3 │ │ ├── swooshIn.mp3 │ │ ├── swooshOut.mp3 │ │ ├── thud.mp3 │ │ ├── tick.mp3 │ │ └── upgrade.mp3 │ └── style.css ├── flappybird │ ├── 404993.json │ ├── __game-scripts.js │ ├── __loading__.js │ ├── __start__.js │ ├── config.json │ ├── files │ │ └── assets │ │ │ ├── 3324896 │ │ │ └── 1 │ │ │ │ └── spritesheet.png │ │ │ ├── 3371285 │ │ │ └── 1 │ │ │ │ └── sfx_hit.mp3 │ │ │ ├── 3371286 │ │ │ └── 1 │ │ │ │ └── sfx_wing.mp3 │ │ │ ├── 3371287 │ │ │ └── 1 │ │ │ │ └── sfx_die.mp3 │ │ │ ├── 3371288 │ │ │ └── 1 │ │ │ │ └── sfx_point.mp3 │ │ │ └── 3371289 │ │ │ └── 1 │ │ │ └── sfx_swooshing.mp3 │ ├── index.html │ ├── logo.png │ ├── manifest.json │ ├── playcanvas-stable.min.js │ └── styles.css ├── hextris │ ├── CNAME │ ├── LICENSE.md │ ├── README.md │ ├── a.js │ ├── favicon.ico │ ├── images │ │ ├── android.png │ │ ├── appstore.svg │ │ ├── btn_back.svg │ │ ├── btn_facebook.svg │ │ ├── btn_help.svg │ │ ├── btn_pause.svg │ │ ├── btn_restart.svg │ │ ├── btn_resume.svg │ │ ├── btn_share.svg │ │ ├── btn_twitter.svg │ │ ├── facebook-opengraph.png │ │ ├── icon_arrows.svg │ │ └── twitter-opengraph.png │ ├── index.html │ ├── js │ │ ├── Block.js │ │ ├── Hex.js │ │ ├── Text.js │ │ ├── checking.js │ │ ├── comboTimer.js │ │ ├── initialization.js │ │ ├── input.js │ │ ├── main.js │ │ ├── math.js │ │ ├── render.js │ │ ├── save-state.js │ │ ├── update.js │ │ ├── view.js │ │ └── wavegen.js │ ├── style │ │ ├── fa │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ ├── fonts │ │ │ ├── Exo2-ExtraLight.otf │ │ │ ├── Exo2-Regular.otf │ │ │ ├── Exo2-SemiBold.otf │ │ │ ├── Lovelo.otf │ │ │ ├── QuattrocentoSans-Regular.ttf │ │ │ └── roboto.woff │ │ ├── rrssb.css │ │ └── style.css │ └── vendor │ │ ├── hammer.min.js │ │ ├── jquery.js │ │ ├── js.cookie.js │ │ ├── jsonfn.min.js │ │ ├── keypress.min.js │ │ ├── rrssb.min.js │ │ └── sweet-alert.min.js ├── nerd.html ├── pacman │ ├── .gitignore │ ├── .htaccess │ ├── README.md │ ├── cache.manifest │ ├── data │ │ ├── db-handler.php │ │ └── map.json │ ├── fonts │ │ ├── PressStart2Play.eot │ │ ├── PressStart2Play.ttf │ │ └── PressStart2Play.woff │ ├── googlee6aee5a894225e60.html │ ├── img │ │ ├── Icon-106x106.png │ │ ├── Icon-130x130.png │ │ ├── Icon-150x130.png │ │ ├── Icon-200x200.png │ │ ├── Icon-300x300.png │ │ ├── Icon-32x32.png │ │ ├── Icon-512x512.png │ │ ├── Pacman-Icon.svg │ │ ├── audio-icon-mute.png │ │ ├── audio-icon.png │ │ ├── bg-pattern-black.png │ │ ├── blinky.svg │ │ ├── clyde.svg │ │ ├── dazzled.svg │ │ ├── dazzled2.svg │ │ ├── dead.svg │ │ ├── heart.png │ │ ├── icon-128.png │ │ ├── icon-128_old.png │ │ ├── inky.svg │ │ ├── instructions │ │ │ ├── instructions_chase.PNG │ │ │ ├── instructions_powerpill.PNG │ │ │ └── instructions_scatter.PNG │ │ ├── pinky.svg │ │ └── platzh1rsch-logo.png │ ├── index.htm │ ├── js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery.hammer.min.js │ │ ├── pacman │ │ │ ├── ghost.js │ │ │ └── pacman.js │ │ └── virtualjoystick.js │ ├── manifest.json │ ├── mp3 │ │ ├── die.mp3 │ │ ├── eatghost.mp3 │ │ ├── powerpill.mp3 │ │ ├── theme.mp3 │ │ └── waka.mp3 │ ├── pacman-canvas.css │ ├── pacman-canvas.js │ ├── pacman-canvas.webapp │ ├── style.css │ ├── wav │ │ ├── die.wav │ │ ├── eatghost.wav │ │ ├── powerpill.wav │ │ ├── theme.wav │ │ └── waka.wav │ └── web-app-manifest.json ├── radius-raid │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── index.html │ ├── js │ │ ├── audio.js │ │ ├── bullet.js │ │ ├── button.js │ │ ├── definitions.js │ │ ├── enemy.js │ │ ├── explosion.js │ │ ├── game.js │ │ ├── hero.js │ │ ├── jsfxr.js │ │ ├── levelpop.js │ │ ├── particle.js │ │ ├── particleemitter.js │ │ ├── powerup.js │ │ ├── storage.js │ │ ├── text.js │ │ ├── textpop.js │ │ └── util.js │ ├── min.html │ └── min.zip ├── spaceinvaders │ ├── LICENSE │ ├── README.md │ ├── assets │ │ ├── css │ │ │ ├── skulls.png │ │ │ └── style.css │ │ ├── img │ │ │ ├── bullet.png │ │ │ ├── enemy-bullet.png │ │ │ ├── explode.png │ │ │ ├── invader.png │ │ │ ├── invader32x32x4.png │ │ │ ├── player.png │ │ │ └── starfield.png │ │ └── javascript │ │ │ ├── built.js │ │ │ ├── built │ │ │ └── main-built.js │ │ │ ├── lib │ │ │ ├── phaser-no-physics.min.js │ │ │ └── require.js │ │ │ ├── main.js │ │ │ ├── module │ │ │ ├── Aliens.js │ │ │ ├── Background.js │ │ │ ├── Bullets.js │ │ │ ├── Explosions.js │ │ │ ├── HUD.js │ │ │ ├── Level.js │ │ │ └── Player.js │ │ │ └── state │ │ │ ├── End.js │ │ │ ├── Load.js │ │ │ ├── Play.js │ │ │ └── Start.js │ ├── index.html │ └── indexOpt.html └── towermaster │ ├── .babelrc │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── README.zh-CN.md │ ├── assets │ ├── background.png │ ├── bgm.mp3 │ ├── bgm.ogg │ ├── block-perfect.png │ ├── block-rope.png │ ├── block.png │ ├── c1.png │ ├── c2.png │ ├── c3.png │ ├── c4.png │ ├── c5.png │ ├── c6.png │ ├── c7.png │ ├── c8.png │ ├── drop-perfect.mp3 │ ├── drop-perfect.ogg │ ├── drop.mp3 │ ├── drop.ogg │ ├── f1.png │ ├── f2.png │ ├── f3.png │ ├── f4.png │ ├── f5.png │ ├── f6.png │ ├── f7.png │ ├── game-over.mp3 │ ├── game-over.ogg │ ├── heart.png │ ├── hook.png │ ├── main-bg.png │ ├── main-index-logo.png │ ├── main-index-start.png │ ├── main-index-title.png │ ├── main-loading-logo.png │ ├── main-loading.gif │ ├── main-modal-again-b.png │ ├── main-modal-bg.png │ ├── main-modal-invite-b.png │ ├── main-modal-over.png │ ├── main-share-icon.png │ ├── rope.png │ ├── rotate.mp3 │ ├── rotate.ogg │ ├── score.png │ ├── tutorial-arrow.png │ ├── tutorial.png │ ├── wenxue.eot │ ├── wenxue.svg │ ├── wenxue.ttf │ ├── wenxue.woff │ └── zepto-1.1.6.min.js │ ├── dist │ └── main.js │ ├── index.html │ ├── index.js │ ├── package.json │ └── src │ ├── animateFuncs.js │ ├── background.js │ ├── block.js │ ├── cloud.js │ ├── constant.js │ ├── flight.js │ ├── hook.js │ ├── index.js │ ├── line.js │ ├── tutorial.js │ └── utils.js ├── index.html ├── js └── primary.js ├── license.txt ├── public-txt ├── gdrive.txt ├── gg.txt └── portaprox.txt └── setup.txt /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | DirectoryIndex index.html 3 | RewriteCond %{ENV:https} ^true$ 4 | RewriteCond %{HTTP:X-Forwarded-Proto} !https 5 | RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] 6 | 7 | RewriteRule ^gfiles/flappybird.html$ /gfiles/html5games/flappybird/index.html [R=301,L] 8 | 9 | ErrorDocument 404 /404.html 10 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 -C apache.conf 2 | -------------------------------------------------------------------------------- /apache.conf: -------------------------------------------------------------------------------- 1 | DirectoryIndex index.php index.html index.html 2 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "titaniumnetwork-dev/titaniumlite", 3 | "type": "project", 4 | "license": "MIT", 5 | "description": "Web proxy application project powered by PHP-Proxy library", 6 | "keywords": ["php proxy application", "php proxy web", "proxy script", "php web proxy", "web proxy"], 7 | "repositories": [ 8 | { 9 | "type": "vcs", 10 | "url": "https://github.com/Athlon1600/php-proxy-app" 11 | } 12 | ], 13 | "require": { 14 | "Athlon1600/php-proxy": "dev-master", 15 | "Athlon1600/php-proxy-plugin-bundle": "dev-master", 16 | "ext-mbstring": "^7.2", 17 | "Athlon1600/php-proxy": "^5.0", 18 | "ext-gd": "^7.2", 19 | "ext-sqlite3": "^7.2", 20 | "ext-imagick": "*" 21 | }, 22 | "scripts": { 23 | "post-create-project-cmd": [ 24 | "php -f setup.txt" 25 | ] 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /geographic/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /geographic/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "athlon1600/php-proxy-app", 3 | "type": "project", 4 | "license": "MIT", 5 | "description": "Web proxy application project powered by PHP-Proxy library", 6 | "keywords": ["php proxy application", "php proxy web", "proxy script", "php web proxy", "web proxy"], 7 | "homepage": "https://www.php-proxy.com/", 8 | "require": { 9 | "athlon1600/php-proxy": "^5.0.1", 10 | "athlon1600/php-proxy-plugin-bundle": "dev-master" 11 | }, 12 | "scripts": { 13 | "post-create-project-cmd": [ 14 | "php -f setup.txt" 15 | ] 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /geographic/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | pest 8 | 9 | -------------------------------------------------------------------------------- /geographic/plugins/TestPlugin.php: -------------------------------------------------------------------------------- 1 | getUri(); 15 | 16 | // we attach url_form only if this is a html response 17 | if (!is_html($response->headers->get('content-type'))) { 18 | return; 19 | } 20 | 21 | // this path would be relative to index.php that included it? 22 | $url_form = render_template("./templates/url_form.php", array( 23 | 'url' => $url 24 | )); 25 | 26 | $output = $response->getContent(); 27 | 28 | // does the html page contain tag, if so insert our form right after tag starts 29 | $output = preg_replace('@@is', '$0' . PHP_EOL . $url_form, $output, 1, $count); 30 | 31 | // tag was not found, just put the form at the top of the page 32 | if ($count == 0) { 33 | $output = $url_form . $output; 34 | } 35 | 36 | $response->setContent($output); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /geographic/setup.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geographic/vendor/athlon1600/php-proxy-plugin-bundle/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /geographic/vendor/athlon1600/php-proxy-plugin-bundle/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /geographic/vendor/athlon1600/php-proxy-plugin-bundle/README.md: -------------------------------------------------------------------------------- 1 | # php-proxy-plugin-bundle 2 | 3 | A collection of useful plugins to be used with [php-proxy](https://github.com/Athlon1600/php-proxy) or [php-proxy-app](https://github.com/Athlon1600/php-proxy-app). All those plugins were initially developed for [unblockvideos.com](https://unblockvideos.com/), but have now been made open source. 4 | 5 | 6 | ![unblockvideos.com](https://unblockvideos.com/unblock_videos.png) 7 | -------------------------------------------------------------------------------- /geographic/vendor/athlon1600/php-proxy-plugin-bundle/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "athlon1600/php-proxy-plugin-bundle", 3 | "description": "A collection of useful plugins to be used with php-proxy", 4 | "type": "library", 5 | "license": "MIT", 6 | "autoload": { 7 | "psr-4": { 8 | "Proxy\\Plugin\\": "src/" 9 | }, 10 | "files": [ 11 | "src/utils.php" 12 | ] 13 | }, 14 | "require": { 15 | "athlon1600/php-proxy": "^5.0", 16 | "athlon1600/youtube-downloader": "^2.0" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /geographic/vendor/athlon1600/php-proxy-plugin-bundle/src/DailyMotionPlugin.php: -------------------------------------------------------------------------------- 1 | getContent(); 18 | 19 | // http://www.dailymotion.com/json/video/{$id}?fields=stream_h264_sd_url,stream_h264_hq_url,stream_h264_url,stream_h264_hd_url 20 | if(preg_match('/"url":"([^"]+mp4[^"]*)"/m', $content, $matches)){ 21 | 22 | $video = stripslashes($matches[1]); 23 | 24 | // generate our own player 25 | $player = vid_player($video, 1240, 478); 26 | 27 | $content = Html::replace_inner("#player", $player, $content); 28 | } 29 | 30 | // too many useless scripts on this site 31 | $content = Html::remove_scripts($content); 32 | 33 | $response->setContent($content); 34 | } 35 | 36 | } 37 | 38 | 39 | ?> -------------------------------------------------------------------------------- /geographic/vendor/athlon1600/php-proxy-plugin-bundle/src/TwitterPlugin.php: -------------------------------------------------------------------------------- 1 | getContent(); 19 | 20 | // remove all javascript 21 | $content = Html::remove_scripts($content); 22 | 23 | $response->setContent($content); 24 | } 25 | } 26 | 27 | ?> -------------------------------------------------------------------------------- /geographic/vendor/athlon1600/php-proxy/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/* 2 | composer.lock 3 | .htaccess -------------------------------------------------------------------------------- /geographic/vendor/athlon1600/php-proxy/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /geographic/vendor/athlon1600/php-proxy/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "athlon1600/php-proxy", 3 | "type": "library", 4 | "keywords": ["php proxy", "proxy script", "php web proxy", "web proxy", "php proxy script"], 5 | "license": "MIT", 6 | "homepage": "https://www.php-proxy.com/", 7 | "require": { 8 | "ext-curl": "*" 9 | }, 10 | "suggest": { 11 | "predis/predis": "For caching purposes" 12 | }, 13 | "autoload": { 14 | "psr-4": { 15 | "Proxy\\": "src/" 16 | }, 17 | "files": [ 18 | "src/helpers.php" 19 | ] 20 | }, 21 | "autoload-dev": { 22 | "psr-4": { 23 | "Proxy\\Tests\\": "tests/" 24 | } 25 | }, 26 | "require-dev": { 27 | "phpunit/phpunit": "7" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /geographic/vendor/athlon1600/php-proxy/src/Config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geographic/vendor/athlon1600/php-proxy/src/Event/ProxyEvent.php: -------------------------------------------------------------------------------- 1 | data = $data; 10 | } 11 | 12 | public function offsetSet($offset, $value){ 13 | 14 | if(is_null($offset)) { 15 | $this->data[] = $value; 16 | } else { 17 | $this->data[$offset] = $value; 18 | } 19 | } 20 | 21 | public function offsetExists($offset){ 22 | return isset($this->data[$offset]); 23 | } 24 | 25 | public function offsetUnset($offset){ 26 | unset($this->data[$offset]); 27 | } 28 | 29 | public function offsetGet($offset){ 30 | return isset($this->data[$offset]) ? $this->data[$offset] : null; 31 | } 32 | 33 | } 34 | 35 | ?> -------------------------------------------------------------------------------- /geographic/vendor/athlon1600/php-proxy/src/Redis.php: -------------------------------------------------------------------------------- 1 | 'tcp', 17 | 'host' => '127.0.0.1', 18 | 'port' => 6379, 19 | ); 20 | 21 | if(!static::$client){ 22 | static::$client = new \Predis\Client($params); 23 | } 24 | 25 | return call_user_func_array(array(static::$client, $method_name), $arguments); 26 | } 27 | } 28 | 29 | 30 | ?> -------------------------------------------------------------------------------- /geographic/vendor/athlon1600/php-proxy/tests/TestCase.php: -------------------------------------------------------------------------------- 1 | stream($url); 15 | -------------------------------------------------------------------------------- /geographic/vendor/athlon1600/youtube-downloader/public/video_info.php: -------------------------------------------------------------------------------- 1 | getDownloadLinks($url); 13 | 14 | header('Content-Type: application/json'); 15 | echo json_encode($links, JSON_PRETTY_PRINT); 16 | -------------------------------------------------------------------------------- /geographic/vendor/athlon1600/youtube-downloader/tests/YouTubeTest.php: -------------------------------------------------------------------------------- 1 | get('https://httpbin.org/cookies/set?name=random_value'); 20 | 21 | // list cookies 22 | $list = $browser->get('https://httpbin.org/cookies'); 23 | 24 | $this->assertContains('random_value', $list); 25 | } 26 | 27 | public function test_get_download_links() 28 | { 29 | $downloader = new YouTubeDownloader(); 30 | 31 | $ret = $downloader->getDownloadLinks(self::SWIFT); 32 | 33 | $this->assertTrue(is_array($ret)); 34 | $this->assertGreaterThan(0, count($ret)); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /geographic/vendor/autoload.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/athlon1600/php-proxy/src/helpers.php', 10 | '311a7016008bd2d1bccdd3da08cf87ee' => $vendorDir . '/athlon1600/php-proxy-plugin-bundle/src/utils.php', 11 | ); 12 | -------------------------------------------------------------------------------- /geographic/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/athlon1600/youtube-downloader/src'), 10 | 'Proxy\\Plugin\\' => array($vendorDir . '/athlon1600/php-proxy-plugin-bundle/src'), 11 | 'Proxy\\' => array($vendorDir . '/athlon1600/php-proxy/src'), 12 | ); 13 | -------------------------------------------------------------------------------- /gfiles/2048/.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache/ 2 | -------------------------------------------------------------------------------- /gfiles/2048/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esnext": true, 3 | "indent": 2, 4 | "maxlen": 80, 5 | "freeze": true, 6 | "camelcase": true, 7 | "unused": true, 8 | "eqnull": true, 9 | "proto": true, 10 | "supernew": true, 11 | "noyield": true, 12 | "evil": true, 13 | "node": true, 14 | "boss": true, 15 | "expr": true, 16 | "loopfunc": true, 17 | "white": true, 18 | "maxdepth": 4 19 | } 20 | -------------------------------------------------------------------------------- /gfiles/2048/LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Gabriele Cirulli 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /gfiles/2048/Rakefile: -------------------------------------------------------------------------------- 1 | require "date" 2 | 3 | namespace :appcache do 4 | desc "update the date in the appcache file (in the gh-pages branch)" 5 | task :update do 6 | appcache = File.read("cache.appcache") 7 | updated = "# Updated: #{DateTime.now}" 8 | 9 | File.write("cache.appcache", appcache.sub(/^# Updated:.*$/, updated)) 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /gfiles/2048/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/2048/favicon.ico -------------------------------------------------------------------------------- /gfiles/2048/js/animframe_polyfill.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | var lastTime = 0; 3 | var vendors = ['webkit', 'moz']; 4 | for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) { 5 | window.requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame']; 6 | window.cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] || 7 | window[vendors[x] + 'CancelRequestAnimationFrame']; 8 | } 9 | 10 | if (!window.requestAnimationFrame) { 11 | window.requestAnimationFrame = function (callback) { 12 | var currTime = new Date().getTime(); 13 | var timeToCall = Math.max(0, 16 - (currTime - lastTime)); 14 | var id = window.setTimeout(function () { 15 | callback(currTime + timeToCall); 16 | }, 17 | timeToCall); 18 | lastTime = currTime + timeToCall; 19 | return id; 20 | }; 21 | } 22 | 23 | if (!window.cancelAnimationFrame) { 24 | window.cancelAnimationFrame = function (id) { 25 | clearTimeout(id); 26 | }; 27 | } 28 | }()); 29 | -------------------------------------------------------------------------------- /gfiles/2048/js/application.js: -------------------------------------------------------------------------------- 1 | // Wait till the browser is ready to render the game (avoids glitches) 2 | window.requestAnimationFrame(function () { 3 | new GameManager(4, KeyboardInputManager, HTMLActuator, LocalStorageManager); 4 | }); 5 | -------------------------------------------------------------------------------- /gfiles/2048/js/bind_polyfill.js: -------------------------------------------------------------------------------- 1 | Function.prototype.bind = Function.prototype.bind || function (target) { 2 | var self = this; 3 | return function (args) { 4 | if (!(args instanceof Array)) { 5 | args = [args]; 6 | } 7 | self.apply(target, args); 8 | }; 9 | }; 10 | -------------------------------------------------------------------------------- /gfiles/2048/js/tile.js: -------------------------------------------------------------------------------- 1 | function Tile(position, value) { 2 | this.x = position.x; 3 | this.y = position.y; 4 | this.value = value || 2; 5 | 6 | this.previousPosition = null; 7 | this.mergedFrom = null; // Tracks tiles that merged together 8 | } 9 | 10 | Tile.prototype.savePosition = function () { 11 | this.previousPosition = { x: this.x, y: this.y }; 12 | }; 13 | 14 | Tile.prototype.updatePosition = function (position) { 15 | this.x = position.x; 16 | this.y = position.y; 17 | }; 18 | 19 | Tile.prototype.serialize = function () { 20 | return { 21 | position: { 22 | x: this.x, 23 | y: this.y 24 | }, 25 | value: this.value 26 | }; 27 | }; 28 | -------------------------------------------------------------------------------- /gfiles/2048/meta/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/2048/meta/apple-touch-icon.png -------------------------------------------------------------------------------- /gfiles/2048/meta/apple-touch-startup-image-640x1096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/2048/meta/apple-touch-startup-image-640x1096.png -------------------------------------------------------------------------------- /gfiles/2048/meta/apple-touch-startup-image-640x920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/2048/meta/apple-touch-startup-image-640x920.png -------------------------------------------------------------------------------- /gfiles/2048/style/fonts/ClearSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/2048/style/fonts/ClearSans-Bold-webfont.eot -------------------------------------------------------------------------------- /gfiles/2048/style/fonts/ClearSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/2048/style/fonts/ClearSans-Bold-webfont.woff -------------------------------------------------------------------------------- /gfiles/2048/style/fonts/ClearSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/2048/style/fonts/ClearSans-Light-webfont.eot -------------------------------------------------------------------------------- /gfiles/2048/style/fonts/ClearSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/2048/style/fonts/ClearSans-Light-webfont.woff -------------------------------------------------------------------------------- /gfiles/2048/style/fonts/ClearSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/2048/style/fonts/ClearSans-Regular-webfont.eot -------------------------------------------------------------------------------- /gfiles/2048/style/fonts/ClearSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/2048/style/fonts/ClearSans-Regular-webfont.woff -------------------------------------------------------------------------------- /gfiles/2048/style/fonts/clear-sans.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "Clear Sans"; 3 | src: url("ClearSans-Light-webfont.eot"); 4 | src: url("ClearSans-Light-webfont.eot?#iefix") format("embedded-opentype"), 5 | url("ClearSans-Light-webfont.svg#clear_sans_lightregular") format("svg"), 6 | url("ClearSans-Light-webfont.woff") format("woff"); 7 | font-weight: 200; 8 | font-style: normal; 9 | } 10 | 11 | @font-face { 12 | font-family: "Clear Sans"; 13 | src: url("ClearSans-Regular-webfont.eot"); 14 | src: url("ClearSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), 15 | url("ClearSans-Regular-webfont.svg#clear_sansregular") format("svg"), 16 | url("ClearSans-Regular-webfont.woff") format("woff"); 17 | font-weight: normal; 18 | font-style: normal; 19 | } 20 | 21 | @font-face { 22 | font-family: "Clear Sans"; 23 | src: url("ClearSans-Bold-webfont.eot"); 24 | src: url("ClearSans-Bold-webfont.eot?#iefix") format("embedded-opentype"), 25 | url("ClearSans-Bold-webfont.svg#clear_sansbold") format("svg"), 26 | url("ClearSans-Bold-webfont.woff") format("woff"); 27 | font-weight: 700; 28 | font-style: normal; 29 | } 30 | 31 | -------------------------------------------------------------------------------- /gfiles/astray/README.md: -------------------------------------------------------------------------------- 1 | # Astray 2 | 3 | A WebGL maze game built with Three.js and Box2dWeb. Play it here: http://wwwtyro.github.com/Astray/ 4 | 5 | ### Launching 6 | 7 | There are several ways to launch the game. Here is the simplest: 8 | 9 | 1. Clone or download the repository 10 | 2. Navigate to Astray's directory 11 | 3. Start 'python -m SimpleHTTPServer' in your shell (for python 3.0 and above type 'python -m http.server' in your shell) 12 | 4. Open 'localhost:8000' in your browser 13 | 5. Enjoy! 14 | 15 | ### License 16 | 17 | I don't believe in them. You can order your bits however you please. 18 | -------------------------------------------------------------------------------- /gfiles/astray/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/astray/ball.png -------------------------------------------------------------------------------- /gfiles/astray/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/astray/brick.png -------------------------------------------------------------------------------- /gfiles/astray/concrete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/astray/concrete.png -------------------------------------------------------------------------------- /gfiles/breaklock/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /gfiles/breaklock/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2017 maxwellito 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /gfiles/breaklock/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/breaklock/assets/banner.png -------------------------------------------------------------------------------- /gfiles/breaklock/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/breaklock/assets/favicon.ico -------------------------------------------------------------------------------- /gfiles/breaklock/assets/fonts/robotomono-light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/breaklock/assets/fonts/robotomono-light-webfont.ttf -------------------------------------------------------------------------------- /gfiles/breaklock/assets/fonts/robotomono-light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/breaklock/assets/fonts/robotomono-light-webfont.woff -------------------------------------------------------------------------------- /gfiles/breaklock/assets/fonts/robotomono-light-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/breaklock/assets/fonts/robotomono-light-webfont.woff2 -------------------------------------------------------------------------------- /gfiles/breaklock/assets/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/breaklock/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /gfiles/breaklock/assets/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/breaklock/assets/icons/icon-144x144.png -------------------------------------------------------------------------------- /gfiles/breaklock/assets/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/breaklock/assets/icons/icon-152x152.png -------------------------------------------------------------------------------- /gfiles/breaklock/assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/breaklock/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /gfiles/breaklock/assets/icons/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/breaklock/assets/icons/icon-256x256.png -------------------------------------------------------------------------------- /gfiles/breaklock/assets/icons/ios-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/breaklock/assets/icons/ios-180x180.png -------------------------------------------------------------------------------- /gfiles/breaklock/assets/ios-startup/startup-1080x1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/breaklock/assets/ios-startup/startup-1080x1920.png -------------------------------------------------------------------------------- /gfiles/breaklock/assets/ios-startup/startup-640x1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/breaklock/assets/ios-startup/startup-640x1136.png -------------------------------------------------------------------------------- /gfiles/breaklock/assets/ios-startup/startup-640x960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/breaklock/assets/ios-startup/startup-640x960.png -------------------------------------------------------------------------------- /gfiles/breaklock/assets/ios-startup/startup-750x1334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/breaklock/assets/ios-startup/startup-750x1334.png -------------------------------------------------------------------------------- /gfiles/breaklock/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "BreakLock", 3 | "short_name": "BreakLock", 4 | "icons": [{ 5 | "src": "./assets/icons/icon-128x128.png", 6 | "sizes": "128x128", 7 | "type": "image/png" 8 | }, { 9 | "src": "./assets/icons/icon-144x144.png", 10 | "sizes": "144x144", 11 | "type": "image/png" 12 | }, { 13 | "src": "./assets/icons/icon-152x152.png", 14 | "sizes": "152x152", 15 | "type": "image/png" 16 | }, { 17 | "src": "./assets/icons/icon-192x192.png", 18 | "sizes": "192x192", 19 | "type": "image/png" 20 | }, { 21 | "src": "./assets/icons/icon-256x256.png", 22 | "sizes": "256x256", 23 | "type": "image/png" 24 | }], 25 | "start_url": "./", 26 | "display": "standalone", 27 | "orientation": "portrait", 28 | "background_color": "#14171b", 29 | "theme_color": "#14171b" 30 | } 31 | -------------------------------------------------------------------------------- /gfiles/breaklock/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "breaklock", 3 | "version": "0.1.0", 4 | "description": "Small PWA game to guess pattern locks", 5 | "main": "scripts/app.js", 6 | "scripts": { 7 | "build": "./node_modules/webpack/bin/webpack.js --optimize-minimize" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/maxwellito/breaklock.git" 12 | }, 13 | "author": "maxwellito", 14 | "license": "MIT", 15 | "bugs": { 16 | "url": "https://github.com/maxwellito/breaklock/issues" 17 | }, 18 | "homepage": "https://github.com/maxwellito/breaklock", 19 | "devDependencies": { 20 | "babel-core": "^6.24.0", 21 | "babel-loader": "^6.4.1", 22 | "babel-preset-es2015": "^6.24.0", 23 | "css-loader": "^0.28.0", 24 | "extract-text-webpack-plugin": "^2.1.0", 25 | "node-sass": "^4.5.2", 26 | "raw-loader": "^0.5.1", 27 | "sass-loader": "^6.0.3", 28 | "style-loader": "^0.16.1", 29 | "webpack": "^2.3.3" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /gfiles/breaklock/readme.md: -------------------------------------------------------------------------------- 1 | ![BreakLock](assets/banner.png) 2 | 3 | ### Bring me to the **[game](https://maxwellito.github.io/breaklock/)**! 4 | 5 | Silly HTML5 game, mobile first. 6 | BreakLock is a hybrid of Mastermind and the Android pattern lock. A game you gonna love to hate. 7 | 8 | Hopefully this game (codebase included) will drive you mad. 9 | 10 | The goal of this project was the discover progressive Web apps with service workers, and play with Webpack. Also to entertain because the tube is quite boring, especially the Central line on peak time. 11 | 12 | If you like this game, you must convince 3 people to like it, who will have to convince 3 other people... and this project will turn into the first OSS sect. Also, if you hate it, you must convince 3 people to hate it, who will have to convince 3 other people... 13 | 14 | As long as GitHub provide these sweet gh-pages, this project will be under MIT, without ads, free. 15 | 16 | If you're curious about pattern combinations, run `./lab/bruteCalc.js`. 17 | 18 | ## Contribute 19 | 20 | Contributions are welcome, especially pull-requests. There are a lot of ideas to implement, but less people when it come to code. This is why **issues are for bugs only**. 21 | 22 | ## Build 23 | 24 | ```bash 25 | # Install packages 26 | npm install 27 | 28 | # Build it 29 | npm run build 30 | ``` -------------------------------------------------------------------------------- /gfiles/breaklock/src/_variables.scss: -------------------------------------------------------------------------------- 1 | $theme_dark: #14171b; 2 | $theme_bright: #ffffff; 3 | $theme_success: #116699; 4 | $theme_error: #ff0000; 5 | 6 | 7 | $gutter: 2rem; 8 | $border: 1px dotted $theme_bright; 9 | $font_weight: 300; 10 | 11 | 12 | // Media queries sizes 13 | $mq-small-min: 0px; 14 | $mq-medium-min: 480px; 15 | $mq-large-min: 768px; 16 | $mq-xlarge-min: 1024px; 17 | $mq-xxlarge-min: 1600px; 18 | 19 | $mq-small-max: $mq-medium-min - 1px; 20 | $mq-medium-max: $mq-large-min - 1px; 21 | $mq-large-max: $mq-xlarge-min - 1px; 22 | $mq-xlarge-max: $mq-xxlarge-min - 1px; 23 | $mq-xxlarge-max: 5120px; 24 | 25 | 26 | // Mixins 27 | %button-feel { 28 | @extend %unselectable; 29 | cursor: pointer; 30 | } 31 | 32 | %unselectable { 33 | -webkit-user-select: none; /* Chrome/Safari */ 34 | -moz-user-select: none; /* Firefox */ 35 | -ms-user-select: none; /* IE10+ */ 36 | 37 | /* Rules below not implemented in browsers yet */ 38 | -o-user-select: none; 39 | user-select: none; 40 | } 41 | -------------------------------------------------------------------------------- /gfiles/breaklock/src/app.js: -------------------------------------------------------------------------------- 1 | import GameCtrl from './controllers/game/game.ctrl' 2 | import MenuCtrl from './controllers/menu/menu.ctrl' 3 | 4 | require('./style.scss'); 5 | 6 | var introDom = document.getElementById('app-intro') 7 | if (introDom) { 8 | introDom.remove() 9 | } 10 | 11 | var container = document.body 12 | 13 | var myGame = new GameCtrl(() => { 14 | myMenu.el.style.display = '' 15 | myGame.el.style.display = 'none' 16 | }) 17 | container.appendChild(myGame.el) 18 | 19 | var myMenu = new MenuCtrl((type, difficulty) => { 20 | myGame.start(type, difficulty) 21 | 22 | myMenu.el.style.display = 'none' 23 | myGame.el.style.display = '' 24 | }) 25 | myMenu.init() 26 | container.appendChild(myMenu.el) 27 | 28 | myGame.el.style.display = 'none' 29 | 30 | 31 | window.scrollTo(0, 0) 32 | -------------------------------------------------------------------------------- /gfiles/breaklock/src/controllers/countdown/countdown.scss: -------------------------------------------------------------------------------- 1 | @import "../../_variables.scss"; 2 | 3 | .countdown-container { 4 | float: right; 5 | width: 10rem; 6 | height: 1rem; 7 | margin: .25rem 0 .25rem .5rem; 8 | border: 1px solid currentColor; 9 | border-radius: .25rem; 10 | box-sizing: border-box; 11 | color: inherit; 12 | } 13 | 14 | .alert { 15 | color: red; 16 | animation: blink 1s infinite; 17 | -webkit-animation: blink 1s infinite; 18 | } 19 | 20 | .countdown-content { 21 | display: block; 22 | height: 100%; 23 | width: 0; 24 | color: inherit; 25 | background-color: currentColor; 26 | } -------------------------------------------------------------------------------- /gfiles/breaklock/src/controllers/extender/extender.scss: -------------------------------------------------------------------------------- 1 | @import "../../_variables.scss"; 2 | 3 | // Not much for now... 4 | .extender { 5 | 6 | } 7 | 8 | .extender-button { 9 | display: block; 10 | width: 100%; 11 | padding: .25em; 12 | text-align: center; 13 | background: rgba(255,255,255,.125); 14 | border-bottom: $border; 15 | 16 | &:after { 17 | // ▲▼▾▴△▽ 18 | content: '▽'; 19 | margin-left: .5em; 20 | } 21 | 22 | .extender.active &:after { 23 | // ▲▼▾▴△▽ 24 | content: '△'; 25 | } 26 | } 27 | 28 | .extender-content { 29 | display: none; 30 | 31 | .extender.active & { 32 | display: inherit; 33 | } 34 | } 35 | 36 | @media (orientation: landscape), (min-width: $mq-xlarge-min) { 37 | .extender.small-only { 38 | .extender-button { 39 | display: none; 40 | } 41 | .extender-content { 42 | display: inherit; 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /gfiles/breaklock/src/controllers/game/game.scss: -------------------------------------------------------------------------------- 1 | @import "../../_variables.scss"; 2 | 3 | @media (max-width: $mq-large-max) { 4 | .history-wrap { 5 | border-bottom: $border; 6 | 7 | .history { 8 | margin: 0 #{-$gutter}; 9 | } 10 | .history-container { 11 | padding: 0 #{$gutter}; 12 | } 13 | } 14 | } 15 | 16 | @media (orientation: landscape), (min-width: $mq-xlarge-min) { 17 | .game-layout-lock { 18 | align-self: center; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /gfiles/breaklock/src/controllers/lock/lock.scss: -------------------------------------------------------------------------------- 1 | @import "../../_variables.scss"; 2 | 3 | .lock { 4 | display: block; 5 | width: 320px; 6 | max-width: 90%; 7 | margin: auto; 8 | 9 | &-flashdots circle { 10 | visibility: hidden; 11 | opacity: 1; 12 | 13 | &.active { 14 | visibility: visible; 15 | opacity: 0; 16 | transition: visibility 0s, opacity .3s; 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /gfiles/breaklock/src/controllers/menu/menu.scss: -------------------------------------------------------------------------------- 1 | @import "../../_variables.scss"; 2 | 3 | .menu-title { 4 | margin: 0; 5 | } 6 | 7 | .menu-layout-instructions { 8 | -webkit-flex:1 0 auto; 9 | } 10 | 11 | .menu-layout-form { 12 | max-width: 480px; 13 | } 14 | 15 | .introduction-demo { 16 | display: block; 17 | width: 100%; 18 | max-width: 320px; 19 | margin: 1rem auto; 20 | } 21 | 22 | @media (orientation: landscape), (min-width: $mq-xlarge-min) { 23 | .menu-layout { 24 | align-items: center; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /gfiles/breaklock/src/controllers/option/option.scss: -------------------------------------------------------------------------------- 1 | @import "../../_variables.scss"; 2 | 3 | .selectbox { 4 | border: 1px solid $theme_bright; 5 | margin-bottom: .5rem; 6 | border-radius: .4rem; 7 | padding: .25rem; 8 | } 9 | 10 | .selectbox-item { 11 | @extend %button-feel; 12 | padding: .25rem; 13 | text-align: center; 14 | display: inline-block; 15 | box-sizing: border-box; 16 | } 17 | 18 | .selectbox-item.active { 19 | background: $theme_bright; 20 | color: $theme_dark; 21 | border-radius: .2rem; 22 | } 23 | 24 | .selectbox-1 .selectbox-item { width: 100%; } 25 | .selectbox-2 .selectbox-item { width: 50%; } 26 | .selectbox-3 .selectbox-item { width: 33.33%; } 27 | .selectbox-4 .selectbox-item { width: 25%; } 28 | .selectbox-5 .selectbox-item { width: 20%; } 29 | -------------------------------------------------------------------------------- /gfiles/breaklock/src/controllers/readme.md: -------------------------------------------------------------------------------- 1 | # Components 2 | 3 | No framework has been used to make the app as lightweight as possible. However there's a lot of constraints. It's a bit more complex to extend, devs must be confortable with the DOM API, respect a structure. 4 | 5 | Because this project is quite small, it was possible. 6 | 7 | ## Contructor 8 | 9 | Every contructor will require different parameters, depending on what's required to build the component. But in every case, the constructor will build the DOM of the component. 10 | 11 | ## Properties 12 | 13 | ### `.el` [DOM Element] 14 | 15 | This is the root DOM element of your component. It can be used to append your component anywhere else. 16 | 17 | ## Methods 18 | 19 | ### `.setupTemplate()` 20 | 21 | Build the DOM of the component and set it to the `.el` property. 22 | 23 | ### `.init()` 24 | 25 | Start to listen to required events. This method must be called manually, it's not triggered by default. 26 | 27 | ### `.destroy()` 28 | 29 | Stop listening to events, delete the DOM and remove any link that could block the garbage collector to clean this up. However this method is not used at any point in this project. 30 | -------------------------------------------------------------------------------- /gfiles/breaklock/src/controllers/selector/selector.scss: -------------------------------------------------------------------------------- 1 | @import "../../_variables.scss"; 2 | 3 | .selector-left, .selector-right { 4 | width: 2rem; 5 | } 6 | 7 | .selector-left { 8 | float: left; 9 | } 10 | 11 | .selector-right { 12 | float: right; 13 | } 14 | 15 | .selector-label { 16 | margin: 0 auto; 17 | display: block; 18 | } 19 | -------------------------------------------------------------------------------- /gfiles/breaklock/src/controllers/statusBar/statusBar.scss: -------------------------------------------------------------------------------- 1 | @import "../../_variables.scss"; 2 | 3 | .status-bar { 4 | height: 1.5rem; 5 | padding-bottom: .25rem; 6 | border-bottom: 1px dotted $theme_bright; 7 | 8 | &:after { 9 | content: ''; 10 | clear: both; 11 | } 12 | 13 | &-cancel { 14 | height: 100%; 15 | font-size: 1rem; 16 | 17 | &:before { 18 | content: '«'; 19 | margin-right: .25em; 20 | } 21 | } 22 | 23 | &-info { 24 | float: right; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /gfiles/breaklock/src/utils/leftPadNum.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Dummy leftpad for numbers 3 | * @param {number} num Number to left pad 4 | * @param {number} len Length of the final string 5 | * @return {string} Leftpadded string 6 | */ 7 | var leftPadNum = (num, len) => { 8 | let str = Math.abs(num) + '', 9 | isNegative = num < 0 10 | for (let i = (len - str.length); i > 0; i--) { 11 | str = '0' + str 12 | } 13 | return (isNegative ? '-' : '') + str 14 | } 15 | 16 | export default leftPadNum 17 | -------------------------------------------------------------------------------- /gfiles/breaklock/src/utils/polyfill.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Alias for `requestAnimationFrame` or 3 | * `setTimeout` function for deprecated browsers. 4 | * 5 | */ 6 | window.requestAnimationFrame = (function () { 7 | return ( 8 | window.requestAnimationFrame || 9 | window.webkitRequestAnimationFrame || 10 | window.mozRequestAnimationFrame || 11 | window.oRequestAnimationFrame || 12 | window.msRequestAnimationFrame || 13 | function(/* function */ callback){ 14 | return window.setTimeout(callback, 1000 / 60); 15 | } 16 | ); 17 | })(); 18 | 19 | /** 20 | * Alias for `cancelAnimationFrame` or 21 | * `cancelTimeout` function for deprecated browsers. 22 | * 23 | */ 24 | window.cancelAnimationFrame = (function () { 25 | return ( 26 | window.cancelAnimationFrame || 27 | window.webkitCancelAnimationFrame || 28 | window.mozCancelAnimationFrame || 29 | window.oCancelAnimationFrame || 30 | window.msCancelAnimationFrame || 31 | function(id){ 32 | return window.clearTimeout(id); 33 | } 34 | ); 35 | })(); 36 | 37 | var toExport = { 38 | requestAnimationFrame: window.requestAnimationFrame, 39 | cancelAnimationFrame: window.cancelAnimationFrame 40 | } 41 | 42 | export default toExport 43 | -------------------------------------------------------------------------------- /gfiles/breaklock/webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | const webpack = require('webpack'); 3 | const ExtractTextPlugin = require("extract-text-webpack-plugin"); 4 | 5 | const extractSass = new ExtractTextPlugin({ 6 | filename: "[name].css", 7 | disable: process.env.NODE_ENV === "development" 8 | }); 9 | 10 | module.exports = { 11 | context: path.resolve(__dirname, './src'), 12 | entry: { 13 | app: './app.js', 14 | }, 15 | output: { 16 | path: path.resolve(__dirname, './'), 17 | filename: 'app.js', 18 | }, 19 | module: { 20 | rules: [ 21 | { 22 | test: /\.js$/, 23 | use: [{ 24 | loader: 'babel-loader', 25 | options: { presets: ['es2015'] } 26 | }], 27 | }, 28 | { 29 | test: /\.scss$/, 30 | loader: extractSass.extract({ 31 | loader: [{ 32 | loader: "css-loader", 33 | options: { url: false } 34 | }, { 35 | loader: "sass-loader" 36 | }], 37 | fallbackLoader: "style-loader" 38 | }) 39 | } 40 | ] 41 | }, 42 | plugins: [ 43 | extractSass 44 | ] 45 | }; 46 | -------------------------------------------------------------------------------- /gfiles/cookies/README.md: -------------------------------------------------------------------------------- 1 | # Cookie-Clicker-Source-Code-Beta 2 | 2.021 source code for... educational purposes... BETA edition!
3 | Download and Extract to delete free time.. BETA EDITION! Or just use the website.

4 | Do not worry, I will be updating this to be up to date with the current Cookie Clicker beta version.
5 | 6 | Credits obviously go Orteil, visit the official website here: http://orteil.dashnet.org/cookieclicker/ 7 | -------------------------------------------------------------------------------- /gfiles/cookies/ajax.js: -------------------------------------------------------------------------------- 1 | function ajax(url,callback){ 2 | var ajaxRequest; 3 | try{ajaxRequest = new XMLHttpRequest();} catch (e){try{ajaxRequest=new ActiveXObject('Msxml2.XMLHTTP');} catch (e) {try{ajaxRequest=new ActiveXObject('Microsoft.XMLHTTP');} catch (e){alert("Something broke!");return false;}}} 4 | if (callback){ajaxRequest.onreadystatechange=function(){if(ajaxRequest.readyState==4){callback(ajaxRequest.responseText);}}} 5 | ajaxRequest.open('GET',url+'&nocache='+(new Date().getTime()),true);ajaxRequest.send(null); 6 | } 7 | -------------------------------------------------------------------------------- /gfiles/cookies/img/BGgarden.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/BGgarden.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/alchemylab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/alchemylab.png -------------------------------------------------------------------------------- /gfiles/cookies/img/alchemylabBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/alchemylabBackground.png -------------------------------------------------------------------------------- /gfiles/cookies/img/alchemylabIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/alchemylabIcon.png -------------------------------------------------------------------------------- /gfiles/cookies/img/alteredGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/alteredGrandma.png -------------------------------------------------------------------------------- /gfiles/cookies/img/antiGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/antiGrandma.png -------------------------------------------------------------------------------- /gfiles/cookies/img/antimattercondenser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/antimattercondenser.png -------------------------------------------------------------------------------- /gfiles/cookies/img/antimattercondenserBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/antimattercondenserBackground.png -------------------------------------------------------------------------------- /gfiles/cookies/img/antimattercondenserIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/antimattercondenserIcon.png -------------------------------------------------------------------------------- /gfiles/cookies/img/ascendBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/ascendBox.png -------------------------------------------------------------------------------- /gfiles/cookies/img/ascendInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/ascendInfo.png -------------------------------------------------------------------------------- /gfiles/cookies/img/ascendSlot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/ascendSlot.png -------------------------------------------------------------------------------- /gfiles/cookies/img/ascendWisp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/ascendWisp.png -------------------------------------------------------------------------------- /gfiles/cookies/img/ascendedBakingPod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/ascendedBakingPod.png -------------------------------------------------------------------------------- /gfiles/cookies/img/bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/bank.png -------------------------------------------------------------------------------- /gfiles/cookies/img/bankBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/bankBackground.png -------------------------------------------------------------------------------- /gfiles/cookies/img/bankGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/bankGrandma.png -------------------------------------------------------------------------------- /gfiles/cookies/img/bgBlack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/bgBlack.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/bgBlue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/bgBlue.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/bgGold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/bgGold.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/bgMoney.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/bgMoney.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/bgMoneyChart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/bgMoneyChart.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/bgRed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/bgRed.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/bgWhite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/bgWhite.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/blackGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/blackGradient.png -------------------------------------------------------------------------------- /gfiles/cookies/img/blackGradientLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/blackGradientLeft.png -------------------------------------------------------------------------------- /gfiles/cookies/img/blackGradientSmallTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/blackGradientSmallTop.png -------------------------------------------------------------------------------- /gfiles/cookies/img/bracketPanelLeftS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/bracketPanelLeftS.png -------------------------------------------------------------------------------- /gfiles/cookies/img/bracketPanelRightS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/bracketPanelRightS.png -------------------------------------------------------------------------------- /gfiles/cookies/img/brokenCookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/brokenCookie.png -------------------------------------------------------------------------------- /gfiles/cookies/img/brokenCookieHalo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/brokenCookieHalo.png -------------------------------------------------------------------------------- /gfiles/cookies/img/buildings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/buildings.png -------------------------------------------------------------------------------- /gfiles/cookies/img/bunnies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/bunnies.png -------------------------------------------------------------------------------- /gfiles/cookies/img/bunnyGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/bunnyGrandma.png -------------------------------------------------------------------------------- /gfiles/cookies/img/buttonTile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/buttonTile.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/caramelWave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/caramelWave.png -------------------------------------------------------------------------------- /gfiles/cookies/img/chancemaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/chancemaker.png -------------------------------------------------------------------------------- /gfiles/cookies/img/chancemakerBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/chancemakerBackground.png -------------------------------------------------------------------------------- /gfiles/cookies/img/chocolateMilkWave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/chocolateMilkWave.png -------------------------------------------------------------------------------- /gfiles/cookies/img/clayBG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/clayBG.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/contract.png -------------------------------------------------------------------------------- /gfiles/cookies/img/control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/control.png -------------------------------------------------------------------------------- /gfiles/cookies/img/cookieShower1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/cookieShower1.png -------------------------------------------------------------------------------- /gfiles/cookies/img/cookieShower2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/cookieShower2.png -------------------------------------------------------------------------------- /gfiles/cookies/img/cookieShower3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/cookieShower3.png -------------------------------------------------------------------------------- /gfiles/cookies/img/cosmicGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/cosmicGrandma.png -------------------------------------------------------------------------------- /gfiles/cookies/img/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/cursor.png -------------------------------------------------------------------------------- /gfiles/cookies/img/cursoricon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/cursoricon.png -------------------------------------------------------------------------------- /gfiles/cookies/img/darkNoise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/darkNoise.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/darkNoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/darkNoise.png -------------------------------------------------------------------------------- /gfiles/cookies/img/darkNoiseTopBar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/darkNoiseTopBar.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/dragon.png -------------------------------------------------------------------------------- /gfiles/cookies/img/dragonBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/dragonBG.png -------------------------------------------------------------------------------- /gfiles/cookies/img/dragonFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/dragonFrame.png -------------------------------------------------------------------------------- /gfiles/cookies/img/dungeonFactory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/dungeonFactory.png -------------------------------------------------------------------------------- /gfiles/cookies/img/dungeonIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/dungeonIcons.png -------------------------------------------------------------------------------- /gfiles/cookies/img/dungeonOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/dungeonOverlay.png -------------------------------------------------------------------------------- /gfiles/cookies/img/dungeonTiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/dungeonTiles.png -------------------------------------------------------------------------------- /gfiles/cookies/img/easterEggs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/easterEggs.png -------------------------------------------------------------------------------- /gfiles/cookies/img/elfGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/elfGrandma.png -------------------------------------------------------------------------------- /gfiles/cookies/img/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/empty.png -------------------------------------------------------------------------------- /gfiles/cookies/img/emptyFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/emptyFrame.png -------------------------------------------------------------------------------- /gfiles/cookies/img/factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/factory.png -------------------------------------------------------------------------------- /gfiles/cookies/img/factoryBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/factoryBackground.png -------------------------------------------------------------------------------- /gfiles/cookies/img/factoryIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/factoryIcon.png -------------------------------------------------------------------------------- /gfiles/cookies/img/farm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/farm.png -------------------------------------------------------------------------------- /gfiles/cookies/img/farmBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/farmBackground.png -------------------------------------------------------------------------------- /gfiles/cookies/img/farmIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/farmIcon.png -------------------------------------------------------------------------------- /gfiles/cookies/img/farmerGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/farmerGrandma.png -------------------------------------------------------------------------------- /gfiles/cookies/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/favicon.ico -------------------------------------------------------------------------------- /gfiles/cookies/img/featherLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/featherLeft.png -------------------------------------------------------------------------------- /gfiles/cookies/img/featherRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/featherRight.png -------------------------------------------------------------------------------- /gfiles/cookies/img/filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/filler.png -------------------------------------------------------------------------------- /gfiles/cookies/img/fractalEngine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/fractalEngine.png -------------------------------------------------------------------------------- /gfiles/cookies/img/fractalEngineBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/fractalEngineBackground.png -------------------------------------------------------------------------------- /gfiles/cookies/img/frameBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/frameBorder.png -------------------------------------------------------------------------------- /gfiles/cookies/img/frostedReindeer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/frostedReindeer.png -------------------------------------------------------------------------------- /gfiles/cookies/img/gardenPlants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/gardenPlants.png -------------------------------------------------------------------------------- /gfiles/cookies/img/gardenPlots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/gardenPlots.png -------------------------------------------------------------------------------- /gfiles/cookies/img/gardenTip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/gardenTip.png -------------------------------------------------------------------------------- /gfiles/cookies/img/girlscoutChip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/girlscoutChip.png -------------------------------------------------------------------------------- /gfiles/cookies/img/girlscoutCrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/girlscoutCrumb.png -------------------------------------------------------------------------------- /gfiles/cookies/img/girlscoutDoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/girlscoutDoe.png -------------------------------------------------------------------------------- /gfiles/cookies/img/girlscoutLucky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/girlscoutLucky.png -------------------------------------------------------------------------------- /gfiles/cookies/img/glint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/glint.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/goldCookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/goldCookie.png -------------------------------------------------------------------------------- /gfiles/cookies/img/grandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/grandma.png -------------------------------------------------------------------------------- /gfiles/cookies/img/grandmaBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/grandmaBackground.png -------------------------------------------------------------------------------- /gfiles/cookies/img/grandmaIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/grandmaIcon.png -------------------------------------------------------------------------------- /gfiles/cookies/img/grandmas1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/grandmas1.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/grandmas2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/grandmas2.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/grandmas3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/grandmas3.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/grandmasGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/grandmasGrandma.png -------------------------------------------------------------------------------- /gfiles/cookies/img/grimoireBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/grimoireBG.png -------------------------------------------------------------------------------- /gfiles/cookies/img/heartStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/heartStorm.png -------------------------------------------------------------------------------- /gfiles/cookies/img/hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/hearts.png -------------------------------------------------------------------------------- /gfiles/cookies/img/heavenRing1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/heavenRing1.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/heavenRing2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/heavenRing2.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/heavenlyMoney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/heavenlyMoney.png -------------------------------------------------------------------------------- /gfiles/cookies/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/icons.png -------------------------------------------------------------------------------- /gfiles/cookies/img/imperfectCookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/imperfectCookie.png -------------------------------------------------------------------------------- /gfiles/cookies/img/infoBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/infoBG.png -------------------------------------------------------------------------------- /gfiles/cookies/img/infoBGfade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/infoBGfade.png -------------------------------------------------------------------------------- /gfiles/cookies/img/levelUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/levelUp.png -------------------------------------------------------------------------------- /gfiles/cookies/img/linkPulse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/linkPulse.gif -------------------------------------------------------------------------------- /gfiles/cookies/img/linkPulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/linkPulse.png -------------------------------------------------------------------------------- /gfiles/cookies/img/luckyGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/luckyGrandma.png -------------------------------------------------------------------------------- /gfiles/cookies/img/mapBG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/mapBG.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/mapIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/mapIcons.png -------------------------------------------------------------------------------- /gfiles/cookies/img/mapTiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/mapTiles.png -------------------------------------------------------------------------------- /gfiles/cookies/img/marbleBG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/marbleBG.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/marshmallows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/marshmallows.png -------------------------------------------------------------------------------- /gfiles/cookies/img/metaGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/metaGrandma.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milk.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkBanana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkBanana.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkBlack.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkBlood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkBlood.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkBlueFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkBlueFire.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkBlueberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkBlueberry.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkCaramel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkCaramel.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkChocolate.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkFire.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkGold.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkGreenFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkGreenFire.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkHoney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkHoney.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkLime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkLime.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkOrange.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkPlain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkPlain.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkRaspberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkRaspberry.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkStars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkStars.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkStrawberry.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkVanilla.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkWave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkWave.png -------------------------------------------------------------------------------- /gfiles/cookies/img/milkZebra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/milkZebra.png -------------------------------------------------------------------------------- /gfiles/cookies/img/mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/mine.png -------------------------------------------------------------------------------- /gfiles/cookies/img/mineBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/mineBackground.png -------------------------------------------------------------------------------- /gfiles/cookies/img/mineIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/mineIcon.png -------------------------------------------------------------------------------- /gfiles/cookies/img/minerGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/minerGrandma.png -------------------------------------------------------------------------------- /gfiles/cookies/img/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/money.png -------------------------------------------------------------------------------- /gfiles/cookies/img/mysteriousHero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/mysteriousHero.png -------------------------------------------------------------------------------- /gfiles/cookies/img/mysteriousOpponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/mysteriousOpponent.png -------------------------------------------------------------------------------- /gfiles/cookies/img/mysticBG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/mysticBG.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/nest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/nest.png -------------------------------------------------------------------------------- /gfiles/cookies/img/orangeWave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/orangeWave.png -------------------------------------------------------------------------------- /gfiles/cookies/img/panelBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/panelBG.png -------------------------------------------------------------------------------- /gfiles/cookies/img/panelGradientBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/panelGradientBottom.png -------------------------------------------------------------------------------- /gfiles/cookies/img/panelGradientLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/panelGradientLeft.png -------------------------------------------------------------------------------- /gfiles/cookies/img/panelGradientRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/panelGradientRight.png -------------------------------------------------------------------------------- /gfiles/cookies/img/panelGradientTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/panelGradientTop.png -------------------------------------------------------------------------------- /gfiles/cookies/img/panelHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/panelHorizontal.png -------------------------------------------------------------------------------- /gfiles/cookies/img/panelMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/panelMenu.png -------------------------------------------------------------------------------- /gfiles/cookies/img/panelMenu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/panelMenu2.png -------------------------------------------------------------------------------- /gfiles/cookies/img/panelMenu3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/panelMenu3.png -------------------------------------------------------------------------------- /gfiles/cookies/img/panelVertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/panelVertical.png -------------------------------------------------------------------------------- /gfiles/cookies/img/pantheonBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/pantheonBG.png -------------------------------------------------------------------------------- /gfiles/cookies/img/perfectCookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/perfectCookie.png -------------------------------------------------------------------------------- /gfiles/cookies/img/pieFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/pieFill.png -------------------------------------------------------------------------------- /gfiles/cookies/img/portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/portal.png -------------------------------------------------------------------------------- /gfiles/cookies/img/portalBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/portalBackground.png -------------------------------------------------------------------------------- /gfiles/cookies/img/portalIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/portalIcon.png -------------------------------------------------------------------------------- /gfiles/cookies/img/portraitChip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/portraitChip.png -------------------------------------------------------------------------------- /gfiles/cookies/img/portraitCrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/portraitCrumb.png -------------------------------------------------------------------------------- /gfiles/cookies/img/portraitDoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/portraitDoe.png -------------------------------------------------------------------------------- /gfiles/cookies/img/portraitLucky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/portraitLucky.png -------------------------------------------------------------------------------- /gfiles/cookies/img/prestigeBar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/prestigeBar.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/prestigeBarCap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/prestigeBarCap.png -------------------------------------------------------------------------------- /gfiles/cookies/img/prism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/prism.png -------------------------------------------------------------------------------- /gfiles/cookies/img/prismBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/prismBackground.png -------------------------------------------------------------------------------- /gfiles/cookies/img/rainbowGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/rainbowGrandma.png -------------------------------------------------------------------------------- /gfiles/cookies/img/raspberryWave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/raspberryWave.png -------------------------------------------------------------------------------- /gfiles/cookies/img/roundFrameBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/roundFrameBorder.png -------------------------------------------------------------------------------- /gfiles/cookies/img/roundedPanelBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/roundedPanelBG.png -------------------------------------------------------------------------------- /gfiles/cookies/img/roundedPanelBGS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/roundedPanelBGS.png -------------------------------------------------------------------------------- /gfiles/cookies/img/roundedPanelLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/roundedPanelLeft.png -------------------------------------------------------------------------------- /gfiles/cookies/img/roundedPanelLeftS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/roundedPanelLeftS.png -------------------------------------------------------------------------------- /gfiles/cookies/img/roundedPanelRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/roundedPanelRight.png -------------------------------------------------------------------------------- /gfiles/cookies/img/roundedPanelRightS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/roundedPanelRightS.png -------------------------------------------------------------------------------- /gfiles/cookies/img/santa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/santa.png -------------------------------------------------------------------------------- /gfiles/cookies/img/sentientFurnace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/sentientFurnace.png -------------------------------------------------------------------------------- /gfiles/cookies/img/shadedBorders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/shadedBorders.png -------------------------------------------------------------------------------- /gfiles/cookies/img/shadedBordersGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/shadedBordersGold.png -------------------------------------------------------------------------------- /gfiles/cookies/img/shadedBordersRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/shadedBordersRed.png -------------------------------------------------------------------------------- /gfiles/cookies/img/shadedBordersSoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/shadedBordersSoft.png -------------------------------------------------------------------------------- /gfiles/cookies/img/shine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/shine.png -------------------------------------------------------------------------------- /gfiles/cookies/img/shineGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/shineGold.png -------------------------------------------------------------------------------- /gfiles/cookies/img/shineRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/shineRed.png -------------------------------------------------------------------------------- /gfiles/cookies/img/shineSpoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/shineSpoke.png -------------------------------------------------------------------------------- /gfiles/cookies/img/shinyWrinkler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/shinyWrinkler.png -------------------------------------------------------------------------------- /gfiles/cookies/img/shinyWrinklerBits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/shinyWrinklerBits.png -------------------------------------------------------------------------------- /gfiles/cookies/img/shipment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/shipment.png -------------------------------------------------------------------------------- /gfiles/cookies/img/shipmentBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/shipmentBackground.png -------------------------------------------------------------------------------- /gfiles/cookies/img/shipmentIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/shipmentIcon.png -------------------------------------------------------------------------------- /gfiles/cookies/img/smallCookies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/smallCookies.png -------------------------------------------------------------------------------- /gfiles/cookies/img/smallDollars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/smallDollars.png -------------------------------------------------------------------------------- /gfiles/cookies/img/snow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/snow.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/snow2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/snow2.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/sparkles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/sparkles.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/spellBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/spellBG.png -------------------------------------------------------------------------------- /gfiles/cookies/img/spinnyBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/spinnyBig.png -------------------------------------------------------------------------------- /gfiles/cookies/img/spinnySmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/spinnySmall.png -------------------------------------------------------------------------------- /gfiles/cookies/img/spookyCookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/spookyCookie.png -------------------------------------------------------------------------------- /gfiles/cookies/img/starbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/starbg.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/storeTile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/storeTile.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/sugarLump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/sugarLump.png -------------------------------------------------------------------------------- /gfiles/cookies/img/temple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/temple.png -------------------------------------------------------------------------------- /gfiles/cookies/img/templeBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/templeBackground.png -------------------------------------------------------------------------------- /gfiles/cookies/img/templeGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/templeGrandma.png -------------------------------------------------------------------------------- /gfiles/cookies/img/timemachine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/timemachine.png -------------------------------------------------------------------------------- /gfiles/cookies/img/timemachineBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/timemachineBackground.png -------------------------------------------------------------------------------- /gfiles/cookies/img/timemachineIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/timemachineIcon.png -------------------------------------------------------------------------------- /gfiles/cookies/img/timerBars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/timerBars.png -------------------------------------------------------------------------------- /gfiles/cookies/img/transmutedGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/transmutedGrandma.png -------------------------------------------------------------------------------- /gfiles/cookies/img/upgradeFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/upgradeFrame.png -------------------------------------------------------------------------------- /gfiles/cookies/img/upgradeFrameHeavenly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/upgradeFrameHeavenly.png -------------------------------------------------------------------------------- /gfiles/cookies/img/upgradeFrameOld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/upgradeFrameOld.png -------------------------------------------------------------------------------- /gfiles/cookies/img/upgradeFrameShadowOld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/upgradeFrameShadowOld.png -------------------------------------------------------------------------------- /gfiles/cookies/img/upgradeHighlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/upgradeHighlight.jpg -------------------------------------------------------------------------------- /gfiles/cookies/img/upgradeHighlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/upgradeHighlight.png -------------------------------------------------------------------------------- /gfiles/cookies/img/upgradeSelector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/upgradeSelector.png -------------------------------------------------------------------------------- /gfiles/cookies/img/weeHoodie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/weeHoodie.png -------------------------------------------------------------------------------- /gfiles/cookies/img/winterFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/winterFrame.png -------------------------------------------------------------------------------- /gfiles/cookies/img/winterWrinkler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/winterWrinkler.png -------------------------------------------------------------------------------- /gfiles/cookies/img/witchGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/witchGrandma.png -------------------------------------------------------------------------------- /gfiles/cookies/img/wizardtower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/wizardtower.png -------------------------------------------------------------------------------- /gfiles/cookies/img/wizardtowerBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/wizardtowerBackground.png -------------------------------------------------------------------------------- /gfiles/cookies/img/workerGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/workerGrandma.png -------------------------------------------------------------------------------- /gfiles/cookies/img/wrathContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/wrathContract.png -------------------------------------------------------------------------------- /gfiles/cookies/img/wrathCookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/wrathCookie.png -------------------------------------------------------------------------------- /gfiles/cookies/img/wrinkler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/wrinkler.png -------------------------------------------------------------------------------- /gfiles/cookies/img/wrinklerBits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/wrinklerBits.png -------------------------------------------------------------------------------- /gfiles/cookies/img/wrinklerBitsOld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/img/wrinklerBitsOld.png -------------------------------------------------------------------------------- /gfiles/cookies/showads.js: -------------------------------------------------------------------------------- 1 | //this lets us detect adblockers so we can adjust the layout in case ads aren't shown ! (we're not using this for anything weird, promise !) 2 | //this works because an adblocker will usually block this file from being embedded at all 3 | var showAds=false; 4 | -------------------------------------------------------------------------------- /gfiles/cookies/snd/buy1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/buy1.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/buy2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/buy2.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/buy3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/buy3.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/buy4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/buy4.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/buyHeavenly.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/buyHeavenly.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/charging.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/charging.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/chime.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/chime.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/choir.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/choir.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/click1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/click1.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/click2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/click2.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/click3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/click3.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/click4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/click4.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/click5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/click5.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/click6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/click6.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/click7.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/click7.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/clickOff.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/clickOff.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/clickOn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/clickOn.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/clickb1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/clickb1.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/clickb2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/clickb2.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/clickb3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/clickb3.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/clickb4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/clickb4.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/clickb5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/clickb5.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/clickb6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/clickb6.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/clickb7.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/clickb7.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/cookieBreak.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/cookieBreak.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/cymbalCrash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/cymbalCrash.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/cymbalRev.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/cymbalRev.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/jingle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/jingle.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/jingleClick.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/jingleClick.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/levelPrestige.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/levelPrestige.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/page.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/page.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/pop1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/pop1.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/pop2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/pop2.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/pop3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/pop3.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/press.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/press.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/sell1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/sell1.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/sell2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/sell2.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/sell3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/sell3.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/sell4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/sell4.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/shimmerClick.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/shimmerClick.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/smallCymbalCrash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/smallCymbalCrash.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/smallTick.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/smallTick.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/spell.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/spell.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/spellFail.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/spellFail.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/spirit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/spirit.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/squish1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/squish1.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/squish2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/squish2.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/squish3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/squish3.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/squish4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/squish4.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/switch.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/switch.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/swooshIn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/swooshIn.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/swooshOut.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/swooshOut.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/thud.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/thud.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/tick.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/tick.mp3 -------------------------------------------------------------------------------- /gfiles/cookies/snd/upgrade.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/cookies/snd/upgrade.mp3 -------------------------------------------------------------------------------- /gfiles/flappybird/files/assets/3324896/1/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/flappybird/files/assets/3324896/1/spritesheet.png -------------------------------------------------------------------------------- /gfiles/flappybird/files/assets/3371285/1/sfx_hit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/flappybird/files/assets/3371285/1/sfx_hit.mp3 -------------------------------------------------------------------------------- /gfiles/flappybird/files/assets/3371286/1/sfx_wing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/flappybird/files/assets/3371286/1/sfx_wing.mp3 -------------------------------------------------------------------------------- /gfiles/flappybird/files/assets/3371287/1/sfx_die.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/flappybird/files/assets/3371287/1/sfx_die.mp3 -------------------------------------------------------------------------------- /gfiles/flappybird/files/assets/3371288/1/sfx_point.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/flappybird/files/assets/3371288/1/sfx_point.mp3 -------------------------------------------------------------------------------- /gfiles/flappybird/files/assets/3371289/1/sfx_swooshing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/flappybird/files/assets/3371289/1/sfx_swooshing.mp3 -------------------------------------------------------------------------------- /gfiles/flappybird/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/flappybird/logo.png -------------------------------------------------------------------------------- /gfiles/flappybird/manifest.json: -------------------------------------------------------------------------------- 1 | {"short_name":"Flappy Bird","name":"Flappy Bird","start_url":"","display":"fullscreen","icons":[{"src":"thumbs/180.jpg","sizes":"180x180","type":"image/jpeg"},{"src":"thumbs/360.jpg","sizes":"360x360","type":"image/jpeg"},{"src":"thumbs/540.jpg","sizes":"540x540","type":"image/jpeg"},{"src":"thumbs/720.jpg","sizes":"720x720","type":"image/jpeg"}]} -------------------------------------------------------------------------------- /gfiles/flappybird/styles.css: -------------------------------------------------------------------------------- 1 | html { 2 | height: 100%; 3 | background-color: #1d292c; 4 | } 5 | body { 6 | margin: 0; 7 | max-height: 100%; 8 | height: 100%; 9 | overflow: hidden; 10 | background-color: #1d292c; 11 | font-family: Helvetica, arial, sans-serif; 12 | position: relative; 13 | width: 100%; 14 | 15 | -webkit-tap-highlight-color: transparent; 16 | } 17 | 18 | #application-canvas { 19 | display: block; 20 | position: absolute; 21 | top: 0; 22 | left: 0; 23 | right: 0; 24 | bottom: 0; 25 | } 26 | #application-canvas.fill-mode-NONE { 27 | margin: auto; 28 | } 29 | #application-canvas.fill-mode-KEEP_ASPECT { 30 | width: 100%; 31 | height: auto; 32 | margin: 0; 33 | } 34 | #application-canvas.fill-mode-FILL_WINDOW { 35 | width: 100%; 36 | height: 100%; 37 | margin: 0; 38 | } 39 | 40 | canvas:focus { 41 | outline: none; 42 | } 43 | -------------------------------------------------------------------------------- /gfiles/hextris/CNAME: -------------------------------------------------------------------------------- 1 | hextris.io 2 | -------------------------------------------------------------------------------- /gfiles/hextris/a.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gfiles/hextris/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/hextris/favicon.ico -------------------------------------------------------------------------------- /gfiles/hextris/images/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/hextris/images/android.png -------------------------------------------------------------------------------- /gfiles/hextris/images/btn_back.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back button 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gfiles/hextris/images/btn_pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Pause button 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gfiles/hextris/images/btn_resume.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Resume button 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gfiles/hextris/images/facebook-opengraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/hextris/images/facebook-opengraph.png -------------------------------------------------------------------------------- /gfiles/hextris/images/icon_arrows.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Arrows icon 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /gfiles/hextris/images/twitter-opengraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/hextris/images/twitter-opengraph.png -------------------------------------------------------------------------------- /gfiles/hextris/js/Text.js: -------------------------------------------------------------------------------- 1 | function Text(x,y,text,font,color,incrementFunction){ 2 | this.x = x; 3 | this.y = y; 4 | this.font = font; 5 | this.color = color; 6 | this.opacity =1; 7 | this.text = text; 8 | this.alive=1; 9 | this.draw = function(){ 10 | if (this.alive>0) { 11 | ctx.globalAlpha = this.opacity; 12 | renderText((this.x + gdx), (this.y + gdy),50,this.color,this.text); 13 | ctx.globalAlpha =1; 14 | incrementFunction(this); 15 | return true; 16 | } 17 | else { 18 | return false; 19 | } 20 | }; 21 | } 22 | 23 | function fadeUpAndOut(text){ 24 | text.opacity -= MainHex.dt * Math.pow(Math.pow((1-text.opacity), 1/3)+1,3)/100; 25 | text.alive = text.opacity; 26 | text.y -= 3 * MainHex.dt; 27 | } 28 | -------------------------------------------------------------------------------- /gfiles/hextris/js/math.js: -------------------------------------------------------------------------------- 1 | function rotatePoint(x, y, theta) { 2 | var thetaRad = theta * (Math.PI / 180); 3 | var rotX = Math.cos(thetaRad) * x - Math.sin(thetaRad) * y; 4 | var rotY = Math.sin(thetaRad) * x + Math.cos(thetaRad) * y; 5 | 6 | return { 7 | x: rotX, 8 | y: rotY 9 | }; 10 | } 11 | 12 | function randInt(min, max) { 13 | return Math.floor((Math.random() * max) + min); 14 | } 15 | -------------------------------------------------------------------------------- /gfiles/hextris/style/fa/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/hextris/style/fa/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /gfiles/hextris/style/fa/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/hextris/style/fa/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /gfiles/hextris/style/fa/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/hextris/style/fa/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /gfiles/hextris/style/fa/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/hextris/style/fa/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /gfiles/hextris/style/fonts/Exo2-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/hextris/style/fonts/Exo2-ExtraLight.otf -------------------------------------------------------------------------------- /gfiles/hextris/style/fonts/Exo2-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/hextris/style/fonts/Exo2-Regular.otf -------------------------------------------------------------------------------- /gfiles/hextris/style/fonts/Exo2-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/hextris/style/fonts/Exo2-SemiBold.otf -------------------------------------------------------------------------------- /gfiles/hextris/style/fonts/Lovelo.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/hextris/style/fonts/Lovelo.otf -------------------------------------------------------------------------------- /gfiles/hextris/style/fonts/QuattrocentoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/hextris/style/fonts/QuattrocentoSans-Regular.ttf -------------------------------------------------------------------------------- /gfiles/hextris/style/fonts/roboto.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/hextris/style/fonts/roboto.woff -------------------------------------------------------------------------------- /gfiles/hextris/vendor/jsonfn.min.js: -------------------------------------------------------------------------------- 1 | "use strict";(function(exports){exports.stringify=function(e){return JSON.stringify(e,function(e,t){if(t instanceof Function||typeof t=="function"){return t.toString()}if(t instanceof RegExp){return"_PxEgEr_"+t}return t})};exports.parse=function(str,date2obj){var iso8061=date2obj?/^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2}(?:\.\d*)?)Z$/:false;return JSON.parse(str,function(key,value){var prefix;if(typeof value!="string"){return value}if(value.length<8){return value}prefix=value.substring(0,8);if(iso8061&&value.match(iso8061)){return new Date(value)}if(prefix==="function"){return eval("("+value+")")}if(prefix==="_PxEgEr_"){return eval(value.slice(8))}return value})};exports.clone=function(e,t){return exports.parse(exports.stringify(e),t)}})(typeof exports==="undefined"?window.JSONfn={}:exports) -------------------------------------------------------------------------------- /gfiles/pacman/.gitignore: -------------------------------------------------------------------------------- 1 | **.db** 2 | *.db 3 | .idea/ 4 | -------------------------------------------------------------------------------- /gfiles/pacman/.htaccess: -------------------------------------------------------------------------------- 1 | AddType application/x-web-app-manifest+json .webapp 2 | AddType application/json .json 3 | AddCharset ISO-8859-1 .json -------------------------------------------------------------------------------- /gfiles/pacman/cache.manifest: -------------------------------------------------------------------------------- 1 | CACHE MANIFEST 2 | # Pacman 0.91 24.05.2016 beta 3 | 4 | CACHE: 5 | 6 | # HTML 7 | index.htm 8 | 9 | # CSS 10 | pacman-canvas.css 11 | 12 | # external resources 13 | style.css 14 | img/bg-pattern-black.png 15 | 16 | # fonts 17 | fonts/PressStart2Play.eot 18 | fonts/PressStart2Play.woff 19 | fonts/PressStart2Play.ttf 20 | 21 | # JavaScript 22 | pacman-canvas.js 23 | js/jquery-1.10.2.min.js 24 | js/jquery.hammer.min.js 25 | 26 | # data 27 | data/map.json 28 | 29 | # images 30 | img/blinky.svg 31 | img/clyde.svg 32 | img/inky.svg 33 | img/pinky.svg 34 | img/dazzled.svg 35 | img/dazzled2.svg 36 | img/dead.svg 37 | img/heart.png 38 | img/audio-icon.png 39 | img/audio-icon-mute.png 40 | img/platzh1rsch-logo.png 41 | img/instructions/instructions_chase.PNG 42 | img/instructions/instructions_scatter.PNG 43 | img/instructions/instructions_powerpill.PNG 44 | 45 | # MP3 46 | mp3/die.mp3 47 | mp3/eatghost.mp3 48 | mp3/powerpill.mp3 49 | mp3/theme.mp3 50 | mp3/waka.mp3 51 | 52 | # WAV 53 | wav/die.wav 54 | wav/eatghost.wav 55 | wav/powerpill.wav 56 | wav/theme.wav 57 | wav/waka.wav 58 | 59 | NETWORK: 60 | * 61 | -------------------------------------------------------------------------------- /gfiles/pacman/fonts/PressStart2Play.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/fonts/PressStart2Play.eot -------------------------------------------------------------------------------- /gfiles/pacman/fonts/PressStart2Play.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/fonts/PressStart2Play.ttf -------------------------------------------------------------------------------- /gfiles/pacman/fonts/PressStart2Play.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/fonts/PressStart2Play.woff -------------------------------------------------------------------------------- /gfiles/pacman/googlee6aee5a894225e60.html: -------------------------------------------------------------------------------- 1 | google-site-verification: googlee6aee5a894225e60.html -------------------------------------------------------------------------------- /gfiles/pacman/img/Icon-106x106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/img/Icon-106x106.png -------------------------------------------------------------------------------- /gfiles/pacman/img/Icon-130x130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/img/Icon-130x130.png -------------------------------------------------------------------------------- /gfiles/pacman/img/Icon-150x130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/img/Icon-150x130.png -------------------------------------------------------------------------------- /gfiles/pacman/img/Icon-200x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/img/Icon-200x200.png -------------------------------------------------------------------------------- /gfiles/pacman/img/Icon-300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/img/Icon-300x300.png -------------------------------------------------------------------------------- /gfiles/pacman/img/Icon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/img/Icon-32x32.png -------------------------------------------------------------------------------- /gfiles/pacman/img/Icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/img/Icon-512x512.png -------------------------------------------------------------------------------- /gfiles/pacman/img/audio-icon-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/img/audio-icon-mute.png -------------------------------------------------------------------------------- /gfiles/pacman/img/audio-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/img/audio-icon.png -------------------------------------------------------------------------------- /gfiles/pacman/img/bg-pattern-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/img/bg-pattern-black.png -------------------------------------------------------------------------------- /gfiles/pacman/img/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/img/heart.png -------------------------------------------------------------------------------- /gfiles/pacman/img/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/img/icon-128.png -------------------------------------------------------------------------------- /gfiles/pacman/img/icon-128_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/img/icon-128_old.png -------------------------------------------------------------------------------- /gfiles/pacman/img/instructions/instructions_chase.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/img/instructions/instructions_chase.PNG -------------------------------------------------------------------------------- /gfiles/pacman/img/instructions/instructions_powerpill.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/img/instructions/instructions_powerpill.PNG -------------------------------------------------------------------------------- /gfiles/pacman/img/instructions/instructions_scatter.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/img/instructions/instructions_scatter.PNG -------------------------------------------------------------------------------- /gfiles/pacman/img/platzh1rsch-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/img/platzh1rsch-logo.png -------------------------------------------------------------------------------- /gfiles/pacman/js/pacman/ghost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/js/pacman/ghost.js -------------------------------------------------------------------------------- /gfiles/pacman/js/pacman/pacman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/js/pacman/pacman.js -------------------------------------------------------------------------------- /gfiles/pacman/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Pacman Canvas", 3 | "short_name": "Pacman Canvas", 4 | "description": "An old classic, rewritten in HTML5", 5 | "version": "0.92", 6 | "lang": "en-US", 7 | 8 | "display": "standalone", 9 | "orientation": "portrait", 10 | "start_url": "./?utm_source=web_app_manifest", 11 | 12 | 13 | "icons": [ 14 | { 15 | "src": "img/icon-128.png", 16 | "sizes": "128x128", 17 | } 18 | ], 19 | 20 | "app": { 21 | "urls": [ 22 | "http://pacman.platzh1rsch.ch/" 23 | ], 24 | "launch": { 25 | "web_url": "http://pacman.platzh1rsch.ch" 26 | } 27 | 28 | }, 29 | 30 | "verification_key" : "eca78f4d-14f3-4fe7-8b44-3e0006a9a9c7", 31 | "type" : "web", 32 | "last_update" : "2018-03-06 16:45:11+0000" 33 | 34 | } 35 | -------------------------------------------------------------------------------- /gfiles/pacman/mp3/die.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/mp3/die.mp3 -------------------------------------------------------------------------------- /gfiles/pacman/mp3/eatghost.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/mp3/eatghost.mp3 -------------------------------------------------------------------------------- /gfiles/pacman/mp3/powerpill.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/mp3/powerpill.mp3 -------------------------------------------------------------------------------- /gfiles/pacman/mp3/theme.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/mp3/theme.mp3 -------------------------------------------------------------------------------- /gfiles/pacman/mp3/waka.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/mp3/waka.mp3 -------------------------------------------------------------------------------- /gfiles/pacman/pacman-canvas.webapp: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Pacman Canvas", 3 | "description": "An old classic, rewritten in HTML5", 4 | "launch_path": "/", 5 | "developer": { 6 | "name": "platzh1rsch", 7 | "url": "http://platzh1rsch.ch" 8 | }, 9 | "icons": { 10 | "128": "/img/icon-128.png" 11 | }, 12 | "default_locale": "en" 13 | } -------------------------------------------------------------------------------- /gfiles/pacman/wav/die.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/wav/die.wav -------------------------------------------------------------------------------- /gfiles/pacman/wav/eatghost.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/wav/eatghost.wav -------------------------------------------------------------------------------- /gfiles/pacman/wav/powerpill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/wav/powerpill.wav -------------------------------------------------------------------------------- /gfiles/pacman/wav/theme.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/wav/theme.wav -------------------------------------------------------------------------------- /gfiles/pacman/wav/waka.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/pacman/wav/waka.wav -------------------------------------------------------------------------------- /gfiles/pacman/web-app-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "verification_key" : "eca78f4d-14f3-4fe7-8b44-3e0006a9a9c7", 3 | "version" : "0.92", 4 | "type" : "web", 5 | "last_update" : "2018-03-06 16:45:11+0000" 6 | } 7 | -------------------------------------------------------------------------------- /gfiles/radius-raid/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | concat.js 3 | 4 | notes.txt 5 | 6 | radius-raid-js13k.sublime-project 7 | radius-raid-js13k.sublime-workspace -------------------------------------------------------------------------------- /gfiles/radius-raid/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Jack Rugile 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /gfiles/radius-raid/js/audio.js: -------------------------------------------------------------------------------- 1 | $.audio = { 2 | sounds: {}, 3 | references: [], 4 | play: function( sound ) { 5 | if( !$.mute ){ 6 | var audio = $.audio.sounds[ sound ]; 7 | if( audio.length > 1 ){ 8 | audio = $.audio.sounds[ sound ][ Math.floor( $.util.rand( 0, audio.length ) ) ]; 9 | } else { 10 | audio = $.audio.sounds[ sound ][ 0 ]; 11 | } 12 | audio.pool[ audio.tick ].play(); 13 | if( audio.tick < audio.count - 1 ) { 14 | audio.tick++; 15 | } else { 16 | audio.tick = 0; 17 | } 18 | } 19 | } 20 | }; 21 | 22 | for( var k in $.definitions.audio ) { 23 | $.audio.sounds[ k ] = []; 24 | 25 | $.definitions.audio[ k ].params.forEach( function( elem, index, array ) { 26 | $.audio.sounds[ k ].push( { 27 | tick: 0, 28 | count: $.definitions.audio[ k ].count, 29 | pool: [] 30 | } ); 31 | 32 | for( var i = 0; i < $.definitions.audio[ k ].count; i++ ) { 33 | var audio = new Audio(); 34 | audio.src = jsfxr( elem ); 35 | $.audio.references.push( audio ); 36 | $.audio.sounds[ k ][ index ].pool.push( audio ); 37 | } 38 | 39 | } ); 40 | } -------------------------------------------------------------------------------- /gfiles/radius-raid/js/storage.js: -------------------------------------------------------------------------------- 1 | // local storage helpers - source: http://stackoverflow.com/questions/2010892/storing-objects-in-html5-localstorage/3146971#3146971 2 | Storage.prototype.setObject = function( key, value ) { 3 | this.setItem( key, JSON.stringify( value ) ); 4 | } 5 | 6 | Storage.prototype.getObject = function( key ) { 7 | var value = this.getItem( key ); 8 | return value && JSON.parse( value ); 9 | } 10 | 11 | Storage.prototype.removeObject = function( key ) { 12 | this.removeItem( key ); 13 | } 14 | 15 | $.setupStorage = function() { 16 | $.storage = localStorage.getObject( 'radiusraid' ) || { 17 | 'mute': 0, 18 | 'autofire': 0, 19 | 'score': 0, 20 | 'level': 0, 21 | 'rounds': 0, 22 | 'kills': 0, 23 | 'bullets': 0, 24 | 'powerups': 0, 25 | 'time': 0 26 | }; 27 | }; 28 | 29 | $.updateStorage = function() { 30 | localStorage.setObject( 'radiusraid', $.storage ); 31 | }; 32 | 33 | $.clearStorage = function() { 34 | localStorage.removeObject( 'radiusraid' ); 35 | $.setupStorage(); 36 | }; -------------------------------------------------------------------------------- /gfiles/radius-raid/min.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/radius-raid/min.zip -------------------------------------------------------------------------------- /gfiles/spaceinvaders/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Tóth Róbert 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /gfiles/spaceinvaders/README.md: -------------------------------------------------------------------------------- 1 | SpaceInvaders 2 | ============= 3 | This is a remake of the space invader phaser example, which you can find here: 4 | http://examples.phaser.io/ 5 | 6 | This remake is made with require.js, which breaks up the code into modules. 7 | Modules are in assets/javascript/module 8 | 9 | Code is more organized thanks to State and Statemanager class from Phaser. 10 | You can find the states in assets/javascript/state 11 | 12 | I used Phaser 2.0.1(no Physics) from the Dev branch. 13 | The dev branch has a lot of bug fixes so it's recommended to use it. 14 | 15 | Thanks to require.js, i made an optimized version of my game, 16 | which can be viewed with indexOpt.html. This use the "compiled" code, which can be found in assets/javascript/built 17 | 18 | Known issue: In every new play state(after the end state) the game makes new DOM nodes. 19 | The cause: in every cycle i make a new text to show the score. 20 | I tried to destroy the texts but i never succeed. 21 | 22 | You can play with it here: http://strykerkkd.github.io/SpaceInvaders/ 23 | -------------------------------------------------------------------------------- /gfiles/spaceinvaders/assets/css/skulls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/spaceinvaders/assets/css/skulls.png -------------------------------------------------------------------------------- /gfiles/spaceinvaders/assets/css/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #000205; 3 | background-image: url("skulls.png"); 4 | } 5 | 6 | #game { 7 | position: fixed; 8 | top: 50%; 9 | left: 50%; 10 | margin-top: -300px; 11 | margin-left: -400px; 12 | } -------------------------------------------------------------------------------- /gfiles/spaceinvaders/assets/img/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/spaceinvaders/assets/img/bullet.png -------------------------------------------------------------------------------- /gfiles/spaceinvaders/assets/img/enemy-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/spaceinvaders/assets/img/enemy-bullet.png -------------------------------------------------------------------------------- /gfiles/spaceinvaders/assets/img/explode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/spaceinvaders/assets/img/explode.png -------------------------------------------------------------------------------- /gfiles/spaceinvaders/assets/img/invader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/spaceinvaders/assets/img/invader.png -------------------------------------------------------------------------------- /gfiles/spaceinvaders/assets/img/invader32x32x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/spaceinvaders/assets/img/invader32x32x4.png -------------------------------------------------------------------------------- /gfiles/spaceinvaders/assets/img/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/spaceinvaders/assets/img/player.png -------------------------------------------------------------------------------- /gfiles/spaceinvaders/assets/img/starfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/spaceinvaders/assets/img/starfield.png -------------------------------------------------------------------------------- /gfiles/spaceinvaders/assets/javascript/built.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by stryker on 2014.03.23.. 3 | */ 4 | /* 5 | * Build script 6 | * To use: npm install -g require.js 7 | * r.js -o built.js 8 | * */ 9 | 10 | ({ 11 | baseUrl: ".", 12 | name: "main", 13 | out: "built/main-built.js" 14 | }) -------------------------------------------------------------------------------- /gfiles/spaceinvaders/assets/javascript/main.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by stryker on 2014.03.05.. 3 | */ 4 | require(['state/Load','state/Start','state/Play','state/End','lib/phaser-no-physics.min'],function(Load,Start,Play,End){ 5 | 6 | var _game = new Phaser.Game(800, 600, Phaser.AUTO, 'game'); 7 | 8 | 9 | //Load state 10 | Load.init(_game,'Start'); //args: game object, next state 11 | _game.state.add('Load',Load.getLoadState()); //args: state name, geting the load state 12 | 13 | //Start State 14 | Start.init(_game,'Play'); 15 | _game.state.add('Start',Start.getStartState()); 16 | 17 | //Play State 18 | Play.init(_game,'End'); 19 | _game.state.add('Play',Play.getPlayState()); 20 | 21 | //End State 22 | End.init(_game,'Play'); 23 | _game.state.add('End',End.getEndState()); 24 | 25 | //Starting the Load state 26 | _game.state.start('Load'); 27 | 28 | }); 29 | -------------------------------------------------------------------------------- /gfiles/spaceinvaders/assets/javascript/module/Background.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by stryker on 2014.03.05.. 3 | */ 4 | define(function(){ 5 | 6 | //Private variables 7 | var _game = null, 8 | _starfield = null; 9 | 10 | return{ 11 | init: function(game,level,mode){ 12 | _game = game; 13 | }, 14 | preload: function(){ 15 | _game.load.image('starfield', 'assets/img/starfield.png'); 16 | }, 17 | create: function(){ 18 | _starfield = _game.add.tileSprite(0, 0,800,600, 'starfield'); 19 | }, 20 | update: function(){ 21 | _starfield.tilePosition.y +=2; 22 | } 23 | 24 | } 25 | }); -------------------------------------------------------------------------------- /gfiles/spaceinvaders/assets/javascript/module/Bullets.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by stryker on 2014.03.05.. 3 | */ 4 | define(function(){ 5 | var _game = null; 6 | 7 | var _Bullets = function(quantity,type,damage){ 8 | var _bulletGroup = _game.add.group(); 9 | _bulletGroup.enableBody = true; 10 | _bulletGroup.physicsBodyType = Phaser.Physics.ARCADE; 11 | _bulletGroup.createMultiple(quantity,type); 12 | _bulletGroup.setAll('anchor.x',0.5); 13 | _bulletGroup.setAll('anchor.y',1); 14 | _bulletGroup.setAll('outOfBoundsKill',true); 15 | 16 | //costume property 17 | _bulletGroup.setAll('bulletDamage',damage); 18 | 19 | return{ 20 | getBulletGroup : function(){ 21 | return _bulletGroup; 22 | } 23 | } 24 | 25 | }; 26 | 27 | return{ 28 | init: function(game){ 29 | _game = game; 30 | }, 31 | preload: function(){ 32 | _game.load.image('bullet','assets/img/bullet.png'); 33 | _game.load.image('enemyBullet','assets/img/enemy-bullet.png'); 34 | }, 35 | create: function(quantity,type,damage){ 36 | return( new _Bullets(quantity,type,damage) ); 37 | } 38 | } 39 | }); -------------------------------------------------------------------------------- /gfiles/spaceinvaders/assets/javascript/module/Explosions.js: -------------------------------------------------------------------------------- 1 | define(function(){ 2 | var _game = null; 3 | 4 | var _Exploisons = function(quantity,type){ 5 | var _explosions = _game.add.group(); 6 | _explosions.createMultiple(quantity,type); 7 | _explosions.forEach(setupExploisons,this); 8 | 9 | var _type = type; 10 | 11 | function setupExploisons(exploison){ 12 | exploison.anchor.x = 0.5; 13 | exploison.anchor.y = 0.5; 14 | exploison.animations.add(type); 15 | } 16 | 17 | return{ 18 | getExplosionGroup: function(){ 19 | return _explosions; 20 | } 21 | } 22 | 23 | } 24 | 25 | return{ 26 | init: function(game){ 27 | _game = game; 28 | }, 29 | preload: function(){ 30 | _game.load.spritesheet('kaboom','assets/img/explode.png',128,128); 31 | }, 32 | create: function(quantity,type){ 33 | return( new _Exploisons(quantity,type)); 34 | } 35 | } 36 | }); -------------------------------------------------------------------------------- /gfiles/spaceinvaders/assets/javascript/module/Level.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by stryker on 2014.03.05.. 3 | */ 4 | -------------------------------------------------------------------------------- /gfiles/spaceinvaders/assets/javascript/state/End.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by stryker on 2014.03.22.. 3 | */ 4 | define(['module/HUD'],function(HUD){ 5 | var _game = null, 6 | _nextState = null; 7 | 8 | var _End = { 9 | create: function(){ 10 | HUD.createTitle(' Game Over \n Press Spacebar'); 11 | 12 | //Starting the Play state after the spacebar is down 13 | _game.input.keyboard.addKey(Phaser.Keyboard.SPACEBAR).onDown.addOnce(function(){ 14 | _game.state.start(_nextState); 15 | }); 16 | } 17 | } 18 | 19 | return{ 20 | init: function(game,nextState){ 21 | _game = game; 22 | _nextState = nextState; 23 | }, 24 | getEndState: function(){ 25 | return (_End); 26 | } 27 | } 28 | }) -------------------------------------------------------------------------------- /gfiles/spaceinvaders/assets/javascript/state/Start.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by stryker on 2014.03.22.. 3 | */ 4 | define(['module/HUD'],function(HUD){ 5 | var _game = null, 6 | _nextState = null, 7 | _activationKey = null; 8 | 9 | //Start State 10 | var _Start = { 11 | create: function(){ 12 | //creating the titel screen 13 | HUD.createTitle(' Space Invader \n Press Spacebar'); 14 | 15 | //Seeting up the Physics for the game 16 | _game.physics.startSystem(Phaser.Physics.ARCADE); 17 | 18 | //Starting the next state(Play) after the spacebar is down 19 | _game.input.keyboard.addKey(Phaser.Keyboard.SPACEBAR).onDown.addOnce(function(){ 20 | _game.state.start(_nextState); 21 | }); 22 | } 23 | } 24 | 25 | return{ 26 | init: function(game,nextState){ 27 | _game = game; 28 | _nextState = nextState; 29 | }, 30 | getStartState: function(){ 31 | return(_Start); 32 | } 33 | 34 | } 35 | }) -------------------------------------------------------------------------------- /gfiles/spaceinvaders/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Space Invaders 6 | 7 | 8 | 9 | 10 |
11 |
12 | 13 | -------------------------------------------------------------------------------- /gfiles/spaceinvaders/indexOpt.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Get Started 6 | 7 | 8 | 9 | 10 | 11 |
12 |
13 | 14 | 15 | -------------------------------------------------------------------------------- /gfiles/towermaster/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "@babel/preset-env", 5 | { 6 | "targets": { 7 | "browsers": [ 8 | "ios >= 9", 9 | "android >= 4" 10 | ] 11 | } 12 | } 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /gfiles/towermaster/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea/ 3 | npm-debug.log 4 | yarn.lock 5 | .DS_Store 6 | 7 | -------------------------------------------------------------------------------- /gfiles/towermaster/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 BMQB, Inc 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /gfiles/towermaster/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/background.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/bgm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/bgm.mp3 -------------------------------------------------------------------------------- /gfiles/towermaster/assets/bgm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/bgm.ogg -------------------------------------------------------------------------------- /gfiles/towermaster/assets/block-perfect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/block-perfect.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/block-rope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/block-rope.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/block.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/c1.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/c2.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/c3.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/c4.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/c5.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/c6.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/c7.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/c8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/c8.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/drop-perfect.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/drop-perfect.mp3 -------------------------------------------------------------------------------- /gfiles/towermaster/assets/drop-perfect.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/drop-perfect.ogg -------------------------------------------------------------------------------- /gfiles/towermaster/assets/drop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/drop.mp3 -------------------------------------------------------------------------------- /gfiles/towermaster/assets/drop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/drop.ogg -------------------------------------------------------------------------------- /gfiles/towermaster/assets/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/f1.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/f2.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/f3.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/f4.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/f5.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/f6.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/f7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/f7.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/game-over.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/game-over.mp3 -------------------------------------------------------------------------------- /gfiles/towermaster/assets/game-over.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/game-over.ogg -------------------------------------------------------------------------------- /gfiles/towermaster/assets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/heart.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/hook.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/main-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/main-bg.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/main-index-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/main-index-logo.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/main-index-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/main-index-start.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/main-index-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/main-index-title.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/main-loading-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/main-loading-logo.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/main-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/main-loading.gif -------------------------------------------------------------------------------- /gfiles/towermaster/assets/main-modal-again-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/main-modal-again-b.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/main-modal-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/main-modal-bg.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/main-modal-invite-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/main-modal-invite-b.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/main-modal-over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/main-modal-over.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/main-share-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/main-share-icon.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/rope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/rope.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/rotate.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/rotate.mp3 -------------------------------------------------------------------------------- /gfiles/towermaster/assets/rotate.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/rotate.ogg -------------------------------------------------------------------------------- /gfiles/towermaster/assets/score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/score.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/tutorial-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/tutorial-arrow.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/tutorial.png -------------------------------------------------------------------------------- /gfiles/towermaster/assets/wenxue.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/wenxue.eot -------------------------------------------------------------------------------- /gfiles/towermaster/assets/wenxue.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/wenxue.ttf -------------------------------------------------------------------------------- /gfiles/towermaster/assets/wenxue.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/TitaniumLite/649d9ae0513c4e2b88defcdf9c9c90c91b85ed21/gfiles/towermaster/assets/wenxue.woff -------------------------------------------------------------------------------- /gfiles/towermaster/index.js: -------------------------------------------------------------------------------- 1 | const express = require('express') 2 | const path = require('path') 3 | const opn = require('opn') 4 | 5 | const server = express() 6 | const host = 'http://localhost:8082' 7 | server.use('/assets', express.static(path.resolve(__dirname, './assets'))) 8 | server.use('/dist', express.static(path.resolve(__dirname, './dist'))) 9 | 10 | server.get('*', (req, res) => { 11 | res.sendFile(path.resolve(__dirname, './index.html')); 12 | }) 13 | 14 | server.listen(8082, () => { 15 | console.log(`server started at ${host}`) 16 | opn(host) 17 | }) 18 | -------------------------------------------------------------------------------- /gfiles/towermaster/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tower_game", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "npm run build && node index.js", 8 | "build": "webpack --mode production --module-bind js=babel-loader" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git+https://github.com/bmqb/tower_game.git" 13 | }, 14 | "author": "", 15 | "license": "ISC", 16 | "bugs": { 17 | "url": "https://github.com/bmqb/tower_game/issues" 18 | }, 19 | "homepage": "https://github.com/bmqb/tower_game#readme", 20 | "devDependencies": { 21 | "@babel/core": "^7.0.0-beta.42", 22 | "@babel/preset-env": "^7.0.0-beta.42", 23 | "babel-loader": "^8.0.0-beta", 24 | "webpack": "^4.0.1", 25 | "webpack-cli": "^2.0.9" 26 | }, 27 | "dependencies": { 28 | "cooljs": "^1.0.2", 29 | "express": "^4.16.3", 30 | "opn": "^5.3.0" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /gfiles/towermaster/src/line.js: -------------------------------------------------------------------------------- 1 | import { getMoveDownValue, getLandBlockVelocity } from './utils' 2 | import * as constant from './constant' 3 | 4 | export const lineAction = (instance, engine, time) => { 5 | const i = instance 6 | if (!i.ready) { 7 | i.y = engine.getVariable(constant.lineInitialOffset) 8 | i.ready = true 9 | i.collisionX = engine.width - engine.getVariable(constant.blockWidth) 10 | } 11 | engine.getTimeMovement( 12 | constant.moveDownMovement, 13 | [[instance.y, instance.y + (getMoveDownValue(engine, { pixelsPerFrame: s => s / 2 }))]], 14 | (value) => { 15 | instance.y = value 16 | }, 17 | { 18 | name: 'line' 19 | } 20 | ) 21 | const landBlockVelocity = getLandBlockVelocity(engine, time) 22 | instance.x += landBlockVelocity 23 | instance.collisionX += landBlockVelocity 24 | } 25 | 26 | export const linePainter = (instance, engine) => { 27 | const { ctx, debug } = engine 28 | if (!debug) { 29 | return 30 | } 31 | ctx.save() 32 | ctx.beginPath() 33 | ctx.strokeStyle = 'red' 34 | ctx.moveTo(instance.x, instance.y) 35 | ctx.lineTo(instance.collisionX, instance.y) 36 | ctx.lineWidth = 1 37 | ctx.stroke() 38 | ctx.restore() 39 | } 40 | 41 | -------------------------------------------------------------------------------- /gfiles/towermaster/src/tutorial.js: -------------------------------------------------------------------------------- 1 | import { getHookStatus } from './utils' 2 | import * as constant from './constant' 3 | 4 | export const tutorialAction = (instance, engine, time) => { 5 | const { width, height } = engine 6 | const { name } = instance 7 | if (!instance.ready) { 8 | instance.ready = true 9 | const tutorialWidth = width * 0.2 10 | instance.updateWidth(tutorialWidth) 11 | instance.height = tutorialWidth * 0.46 12 | instance.x = engine.calWidth - instance.calWidth 13 | instance.y = height * 0.45 14 | if (name !== 'tutorial') { 15 | instance.y += instance.height * 1.2 16 | } 17 | } 18 | if (name !== 'tutorial') { 19 | instance.y += Math.cos(time / 200) * instance.height * 0.01 20 | } 21 | } 22 | 23 | export const tutorialPainter = (instance, engine) => { 24 | if (engine.checkTimeMovement(constant.tutorialMovement)) { 25 | return 26 | } 27 | if (getHookStatus(engine) !== constant.hookNormal) { 28 | return 29 | } 30 | const { ctx } = engine 31 | const { name } = instance 32 | const t = engine.getImg(name) 33 | ctx.drawImage(t, instance.x, instance.y, instance.width, instance.height) 34 | } 35 | 36 | -------------------------------------------------------------------------------- /js/primary.js: -------------------------------------------------------------------------------- 1 | function borger() { 2 | var x = document.getElementById("mynavbar"); 3 | if (x.className === "navbar") { 4 | x.className += " responsive"; 5 | } else { 6 | x.className = "navbar"; 7 | } 8 | } 9 | 10 | 11 | function openPage(evt, tab) { 12 | // Declare all variables 13 | var i, tabcontent, tablinks; 14 | 15 | // Get all elements with class="tabcontent" and hide them 16 | tabcontent = document.getElementsByClassName("tabcontent"); 17 | for (i = 0; i < tabcontent.length; i++) { 18 | tabcontent[i].style.display = "none"; 19 | } 20 | 21 | // Get all elements with class="tablinks" and remove the class "active" 22 | tablinks = document.getElementsByClassName("tablinks"); 23 | for (i = 0; i < tablinks.length; i++) { 24 | tablinks[i].className = tablinks[i].className.replace(" active", ""); 25 | } 26 | 27 | // Show the current tab, and add an "active" class to the button that opened the tab 28 | document.getElementById(tab).style.display = "block"; 29 | evt.currentTarget.className += " active"; 30 | } 31 | document.getElementById("indexPage").click(); 32 | -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 TitaniumNetwork 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /public-txt/gg.txt: -------------------------------------------------------------------------------- 1 | -=+ GoGuardian Web Filter Bypass +=- 2 | 3 | 4 | Setup: Create a bookmark, copy the code provided and paste it in as the URL (name it whatever you want). 5 | 6 | 7 | javascript:(function() { 8 | window.onbeforeunload=function() { 9 | return "lol";}})() 10 | 11 | 12 | Instructions for use: 13 | 1. Type in a url into the url bar, or have a link ready. 14 | 2. Press the search key (magnifying glass) and escape key (ESC) at the same time. 15 | 3. Scroll down until you see GoGuardian and/or its logo. 16 | 4. Select GoGuardian and GoGuardian license and click "end process" 17 | 5. VERY QUICKLY enter the url or click the prepared link, then spam the bookmark 18 | 6. When you see a popup saying "Do you want to leave this page?" quickly click "No". 19 | 7. Enjoy! 20 | 21 | 22 | If this doesn't work, message Eli#4511 from the discord. -------------------------------------------------------------------------------- /public-txt/portaprox.txt: -------------------------------------------------------------------------------- 1 | -=< Porta Proxy >=- 2 | 3 | 4 | Allows you to access a given site within other tabs; bypasses Hapara 5 | 6 | Setup: Create a bookmark, copy the provided code and paste it in as the URL (name it whatever you want). 7 | 8 | 9 | javascript:((function(){ 10 | var a,b,c;c="WEBSITE HERE", 11 | b=document.createElement("iframe"), 12 | b.setAttribute("src",c),b.setAttribute("id","rusic-modal"), 13 | b.setAttribute("style","position: fixed; width: 100%; height: 100%; top: 0; left: 0; right: 0; bottom: 0; z-index: 99999999999; background-color: #fff;"), 14 | a=document.getElementsByTagName("body")[0], 15 | a.appendChild(b)})).call(this) 16 | 17 | 18 | To close the Porta Proxy, create another bookmark with this code: 19 | 20 | 21 | javascript: var element = document.getElementById("rusic-modal"); element.parentNode.removeChild(element); 22 | 23 | 24 | 25 | 26 | In order to use Porta-Proxy, you must supply your own proxy website link in the bookmarklet; you put the link inside the quotation marks that read "WEBSITE HERE", and you have to include https:// 27 | -------------------------------------------------------------------------------- /setup.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------