Added more games and a few modifications
2
app.json
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "Holy Unblocker",
|
||||
"name": "Holy Unblocker v5",
|
||||
"description": "Holy Unblocker is a secure web proxy service supporting numerous sites while concentrating on detail with design, mechanics, and features. Bypass web filters regardless of whether it is an extension or network-based.",
|
||||
"repository": "https://github.com/titaniumnetwork-dev/Holy-Unblocker",
|
||||
"logo": "https://raw.githubusercontent.com/titaniumnetwork-dev/Holy-Unblocker/master/views/assets/img/icon.png",
|
||||
|
|
28
backend.js
|
@ -1,13 +1,13 @@
|
|||
/* -----------------------------------------------
|
||||
* Authors: QuiteAFancyEmerald, BinBashBanana (OlyB), YÖCTDÖNALD'S and the lime
|
||||
* Additional help from Divide and SexyDuceDuce >:D
|
||||
* Additional help from Divide and SexyDuceDuce >:D test aaaa
|
||||
* ----------------------------------------------- */
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
const http = require('http');
|
||||
const https = require('https');
|
||||
const express = require('express');
|
||||
const corrosion = require('./');
|
||||
const corrosion = require('corrosion');
|
||||
const config = require('./config.json');
|
||||
const insert = require('./randomization.json');
|
||||
const app = express();
|
||||
|
@ -43,8 +43,10 @@ const pages = {
|
|||
'm': 'pages/nav/emulibrary.html',
|
||||
/* Proxies */
|
||||
'q': 'pages/proxnav/corrosion.html',
|
||||
'rh': 'pages/proxnav/rammerhead.html',
|
||||
'w': 'pages/proxnav/womginx.html',
|
||||
/* Proxy Presets */
|
||||
'sx': 'pages/proxnav/preset/searx.html',
|
||||
'y': 'pages/proxnav/preset/youtube.html',
|
||||
'd': 'pages/proxnav/preset/discord.html',
|
||||
'r': 'pages/proxnav/preset/reddit.html',
|
||||
|
@ -57,10 +59,15 @@ const pages = {
|
|||
const cookingInserts = insert.content;
|
||||
const vegetables = insert.keywords;
|
||||
const charRandom = insert.chars;
|
||||
const splashRandom = insert.splash;
|
||||
const cacheBustList = {
|
||||
// "styles.css": "styles-1642900360.min.css",
|
||||
"common.js": "common-1643838852.js",
|
||||
"links.js": "links-1642900360.js"
|
||||
"styles.css": "styles-1644738239.css",
|
||||
"h5-nav.js": "h5-nav-1644738239.js",
|
||||
"desc.js": "desc-1644738239.js",
|
||||
"header.js": "header-1644738239.js",
|
||||
"footer.js": "footer-1644738239.js",
|
||||
"common.js": "common-1644738239.js",
|
||||
"links.js": "links-1644738239.js"
|
||||
};
|
||||
|
||||
function randomListItem(lis) {
|
||||
|
@ -71,12 +78,12 @@ function insertCharset(str) {
|
|||
return str.replace(/­|​|­|<wbr>/g, function() { return randomListItem(charRandom); }); // this needs to be inside a function, so that not every string is the same
|
||||
}
|
||||
|
||||
function insertCooking(str) {
|
||||
return str.replace(/<!-- IMPORTANT-HUCOOKINGINSERT-DONOTDELETE -->/g, function() { return '<span style="display: none;" data-fact="' + randomListItem(vegetables) + '" data-type="' + randomListItem(vegetables) + '">' + randomListItem(cookingInserts) + '</span>'; }); // this needs to be inside a function, so that not every string is the same
|
||||
function hutaoInsert(str) {
|
||||
return str.replace(/<!--HUTAOWOA-->/g, function() { return randomListItem(splashRandom); }); // this needs to be inside a function, so that not every string is the same
|
||||
}
|
||||
|
||||
function splashPublic(str) {
|
||||
return str.replace(/<!-- ######## -->/g, function() { return '<p class="text-center">Jo­in the <a id="tnlink" target="_blank">T­N Dis­co­rd</a> for more pr­iva️te site lin­ks. Note that this is the public version of HU which is not official. Things may not work or are unsecure.</p>'; }); // this needs to be inside a function, so that not every string is the same
|
||||
function insertCooking(str) {
|
||||
return str.replace(/<!-- IMPORTANT-HUCOOKINGINSERT-DONOTDELETE -->/g, function() { return '<span style="display: none;" data-fact="' + randomListItem(vegetables) + '" data-type="' + randomListItem(vegetables) + '">' + randomListItem(cookingInserts) + '</span>'; }); // this needs to be inside a function, so that not every string is the same
|
||||
}
|
||||
|
||||
function cacheBusting(str) {
|
||||
|
@ -87,7 +94,7 @@ function cacheBusting(str) {
|
|||
}
|
||||
|
||||
function insertAll(str) {
|
||||
return insertCharset(insertCooking(splashPublic(cacheBusting(str))));
|
||||
return insertCharset(hutaoInsert(insertCooking(cacheBusting(str))));
|
||||
}
|
||||
|
||||
function tryReadFile(file) {
|
||||
|
@ -108,7 +115,6 @@ const proxy = new corrosion({
|
|||
prefix: config.prefix || '/search/',
|
||||
codec: config.codec || 'xor',
|
||||
ws: config.ws,
|
||||
forceHttps: true,
|
||||
requestMiddleware: [
|
||||
corrosion.middleware.blacklist(blacklist, 'Service not allowed due to bot protection! Make sure you are not trying to verify on a proxy.'),
|
||||
],
|
||||
|
|
12
package.json
|
@ -3,7 +3,7 @@
|
|||
"version": "5.0.0",
|
||||
"repository": "https://github.com/QuiteAFancyEmerald/Holy-Unblocker",
|
||||
"description": "Holy Unblocker is a secure web proxy service with support for many sites.",
|
||||
"main": "lib/server/index.js",
|
||||
"main": "backend.js",
|
||||
"scripts": {
|
||||
"start": "node backend.js"
|
||||
},
|
||||
|
@ -14,20 +14,12 @@
|
|||
],
|
||||
"author": "Titanium Network",
|
||||
"license": "MIT",
|
||||
"directories": {
|
||||
"lib": "lib"
|
||||
},
|
||||
"dependencies": {
|
||||
"corrosion": "^1.0.0",
|
||||
"express": "^4.17.1",
|
||||
"mime-types": "^2.1.27",
|
||||
"node-fetch": "^3.2.0",
|
||||
"ws": "^7.5.3",
|
||||
"acorn-hammerhead": "^0.5.0",
|
||||
"css-tree": "^1.1.3",
|
||||
"esotope-hammerhead": "^0.6.1",
|
||||
"parse5": "^6.0.1",
|
||||
"webpack": "^5.46.0"
|
||||
"ws": "^7.5.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=12.20.0"
|
||||
|
|
|
@ -3,10 +3,13 @@
|
|||
"­", "​", "­"
|
||||
],
|
||||
"keywords": [
|
||||
"Thanksgiving", "Science"
|
||||
"Example1", "Example2"
|
||||
],
|
||||
"content": [
|
||||
"Cooking is something that most people are doing or try to do. Some do it as a profession, some do it for fun, and some do it because they have to do it. People are going to cooking, because some food is raw that people cannot eat it, because it is not tasty.",
|
||||
"Example 2"
|
||||
"Example1Example1Example1Example1Example1Example1Example1Example1Example1Example1Example1Example1Example1Example1Example1Example1Example1Example1Example1Example1Example1Example1Example1Example1Example1",
|
||||
"Example2Example2Example2Example2Example2Example2Example2Example2Example2Example2Example2Example2Example2Example2Example2Example2Example2Example2Example2Example2Example2Example2Example2Example2Example2"
|
||||
],
|
||||
"splash": [
|
||||
"Jo­in the <a id='tnlink' target='_blank'>T­N Dis­co­rd</a> for more pr­iva️te site lin­ks. Note that this is the public version of HU which is not official. Things may not work or are unsecure."
|
||||
]
|
||||
}
|
|
@ -23,7 +23,6 @@
|
|||
<div class="box-error text-center">
|
||||
<h1>404 Error</h1>
|
||||
<p>The requested file was not found on this server!</p>
|
||||
<p>Note that only Corr<wbr>osion is hosted locally on the public version of H<wbr>oly Unbl<wbr>ocker.</p>
|
||||
<p>View the <a href="/?faq" class="bluelink">FAQ page</a> for help?</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -854,6 +854,16 @@ strong) {
|
|||
margin: 0px auto;
|
||||
}
|
||||
|
||||
.responsive-fix {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
#cor-logo {
|
||||
border-radius: 50%;
|
||||
padding: 20px;
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
.box-g {
|
||||
padding: 10px 50px;
|
||||
}
|
||||
|
@ -871,17 +881,25 @@ strong) {
|
|||
width: 200px;
|
||||
padding: 20px;
|
||||
margin: 10px;
|
||||
border: 1px solid var(--nord4);
|
||||
border: 2px solid var(--nord9);
|
||||
border-radius: 5% 15%;
|
||||
transition: ease-in-out 0.5s;
|
||||
flex-grow: 0;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
#glist>a:hover {
|
||||
border: 2px solid var(--nord11);
|
||||
}
|
||||
|
||||
#glist>a img {
|
||||
pointer-events: none;
|
||||
border-radius: 30%;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
object-position: 50% top;
|
||||
object-fit: contain;
|
||||
object-fit: cover;
|
||||
box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.38);
|
||||
}
|
||||
|
||||
#glist>a h3 {
|
BIN
views/assets/img/h5g/amongus.jpg
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
views/assets/img/h5g/ducklife.png
Normal file
After Width: | Height: | Size: 100 KiB |
BIN
views/assets/img/h5g/ducklife2.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
views/assets/img/h5g/ducklife3.png
Normal file
After Width: | Height: | Size: 174 KiB |
BIN
views/assets/img/h5g/ducklife4.png
Normal file
After Width: | Height: | Size: 146 KiB |
BIN
views/assets/img/h5g/firewater.png
Normal file
After Width: | Height: | Size: 308 KiB |
BIN
views/assets/img/h5g/friendlyfire.jpg
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
views/assets/img/h5g/gachalife.png
Normal file
After Width: | Height: | Size: 1.1 MiB |
BIN
views/assets/img/h5g/mcnow.jpg
Normal file
After Width: | Height: | Size: 53 KiB |
BIN
views/assets/img/h5g/pubg.jpg
Normal file
After Width: | Height: | Size: 90 KiB |
BIN
views/assets/img/h5g/roblox.jpg
Normal file
After Width: | Height: | Size: 71 KiB |
BIN
views/assets/img/h5g/slope.jpg
Normal file
After Width: | Height: | Size: 52 KiB |
BIN
views/assets/img/h5g/vex3.png
Normal file
After Width: | Height: | Size: 68 KiB |
BIN
views/assets/img/h5g/vex4.png
Normal file
After Width: | Height: | Size: 237 KiB |
BIN
views/assets/img/h5g/vex5.png
Normal file
After Width: | Height: | Size: 50 KiB |
BIN
views/assets/img/hutao1.png
Normal file
After Width: | Height: | Size: 638 KiB |
BIN
views/assets/img/hutao2.jpg
Normal file
After Width: | Height: | Size: 100 KiB |
BIN
views/assets/img/rhicon.webp
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
views/assets/img/tn.webp
Normal file
After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
|
@ -30,6 +30,8 @@ function setAuthCookie(s, lax) {
|
|||
document.cookie = s + "; expires=" + (Date.now() + 259200) + "; SameSite=" + (lax ? "Lax" : "None") + "; domain=." + getDomain() + "; path=/; Secure;";
|
||||
}
|
||||
|
||||
let sxlink = 'https://searx.degenerate.info';
|
||||
|
||||
/* To use:
|
||||
* goProx.proxy(url-string, stealth-boolean-optional)
|
||||
*
|
||||
|
@ -47,19 +49,41 @@ window.goProx = {
|
|||
setAuthCookie("wgauth=yes", false);
|
||||
goToUrl("https://a." + getDomain() + "/main/" + url, stealth);
|
||||
},
|
||||
invid: function(url, stealth) {
|
||||
setAuthCookie("__cor_auth=1", true);
|
||||
goToUrl("https://client." + getDomain(), stealth);
|
||||
searx: function(stealth) {
|
||||
setAuthCookie("oldsmobile=badcar", true);
|
||||
goToUrl("https://c." + getDomain() + "/engine/", stealth);
|
||||
},
|
||||
libreddit: function(stealth) {
|
||||
setAuthCookie("oldsmobile=badcar", true);
|
||||
goToUrl("https://c." + getDomain(), stealth);
|
||||
},
|
||||
rnav: function(stealth) {
|
||||
goToUrl("https://client." + getDomain(), stealth);
|
||||
},
|
||||
osu: function(stealth) {
|
||||
setAuthCookie("osauth=true", false);
|
||||
goToUrl("https://osu." + getDomain() + "/index.html", stealth);
|
||||
},
|
||||
|
||||
mcnow: function(stealth) {
|
||||
setAuthCookie("__cor_auth=1", false);
|
||||
goToUrl("https://cdn." + getDomain() + "/search/gateway?url=" + ('https://now.gg/play/mojang/2534/minecraft-trial'), stealth);
|
||||
},
|
||||
glife: function(stealth) {
|
||||
setAuthCookie("__cor_auth=1", false);
|
||||
goToUrl("https://cdn." + getDomain() + "/search/gateway?url=" + ('https://now.gg/play/lunime/5767/gacha-life'), stealth);
|
||||
},
|
||||
roblox: function(stealth) {
|
||||
setAuthCookie("__cor_auth=1", false);
|
||||
goToUrl("https://cdn." + getDomain() + "/search/gateway?url=" + ('https://now.gg/play/roblox-corporation/5349/roblox'), stealth);
|
||||
},
|
||||
amongus: function(stealth) {
|
||||
setAuthCookie("__cor_auth=1", false);
|
||||
goToUrl("https://cdn." + getDomain() + "/search/gateway?url=" + ('https://now.gg/play/innersloth-llc/4047/among-us'), stealth);
|
||||
},
|
||||
pubg: function(stealth) {
|
||||
setAuthCookie("__cor_auth=1", false);
|
||||
goToUrl("https://cdn." + getDomain() + "/search/gateway?url=" + ('https://now.gg/play/proxima-beta/2609/pubg-mobile-resistance'), stealth);
|
||||
},
|
||||
train: function(stealth) {
|
||||
setAuthCookie("wgauth=yes", false);
|
||||
goToUrl("https://a." + getDomain() + "/go/" + ('v6p9' + 'd9t4.ssl.hw' + 'cdn.net/html/1970' + '387/index.ht' + 'ml'), stealth);
|
1
views/assets/js/desc-1644738239.js
Normal file
|
@ -0,0 +1 @@
|
|||
document.getElementById("desc").innerHTML = decodeURIComponent(atob("JTNDZGl2JTIwaWQlM0QlMjJpbmZvJTIyJTIwY2xhc3MlM0QlMjJib3gtaW5mbyUyMGJveC1sYXJnZSUyMHRleHQtY2VudGVyJTIwdGV4dG0lMjIlM0UlMjAlM0NoMiUzRVdoYXQlMjBpcyUyMEhvJTNDd2JyJTNFbHklMjBVbmIlM0N3YnIlM0VsbyUzQ3diciUzRWNrZXIlM0YlM0MlMkZoMiUzRSUyMCUzQ3AlM0VIbyUzQ3diciUzRWx5JTIwVW5iJTNDd2JyJTNFbG9jJTNDd2JyJTNFa2VyJTJDJTIwYW4lMjBvZmZpY2lhbCUyMGZsYWclM0N3YnIlM0VzaGlwJTIwVGl0JTNDd2JyJTNFYW5pJTNDd2JyJTNFdW0lMjBOZXR3b3IlM0N3YnIlM0VrJTIwc2l0ZSUyQyUyMGNhbiUyMGJ5JTNDd2JyJTNFcGElM0N3YnIlM0VzcyUyMHdlYiUyMGZpJTNDd2JyJTNFbHRlJTNDd2JyJTNFcnMlMjBvciUyMCUyMmJsbyUzQ3diciUzRWNrZSUzQ3diciUzRXJzJTIyJTIwcmVnYXJkbGVzcyUyMG9mJTIwd2hldCUzQ3diciUzRWhlciUyMGl0JTIwaXMlMjBhbiUyMGV4JTNDd2JyJTNFdGVuc2klM0N3YnIlM0VvbiUyMG9yJTIwbmUlM0N3YnIlM0V0d29yJTNDd2JyJTNFay1iYSUzQ3diciUzRXNlZC4lM0MlMkZwJTNFJTNDcCUzRUJlJTNDd2JyJTNFaW5nJTIwYSUyMHNlY3UlM0N3YnIlM0VyZSUyMHdlJTNDd2JyJTNFYiUyMHByJTNDd2JyJTNFb3h5JTIwc2VyJTNDd2JyJTNFdmljZSUyQyUyMGl0JTIwc3VwcG9ydHMlMjBudW1lcm8lM0N3YnIlM0V1cyUyMHNpdGVzJTIwd2hpJTNDd2JyJTNFbGUlMjBiZWluZyUyMHVwZGF0JTNDd2JyJTNFZWQlMjBmcmVxdSUzQ3diciUzRWVudGx5JTIwYW5kJTIwY29uY2VudHJhdGluZyUyMG9uJTIwZGV0YWlsJTIwd2l0aCUyMGRlc2lnbiUyQyUyMG1lY2hhbmljcyUyQyUyMGFuZCUyMGZlYXR1cmVzLiUzQyUyRnAlM0UlM0NoMiUzRUhvdyUyMGRvJTIwSSUyMHUlM0N3YnIlM0VuYmxvJTNDd2JyJTNFY2slMjB3ZWIlM0N3YnIlM0VzaXQlM0N3YnIlM0VlcyUyMHVzaW5nJTIwSG9sJTNDd2JyJTNFeSUyMFVuYmwlM0N3YnIlM0VvY2slM0N3YnIlM0VlciUzRiUzQyUyRmgyJTNFJTIwJTNDcCUzRUhlYWQlMjB0byUyMHRoZSUyMCUzQ2ElMjBocmVmJTNEJTIyJTNGeiUyMiUzRVclM0N3YnIlM0VlYiUyMFByb3hpJTNDd2JyJTNFZXMlM0MlMkZhJTNFJTIwcGFnZSUyMGFuZCUyMHNlbGVjdCUyMG9uZSUyMG9mJTIwdGhlJTIwcHJveCUzQ3diciUzRWllcyUyMGZlYXR1cmVkISUyMEFmdGVyd2FyJTNDd2JyJTNFZHMlMkMlMjB0eXBlJTIwb3V0JTIwdGhlJTIwc2l0JTNDd2JyJTNFZSUyMHlvdSUyMHdpc2glMjB0byUyMGFjY2UlM0N3YnIlM0VzcyUyMGluJTIwdGhlJTIwc2UlM0N3YnIlM0VhcmNoJTIwYm94JTIwKCUyMmV4YSUzQ3diciUzRW1wbGUuY28lM0N3YnIlM0VtJTIyKS4lM0MlMkZwJTNFJTNDcCUzRUlmJTIweW91JTIwd2lzaCUyMHRvJTIwZXhwbG8lM0N3YnIlM0VyZSUyMHRoZSUyMGdhbSUzQ3diciUzRWVzJTIwZmVhdHVyZWQlMjBvbiUyMEglM0N3YnIlM0VVJTNDd2JyJTNFJTJDJTIwY2hlY2slMjBvdXQlMjB0aGUlMjAlM0NhJTIwaHJlZiUzRCUyMiUzRmclMjIlM0VnYW0lM0N3YnIlM0VlJTNDJTJGYSUzRSUyMHBhJTNDd2JyJTNFZ2VzLiUzQyUyRnAlM0UlM0NoMiUzRURvbid0JTIwa25vdyUyMHRoZSUyMGRpJTNDd2JyJTNFZmZlcmVuJTNDd2JyJTNFY2UlMjBiZXR3ZSUzQ3diciUzRWVuJTIwZWFjaCUyMHdlJTNDd2JyJTNFYiUyMHByb3glM0N3YnIlM0V5JTNGJTNDJTJGaDIlM0UlMjAlM0NwJTNFQ2hlY2slMjBvdXQlMjB0aGUlMjB1c2UlMjBjYXNlJTIwZm9yJTIwZWFjaCUyMHByJTNDd2JyJTNFb3h5JTIwaW4lMjB0aGUlMjBwYWdlJTIwZGVzY3IlM0N3YnIlM0VpcHRpb24uJTIwQSUyMHF1aWNrJTIwb3ZlcnYlM0N3YnIlM0VpZXclM0ElM0MlMkZwJTNFJTNDcCUzRS0lMjBDb3JyJTNDd2JyJTNFb3NpJTNDd2JyJTNFb24lM0ElMjBCcm9hZCUyMHN1cHAlM0N3YnIlM0VvcnQlMjBmb3IlMjB0aGUlMjBtYWpvcml0eSUyMG9mJTIwc2l0JTNDd2JyJTNFZXMlMjBidXQlMjBzJTNDd2JyJTNFbG93ZXIlMjAoWW8lM0N3YnIlM0V1VHViJTNDd2JyJTNFZSUyQyUyMG5vJTNDd2JyJTNFdy5nJTNDd2JyJTNFZyUyQyUyMC4lM0N3YnIlM0VpJTNDd2JyJTNFbyUyMHMlM0N3YnIlM0VpdGVzKSUyMCUzQ2JyJTNFLSUyMFdvbSUzQ3diciUzRWdpJTNDd2JyJTNFbnglM0ElMjBGYXN0JTIwYnV0JTIwaGFzJTIwZm8lM0N3YnIlM0Vyd2FyZCUyMHN1cHBvcnQlMjBmb3IlMjBtb3N0JTIwc2l0ZXMlMjAoRGklM0N3YnIlM0VzY29yZCUyQyUyMEJpJTNDd2JyJTNFbmclMjBhbmQlMjBEdSUzQ3diciUzRWNrRHUlM0N3YnIlM0Vja0clM0N3YnIlM0VvKSUyMCUzQyUyRnAlM0UlM0NoMiUzRUFyZSUyMGFsbCUyMHNpdGVzJTIwc3VwcG9ydGVkJTNGJTIwV2h5JTIwYXJlJTIwc29tZSUyMHNpdGVzJTIwbm90JTIwbG9hZGluZyUzRiUzQyUyRmgyJTNFJTIwJTNDcCUzRUFzJTIwYWR2YSUzQ3diciUzRW5jZSUzQ3diciUzRWQlMjBhcyUyMHRoJTNDd2JyJTNFZXklMjBhciUzQ3diciUzRWUlMkMlMjB3ZWIlMjBwciUzQ3diciUzRW94aSUzQ3diciUzRWVzJTIwYXJlJTIwbm90JTIwcGVyZmVjdC4lMjBUaGlzJTIwbWVhbnMlMjB0aGF0JTIwc29tZSUyMHNpJTNDd2JyJTNFdGVzJTIwbWF5JTIwbm90JTIwYmUlMjBzdXBwbyUzQ3diciUzRXJ0ZWQlMjBieSUyMGFueSUyMG9mJTIwdGhlJTIwcCUzQ3diciUzRXJveGklM0N3YnIlM0VlcyUyMGxpJTNDd2JyJTNFc3RlZCUyMGhlJTNDd2JyJTNFcmUlMjBkdWUlMjB0byUyMGxpbWklM0N3YnIlM0V0YXRpb24lM0N3YnIlM0VzJTIwb3IlMjBzZWN1ciUzQ3diciUzRWl0eSUyMG1lJTNDd2JyJTNFYXN1ciUzQ3diciUzRWVzLiUzQyUyRnAlM0UlM0NwJTNFVGglM0N3YnIlM0VpcyUyMGFsc28lMjBhcHAlM0N3YnIlM0VsaWVzJTIwdG8lMjBzcGVlJTNDd2JyJTNFZCUzQiUyMG4lM0N3YnIlM0VhdHVyYSUzQ3diciUzRWxseSUyMHRoaW4lM0N3YnIlM0VncyUyMHdpbGwlMjBiZSUyMHNsbyUzQ3diciUzRXdlciUyMG9yJTIwYnIlM0N3YnIlM0Vva2VuJTIwdW5kZXIlMjBhJTIwcHIlM0N3YnIlM0VveCUzQ3diciUzRXklMjB2ZXIlM0N3YnIlM0VzdXMlMjBkaXIlM0N3YnIlM0VlY3QlMjBhY2NlJTNDd2JyJTNFc3MuJTNDJTJGcCUzRSUzQyUyRmRpdiUzRQ=="));
|
|
@ -1 +0,0 @@
|
|||
document.getElementById("desc").innerHTML = decodeURIComponent(atob("JTNDZGl2JTIwaWQlM0QlMjJpbmZvJTIyJTIwY2xhc3MlM0QlMjJib3gtaW5mbyUyMGJveC1sYXJnZSUyMHRleHQtY2VudGVyJTIwdGV4dG0lMjIlM0UlMjAlM0NoMiUzRVdoYXQlMjBpcyUyMEhvJTNDd2JyJTNFbHklMjBVbmIlM0N3YnIlM0VsbyUzQ3diciUzRWNrZXIlM0YlM0MlMkZoMiUzRSUyMCUzQ3AlM0VIbyUzQ3diciUzRWx5JTIwVW5iJTNDd2JyJTNFbG9jJTNDd2JyJTNFa2VyJTJDJTIwYW4lMjBvZmZpY2lhbCUyMGZsYWclM0N3YnIlM0VzaGlwJTIwVGl0JTNDd2JyJTNFYW5pJTNDd2JyJTNFdW0lMjBOZXR3b3IlM0N3YnIlM0VrJTIwc2l0ZSUyQyUyMGNhbiUyMGJ5JTNDd2JyJTNFcGElM0N3YnIlM0VzcyUyMHdlYiUyMGZpJTNDd2JyJTNFbHRlJTNDd2JyJTNFcnMlMjBvciUyMCUyMmJsbyUzQ3diciUzRWNrZSUzQ3diciUzRXJzJTIyJTIwcmVnYXJkbGVzcyUyMG9mJTIwd2hldCUzQ3diciUzRWhlciUyMGl0JTIwaXMlMjBhbiUyMGV4JTNDd2JyJTNFdGVuc2klM0N3YnIlM0VvbiUyMG9yJTIwbmUlM0N3YnIlM0V0d29yJTNDd2JyJTNFay1iYSUzQ3diciUzRXNlZC4lM0MlMkZwJTNFJTNDcCUzRUJlJTNDd2JyJTNFaW5nJTIwYSUyMHNlY3UlM0N3YnIlM0VyZSUyMHdlJTNDd2JyJTNFYiUyMHByJTNDd2JyJTNFb3h5JTIwc2VyJTNDd2JyJTNFdmljZSUyQyUyMGl0JTIwc3VwcG9ydHMlMjBudW1lcm8lM0N3YnIlM0V1cyUyMHNpdGVzJTIwd2hpJTNDd2JyJTNFbGUlMjBiZWluZyUyMHVwZGF0JTNDd2JyJTNFZWQlMjBmcmVxdSUzQ3diciUzRWVudGx5JTIwYW5kJTIwY29uY2VudHJhdGluZyUyMG9uJTIwZGV0YWlsJTIwd2l0aCUyMGRlc2lnbiUyQyUyMG1lY2hhbmljcyUyQyUyMGFuZCUyMGZlYXR1cmVzLiUzQyUyRnAlM0UlM0NoMiUzRUhvdyUyMGRvJTIwSSUyMHUlM0N3YnIlM0VuYmxvJTNDd2JyJTNFY2slMjB3ZWIlM0N3YnIlM0VzaXQlM0N3YnIlM0VlcyUyMHVzaW5nJTIwSG9sJTNDd2JyJTNFeSUyMFVuYmwlM0N3YnIlM0VvY2slM0N3YnIlM0VlciUzRiUzQyUyRmgyJTNFJTIwJTNDcCUzRUhlYWQlMjB0byUyMHRoZSUyMCUzQ2ElMjBocmVmJTNEJTIyJTNGeiUyMiUzRVclM0N3YnIlM0VlYiUyMFByb3hpJTNDd2JyJTNFZXMlM0MlMkZhJTNFJTIwcGFnZSUyMGFuZCUyMHNlbGVjdCUyMG9uZSUyMG9mJTIwdGhlJTIwcHJveCUzQ3diciUzRWllcyUyMGZlYXR1cmVkISUyMEFmdGVyd2FyJTNDd2JyJTNFZHMlMjB0eXBlJTIwb3V0JTIwdGhlJTIwc2l0JTNDd2JyJTNFZSUyMHlvdSUyMHdpc2glMjB0byUyMGFjY2UlM0N3YnIlM0VzcyUyMGluJTIwdGhlJTIwc2UlM0N3YnIlM0VhcmNoJTIwYm94JTIwKCUyMmV4YSUzQ3diciUzRW1wbGUuY28lM0N3YnIlM0VtJTIyKS4lM0MlMkZwJTNFJTNDcCUzRUlmJTIweW91JTIwd2lzaCUyMHRvJTIwZXhwbG8lM0N3YnIlM0VyZSUyMHRoZSUyMGdhbSUzQ3diciUzRWVzJTIwZmVhdHVyZWQlMjBvbiUyMEglM0N3YnIlM0VVJTNDd2JyJTNFJTIwY2hlY2slMjBvdXQlMjB0aGUlMjAlM0NhJTIwaHJlZiUzRCUyMiUzRmclMjIlM0VnYW0lM0N3YnIlM0VlJTNDJTJGYSUzRSUyMHBhJTNDd2JyJTNFZ2VzLiUzQyUyRnAlM0UlM0NoMiUzRUNvbmZ1c2VkJTIwYWJvdXQlMjB0aGUlMjBkaSUzQ3diciUzRWZmZXJlbiUzQ3diciUzRWNlJTIwYmV0d2UlM0N3YnIlM0VlbiUyMGVhY2glMjB3ZSUzQ3diciUzRWIlMjBwcm94JTNDd2JyJTNFeSUzRiUzQyUyRmgyJTNFJTIwJTNDcCUzRUNoZWNrJTIwb3V0JTIwdGhlJTIwdXNlJTIwY2FzZSUyMGZvciUyMGVhY2glMjBwciUzQ3diciUzRW94eSUyMGluJTIwdGhlJTIwcGFnZSUyMGRlc2NyJTNDd2JyJTNFaXB0aW9uLiUyMEElMjBxdWljayUyMG92ZXJ2JTNDd2JyJTNFaWV3JTNBJTNDJTJGcCUzRSUzQ3AlM0UtJTIwQ29yciUzQ3diciUzRW9zaSUzQ3diciUzRW9uJTNBJTIwQnJvYWQlMjBzdXBwJTNDd2JyJTNFb3J0JTIwZm9yJTIwdGhlJTIwbWFqb3JpdHklMjBvZiUyMHNpdCUzQ3diciUzRWVzJTIwYnV0JTIwcyUzQ3diciUzRWxvd2VyJTIwKFlvJTNDd2JyJTNFdVR1YiUzQ3diciUzRWUlMkMlMjBubyUzQ3diciUzRXcuZyUzQ3diciUzRWclMkMlMjAuJTNDd2JyJTNFaSUzQ3diciUzRW8lMjBzJTNDd2JyJTNFaXRlcyklMjAlM0NiciUzRS0lMjBXb20lM0N3YnIlM0VnaSUzQ3diciUzRW54JTNBJTIwRmFzdCUyMGJ1dCUyMGhhcyUyMGZvJTNDd2JyJTNFcndhcmQlMjBzdXBwb3J0JTIwZm9yJTIwbW9zdCUyMHNpdGVzJTIwKERpJTNDd2JyJTNFc2NvcmQlMkMlMjBCaSUzQ3diciUzRW5nJTIwYW5kJTIwRHUlM0N3YnIlM0Vja0R1JTNDd2JyJTNFY2tHJTNDd2JyJTNFbyklMjAlM0MlMkZwJTNFJTNDaDIlM0VBcmUlMjBhbGwlMjBzaXRlcyUyMHN1cHBvcnRlZCUzRiUyMFdoeSUyMGFyZSUyMHNvbWUlMjBzaXRlcyUyMG5vdCUyMGxvYWRpbmclM0YlM0MlMkZoMiUzRSUyMCUzQ3AlM0VBcyUyMGFkdmElM0N3YnIlM0VuY2UlM0N3YnIlM0VkJTIwYXMlMjB0aCUzQ3diciUzRWV5JTIwYXIlM0N3YnIlM0VlJTJDJTIwd2ViJTIwcHIlM0N3YnIlM0VveGklM0N3YnIlM0VlcyUyMGFyZSUyMG5vdCUyMHBlcmZlY3QuJTIwVGhpcyUyMG1lYW5zJTIwdGhhdCUyMHNvbWUlMjBzaSUzQ3diciUzRXRlcyUyMG1heSUyMG5vdCUyMGJlJTIwc3VwcG8lM0N3YnIlM0VydGVkJTIwYnklMjBhbnklMjBvZiUyMHRoZSUyMHAlM0N3YnIlM0Vyb3hpJTNDd2JyJTNFZXMlMjBoZXJlJTIwZHVlJTIwdG8lMjBsaW1pJTNDd2JyJTNFdGF0aW9uJTNDd2JyJTNFcyUyMG9yJTIwc2VjdXIlM0N3YnIlM0VpdHklMjBtZSUzQ3diciUzRWFzdXIlM0N3YnIlM0Vlcy4lM0MlMkZwJTNFJTNDcCUzRVRoJTNDd2JyJTNFaXMlMjBhbHNvJTIwYXBwJTNDd2JyJTNFbGllcyUyMHRvJTIwc3BlZSUzQ3diciUzRWQlM0IlMjBuJTNDd2JyJTNFYXR1cmElM0N3YnIlM0VsbHklMjB0aGluJTNDd2JyJTNFZ3MlMjB3aWxsJTIwbWF5JTIwc2xvJTNDd2JyJTNFd2VyJTIwb3IlMjBiciUzQ3diciUzRW9rZW4lMjB1bmRlciUyMGElMjBwciUzQ3diciUzRW94JTNDd2JyJTNFeSUyMHZlcnN1cyUyMGRpciUzQ3diciUzRWVjdCUyMGFjY2UlM0N3YnIlM0Vzcy4lM0MlMkZwJTNFJTNDJTJGZGl2JTNF"));
|
1
views/assets/js/footer-1644738239.js
Normal file
|
@ -0,0 +1 @@
|
|||
document.getElementById("footer").innerHTML = decodeURIComponent(atob("JTNDZGl2JTIwY2xhc3MlM0QlMjJmb290ZXJmbGV4JTIyJTNFJTIwJTNDZGl2JTIwY2xhc3MlM0QlMjJmb290ZXJicmFuZCUyMiUzRSUyMCUzQ2gzJTNFJTNDYSUyMGhyZWYlM0QlMjIlMkYlMjIlM0VIbyUzQ3diciUzRWx5JTIwVW5iJTNDd2JyJTNFbG8lM0N3YnIlM0VjJTNDd2JyJTNFa2VyJTNDJTJGYSUzRSUzQyUyRmgzJTNFJTIwJTNDcCUzRU1hJTNDd2JyJTNFZGUlMjBieSUyMFN0JTNDd2JyJTNFdWQlM0N3YnIlM0VlbiUzQ3diciUzRXRzJTJDJTIwRm8lM0N3YnIlM0VyJTIwU3R1JTNDd2JyJTNFZGVuJTNDd2JyJTNFdHMuJTNDJTJGcCUzRSUzQyUyRmRpdiUzRSUzQ2RpdiUyMGNsYXNzJTNEJTIyZm9vdGVybGlzdCUyMiUzRSUyMCUzQ2gzJTNFU2UlM0N3YnIlM0VydmljJTNDd2JyJTNFZXMlM0MlMkZoMyUzRSUyMCUzQ3VsJTNFJTIwJTNDbGklM0UlM0NhJTIwdGFyZ2V0JTNEJTIyX2JsYW5rJTIyJTIwaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGZ2l0aHViLmNvbSUyRnRpdGFuaXVtbmV0d29yay1kZXYlMjIlM0VVbHQlM0N3YnIlM0VyJTNDd2JyJTNFYXYlM0N3YnIlM0VpbyUzQ3diciUzRWxldCUzQyUyRmElM0UlM0MlMkZsaSUzRSUzQ2xpJTNFJTNDYSUyMHRhcmdldCUzRCUyMl9ibGFuayUyMiUyMGhyZWYlM0QlMjJodHRwcyUzQSUyRiUyRmRpc2NvcmQuZ2clMkZWTlQ0RTdnTjVZJTIyJTNFUmElM0N3YnIlM0VtbWVyaGVhJTNDd2JyJTNFZCUzQyUyRmElM0UlM0MlMkZsaSUzRSUzQ2xpJTNFJTNDYSUyMHRhcmdldCUzRCUyMl9ibGFuayUyMiUyMGhyZWYlM0QlMjJodHRwcyUzQSUyRiUyRmdpdGh1Yi5jb20lMkZiaW5hcnktcGVyc29uJTJGd29tZ2lueCUyMiUzRVdvJTNDd2JyJTNFbWdpJTNDd2JyJTNFbiUzQ3diciUzRXglM0MlMkZhJTNFJTNDJTJGbGklM0UlM0MlMkZ1bCUzRSUyMCUzQyUyRmRpdiUzRSUzQ2RpdiUyMGNsYXNzJTNEJTIyZm9vdGVybGlzdCUyMiUzRSUyMCUzQ2gzJTNFQWJvdXQlM0MlMkZoMyUzRSUyMCUzQ3VsJTNFJTIwJTNDbGklM0UlM0NhJTIwdGFyZ2V0JTNEJTIyX2JsYW5rJTIyJTIwaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGZ2l0aHViLmNvbSUyRnRpdGFuaXVtbmV0d29yay1kZXYlMkZIb2x5LVVuYmxvY2tlciUyMiUzRUclM0N3YnIlM0VpdEglM0N3YnIlM0V1YiUzQyUyRmElM0UlM0MlMkZsaSUzRSUzQ2xpJTNFJTNDYSUyMGhyZWYlM0QlMjIlMkYlM0Z0JTIyJTNFUCUzQ3diciUzRXJpdmElM0N3YnIlM0VjeSUyMGFuZCUyMFRlJTNDd2JyJTNFcm1zJTIwb2YlMjBTZXIlM0N3YnIlM0V2JTNDd2JyJTNFaWNlJTNDJTJGYSUzRSUzQyUyRmxpJTNFJTNDbGklM0UlM0NhJTIwaHJlZiUzRCUyMiUyRiUzRmMlMjIlM0VDcmUlM0N3YnIlM0VkaXQlM0N3YnIlM0VzJTNDJTJGYSUzRSUzQyUyRmxpJTNFJTNDJTJGdWwlM0UlMjAlM0MlMkZkaXYlM0UlM0MlMkZkaXYlM0UlM0NkaXYlMjBjbGFzcyUzRCUyMmZvb3RlcnNvY2lhbHMlMjIlM0UlMjAlM0NhJTIwdGFyZ2V0JTNEJTIyX2JsYW5rJTIyJTIwY2xhc3MlM0QlMjJzb2MtZ2l0aHViJTIyJTIwaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGZ2l0aHViLmNvbSUyRnRpdGFuaXVtbmV0d29yay1kZXYlMkZIb2x5LVVuYmxvY2tlciUyMiUzRSUzQ2klMjBjbGFzcyUzRCUyMmZhYiUyMGZhLWdpdGh1YiUyMiUzRSUzQyUyRmklM0UlM0MlMkZhJTNFJTIwJTNDYSUyMHRhcmdldCUzRCUyMl9ibGFuayUyMiUyMGNsYXNzJTNEJTIyc29jLXBhdHJlb24lMjIlMjBocmVmJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cucGF0cmVvbi5jb20lMkZob2x5dW5ibG9ja2VyJTIyJTNFJTNDaSUyMGNsYXNzJTNEJTIyZmFiJTIwZmEtcGF0cmVvbiUyMiUzRSUzQyUyRmklM0UlM0MlMkZhJTNFJTNDJTJGZGl2JTNFJTNDcCUyMGNsYXNzJTNEJTIyY29weXJpZ2h0JTIyJTNFSCUzQ3diciUzRW9sJTNDd2JyJTNFeSUyMFUlM0N3YnIlM0VuYiUzQ3diciUzRWxvJTNDd2JyJTNFY2tlJTNDd2JyJTNFciUyMCUyNmNvcHklM0IlMjAyMDIyJTNDJTJGcCUzRQ=="));
|
|
@ -1 +0,0 @@
|
|||
document.getElementById("footer").innerHTML = decodeURIComponent(atob("JTNDZGl2JTIwY2xhc3MlM0QlMjJmb290ZXJmbGV4JTIyJTNFJTBBJTIwJTIwJTIwJTIwJTNDZGl2JTIwY2xhc3MlM0QlMjJmb290ZXJicmFuZCUyMiUzRSUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUzQ2gzJTNFJTNDYSUyMGhyZWYlM0QlMjIlMkYlMjIlM0VIbyUzQ3diciUzRWx5JTIwVW5iJTNDd2JyJTNFbG8lM0N3YnIlM0VjJTNDd2JyJTNFa2VyJTNDJTJGYSUzRSUzQyUyRmgzJTNFJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTNDcCUzRU1hJTNDd2JyJTNFZGUlMjBieSUyMFN0JTNDd2JyJTNFdWQlM0N3YnIlM0VlbiUzQ3diciUzRXRzJTJDJTIwRm8lM0N3YnIlM0VyJTIwU3R1JTNDd2JyJTNFZGVuJTNDd2JyJTNFdHMuJTNDJTJGcCUzRSUwQSUyMCUyMCUyMCUyMCUzQyUyRmRpdiUzRSUwQSUyMCUyMCUyMCUyMCUzQ2RpdiUyMGNsYXNzJTNEJTIyZm9vdGVybGlzdCUyMiUzRSUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUzQ2gzJTNFU2UlM0N3YnIlM0VydmljJTNDd2JyJTNFZXMlM0MlMkZoMyUzRSUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUzQ3VsJTNFJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTNDbGklM0UlM0NhJTIwdGFyZ2V0JTNEJTIyX2JsYW5rJTIyJTIwaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGZ2l0aHViLmNvbSUyRnRpdGFuaXVtbmV0d29yay1kZXYlMkZDb3Jyb3Npb24lMjIlM0VDb3IlM0N3YnIlM0Vyb3MlM0N3YnIlM0Vpb24lM0MlMkZhJTNFJTNDJTJGbGklM0UlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlM0NsaSUzRSUzQ2ElMjB0YXJnZXQlM0QlMjJfYmxhbmslMjIlMjBocmVmJTNEJTIyaHR0cHMlM0ElMkYlMkZnaXRodWIuY29tJTJGTHVkaWNyb3VzRGV2ZWxvcG1lbnQlMkZQYWxsYWRpdW0lMjIlM0VQYSUzQ3diciUzRWwlM0N3YnIlM0VsYWQlM0N3YnIlM0VpdW0lM0MlMkZhJTNFJTNDJTJGbGklM0UlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlM0NsaSUzRSUzQ2ElMjB0YXJnZXQlM0QlMjJfYmxhbmslMjIlMjBocmVmJTNEJTIyaHR0cHMlM0ElMkYlMkZnaXRodWIuY29tJTJGYmluYXJ5LXBlcnNvbiUyRndvbWdpbnglMjIlM0VXbyUzQ3diciUzRW1naSUzQ3diciUzRW4lM0N3YnIlM0V4JTNDJTJGYSUzRSUzQyUyRmxpJTNFJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTNDJTJGdWwlM0UlMEElMjAlMjAlMjAlMjAlM0MlMkZkaXYlM0UlMEElMjAlMjAlMjAlMjAlM0NkaXYlMjBjbGFzcyUzRCUyMmZvb3Rlcmxpc3QlMjIlM0UlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlM0NoMyUzRUFib3V0JTNDJTJGaDMlM0UlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlM0N1bCUzRSUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUzQ2xpJTNFJTNDYSUyMHRhcmdldCUzRCUyMl9ibGFuayUyMiUyMGhyZWYlM0QlMjJodHRwcyUzQSUyRiUyRmdpdGh1Yi5jb20lMkZ0aXRhbml1bW5ldHdvcmstZGV2JTJGSG9seS1VbmJsb2NrZXIlMjIlM0VHJTNDd2JyJTNFaXRIJTNDd2JyJTNFdWIlM0MlMkZhJTNFJTNDJTJGbGklM0UlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlM0NsaSUzRSUzQ2ElMjBocmVmJTNEJTIyJTJGJTNGdCUyMiUzRVAlM0N3YnIlM0VyaXZhJTNDd2JyJTNFY3klMjBhbmQlMjBUZSUzQ3diciUzRXJtcyUyMG9mJTIwU2VyJTNDd2JyJTNFdiUzQ3diciUzRWljZSUzQyUyRmElM0UlM0MlMkZsaSUzRSUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUzQ2xpJTNFJTNDYSUyMGhyZWYlM0QlMjIlMkYlM0ZjJTIyJTNFQ3JlJTNDd2JyJTNFZGl0JTNDd2JyJTNFcyUzQyUyRmElM0UlM0MlMkZsaSUzRSUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUzQyUyRnVsJTNFJTBBJTIwJTIwJTIwJTIwJTNDJTJGZGl2JTNFJTBBJTNDJTJGZGl2JTNFJTBBJTNDZGl2JTIwY2xhc3MlM0QlMjJmb290ZXJzb2NpYWxzJTIyJTNFJTBBJTIwJTIwJTIwJTIwJTNDYSUyMHRhcmdldCUzRCUyMl9ibGFuayUyMiUyMGNsYXNzJTNEJTIyc29jLWdpdGh1YiUyMiUyMGhyZWYlM0QlMjJodHRwcyUzQSUyRiUyRmdpdGh1Yi5jb20lMkZ0aXRhbml1bW5ldHdvcmstZGV2JTJGSG9seS1VbmJsb2NrZXIlMjIlM0UlM0NpJTIwY2xhc3MlM0QlMjJmYWIlMjBmYS1naXRodWIlMjIlM0UlM0MlMkZpJTNFJTNDJTJGYSUzRSUwQSUyMCUyMCUyMCUyMCUzQ2ElMjB0YXJnZXQlM0QlMjJfYmxhbmslMjIlMjBjbGFzcyUzRCUyMnNvYy1wYXRyZW9uJTIyJTIwaHJlZiUzRCUyMmh0dHBzJTNBJTJGJTJGd3d3LnBhdHJlb24uY29tJTJGaG9seXVuYmxvY2tlciUyMiUzRSUzQ2klMjBjbGFzcyUzRCUyMmZhYiUyMGZhLXBhdHJlb24lMjIlM0UlM0MlMkZpJTNFJTNDJTJGYSUzRSUwQSUzQyUyRmRpdiUzRSUwQSUzQ3AlMjBjbGFzcyUzRCUyMmNvcHlyaWdodCUyMiUzRUglM0N3YnIlM0VvbCUzQ3diciUzRXklMjBVJTNDd2JyJTNFbmIlM0N3YnIlM0VsbyUzQ3diciUzRWNrZSUzQ3diciUzRXIlMjAlMjZjb3B5JTNCJTIwMjAyMiUzQyUyRnAlM0U="));
|
96
views/assets/js/gnav/h5-nav-1644738239.js
Normal file
|
@ -0,0 +1,96 @@
|
|||
/* -----------------------------------------------
|
||||
/* Authors: QuiteAFancyEmerald and OlyB
|
||||
/* MIT license: http://opensource.org/licenses/MIT
|
||||
/* HTML5 gnav
|
||||
/* ----------------------------------------------- */
|
||||
|
||||
var h5gms = [
|
||||
{ name: "A Dark Room", path: "adarkroom/", img: "darkroom.png", description: "A player lights a fire in a dark room. Fun game :D" },
|
||||
{ name: "Minecraft: Bedrock Edition", custom: "mcnow", img: "mcnow.jpg", description: "A trial version of the real Minecraft: Bedrock Edition. Pure credits to now.gg for this.", credits: "nowgg" },
|
||||
{ name: "Fireboy and Watergirl", path: "firewater/", img: "firewater.png", description: "Fireboy and Watergirl is the first cooperative platformer game in the Fireboy and Watergirl series." },
|
||||
{ name: "Duck Life", path: "ducklife/", img: "ducklife.png", description: "The future of the farm is in your hands! Train your duck to run, fly and swim its way to victory so you can save the farm with your riches." },
|
||||
{ name: "Duck Life 2", path: "ducklife2/", img: "ducklife2.png", description: "Become a world champion in the successor to Duck Life!" },
|
||||
{ name: "Duck Life 3", path: "ducklife3/", img: "ducklife3.png", description: "The third game in the Duck Life series!" },
|
||||
{ name: "Duck Life 4", path: "ducklife4/", img: "ducklife4.png", description: "Super scary... yeah the fourth game. What even happened?" },
|
||||
{ name: "osu!", custom: "osu", img: "os1.png", description: "Rhythm is just a *click* away! If you experience any input lag be sure to read over the osu! FAQ page." },
|
||||
{ name: "Friendly Fire", path: "friendlyfire/", img: "friendlyfire.jpg", description: "What dark secrets does this twisted world hold?" },
|
||||
{ name: "Slope", path: "slope/", img: "slope.jpg", description: "Slope game is a fantastic speed run game where you can drive a ball rolling on tons of slopes and obstacles. See how far you can go in this endless course." },
|
||||
{ name: "vex 3", path: "vex3/", img: "vex3.png", description: "vex 3 is a fascinating game. Your task is to Take Vex through the levels by running, jumping, sliding and swimming while avoiding dangerous obstacles." },
|
||||
{ name: "vex 4", path: "vex4/", img: "vex4.png", description: "VEX 4 takes Vex to the next level! This fast paced stickman game puts your skills to the test. Run, jump, slide, swim and avoid obstacles, VEX 4 has it all." },
|
||||
{ name: "vex 5", path: "vex5/", img: "vex5.png", description: "Now, you can meet cute Stickman again in Vex 5. Vex 5 is the 5th platform game in the Vex series. Each level is a labyrinth of deadly devices and traps." },
|
||||
{ name: "PUBG MOBILE: Arcane", custom: "pubg", img: "pubg.jpg", description: "Battle royale game thing.", credits: "nowgg" },
|
||||
{ name: "Gacha Life", custom: "glife", img: "gachalife.png", description: "Handcraft your very own anime-inspired stories in Gacha Life by Lunime. Wholesome game? Oh no.", credits: "nowgg" },
|
||||
{ name: "Roblox", custom: "roblox", img: "roblox.jpg", description: "Why... well its here now enjoy.", credits: "nowgg" },
|
||||
{ name: "Among Us", custom: "amongus", img: "amongus.jpg", description: "Why must you do this.", credits: "nowgg" },
|
||||
{ name: "Last Train Home", custom: "train", img: "train.png", description: "This is a short horror-adventure game about being stuck on a train. May take awhile to load.", credits: "itch" },
|
||||
{ name: "Village Arsonist", custom: "village", img: "village.png", description: "Village Arsonist is a 2D physics-based puzzle game. May take awhile to load... a long while.", credits: "itch" },
|
||||
{ name: "Minecraft JS", path: "mcjs/", img: "mc.png", description: "Minecraft but made in Javascript." },
|
||||
{ name: "What the Road Brings", custom: "speed", img: "speed.png", description: "A pseudo, vaporwave 3d racer with an epic soundtrack and art style. May take awhile to load.", credits: "itch" },
|
||||
{ name: "Snake", path: "snake/", img: "snake.png", description: "Eat the apples in this classic retro game. But don't hit the wall, or eat your own tail! How long can you survive?" },
|
||||
{ name: "Super Mario 64", path: "sm64/", img: "sm64.png", description: "A classic. Super Mario 64 is a 1996 platform game for the Nintendo 64 and the first Super Mario game to feature 3D gameplay.", nolag: true },
|
||||
{ name: "Zork Clone", path: "zork1/", img: "zork.png", description: "Zork is an interactive fiction computer game." },
|
||||
{ name: "Pick Up Prison", custom: "prison", img: "prison.png", description: "At the beginning... There was nothing... There is a prisoner in a cell with nothing. May take awhile to load.", credits: "itch" },
|
||||
{ name: "Helo Storm", custom: "heli", img: "helo.png", description: "Endless helicopter and Jeep shoot 'em up based on the 80's arcade classic 'Silkworm'.", credits: "itch" },
|
||||
{ name: "Retrohaunt", path: "retrohaunt/", img: "retrohaunt.png", description: "A creepy retro horror game with interesting graphics and mood." },
|
||||
{ name: "T-Rex Game (chrome://dino)", path: "dino/", img: "dino.jpg", description: "The T-Rex Runner game, an Easter Egg in Google Chrome." },
|
||||
{ name: "Run 3", path: "run3/", img: "r3.png", description: "Use the arrow keys to run and jump. Land on a side wall to rotate the world. (Broken)" },
|
||||
{ name: "Die in the Dungeon", custom: "rpg", img: "dd.png", description: "Die in the Dungeon is a deck-building, turn-based roguelite. May take awhile to load.", credits: "itch" },
|
||||
{ name: "Trimps", path: "trimps/", img: "trimps.png", description: "Pure grind." },
|
||||
{ name: "Gopher Cart", path: "gopher/", img: "gopher2.png", description: "Fun driving side scroller game with epic gophers." },
|
||||
{ name: "Cookie Clicker", path: "cookieclicker/", img: "cookie.png", description: "You feel like making cookies but no one wants to eat them. Click on the cookie to bake and eat." },
|
||||
{ name: "Particle Clicker", path: "particle-clicker/", img: "pclick.png", description: "An addictive incremental game that teaches players the history of high energy particle physics." },
|
||||
{ name: "Evil Glitch", path: "evilglitch/", img: "glitch2.png", description: "Strange glitches appear in your dimension, can you stop them before they assimilate your world?" },
|
||||
{ name: "Pac-man", path: "pacman/", img: "pcma.png", description: "The classic." },
|
||||
{ name: "Flappy Bird", path: "flappybird/", img: "flappybird.png", description: "Click on the screen, or use your spacebar to get started. Fly as far as you can without hitting a pipe." },
|
||||
{ name: "Bounce Back", path: "bounceback/", img: "bounceback.png", description: "A charming and addictive little Zelda inspired roguelike adventure game." },
|
||||
{ name: "The Chroma Incident", path: "chromaincident/", img: "chroma.png", description: "The Achromats have taken the world's color offline!" },
|
||||
{ name: "Sleeping Beauty", path: "sleepingbeauty/", img: "sleep.png", description: "Into a profound slumber she sank, surrounded only by dense brambles, thorns and roses." },
|
||||
{ name: "Tetris", path: "tetris/", img: "tet.png", description: "Tetris ® is the addictive puzzle game that started it all, embracing our universal desire to create order out of chaos." },
|
||||
{ name: "The House", path: "househorror/", img: "thehouse.png", description: "An interesting horror style game." },
|
||||
{ name: "The Pond", path: "pond/", img: "thepond.png", description: "Use Mouse1 to move around. A game like Slither.io." },
|
||||
{ name: "NS Shaft", path: "nsshaft/", img: "nsshaft.png", description: "A fun platformer." },
|
||||
{ name: "Game Off", path: "house/", img: "gameoff.png", description: "A collection of really fun games, particularly anti-matter which is inspired by Portal." },
|
||||
{ name: "2048", path: "2048/", img: "2048.png", description: "Use your arrow keys to move the tiles. When two tiles with the same number touch, they merge into one. Try to beat your high score!" },
|
||||
{ name: "Asteroids", path: "asteroids/", img: "asteroids.png", description: "Asteroids is a space-themed multidirectional shooter arcade game!" },
|
||||
{ name: "Breaklock", path: "breaklock/", img: "breaklock.png", description: "Link the dots to find the lock pattern. After every attempt the game will tell you how many dots you got right." },
|
||||
{ name: "Backcountry", path: "backcountry/", img: "backcountry.png", description: "Taking place in the wild west mine and do jobs to earn money! Use your mouse to navigate by clicking." },
|
||||
{ name: "Breakout", path: "breakout/", img: "breakout.png", description: "Break all the bricks and volley the ball back and forth in this skill-based classic styled game!" },
|
||||
{ name: "Chess", path: "chess/", img: "chess2.png", description: "Chess is a two-player strategy board game played on a checkered board with 64 squares arranged in an 8x8 square grid." },
|
||||
{ name: "Connect 3", path: "connect3/", img: "connect.png", description: "Basically like bejeweled." },
|
||||
{ name: "Towermaster", path: "towermaster/", img: "tower.png", description: "Build a tower! Stack objects on top of each other without the building falling. How high can you go?" },
|
||||
{ name: "Geometry Dash", path: "geometrydash/", img: "geometrydash.png", description: "Jump and fly your way through danger in this rhythm-based action platformer!" },
|
||||
{ name: "Hextris", path: "hextris/", img: "hextris.png", description: "An addictive puzzle game inspired by Tetris." },
|
||||
{ name: "Astray", path: "astray/", img: "astray.png", description: "A WebGL maze game built with Three.js and Box2dWeb." },
|
||||
{ name: "Konnekt", path: "konnekt/", img: "konnekt.png", description: "Fight against nodes and viruses! An interesting puzzle game developed by MONSTERKODI." },
|
||||
{ name: "Push Back", path: "pushback/", img: "pushback.png", description: "A cool physics game!" },
|
||||
{ name: "Underrun", path: "underrun/", img: "underrun.png", description: "Explore deep underground in this doom-like game. Kill enemies, explore and progress. Use WASD to move and Mouse1 to shoot." },
|
||||
{ name: "JS Racer", path: "racer/", img: "racer.png", description: "Want to race online? Enjoy an old age like racing game!" },
|
||||
{ name: "xx142-b2.exe", path: "xx142-b2exe/", img: "142.png", description: "It's the year 2413, and aliens have enslaved humanity." },
|
||||
{ name: "Factory Balls Forever", path: "factoryballsforever/", img: "factory.png", description: "A puzzle game where you have to color the balls correctly! Use different tools to cover up the ball before start painting over it." }
|
||||
];
|
||||
|
||||
var glist = document.getElementById("glist");
|
||||
|
||||
for (let item of h5gms) {
|
||||
let a = document.createElement("a");
|
||||
a.href = "#";
|
||||
var img = document.createElement("img");
|
||||
img.src = "/assets/img/h5g/" + item.img;
|
||||
a.appendChild(img);
|
||||
var title = document.createElement("h3");
|
||||
title.textContent = item.name;
|
||||
a.appendChild(title);
|
||||
var desc = document.createElement("p");
|
||||
desc.textContent = item.description;
|
||||
if (item.credits == "itch") desc.innerHTML += '<br>Credits: Game can be found <a target="_blank" href="https://itch.io">here</a>.';
|
||||
if (item.credits == "nowgg") desc.innerHTML += '<br>Credits: Game can be found <a target="_blank" href="https://now.gg">here</a>.';
|
||||
a.appendChild(desc);
|
||||
a.onclick = function(e) {
|
||||
if (e.target == a || e.target.tagName != "A") {
|
||||
e.preventDefault();
|
||||
item.custom ? goProx[item.custom](true) : goFrame("/archive/g/" + item.path, item.nolag);
|
||||
}
|
||||
}
|
||||
|
||||
glist.appendChild(a);
|
||||
}
|
|
@ -1,81 +0,0 @@
|
|||
/* -----------------------------------------------
|
||||
/* Authors: QuiteAFancyEmerald and OlyB
|
||||
/* MIT license: http://opensource.org/licenses/MIT
|
||||
/* HTML5 gnav
|
||||
/* ----------------------------------------------- */
|
||||
|
||||
var h5gms = [
|
||||
{name: "A Dark Room", path: "adarkroom/", img: "darkroom.png", description: "A player lights a fire in a dark room."},
|
||||
{name: "osu!", custom: "osu", img: "os1.png", description: "Rhythm is just a *click* away! If you experience any input lag be sure to read over the osu! FAQ page."},
|
||||
{name: "T-Rex Game (chrome://dino)", path: "dino/", img: "dino.jpg", description: "The T-Rex Runner game, an Easter Egg in Google Chrome."},
|
||||
{name: "Last Train Home", custom: "train", img: "train.png", description: "This is a short horror-adventure game about being stuck on a train. May take awhile to load.", credits: "itch"},
|
||||
{name: "Village Arsonist", custom: "village", img: "village.png", description: "Village Arsonist is a 2D physics-based puzzle game. May take awhile to load... a long while.", credits: "itch"},
|
||||
{name: "Minecraft JS", path: "mcjs/", img: "mc.png", description: "Minecraft but made in Javascript."},
|
||||
{name: "What the Road Brings", custom: "speed", img: "speed.png", description: "A pseudo, vaporwave 3d racer with an epic soundtrack and art style. May take awhile to load.", credits: "itch"},
|
||||
{name: "Snake", path: "snake/", img: "snake.png", description: "Eat the apples in this classic retro game. But don't hit the wall, or eat your own tail! How long can you survive?"},
|
||||
{name: "Super Mario 64", path: "sm64/", img: "sm64.png", description: "A classic. Super Mario 64 is a 1996 platform game for the Nintendo 64 and the first Super Mario game to feature 3D gameplay.", nolag: true},
|
||||
{name: "Zork Clone", path: "zork1/", img: "zork.png", description: "Zork is an interactive fiction computer game."},
|
||||
{name: "Pick Up Prison", custom: "prison", img: "prison.png", description: "At the beginning... There was nothing... There is a prisoner in a cell with nothing. May take awhile to load.", credits: "itch"},
|
||||
{name: "Helo Storm", custom: "heli", img: "helo.png", description: "Endless helicopter and Jeep shoot 'em up based on the 80's arcade classic 'Silkworm'.", credits: "itch"},
|
||||
{name: "Retrohaunt", path: "retrohaunt/", img: "retrohaunt.png", description: "A creepy retro horror game with interesting graphics and mood."},
|
||||
{name: "Run 3", path: "run3/", img: "r3.png", description: "Use the arrow keys to run and jump. Land on a side wall to rotate the world. (Working Version)"},
|
||||
{name: "Die in the Dungeon", custom: "rpg", img: "dd.png", description: "Die in the Dungeon is a deck-building, turn-based roguelite. May take awhile to load.", credits: "itch"},
|
||||
{name: "Trimps", path: "trimps/", img: "trimps.png", description: "Pure grind."},
|
||||
{name: "Gopher Cart", path: "gopher/", img: "gopher2.png", description: "Fun driving side scroller game with epic gophers."},
|
||||
{name: "Cookie Clicker", path: "cookieclicker/", img: "cookie.png", description: "You feel like making cookies but no one wants to eat them. Click on the cookie to bake and eat."},
|
||||
{name: "Particle Clicker", path: "particle-clicker/", img: "pclick.png", description: "An addictive incremental game that teaches players the history of high energy particle physics."},
|
||||
{name: "Evil Glitch", path: "evilglitch/", img: "glitch2.png", description: "Strange glitches appear in your dimension, can you stop them before they assimilate your world?"},
|
||||
{name: "Pac-man", path: "pacman/", img: "pcma.png", description: "The classic."},
|
||||
{name: "Flappy Bird", path: "flappybird/", img: "flappybird.png", description: "Click on the screen, or use your spacebar to get started. Fly as far as you can without hitting a pipe."},
|
||||
{name: "Bounce Back", path: "bounceback/", img: "bounceback.png", description: "A charming and addictive little Zelda inspired roguelike adventure game."},
|
||||
{name: "The Chroma Incident", path: "chromaincident/", img: "chroma.png", description: "The Achromats have taken the world's color offline!"},
|
||||
{name: "Sleeping Beauty", path: "sleepingbeauty/", img: "sleep.png", description: "Into a profound slumber she sank, surrounded only by dense brambles, thorns and roses."},
|
||||
{name: "Tetris", path: "tetris/", img: "tet.png", description: "Tetris ® is the addictive puzzle game that started it all, embracing our universal desire to create order out of chaos."},
|
||||
{name: "The House", path: "househorror/", img: "thehouse.png", description: "An interesting horror style game."},
|
||||
{name: "The Pond", path: "pond/", img: "thepond.png", description: "Use Mouse1 to move around. A game like Slither.io."},
|
||||
{name: "NS Shaft", path: "nsshaft/", img: "nsshaft.png", description: "A fun platformer."},
|
||||
{name: "Game Off", path: "house/", img: "gameoff.png", description: "A collection of really fun games, particularly anti-matter which is inspired by Portal."},
|
||||
{name: "2048", path: "2048/", img: "2048.png", description: "Use your arrow keys to move the tiles. When two tiles with the same number touch, they merge into one. Try to beat your high score!"},
|
||||
{name: "Asteroids", path: "asteroids/", img: "asteroids.png", description: "Asteroids is a space-themed multidirectional shooter arcade game!"},
|
||||
{name: "Breaklock", path: "breaklock/", img: "breaklock.png", description: "Link the dots to find the lock pattern. After every attempt the game will tell you how many dots you got right."},
|
||||
{name: "Backcountry", path: "backcountry/", img: "backcountry.png", description: "Taking place in the wild west mine and do jobs to earn money! Use your mouse to navigate by clicking."},
|
||||
{name: "Breakout", path: "breakout/", img: "breakout.png", description: "Break all the bricks and volley the ball back and forth in this skill-based classic styled game!"},
|
||||
{name: "Chess", path: "chess/", img: "chess2.png", description: "Chess is a two-player strategy board game played on a checkered board with 64 squares arranged in an 8x8 square grid."},
|
||||
{name: "Connect 3", path: "connect3/", img: "connect.png", description: "Basically like bejeweled."},
|
||||
{name: "Towermaster", path: "towermaster/", img: "tower.png", description: "Build a tower! Stack objects on top of each other without the building falling. How high can you go?"},
|
||||
{name: "Geometry Dash", path: "geometrydash/", img: "geometrydash.png", description: "Jump and fly your way through danger in this rhythm-based action platformer!"},
|
||||
{name: "Hextris", path: "hextris/", img: "hextris.png", description: "An addictive puzzle game inspired by Tetris."},
|
||||
{name: "Astray", path: "astray/", img: "astray.png", description: "A WebGL maze game built with Three.js and Box2dWeb."},
|
||||
{name: "Konnekt", path: "konnekt/", img: "konnekt.png", description: "Fight against nodes and viruses! An interesting puzzle game developed by MONSTERKODI."},
|
||||
{name: "Push Back", path: "pushback/", img: "pushback.png", description: "A cool physics game!"},
|
||||
{name: "Underrun", path: "underrun/", img: "underrun.png", description: "Explore deep underground in this doom-like game. Kill enemies, explore and progress. Use WASD to move and Mouse1 to shoot."},
|
||||
{name: "JS Racer", path: "racer/", img: "racer.png", description: "Want to race online? Enjoy an old age like racing game!"},
|
||||
{name: "xx142-b2.exe", path: "xx142-b2exe/", img: "142.png", description: "It's the year 2413, and aliens have enslaved humanity."},
|
||||
{name: "Factory Balls Forever", path: "factoryballsforever/", img: "factory.png", description: "A puzzle game where you have to color the balls correctly! Use different tools to cover up the ball before start painting over it."}
|
||||
];
|
||||
|
||||
var glist = document.getElementById("glist");
|
||||
|
||||
for (let item of h5gms) {
|
||||
let a = document.createElement("a");
|
||||
a.href = "#";
|
||||
var img = document.createElement("img");
|
||||
img.src = "/assets/img/h5g/" + item.img;
|
||||
a.appendChild(img);
|
||||
var title = document.createElement("h3");
|
||||
title.textContent = item.name;
|
||||
a.appendChild(title);
|
||||
var desc = document.createElement("p");
|
||||
desc.textContent = item.description;
|
||||
if (item.credits == "itch") desc.innerHTML += '<br>Credits: game can be found <a target="_blank" href="https://itch.io">here</a>.';
|
||||
a.appendChild(desc);
|
||||
|
||||
a.onclick = function(e) {
|
||||
if (e.target == a || e.target.tagName != "A") {
|
||||
e.preventDefault();
|
||||
item.custom ? goProx[item.custom](true) : goFrame("/archive/g/" + item.path, item.nolag);
|
||||
}
|
||||
}
|
||||
|
||||
glist.appendChild(a);
|
||||
}
|
1
views/assets/js/header-1644738239.js
Normal file
|
@ -0,0 +1 @@
|
|||
document.getElementById("header").innerHTML = decodeURIComponent(atob("JTNDYSUyMGhyZWYlM0QlMjIlMkYlMjIlMjBjbGFzcyUzRCUyMmJyYW5kJTIyJTNFSCUyNiUyMzE3MyUzQm8lMjYlMjMxNzMlM0JseSUyMFUlMjYlMjMxNzMlM0JuJTI2JTIzMTczJTNCYiUyNiUyMzE3MyUzQmxvJTI2JTIzMTczJTNCYyUyNiUyMzE3MyUzQmslMjYlMjMxNzMlM0JlciUzQyUyRmElM0UlM0NpbnB1dCUyMGlkJTNEJTIybW5hdmVjYiUyMiUyMHR5cGUlM0QlMjJjaGVja2JveCUyMiUzRSUzQ2xhYmVsJTIwZm9yJTNEJTIybW5hdmVjYiUyMiUyMGNsYXNzJTNEJTIybW5hdmUlMjIlM0UlM0NzcGFuJTIwY2xhc3MlM0QlMjJtbmF2ZWJ1dHRvbiUyMiUzRSUzQyUyRnNwYW4lM0UlM0MlMkZsYWJlbCUzRSUzQ3VsJTIwY2xhc3MlM0QlMjJuYXZiYXIlMjIlM0UlMjAlM0NsaSUzRSUzQ2ElMjBocmVmJTNEJTIyJTJGJTNGeiUyMiUzRVclMjYlMjMxNzMlM0JlYiUyMFByJTI2JTIzMTczJTNCb3glMjYlMjMxNzMlM0JpZSUyNiUyMzE3MyUzQnMlM0MlMkZhJTNFJTNDJTJGbGklM0UlM0NsaSUzRSUzQ2ElMjBocmVmJTNEJTIyJTJGJTNGc3glMjIlM0VTZWFyeCUzQyUyRmElM0UlM0MlMkZsaSUzRSUzQ2xpJTNFJTNDYSUyMGhyZWYlM0QlMjIlMkYlM0ZnJTIyJTNFRyUyNiUyMzE3MyUzQmElMjYlMjMxNzMlM0JtZSUyNiUyMzE3MyUzQnMlM0MlMkZhJTNFJTNDJTJGbGklM0UlM0NsaSUzRSUzQ2ElMjBocmVmJTNEJTIyJTJGJTNGeSUyMiUzRVlvJTI2JTIzMTczJTNCdVQlMjYlMjMxNzMlM0J1JTI2JTIzMTczJTNCYmUlM0MlMkZhJTNFJTNDJTJGbGklM0UlM0NsaSUzRSUzQ2ElMjBocmVmJTNEJTIyJTJGJTNGZCUyMiUzRUQlMjYlMjMxNzMlM0Jpc2MlMjYlMjMxNzMlM0JvciUyNiUyMzE3MyUzQmQlM0MlMkZhJTNFJTNDJTJGbGklM0UlM0NsaSUzRSUzQ2ElMjBocmVmJTNEJTIyJTJGJTNGciUyMiUzRVJlJTI2JTIzMTczJTNCZGQlMjYlMjMxNzMlM0JpdCUzQyUyRmElM0UlM0MlMkZsaSUzRSUzQ2xpJTIwY2xhc3MlM0QlMjJkcm9wZG93bi1wYXJlbnQlMjIlM0UlM0NhJTIwaHJlZiUzRCUyMiUyMyUyMiUzRU0lMjYlMjMxNzMlM0JvciUyNiUyMzE3MyUzQmUlMjAlM0NpJTIwY2xhc3MlM0QlMjJmYXMlMjBmYS1lbGxpcHNpcy12JTIyJTNFJTNDJTJGaSUzRSUzQyUyRmElM0UlMjAlM0NkaXYlMjBjbGFzcyUzRCUyMmRyb3Bkb3duLWNoaWxkJTIyJTIwdGFiaW5kZXglM0QlMjIwJTIyJTNFJTIwJTNDdWwlMjBjbGFzcyUzRCUyMnN1Ym5hdmJhciUyMiUzRSUyMCUzQ2klMjBjbGFzcyUzRCUyMmZhcyUyMGZhLWJhcnMlMjIlM0UlM0MlMkZpJTNFJTIwJTNDbGklM0UlM0NhJTIwaHJlZiUzRCUyMiUyRiUzRnglMjIlM0VCb29rJTI2JTIzMTczJTNCbWFyayUyNiUyMzE3MyUzQmxldHMlM0MlMkZhJTNFJTNDJTJGbGklM0UlM0NsaSUzRSUzQ2ElMjBocmVmJTNEJTIyJTJGJTNGaW4lMjIlM0VEb2NzJTNDJTJGYSUzRSUzQyUyRmxpJTNFJTNDbGklM0UlM0NhJTIwaHJlZiUzRCUyMiUyRiUzRmZhcSUyMiUzRUZBJTI2JTIzMTczJTNCUSUzQyUyRmElM0UlM0MlMkZsaSUzRSUzQ2xpJTNFJTNDYSUyMGhyZWYlM0QlMjIlMkYlM0ZjJTIyJTNFQ3JlZGl0JTI2JTIzMTczJTNCcyUzQyUyRmElM0UlM0MlMkZsaSUzRSUzQ2xpJTNFJTNDYSUyMGhyZWYlM0QlMjIlMkYlM0Z0JTIyJTNFVE8lMjYlMjMxNzMlM0JTJTNDJTJGYSUzRSUzQyUyRmxpJTNFJTNDJTJGdWwlM0UlMjAlM0MlMkZkaXYlM0UlM0MlMkZsaSUzRSUzQ2xpJTIwY2xhc3MlM0QlMjJkcm9wZG93bi1wYXJlbnQlMjIlM0UlM0NhJTIwaHJlZiUzRCUyMiUyMyUyMiUzRVNldHRpbmdzJTIwJTNDaSUyMGNsYXNzJTNEJTIyZmFzJTIwZmEtY29nJTIyJTNFJTNDJTJGaSUzRSUzQyUyRmElM0UlMjAlM0NkaXYlMjBjbGFzcyUzRCUyMmRyb3Bkb3duLWNoaWxkJTIyJTIwdGFiaW5kZXglM0QlMjIwJTIyJTNFJTIwJTNDZGl2JTIwaWQlM0QlMjJjc2VsJTIyJTNFJTNDJTJGZGl2JTNFJTNDJTJGZGl2JTNFJTNDJTJGbGklM0UlM0MlMkZ1bCUzRQ=="));
|
|
@ -1 +0,0 @@
|
|||
document.getElementById("header").innerHTML = decodeURIComponent(atob("JTNDYSUyMGhyZWYlM0QlMjIlMkYlMjIlMjBjbGFzcyUzRCUyMmJyYW5kJTIyJTNFSCUyNiUyMzE3MyUzQm8lMjYlMjMxNzMlM0JseSUyMFUlMjYlMjMxNzMlM0JuJTI2JTIzMTczJTNCYiUyNiUyMzE3MyUzQmxvJTI2JTIzMTczJTNCYyUyNiUyMzE3MyUzQmslMjYlMjMxNzMlM0JlciUzQyUyRmElM0UlMEElM0NpbnB1dCUyMGlkJTNEJTIybW5hdmVjYiUyMiUyMHR5cGUlM0QlMjJjaGVja2JveCUyMiUzRSUwQSUzQ2xhYmVsJTIwZm9yJTNEJTIybW5hdmVjYiUyMiUyMGNsYXNzJTNEJTIybW5hdmUlMjIlM0UlM0NzcGFuJTIwY2xhc3MlM0QlMjJtbmF2ZWJ1dHRvbiUyMiUzRSUzQyUyRnNwYW4lM0UlM0MlMkZsYWJlbCUzRSUwQSUzQ3VsJTIwY2xhc3MlM0QlMjJuYXZiYXIlMjIlM0UlMEElMjAlMjAlMjAlMjAlM0NsaSUzRSUzQ2ElMjBocmVmJTNEJTIyJTJGJTNGeiUyMiUzRVclMjYlMjMxNzMlM0JlYiUyMFByJTI2JTIzMTczJTNCb3glMjYlMjMxNzMlM0JpZSUyNiUyMzE3MyUzQnMlM0MlMkZhJTNFJTNDJTJGbGklM0UlMEElMjAlMjAlMjAlMjAlM0NsaSUzRSUzQ2ElMjBocmVmJTNEJTIyJTJGJTNGZyUyMiUzRUclMjYlMjMxNzMlM0JhJTI2JTIzMTczJTNCbWUlMjYlMjMxNzMlM0JzJTNDJTJGYSUzRSUzQyUyRmxpJTNFJTBBJTIwJTIwJTIwJTIwJTNDbGklM0UlM0NhJTIwaHJlZiUzRCUyMiUyRiUzRnklMjIlM0VZbyUyNiUyMzE3MyUzQnVUJTI2JTIzMTczJTNCdSUyNiUyMzE3MyUzQmJlJTNDJTJGYSUzRSUzQyUyRmxpJTNFJTBBJTIwJTIwJTIwJTIwJTNDbGklM0UlM0NhJTIwaHJlZiUzRCUyMiUyRiUzRmQlMjIlM0VEJTI2JTIzMTczJTNCaXNjJTI2JTIzMTczJTNCb3IlMjYlMjMxNzMlM0JkJTNDJTJGYSUzRSUzQyUyRmxpJTNFJTBBJTIwJTIwJTIwJTIwJTNDbGklM0UlM0NhJTIwaHJlZiUzRCUyMiUyRiUzRnIlMjIlM0VSZSUyNiUyMzE3MyUzQmRkJTI2JTIzMTczJTNCaXQlM0MlMkZhJTNFJTNDJTJGbGklM0UlMEElMjAlMjAlMjAlMjAlM0MhLS0lMjB0YWJpbmRleCUzRCUyMjAlMjIlMjBpcyUyMHJlcXVpcmVkJTIwb24lMjB0aGUlMjBkcm9wZG93bnMlMjAtLSUzRSUwQSUyMCUyMCUyMCUyMCUzQ2xpJTIwY2xhc3MlM0QlMjJkcm9wZG93bi1wYXJlbnQlMjIlM0UlM0NhJTIwaHJlZiUzRCUyMiUyMyUyMiUzRU0lMjYlMjMxNzMlM0JvciUyNiUyMzE3MyUzQmUlMjAlM0NpJTIwY2xhc3MlM0QlMjJmYXMlMjBmYS1lbGxpcHNpcy12JTIyJTNFJTNDJTJGaSUzRSUzQyUyRmElM0UlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlM0NkaXYlMjBjbGFzcyUzRCUyMmRyb3Bkb3duLWNoaWxkJTIyJTIwdGFiaW5kZXglM0QlMjIwJTIyJTNFJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTNDdWwlMjBjbGFzcyUzRCUyMnN1Ym5hdmJhciUyMiUzRSUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUzQ2klMjBjbGFzcyUzRCUyMmZhcyUyMGZhLWJhcnMlMjIlM0UlM0MlMkZpJTNFJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTNDbGklM0UlM0NhJTIwaHJlZiUzRCUyMiUyRiUzRnglMjIlM0VCb29rJTI2JTIzMTczJTNCbWFyayUyNiUyMzE3MyUzQmxldHMlM0MlMkZhJTNFJTNDJTJGbGklM0UlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlM0NsaSUzRSUzQ2ElMjBocmVmJTNEJTIyJTJGJTNGaW4lMjIlM0VEb2NzJTNDJTJGYSUzRSUzQyUyRmxpJTNFJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTNDbGklM0UlM0NhJTIwaHJlZiUzRCUyMiUyRiUzRmZhcSUyMiUzRUZBJTI2JTIzMTczJTNCUSUzQyUyRmElM0UlM0MlMkZsaSUzRSUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUzQ2xpJTNFJTNDYSUyMGhyZWYlM0QlMjIlMkYlM0ZjJTIyJTNFQ3JlZGl0JTI2JTIzMTczJTNCcyUzQyUyRmElM0UlM0MlMkZsaSUzRSUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUzQ2xpJTNFJTNDYSUyMGhyZWYlM0QlMjIlMkYlM0Z0JTIyJTNFVE8lMjYlMjMxNzMlM0JTJTNDJTJGYSUzRSUzQyUyRmxpJTNFJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTNDJTJGdWwlM0UlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlM0MlMkZkaXYlM0UlMEElMjAlMjAlMjAlMjAlM0MlMkZsaSUzRSUwQSUyMCUyMCUyMCUyMCUzQ2xpJTIwY2xhc3MlM0QlMjJkcm9wZG93bi1wYXJlbnQlMjIlM0UlM0NhJTIwaHJlZiUzRCUyMiUyMyUyMiUzRVNldHRpbmdzJTIwJTNDaSUyMGNsYXNzJTNEJTIyZmFzJTIwZmEtY29nJTIyJTNFJTNDJTJGaSUzRSUzQyUyRmElM0UlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlM0NkaXYlMjBjbGFzcyUzRCUyMmRyb3Bkb3duLWNoaWxkJTIyJTIwdGFiaW5kZXglM0QlMjIwJTIyJTNFJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTNDZGl2JTIwaWQlM0QlMjJjc2VsJTIyJTNFJTNDJTJGZGl2JTNFJTBBJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTIwJTNDJTJGZGl2JTNFJTBBJTIwJTIwJTIwJTIwJTNDJTJGbGklM0UlMEElM0MlMkZ1bCUzRQ=="));
|
|
@ -14,6 +14,7 @@ var hulinks = {
|
|||
"portasite": 'javascript:(function(){var a=document.getElementById("rusic-modal")||document.createElement("iframe");a.setAttribute("allow","fullscreen");a.src="https://example.com";a.id="rusic-modal";a.style="position:fixed;width:100vw;height:100vh;top:0px;left:0px;right:0px;bottom:0px;z-index:2147483647;background-color:white;border:none;";document.body.appendChild(a);}());',
|
||||
"ptlink": "https://www.patreon.com/holyunblocker",
|
||||
"allink": "https://github.com/titaniumnetwork-dev/Corrosion",
|
||||
"rhlink": "https://discord.gg/VNT4E7gN5Y",
|
||||
"plink": "https://github.com/sysce/proxy",
|
||||
"wnlink": "https://github.com/binary-person/womginx",
|
||||
"pylink": "https://github.com/BinBashBanana/PyDodge",
|
|
@ -21,14 +21,17 @@
|
|||
<div id="header" class="fullwidth"></div>
|
||||
<div id="particles-js" class="fullwidth"></div>
|
||||
<div id="banner" class="fullwidth">
|
||||
<!-- ######## -->
|
||||
<p class="text-center">
|
||||
<!--HUTAOWOA-->
|
||||
</p>
|
||||
</div>
|
||||
<div id="mainbody" class="fullwidth">
|
||||
<div class="box-home text-center">
|
||||
<h1>End Intern­et Censo­rship.</h1>
|
||||
<h1>Priv­acy right at your fingertips.</h1>
|
||||
<a class="hovermessage buttonlink startbutton" data-hover-text="Epic!" href="#info">By<wbr>p<wbr>a<wbr>s<wbr>s n<wbr>ow?</a>
|
||||
<a class="hovermessage buttonlink startbutton" data-hover-text="Epic!" href="#scrollfix">By<wbr>p<wbr>a<wbr>s<wbr>s n<wbr>ow?</a>
|
||||
</div>
|
||||
<div id="scrollfix">­<br>­</div>
|
||||
<div id="desc">
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -3,14 +3,14 @@
|
|||
<p>Ho<wbr>ly Unb<wbr>loc<wbr>ker, an official flag<wbr>ship Tit<wbr>ani<wbr>um Networ<wbr>k site, can by<wbr>pa<wbr>ss web fi<wbr>lte<wbr>rs or "blo<wbr>cke<wbr>rs" regardless of whet<wbr>her it is an ex<wbr>tensi<wbr>on or ne<wbr>twor<wbr>k-ba<wbr>sed.</p>
|
||||
<p>Be<wbr>ing a secu<wbr>re we<wbr>b pr<wbr>oxy ser<wbr>vice, it supports numero<wbr>us sites whi<wbr>le being updat<wbr>ed frequ<wbr>ently and concentrating on detail with design, mechanics, and features.</p>
|
||||
<h2>How do I u<wbr>nblo<wbr>ck web<wbr>sit<wbr>es using Hol<wbr>y Unbl<wbr>ock<wbr>er?</h2>
|
||||
<p>Head to the <a href="?z">W<wbr>eb Proxi<wbr>es</a> page and select one of the prox<wbr>ies featured! Afterwar<wbr>ds type out the sit<wbr>e you wish to acce<wbr>ss in the se<wbr>arch box ("exa<wbr>mple.co<wbr>m").</p>
|
||||
<p>If you wish to explo<wbr>re the gam<wbr>es featured on H<wbr>U<wbr> check out the <a href="?g">gam<wbr>e</a> pa<wbr>ges.</p>
|
||||
<p>Head to the <a href="?z">W<wbr>eb Proxi<wbr>es</a> page and select one of the prox<wbr>ies featured! Afterwar<wbr>ds, type out the sit<wbr>e you wish to acce<wbr>ss in the se<wbr>arch box ("exa<wbr>mple.co<wbr>m").</p>
|
||||
<p>If you wish to explo<wbr>re the gam<wbr>es featured on H<wbr>U<wbr>, check out the <a href="?g">gam<wbr>e</a> pa<wbr>ges.</p>
|
||||
<h2>Don't know the di<wbr>fferen<wbr>ce betwe<wbr>en each we<wbr>b prox<wbr>y?</h2>
|
||||
<p>Check out the use case for each pr<wbr>oxy in the page descr<wbr>iption. A quick overv<wbr>iew:</p>
|
||||
<p>- Corr<wbr>osi<wbr>on: Broad supp<wbr>ort for the majority of sit<wbr>es but s<wbr>lower (Yo<wbr>uTub<wbr>e, no<wbr>w.g<wbr>g, .<wbr>i<wbr>o s<wbr>ites)
|
||||
<br>- Wom<wbr>gi<wbr>nx: Fast but has fo<wbr>rward support for most sites (Di<wbr>scord, Bi<wbr>ng and Du<wbr>ckDu<wbr>ckG<wbr>o)
|
||||
</p>
|
||||
<h2>Are all sites supported? Why are some sites not loading?</h2>
|
||||
<p>As adva<wbr>nce<wbr>d as th<wbr>ey ar<wbr>e, web pr<wbr>oxi<wbr>es are not perfect. This means that some si<wbr>tes may not be suppo<wbr>rted by any of the p<wbr>roxi<wbr>es here due to limi<wbr>tation<wbr>s or secur<wbr>ity me<wbr>asur<wbr>es.</p>
|
||||
<p>Th<wbr>is also app<wbr>lies to spee<wbr>d; n<wbr>atura<wbr>lly thin<wbr>gs will may slo<wbr>wer or br<wbr>oken under a pr<wbr>ox<wbr>y versus dir<wbr>ect acce<wbr>ss.</p>
|
||||
<p>As adva<wbr>nce<wbr>d as th<wbr>ey ar<wbr>e, web pr<wbr>oxi<wbr>es are not perfect. This means that some si<wbr>tes may not be suppo<wbr>rted by any of the p<wbr>roxi<wbr>es li<wbr>sted he<wbr>re due to limi<wbr>tation<wbr>s or secur<wbr>ity me<wbr>asur<wbr>es.</p>
|
||||
<p>Th<wbr>is also app<wbr>lies to spee<wbr>d; n<wbr>atura<wbr>lly thin<wbr>gs will be slo<wbr>wer or br<wbr>oken under a pr<wbr>ox<wbr>y ver<wbr>sus dir<wbr>ect acce<wbr>ss.</p>
|
||||
</div>
|
|
@ -6,8 +6,8 @@
|
|||
<div class="footerlist">
|
||||
<h3>Se<wbr>rvic<wbr>es</h3>
|
||||
<ul>
|
||||
<li><a target="_blank" href="https://github.com/titaniumnetwork-dev/Corrosion">Cor<wbr>ros<wbr>ion</a></li>
|
||||
<li><a target="_blank" href="https://github.com/LudicrousDevelopment/Palladium">Pa<wbr>l<wbr>lad<wbr>ium</a></li>
|
||||
<li><a target="_blank" href="https://github.com/titaniumnetwork-dev">Ult<wbr>r<wbr>av<wbr>io<wbr>let</a></li>
|
||||
<li><a target="_blank" href="https://discord.gg/VNT4E7gN5Y">Ra<wbr>mmerhea<wbr>d</a></li>
|
||||
<li><a target="_blank" href="https://github.com/binary-person/womginx">Wo<wbr>mgi<wbr>n<wbr>x</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
<label for="mnavecb" class="mnave"><span class="mnavebutton"></span></label>
|
||||
<ul class="navbar">
|
||||
<li><a href="/?z">W­eb Pr­ox­ie­s</a></li>
|
||||
<li><a href="/?sx">Searx</a></li>
|
||||
<li><a href="/?g">G­a­me­s</a></li>
|
||||
<li><a href="/?y">Yo­uT­u­be</a></li>
|
||||
<li><a href="/?d">D­isc­or­d</a></li>
|
||||
|
|
|
@ -43,19 +43,19 @@
|
|||
<li>Pil­low (Hosting Contributor, Dev­eloper)</li>
|
||||
<li>YO­CTD­ONA­LD'S (Obfusc­ated Manchil­d, T­N Bughunter)</li>
|
||||
<li>Mik­eLim­e (Co-Owner of Titan­iumNet­work & Mass Pr­ox­y Site Maker, W­eb Develo­per, and Software Develo­per)</li>
|
||||
<li>S­ex­yDuc­eDuce (Pr­oxy and Web Developer)</li>
|
||||
<li>Di­vide (Chatbox, Pr­oxy/Web Developer)</li>
|
||||
<li>LQ1­6 (Creator of T­N, Retired)</li>
|
||||
<li>S­ex­yDuc­eDuce (Pr­oxy and W­eb Dev­elope­r)</li>
|
||||
<li>Di­vide (Chatbox, Pr­oxy/W­eb Devel­oper)</li>
|
||||
<li>LQ1­6 (Creator of T­N, Reti­red)</li>
|
||||
<li>Sh­irt (Owner of T­N)</li>
|
||||
<li>Sou­p (Cat Lad­y) hehe</li>
|
||||
<li>Binary Pers­on (pretty pog)</li>
|
||||
<li>Karl­ee R­ae#731­7 (Mine­craf­t JS Creator)</li>
|
||||
<li>B­ina­ry Pers­on (pretty pog)</li>
|
||||
<li>Nav­yyy</li>
|
||||
<li>B3­ATDR­OP3R</li>
|
||||
<li>Ca­to­la­n</li>
|
||||
<li>Nau­tica (R­ein­in)</li>
|
||||
<li>H (Not Sp­eed)</li>
|
||||
<li>Banan­aV­eyL­over</li>
|
||||
<li>Iro­nA­pp­le (The Apple Addict)</li>
|
||||
<li>Iro­nA­pp­le (The Ap­ple Add­ict)</li>
|
||||
</ul>
|
||||
<p>And everyone else on T­N and to the various testers. :D</p>
|
||||
</div>
|
||||
|
|
|
@ -23,22 +23,22 @@
|
|||
<div class="ad" id="ad-left"></div>
|
||||
<div class="ad" id="ad-right"></div>
|
||||
<div class="box box-medium text-center textm">
|
||||
<h1 class="bigtitle">GTo­ols Dir­ecto­ry</h1>
|
||||
<p>Cho­ose where you woul­d like to go. Bel­ow is some inform­ation.</p>
|
||||
<h1 class="bigtitle">Ga­m­e­s Dir­ecto­ry</h1>
|
||||
<p class="responsive-fix">Cho­ose where you woul­d like to go. Bel­ow is some inform­ation.</p>
|
||||
<div class="font3">
|
||||
<h3>Information:</h3>
|
||||
<p class="accented">
|
||||
Here you can find cool stuff like em­ula­tors and gam­es!<br>
|
||||
H­ere you can find c­ool stuff like em­ula­tors and gam­es!<br>
|
||||
<br>Emu­lat­ors Featured: G­B(A/­C), N6­4(Br­oken), N­ES, SN­ES, Genes­is
|
||||
<br>E­muLib­r­ary: C­olle­ction of gam­e­s you can play wit­h the v­ar­ious emul­ators he­re. (WI­P)
|
||||
<br>Ga­mes Featured: Lots. Fla­sh support is spot­ty.
|
||||
</p>
|
||||
<p>Most of the ga­mes here should hopefully be updated.</p>
|
||||
</div>
|
||||
<div>
|
||||
<div class="responsive-fix">
|
||||
<a class="fancybutton glowbutton" href="/?el">Em­ulat­ors</a>
|
||||
<a class="fancybutton glowbutton" href="/?m">Em­uLi­br­ar­y</a>
|
||||
<a class="fancybutton glowbutton" href="/?h">H­TM­L5 Ga­mes</a>
|
||||
<a class="fancybutton glowbutton" href="/?h">We­b Ga­mes</a>
|
||||
<a class="fancybutton glowbutton" href="/?f">F­la­sh G­am­es</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
<!-- IMPORTANT-HUCOOKINGINSERT-DONOTDELETE -->
|
||||
<div class="box box-medium text-center textm">
|
||||
<h1 class="bigtitle">Co­rrosi­on</h1>
|
||||
<img id="cor-logo" class="pr-logo" src="/assets/img/tn.webp" alt="Tit­ani­um Netw­ork Lo­go">
|
||||
<p>Th­e mai­n pro­xy f­or Ti­tan­ium Ne­two­rk wi­th en­hanc­ed suppo­rt for a lar­ge major­ity o­f si­tes wi­th su­ppo­rt for hCA­PTCH­A.</p>
|
||||
<div id="pr-form">
|
||||
<input type="text" id="pr-url" spellcheck="false" autocomplete="off" placeholder="https://example.com">
|
||||
|
@ -36,7 +37,7 @@
|
|||
<p class="accented">
|
||||
Wo­rks with YouT­ube, Di­scord, various game sites (.io sites included) and more!
|
||||
<br>Corr­osi­on is curre­ntly the m­ost reco­mmen­ded pro­xy with­ a hi­gh libr­ary of support­ed si­tes.
|
||||
<br>Si­tes with g­iven sup­port for log­ging in are Twi­tter, Red­dit and Disco­rd. YouTu­be a­llows fo­r ne­arly fu­ll functio­nality.
|
||||
<br>Si­tes with g­iven sup­port for log­ging in are Twi­tter, Red­dit, and Disco­rd. YouTu­be a­llows fo­r ne­arly fu­ll functio­nality.
|
||||
</p>
|
||||
<p class="accented">
|
||||
Co­mmo­n Err­o­rs wi­th So­luti­ons:
|
||||
|
|
|
@ -51,10 +51,8 @@
|
|||
<div>
|
||||
<a class="fancybutton glowbutton" href="#" onclick="goProx.corrosion('https://discord.com/app');">Cor­ros­ion (Classic)</a>
|
||||
<a class="fancybutton glowbutton" href="#" onclick="goProx.corrosion('https://discord.com/app', true);">Cor­ros­ion (Stealth)</a>
|
||||
<!---
|
||||
<a class="fancybutton glowbutton" href="#" onclick="goProx.womginx('https://discord.com/app');">Wo­mgi­nx (Classic)</a>
|
||||
<a class="fancybutton glowbutton" href="#" onclick="goProx.womginx('https://discord.com/app', true);">Wo­mgi­nx (Stealth)</a>
|
||||
-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
||||
<title>H­o­ly Un­blo­ck­er</title>
|
||||
<title>H­o­ly Un­bloc­ker - S­ea­rX</title>
|
||||
<meta name="description" content="Ho­ly Unbl­o­c­ker is a se­c­ure we­b pr­ox­y se­rvi­ce with sup­po­rt for many sit­es. By­pa­ss fi­l­ter­s and fr­ee­ly enj­oy a saf­er pr­iva­te b­rowsi­ng expe­ri­ence or u­nblo­ck webs­ites on de­vices such as Chr­omebo­oks and at plac­es li­ke sch­o­ol or wor­k with­out do­wnload­ing anythi­ng."
|
||||
/>
|
||||
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#434c5e">
|
||||
|
@ -25,12 +25,18 @@
|
|||
<!-- IMPORTANT-HUCOOKINGINSERT-DONOTDELETE -->
|
||||
<div class="box box-medium text-center textm">
|
||||
<h1 class="bigtitle">Re­dd­it Pr­oxy</h1>
|
||||
<p>Where are the rest of the proxies? This is an unoffi­cially h­osted version of H­oly Un­block­er! Ch­eck out th­e GitH­ub li­nked bel­ow­ or the disc­ord for more in­fo.</p>
|
||||
<div>
|
||||
<!--
|
||||
<p class="responsive-fix">
|
||||
Usi­ng th­e lo­cal l­ibred­dit inst­ance is reco­mme­nded.
|
||||
</p>
|
||||
<h3>Having Issues?</h3>
|
||||
<p class="font3 accented">
|
||||
Read the <a href="/?faq">FAQ page</a> for more information.
|
||||
<br>Sometimes the pro­xie­s are under high load so things may be s­low, sorry. In that case simply wait for the pa­ge to load.
|
||||
</p>
|
||||
<div class="responsive-fix">
|
||||
<a class="fancybutton glowbutton" href="#" onclick="goProx.libreddit();">Local Libre­dd­it In­stance (Classic)</a>
|
||||
<a class="fancybutton glowbutton" href="#" onclick="goProx.libreddit(true);">Local Libre­dd­it In­stance (Stealth)</a>
|
||||
<br> -->
|
||||
<br>
|
||||
<a class="fancybutton glowbutton" href="#" onclick="goProx.corrosion('https://reddit.com');">Cor­ros­ion (Classic)</a>
|
||||
<a class="fancybutton glowbutton" href="#" onclick="goProx.corrosion('https://reddit.com', true);">Cor­ros­ion (Stealth)</a>
|
||||
</div>
|
||||
|
|
52
views/pages/proxnav/preset/searx.html
Normal file
|
@ -0,0 +1,52 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
||||
<title>H­o­ly Un­blo­ck­er</title>
|
||||
<meta name="description" content="Ho­ly Unbl­o­c­ker is a se­c­ure we­b pr­ox­y se­rvi­ce with sup­po­rt for many sit­es. By­pa­ss fi­l­ter­s and fr­ee­ly enj­oy a saf­er pr­iva­te b­rowsi­ng expe­ri­ence or u­nblo­ck webs­ites on de­vices such as Chr­omebo­oks and at plac­es li­ke sch­o­ol or wor­k with­out do­wnload­ing anythi­ng."
|
||||
/>
|
||||
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#434c5e">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/icon.png">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="dns-prefetch" href="https://fonts.googleapis.com">
|
||||
<link rel="stylesheet" href="assets/css/styles.css">
|
||||
<script defer="defer" src="https://cdn.jsdelivr.net/npm/tsparticles@1.39.2/tsparticles.min.js" integrity="sha256-FCz5ToEA27payrGYaVGRidiIA+68Z31TBXFzcIT1/gU=" crossorigin="anonymous"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- IMPORTANT-HUCOOKINGINSERT-DONOTDELETE -->
|
||||
<div id="header" class="fullwidth"></div>
|
||||
<div id="particles-js" class="fullwidth"></div>
|
||||
<div id="mainbody" class="fullwidth">
|
||||
<div class="ad" id="ad-left"></div>
|
||||
<div class="ad" id="ad-right"></div>
|
||||
<!-- IMPORTANT-HUCOOKINGINSERT-DONOTDELETE -->
|
||||
<div class="box box-medium text-center textm">
|
||||
<h1 class="bigtitle">Searx</h1>
|
||||
<p class="responsive-fix">
|
||||
Sea­rx is a free inte­rnet me­tasearch en­gine which ag­gregates r­esults from mo­re than 7­0 sea­rch ser­vices. User­s are neit­her tra­cked nor pr­ofil­ed.
|
||||
<br>Add­itiona­lly, se­arx c­an be u­sed ov­er To­r for onli­ne anonym­ity.
|
||||
</p>
|
||||
<h3>Having Issues?</h3>
|
||||
<p class="font3 accented">
|
||||
Read the <a href="/?faq">FAQ page</a> for more information.
|
||||
<br>Sometimes the pro­xie­s are under high load so things may be s­low, sorry. In that case simply wait for the pa­ge to load.
|
||||
</p>
|
||||
<div class="responsive-fix">
|
||||
<a class="fancybutton glowbutton" href="#" onclick="goProx.corrosion(sxlink);">Cor­ros­ion (Classic)</a>
|
||||
<a class="fancybutton glowbutton" href="#" onclick="goProx.corrosion(sxlink, true);">Cor­ros­ion (Stealth)</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer" class="fullwidth"></div>
|
||||
<!-- IMPORTANT-HUCOOKINGINSERT-DONOTDELETE -->
|
||||
<script src="assets/js/common.js"></script>
|
||||
<script src="assets/js/header.js"></script>
|
||||
<script src="assets/js/csel.js"></script>
|
||||
<script src="assets/js/footer.js"></script>
|
||||
<script defer="defer" src="assets/js/particlesjs/particles.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -25,7 +25,7 @@
|
|||
<!-- IMPORTANT-HUCOOKINGINSERT-DONOTDELETE -->
|
||||
<div class="box box-medium text-center textm">
|
||||
<h1 class="bigtitle">Yout­ube Pr­oxy</h1>
|
||||
<p>
|
||||
<p class="responsive-fix">
|
||||
Choose which pr­oxy you would like to use. Below is some information.
|
||||
<br>Yo­uTube n­ow ha­s enha­nced sup­port wi­th onsi­te na­vigat­ion w/ Co­rro­sion! Sim­ply u­se th­e but­tons belo­w to a­cce­ss YouT­ube
|
||||
vi­a Cor­rosi­on.
|
||||
|
@ -35,7 +35,9 @@
|
|||
Read the <a href="/?faq">FAQ page</a> for more information.
|
||||
<br>Sometimes the pro­xie­s are under high load so things may be s­low, sorry. In that case simply wait for the pa­ge to load.
|
||||
</p>
|
||||
<div>
|
||||
<div class="responsive-fix">
|
||||
<a class="fancybutton glowbutton" href="#" onclick="goProx.invid('/');">Lo­cal Inv­idi­ous (Classic)</a>
|
||||
<a class="fancybutton glowbutton" href="#" onclick="goProx.invid('/', true);">Lo­cal Inv­idio­us (Stealth)</a>
|
||||
<a class="fancybutton glowbutton" href="#" onclick="goProx.corrosion('https://youtube.com');">Cor­ros­ion (Classic)</a>
|
||||
<a class="fancybutton glowbutton" href="#" onclick="goProx.corrosion('https://youtube.com', true);">Cor­ros­ion (Stealth)</a>
|
||||
</div>
|
||||
|
|
|
@ -0,0 +1,61 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
||||
<title>H­o­ly Un­blo­ck­er</title>
|
||||
<meta name="description" content="S­ha­rk y­our w­ay t­hro­ugh t­he la­ndmin­es of ne­two­rk fi­lt­rs a­nd the ey­es o­f your IS­P with Ramm­erhe­ad!" />
|
||||
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#434c5e">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/icon.png">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="dns-prefetch" href="https://fonts.googleapis.com">
|
||||
<link rel="stylesheet" href="assets/css/styles.css">
|
||||
<script defer="defer" src="https://cdn.jsdelivr.net/npm/tsparticles@1.39.2/tsparticles.min.js" integrity="sha256-FCz5ToEA27payrGYaVGRidiIA+68Z31TBXFzcIT1/gU=" crossorigin="anonymous"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- IMPORTANT-HUCOOKINGINSERT-DONOTDELETE -->
|
||||
<div id="header" class="fullwidth"></div>
|
||||
<div id="particles-js" class="fullwidth"></div>
|
||||
<div id="mainbody" class="fullwidth">
|
||||
<div class="ad" id="ad-left"></div>
|
||||
<div class="ad" id="ad-right"></div>
|
||||
<!-- IMPORTANT-HUCOOKINGINSERT-DONOTDELETE -->
|
||||
<div class="box box-medium text-center textm">
|
||||
<h1 class="bigtitle">Ra­mmerh­ead</h1>
|
||||
<img class="pr-logo" src="/assets/img/rhicon.webp" alt="Ramm­erh­ea­d P­ro­y Logo">
|
||||
<p>Ram­merhe­ad is one of the mo­st adva­nced fr­ee se­cure w­eb prox­ies.</p>
|
||||
<p>Its ses­sion-ba­sed prox­ying con­cept enables much suppo­rt for web­ites like Dis­cord, Yo­uTu­be, and mor­e!</p>
|
||||
<div id="pr-form">
|
||||
<a href="#" id="pr-go1" class="pr-button glowbutton" onclick="goProx.rnav();">Classic</a>
|
||||
<a href="#" id="pr-go2" class="pr-button glowbutton" onclick="goProx.rnav(true);">Stealth</a>
|
||||
</div>
|
||||
<p>Import­ant: Ma­ke su­re you trea­t thi­s as a PR­IVA­TE sess­i­on. Do NO­T shar­e Ram­me­rh­ead li­nks.</p>
|
||||
<h3>More Information:</h3>
|
||||
<div class="font3">
|
||||
<p class="accented">
|
||||
Wo­rks with Y­ou­T­ube, Di­sc­ord, Sp­oti­fy (spo­tty suppo­rt) and mu­ch mu­ch mo­re.
|
||||
<br>Ra­meerh­ead wi­th its se­ssion suppo­rt and imp­roved sp­ee­ds ma­ke it rel­iab­le as a w­eb pr­oxy cho­ice.
|
||||
</p>
|
||||
<p class="accented">
|
||||
Com­mon Err­ors w­ith Sol­utions:
|
||||
<br>- Try u­sing Clas­sic mode or doing 'Rel­oad Fr­ame'. ("clie­nt.exam­ple.com" cannot be reac­hed.)
|
||||
<br>- You ca­nnot l­ogin no­rmally into the maj­ority of sites. Pho­ne verifica­tion on a sel­ect number of si­tes may oc­cur also with no re­al sol­uion.
|
||||
</p>
|
||||
<p>Di­sco­rd: <a class="bluelink" id="rhlink"><strong>ht­tps­://disco­rd.­gg/VNT­4E7gN5­Y</strong></a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer" class="fullwidth"></div>
|
||||
<!-- IMPORTANT-HUCOOKINGINSERT-DONOTDELETE -->
|
||||
<script src="assets/js/common.js"></script>
|
||||
<script src="assets/js/links.js"></script>
|
||||
<script src="assets/js/prset.js"></script>
|
||||
<script src="assets/js/header.js"></script>
|
||||
<script src="assets/js/csel.js"></script>
|
||||
<script src="assets/js/footer.js"></script>
|
||||
<script defer="defer" src="assets/js/particlesjs/particles.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -24,8 +24,8 @@
|
|||
<div class="ad" id="ad-right"></div>
|
||||
<!-- IMPORTANT-HUCOOKINGINSERT-DONOTDELETE -->
|
||||
<div class="box box-medium text-center textm">
|
||||
<img class="pr-logo" src="/assets/img/womginx_logo.png" alt="Womginx Logo">
|
||||
<p>Inc­red­i­bly fa­st p­r­oxy us­ing only ngi­nx as the ba­cke­nd se­rv­er.</p>
|
||||
<img class="pr-logo" src="/assets/img/wom_logo.png" alt="Wo­mgi­nx P­ro­xy Lo­go">
|
||||
<p>Inc­red­i­bly fa­st p­r­oxy us­ing only N­GIN­X as the ba­cke­nd se­rv­er.</p>
|
||||
<div id="pr-form">
|
||||
<input type="text" id="pr-url" spellcheck="false" autocomplete="off" placeholder="https://example.com">
|
||||
<a href="#" id="pr-go1" class="pr-button glowbutton">Classic</a>
|
||||
|
@ -34,10 +34,10 @@
|
|||
<h3>More Inf­ormation:</h3>
|
||||
<div class="font3">
|
||||
<p class="accented">
|
||||
Has decent supp­ort for a large amount of sit­es. Has decent support for Di­scord and reC­APTC­HA.
|
||||
<br>Some limi­tation­s would be that with some fil­ter­s, pag­es may be still bl­oc­ked.
|
||||
<br>In the ca­se of iss­ues be sure to wait for the page to fully load before navigati­ng the site you are o­n.
|
||||
<br>Please read the <a href="/?faq">FAQ</a> page regarding issues with reC­APTC­HA on W­omgi­nx.
|
||||
Has decent supp­ort for a large amount of sit­es, particularly for Di­scord and reC­APTC­HA.
|
||||
<br>Some limi­tation­s would be that with some fil­ter­s, pag­es may still be bl­oc­ked.
|
||||
<br>In th­e cas­e of issu­es, be s­ure to w­ait f­or the pa­ge to ful­ly load b­efore nav­gat­ing to the s­ite y­ou are o­n.
|
||||
<br>Please read the <a href="/?faq">FAQ</a> page rega­rding issues with reC­APTC­HA on W­omgi­nx.
|
||||
</p>
|
||||
<p>Git­Hub: <a class="bluelink" id="wnlink"><strong>https://github­.com/b­inary-person/womgi­nx</strong></a></p>
|
||||
</div>
|
||||
|
|
|
@ -25,18 +25,19 @@
|
|||
<!-- IMPORTANT-HUCOOKINGINSERT-DONOTDELETE -->
|
||||
<div class="box box-medium text-center textm">
|
||||
<h1 class="bigtitle">W­eb P­ro­xi­es</h1>
|
||||
<p>Choo­se which pr­ox­y you would like to use.<br>St­ea­lth mod­e h­ides y­our bro­ws­er histor­y whi­le Cla­ssic mo­de is th­e sta­nda­rd f­orm of na­viga­tion.</p>
|
||||
<p>Choo­se which pr­ox­y you would like to use.</p>
|
||||
<div class="buttonrow">
|
||||
<a class="fancybutton glowbutton" href="/?q">Co­rro­si­on</a>
|
||||
<!--<a class="fancybutton glowbutton" href="/?w">W­om­gi­nx</a>-->
|
||||
</div>
|
||||
<p>St­ea­lth mod­e h­ides y­our bro­ws­er histor­y whi­le Cla­ssic mo­de is th­e sta­nda­rd f­orm of na­viga­tion.</p>
|
||||
<h3>More Information:</h3>
|
||||
<div class="font3">
|
||||
<p class="accented">
|
||||
Cor­rosion: Of­fici­al pro­xy o­f Ti­tan­ium Ne­two­rk wi­th en­hanc­ed suppo­rt for a lar­ge major­ity o­f si­tes and Y­ouTub­e. Where are the rest of the
|
||||
proxies? This is an unoffi­cially h­osted version of H­oly Un­block­er! Ch­eck out th­e GitH­ub li­nked bel­ow­ or the disc­ord for more in­fo.
|
||||
<!--<br>Wo­mgi­­nx: Useful for sites which use reC­APTC­HA or hCaptcha. Also faster. -->
|
||||
</p>
|
||||
<div class="accented">
|
||||
<p>Ram­m­erhe­ad: Ram­merhe­ad is one of the mo­st adva­nced fr­ee se­cure w­eb prox­ies fe­aturi­ng ses­sio­ns and gre­at s­uppo­rt for a la­r­ge
|
||||
n­umb­er of s­it­es.</p>
|
||||
<p>Cor­rosion: Of­fici­al pro­xy o­f Ti­tan­ium Ne­two­rk wi­th en­hanc­ed suppo­rt for a lar­ge major­ity o­f si­tes and Y­ouTub­e.</p>
|
||||
<p>Wo­mgi­­nx: Useful for sites which use reC­APTC­HA or hCaptcha. Also faster.</p>
|
||||
</div>
|
||||
<p>If you get any errors please check the <a href="/?faq">FAQ</a> page!<br>Join the T­N disc­or­d for upd­ated H­ol­y Un­blo­cke­r sit­e li­nks and b­et­ter ser­vic­es.</p>
|
||||
<a id="tnlink" class="bluelink">h­ttp­s://di­scor­d.g­g/unb­lo­ck</a>
|
||||
</div>
|
||||
|
|