Bypass All Shortlinks - User
Bypass All Shortlinks - User
const window = unsafeWindow; // Some of My Codes Not Running Well Without this ,
Please Let Me Know if You Find any Bugs
const cfg = new MonkeyConfig({title: 'Bypass Version 92.8 Settings :',
menuCommand: true,
params: {Announcements : {type: 'text', default: 'Add Your ApiKey from
nocaptchaai to use Auto Solve Hcaptcha', long: 3},
ApiKey: {label: "noCaptcha Ai KEY", type: "text", default: "",},
SetDelay: {label: "Redirect Delay ", type: "number", default: 5,},
BlogDelay: {label: "Use My Blogs For Delays", type: "checkbox", default:
false,},
reCAPTCHA: {label: "Auto Open/Solve Recaptcha", type: "checkbox", default:
false,}, // Auto Solve Recaptcha Not Yet Ready
hCaptcha: {label: "Auto Open/Solve Hcaptcha", type: "checkbox", default: false,
},
YTShort: {label: "Disable Youtube Short", type: "checkbox", default: false,},
RightFC: {label: "Enable Context Menu ", type: "checkbox", default: false,},
BlockFC: {label: "Enable Always Ready", type: "checkbox", default: false,},
TimerFC: {label: "Enable Fast Timer ", type: "checkbox", default: false,},
AutoDL: {label: "Auto Download For Supported Sites", type: "checkbox", default:
false,},},});
(function(){function BoostTimers() {const FsT = window.setTimeout; const FsI =
window.setInterval;
Object.defineProperty(window, 'setTimeout', {value: function(func, delay) {if
(delay === 1000) {delay = 50;} return FsT.apply(this, arguments);}});
Object.defineProperty(window, 'setInterval', {value: function(func, delay) {if
(delay === 1000) {delay = 50;} return FsI.apply(this, arguments);}});}
if (cfg.get('TimerFC') == true) {BoostTimers();} else {}})();
(function() { // Please Remember , My Scripts Works Better Using Firefox Browser
and Violentmonkey Extension
'use strict';
const APIKEY = cfg.get('ApiKey'); const bp = query =>
document.querySelector(query);const BpAll = query =>
document.querySelectorAll(query);
const BpParams = new URLSearchParams(location.search);const BpParamd = new
URLSearchParams(document.location.search);const RexBp = new RegExp(/^\?([^&]+)/);
const BpT = query => document.getElementsByTagName(query);const elementExists =
query => bp(query) !== null;const domainCheck = domains => new
RegExp(domains).test(location.host);
function BpBlock() {return 1;}
function sleep(ms) {return new Promise((resolve) => setTimeout(resolve, ms));}
function waitForElm(query, callback) {setTimeout(function() {
if (elementExists(query)) {callback(bp(query));} else {waitForElm(query,
callback);}}, 1000);}
function ClickIfExists(query, timeInSec = 1, funcName = 'setTimeout') {
if (elementExists(query)) {window[funcName](function() {bp(query).click();},
timeInSec * 1000);}}
function SubmitIfExists(query, timeInSec = 1, funcName = 'setTimeout') {
if (elementExists(query)) {window[funcName](function() {bp(query).submit();},
timeInSec * 1000);}}
function Checkvisibility(elem) {if (!elem.offsetHeight && !elem.offsetWidth)
{return false;}
if (getComputedStyle(elem).visibility === 'hidden') {return false;} return
true;}
function XPathBp(b,p) {p = document; return
p.evaluate(b,p,null,9,null).singleNodeValue;}
function RemoveRef(value) {delete document.referrer;
document.__defineGetter__('referrer', () => value);}
function meta(href)
{document.head.appendChild(Object.assign(document.createElement('meta'), {name:
'referrer',content: 'origin'}));
Object.assign(document.createElement('a'), {href}).click();}
function RemoveBp(domain, selector) {const re_domain = new RegExp(domain); if (!
re_domain.test(location.host)) return;
const elements = BpAll(selector);for (const element of elements)
{element.remove();}}
function redirect(url, blog = true) {location = blog && cfg.get('BlogDelay') ?
'https://free4u.nurul-huda.or.id/?BypassResults=' + url : url;}
function BpCalc(sbp) {return (sbp.replace(/\s/g, '').match(/[+\-]?([0-9\.]+)/g)
|| []).reduce(function(sum, value) {return parseFloat(sum) + parseFloat(value);});}
function BlockRead(SearchString, nameFunc) {var target = window[nameFunc];
window[nameFunc] = function(...args) {const stringFunc = String(args);
if ((new RegExp(SearchString)).test(stringFunc)) args[0] = function() {};
return target.call(this, ...args);};}
function DecodeBase64(string, times) {let StringDecoded = string;for (let i = 0;
i < times; i++) {StringDecoded = atob(StringDecoded);}return StringDecoded;}
function SubmitBp(selector, time = 1) {let elem = (typeof selector ===
'string') ? bp(selector).closest('form') : selector; console.log(elem);
setTimeout(() => {elem.submit();}, time * 1000);}
function ReadCV(cname) {let name = cname + "=";let decodCV =
decodeURIComponent(document.cookie);
let cv = decodCV.split(';');for (var i = 0; i < cv.length; i++) {let c = cv[i];
while (c.charAt(0) == ' ') {c = c.substring(1);}
if (c.indexOf(name) == 0) {return c.substring(name.length, c.length);}}
return "";}
function elementReady(selector) {return new Promise(function(resolve, reject)
{let element = bp(selector);
if (element) {resolve(element); return;} new MutationObserver(function(_,
observer) {element = bp(selector);
if (element) {resolve(element);
observer.disconnect();}}).observe(document.documentElement, {childList: true,
subtree: true});});}
function SetCookie(name, value, days) {if (days) {var date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
let expires = "; expires=" + date.toGMTString();} else {var expires = "";
document.cookie = name + "=" + value + expires + "; path=/";}}
function DelCookie(name) {SetCookie(name, "", -1);}
function ReadytoClick(selector, sleepTime = 0) {const events = ["mouseover",
"mousedown", "mouseup", "click"];const selectors = selector.split(', ');
if (selectors.length > 1) {return selectors.forEach(ReadytoClick);}if
(sleepTime > 0) {return sleep(sleepTime * 1000).then(function()
{ReadytoClick(selector, 0);});}
elementReady(selector).then(function(element)
{element.removeAttribute('disabled');element.removeAttribute('target');
events.forEach(eventName => {const eventObject = new MouseEvent(eventName,
{bubbles: true}); element.dispatchEvent(eventObject);});});}
function Decrypter(string) {const shift = 13;let decipheredString = ''; for (let
i = 0; i < string.length; i++) {let charCode = string.charCodeAt(i);
if (charCode >= 97 && charCode <= 122) {decipheredString +=
String.fromCharCode(((charCode - 97 - shift + 26) % 26) + 97);}
else if (charCode >= 65 && charCode <= 90) {decipheredString +=
String.fromCharCode(((charCode - 65 - shift + 26) % 26) + 65);}else
{decipheredString += string[i];}}return decipheredString;}
function Decrypter2(string, Length = 5) {var decrypteds = '',base64 =
atob(string),subs = base64.substring(0, Length),encrypted =
base64.substring(Length);
for (let i = 0; i < encrypted.length; i++) {let charCode =
encrypted.charCodeAt(i),charCodeKey = subs.charCodeAt(i % subs.length),decrypted =
charCode ^ charCodeKey;decrypteds += String.fromCharCode(decrypted);} return
decrypteds;}
function NoFocus() {window.mouseleave = true; window.onmouseover = true;
document.hasFocus = function() {return true;}; Object.defineProperty(document,
'webkitVisibilityState', {get() {return 'visible';}});
Object.defineProperty(document, 'visibilityState', {get() {return
'visible';}}); window.addEventListener('visibilitychange', function(e)
{e.stopImmediatePropagation();}, true, true);
window.addEventListener('focus', onfocus,
true);document.addEventListener('visibilitychange', function(e)
{e.stopImmediatePropagation();}, true, true); Object.defineProperty(document,
'hidden', {get() {return false;}});}
function strBetween(s, front, back, trim = false) {if (trim) {s = s.replaceAll('
', '');s = s.trim();s = s.replaceAll('\n', ' ');}
return s.slice(s.indexOf(front) + front.length, s.indexOf(back,
s.indexOf(front) + front.length));}
function BypassedByBloggerPemula(re_domain, data, blog) {if (!
re_domain.test(location.host)) return;
if (typeof data === 'function') return data();if (Array.isArray(data)) data = {
'/': data }; if (!(location.pathname in data)) return;const [key, value] =
data[location.pathname];
if (typeof key === 'object' && key.test(location.search)) return redirect(value
+ RegExp.$1, blog); if (BpParams.has(key)) redirect(value + BpParams.get(key),
blog);}
function BloggerPemula(domains, data, url = '', blog = false, all = false) {if (!
domainCheck(domains)) return;
if (typeof data === 'string' && data.split(',').every(p => BpParams.has(p)))
{const use = data.split(',').at(0);
const def = all ? BpParams.getAll(use).find(u => new RegExp(domains).test(u)) :
BpParams.get(use);
redirect(url + def, blog);} else if (typeof data === 'object') {const o =
data[location.pathname]; if (!o) return;BloggerPemula(domains, ...o);}}
function BypassHD(selector, time) {if (elementExists('.g-recaptcha')) {let gc =
setInterval(() => {if (window.grecaptcha.getResponse().length !== 0) {
clearInterval(gc); SubmitBp('.g-recaptcha', 1);}}, 1000);} else if
(elementExists('.h-captcha')) {let hc = setInterval(() => {if
(window.hcaptcha.getResponse().length !== 0) {
clearInterval(hc); SubmitBp('.h-captcha', 1);}}, 1000);} else if
(elementExists('.cf-turnstile')) {let tc = setInterval(() => {if
(window.turnstile.getResponse().length !== 0) {
clearInterval(tc); SubmitBp('.cf-turnstile', 1);}}, 1000);} else if
(elementExists('input[name=_iconcaptcha-token]')) {Captchacheck(selector);} else
{SubmitBp(selector, time);}}
function GetForm(FormName) {var forms = document.forms; for (var i = 0; i <
forms.length; i++) {if (FormName === 'mdn') {var form = forms[i].innerHTML;
if (form.includes('Step')) {return forms[i];}} else if (FormName ===
'Allin1') {var bait = forms[i].action; if (/bypass.html|adblock.html/.test(bait))
continue; return forms[i];} else {return;}}}
function Captchacheck(selector) {if
(elementExists("iframe[src^='https://newassets.hcaptcha.com']")) {return
window.hcaptcha.getResponse().length !== 0;
} else if (elementExists("input[name='cf-turnstile-response']")) {return
window.turnstile.getResponse().length !== 0;} else if
(elementExists("iframe[title='reCAPTCHA']")) {return
window.grecaptcha.getResponse().length !== 0;
} else if (elementExists('#iconcaptcha')) {let b = setInterval(() => {let p =
bp('.iconcaptcha-holder.iconcaptcha-theme-light.iconcaptcha-success'); if (p)
{clearInterval(b); SubmitBp(selector, 1);}}, 1000);} else {return;}}
function notify(txt, duration = cfg.get('SetDelay')) {const m =
document.createElement('div'); m.style.padding = '1px'; m.style.zIndex = 99999999;
m.style.position = 'fixed';
m.style.width = `970px`; m.style.top = '275px'; m.style.left = `${innerWidth /
2 - 485}px`; m.style.font = 'normal bold 17px sans-serif'; m.style.backgroundColor
= 'gold'; m.style.boxSizing = 'border-box';
m.innerText = txt.replace('@', duration);
document.documentElement.appendChild(m); const timerId = setInterval(() =>
{duration -= 1; if (duration <= 0) {clearInterval(timerId);} else {m.innerText =
txt.replace('@', duration);}}, 1000);}
function Listener(callback) {const originalOpen = XMLHttpRequest.prototype.open;
XMLHttpRequest.prototype.open = function(method, url)
{this.addEventListener("load", function() { this.method = method;this.url =
url;callback(this);}); originalOpen.apply(this, arguments);};}
function Request(url, options = {}) {return new Promise(function(resolve, reject)
{GM_xmlhttpRequest({ method: options.method ?? "GET", url, responseType:
options.responseType ?? "json", headers: options.headers, data: options.data,
onload: function(response) {resolve(response.response);}});});}
function EnableRCF() {[].forEach.call(['contextmenu', 'visibilitychange', 'cut',
'paste', 'blur', 'mouseleave', 'keyup', 'drag', 'dragstart', 'hasFocus', 'focus',
'select', 'selectstart', 'webkitvisibilitychange', 'mozvisibilitychange'],
function(event) {document.addEventListener(event, function(e)
{e.stopPropagation();}, true);});}
ClickIfExists("button[class^='DownloadButton_ButtonSoScraperCanTakeThisName']", 2);
let qiwi = bp("a[class^='DownloadButton_DownloadButton']"); setTimeout(()
=> {redirect(qiwi.href, false);}, 3 * 1000);} else {}});
BypassedByBloggerPemula(/usersdrive.com|ddownload.com/, function() {
let ud = setInterval(function() {if (Captchacheck())
{ClickIfExists('#downloadbtn');}}, 500);ClickIfExists('.btn-download.btn', 1);});
BypassedByBloggerPemula(/sharemods.com/, function() {SubmitIfExists('#dForm',
2);
if (elementExists('.download-file-holder'))
{waitForElm('a#downloadbtn.btn.btn-primary', smd => redirect(smd.href, false));}
else {}});
BypassedByBloggerPemula(/mexa.sh/, function() {parent.open =
BpBlock();ClickIfExists('#Downloadfre', 2);ClickIfExists('#direct_link', 2);
let mx = setInterval(() => {if (Captchacheck())
{clearInterval(mx);ClickIfExists('.downloadbtn');}}, 1 * 1000);});
BypassedByBloggerPemula(/(kusonime|oploverz).org|(opinimedia|beritaotaku|
caramasak).com|otakudesu.cc|resepkoki.net|neonime\.*/, function() {
waitForElm('.bg-gb.dwto.sdw', kmBtn =>
kmBtn.click());waitForElm('a.sdw.dwto.bg-gb', kmk => redirect(kmk.href, false));});
BypassedByBloggerPemula(/pdfcoffee.com/, function() {ClickIfExists('.btn-
block.btn-success.btn', 2);
let pdf = setInterval(() => {if (Captchacheck())
{clearInterval(pdf);ClickIfExists('.my-2.btn-block.btn-primary.btn-lg.btn');}}, 1 *
1000);});
BypassedByBloggerPemula(/adoc.pub/, function() {ClickIfExists('.btn-block.btn-
success.btn', 2);
let adp = setInterval(() => {if (Captchacheck())
{clearInterval(adp);ClickIfExists('.mt-15.btn-block.btn-success.btn-lg.btn');}}, 1
* 1000);});
BypassedByBloggerPemula(/clickndownload.org|clicknupload\.*/, function() {if
(elementExists('.download')) {ClickIfExists('span.downloadbtn', 10);
ClickIfExists('#method_free', 2);waitForElm('a.downloadbtn', cnu =>
redirect(cnu.href, false));}});
BypassedByBloggerPemula(/leechpub.com/, function() {
if (elementExists('.text-center.py-6')) {waitForElm('a.btn.btn-lg.btn-
success.mb-1.px-6.lh-10', lpub => redirect(lpub.href, false));} else {}});
BypassedByBloggerPemula(/uploadev.org/, function() {let ude =
setInterval(function() {if (Captchacheck()) {ClickIfExists('#downloadbtn');}},
500);
ClickIfExists('#dspeed > input:nth-child(3)', 1);ClickIfExists('.directl',
1);});
BypassedByBloggerPemula(/rawlazy.si/, function() {
if (elementExists('#captcha_form')) {ClickIfExists('.go-to-captcha-form',
2);} else {waitForElm('.color-btn', rlz => redirect(rlz.href, false));}});
BypassedByBloggerPemula(/modsbase.com/, function() {
if (elementExists('.file-panel')) {ClickIfExists('.download-file-btn',
2);waitForElm('#downloadbtn > a', mba => redirect(mba.href, false));} else {}});
BypassedByBloggerPemula(/dropgalaxy.com/, function()
{ClickIfExists("button[id^='method_fre']", 2);
ClickIfExists("button[name='fs_download_file']", 3,
'setInterval');waitForElm('a.btn.btn-block.btn-lg.btn-primary', dg =>
redirect(dg.href, false));});
BypassedByBloggerPemula(/file-upload.com|file-upload.org/, function()
{ClickIfExists('.mnbt1.btn-primary.btn-xs.btn', 2);ClickIfExists('#download-btn',
2);
let fu = setInterval(function() {if (Captchacheck())
{clearInterval(fu);ClickIfExists('#downloadbtn');}}, 500);});
BypassedByBloggerPemula(/hitfile.net/, function() {let hf = setInterval(() =>
{if (Captchacheck()) {clearInterval(hf);ClickIfExists('#submit');}}, 1 * 1000);
waitForElm('a.btn-grey.nopay-btn', hfl => redirect(hfl.href,
false));waitForElm('#popunder2', hfl2 => redirect(hfl2.href, false));});
BypassedByBloggerPemula(/(thecubexguide|miuiflash).com|(djxmaza|jytechs).in/,
function() {if (elementExists('.premium')) {
ReadytoClick('a#dlbtn.btn.btn-secondary.btn-block.mb-4',
2);ClickIfExists('#downloadbtnf', 3);ClickIfExists('#downloadbtn', 4,
'setInterval');} else {}});
BypassedByBloggerPemula(/filedm.com/, function() {
if (elementExists('#dlbutton')) {waitForElm('#dlbutton', fdm =>
redirect('http://cdn.directfiledl.com/getfile?id=' + fdm.href.split('_')[1],
false));} else {}});
BypassedByBloggerPemula(/gogodl.com/, () => {waitForElm('a.crumina-
button.button--green.button--bordered.button--m.w-100', godl => redirect(godl.href,
false));
ClickIfExists('.w-100.button--m.button--bordered.button--green.crumina-
button', 5, 'setInterval');
let gogo = setInterval(() => {if (Captchacheck())
{clearInterval(gogo);ClickIfExists('.w50.button--m.button--bordered.button--
green.crumina-button');}}, 1 * 1000);});
BypassedByBloggerPemula(/turbobit.net/, () => {if (elementExists('#turbo-
table')) {let tb = bp('#nopay-btn').href;redirect(tb, false);}
let tbb = setInterval(() => {if (Captchacheck())
{clearInterval(tbb);ClickIfExists('#submit');}}, 500); waitForElm('#free-download-
file-link', tur => redirect(tur.href, false));});
BypassedByBloggerPemula(/drive.google.com/, function() {var dg =
window.location.href.split('/').slice(-2)[0];
if (window.location.href.includes('drive.google.com/file/d/'))
{redirect(`https://drive.usercontent.google.com/download?id=${dg}&export=download`,
false).replace('<br />', '');
} else if (window.location.href.includes('drive.google.com/u/0/uc?id'))
{SubmitIfExists('#download-form', 1);} else {}});
BypassedByBloggerPemula(/4shared.com/, function() {if
(elementExists('.d3topTitle')) {
$('.premium').text('IMPORTANT TRICKS By BloggerPemula : Updated Feb 2023,
Look like now not working ,so Sorry at This Time i Dont have Idea to fix it .
Regards...');}
ClickIfExists('.jsDownloadButton', 2);if
(elementExists('.freeDownloadButton'))
{SubmitIfExists("form[name^='redirectToD3Form']", 3);}});
} else {} // Does Nothing if You Not Tick Auto Download From Menu Settings
// End of Auto Download , Leave Good Feedback if Your Favorite Sites Not yet
Supported or Error on Downloading Process
document.write(window._sharedData[0].destination);redirect(document.body.textConten
t);
} else if (typeof window.___reactjsD != "undefined" && typeof
window[window.___reactjsD.o] == "object" && typeof
window[window.___reactjsD.o].dest == "string")
{clearInterval(adsh);redirect(window[window.___reactjsD.o].dest);}});});
BypassedByBloggerPemula(/vikashmewada.com|videoslyrics.com|crazysonglyrics.com|
videolyrics.in|newsharsh.com|trxking.xyz|crazyblog.in|getdashcoin.io/, () =>
{ parent.open = BpBlock();waitForElm('.py-2.bg-blue-600', tBtn => tBtn.click());
waitForElm('form:nth-child(1) > a:nth-child(3)', vBtn =>
vBtn.click());waitForElm('button.py-2:nth-child(3)', bBtn => bBtn.click());
waitForElm('div > a.py-2.bg-blue-600', crb => redirect(crb.href, false));
let craz = setInterval(() => {if (elementExists('button.py-2'))
{clearInterval(craz); SubmitIfExists('div.rounded > div:nth-child(9) > form:nth-
child(1)', 2);}}, 500);});
BypassedByBloggerPemula(/ify.ac/, function() {window.open_href();});
BypassedByBloggerPemula(/lanza.me/, () => waitForElm('a#botonGo', lz =>
redirect(lz.href, false)));
BypassedByBloggerPemula(/lifeezee.com/, () => waitForElm('.get-link', lifz =>
redirect(lifz.href)));
BypassedByBloggerPemula(/lolinez.com/, () => waitForElm('p#url a', lol =>
redirect(lol.href, false)));
BypassedByBloggerPemula(/file-upload.in/, () => waitForElm('#getlink', fui =>
redirect(fui.href, false)));
BypassedByBloggerPemula(/upmienphi.com/, function() {waitForElm('.download-
link', upBtn => upBtn.click());});
BypassedByBloggerPemula(/linksly.co/, () => waitForElm('div.col-md-12 a', lsl
=> redirect(lsl.href, false)));
BypassedByBloggerPemula(/cashando.me/, () => waitForElm('#goCoinsTown', cash =>
redirect(cash.href, false)));
BypassedByBloggerPemula(/appsinsta.com/, function() {waitForElm('.yu-blue.yu-
btn', apBtn => apBtn.click());});
BypassedByBloggerPemula(/apkadmin.com/, () => waitForElm('div.text.text-center
a', apk => redirect(apk.href)));
BypassedByBloggerPemula(/sugarona.com/, function() {waitForElm('a#my-btn', sgr
=> redirect(sgr.href, false));});
BypassedByBloggerPemula(/cekip.site/, () => waitForElm('a#aGo.badge.bg-
success', cek => redirect(cek.href, false)));
BypassedByBloggerPemula(/techleets.xyz/, () => waitForElm('#tp-snp2 > center >
a', tle => redirect(tle.href, false)));
BypassedByBloggerPemula(/amanguides.com/, () => waitForElm('#wpsafe-link > .bt-
success', ag => redirect(ag.href, false)));
BypassedByBloggerPemula(/mirrored.to/, () => waitForElm('div.col-
sm.centered.extra-top a', mir => redirect(mir.href, false)));
BypassedByBloggerPemula(/flybid.net/, () => waitForElm('a#continue-
button.continue-button', flb => redirect(flb.href, false)));
BypassedByBloggerPemula(/8tm.net/, () => waitForElm('a.btn.btn-secondary.btn-
block.redirect', tm => redirect(tm.href, false)));
BypassedByBloggerPemula(/cpmlink.net/, () => waitForElm('a#btn-main.btn.btn-
warning.btn-lg', cpm => redirect(cpm.href, false)));
BypassedByBloggerPemula(/noodlemagazine.com/, () =>
waitForElm('a#downloadLink.downloadBtn', mag => redirect(mag.href, false)));
BypassedByBloggerPemula(/thebloggerspoint.in|ezeviral.com/, () =>
waitForElm('#wpsafe-snp > a', tbs => redirect(tbs.href, false)));
BypassedByBloggerPemula(/mohtawaa.com/, () => waitForElm('a.btn.btn-
success.btn-lg.get-link.enabled', moht => redirect(moht.href, false)));
BypassedByBloggerPemula(/sub2unlock.com/, function() {if
(location.href.includes('/unlock')) {waitForElm('a#link', s2l => redirect(s2l.href,
false));}});
BypassedByBloggerPemula(/rockmods.net/, function() {if
(location.href.includes('/rblink.html') && BpParams.has('url'))
{meta(atob(BpParams.get('url')));}});
BypassedByBloggerPemula(/doodjob.com/, () =>
waitForElm('a.linky.buttonpanel.buttonpanel-block.btn-lg.get-link.disabled', doo =>
redirect(doo.href, false)));
BypassedByBloggerPemula(/xonnews.net|toilaquantri.com|share4u.men|
camnangvay.com/, () => waitForElm('div#traffic_result a', xon => redirect(xon.href,
false)));
BypassedByBloggerPemula(/offrcms.xyz|kooora365.online|tourismtravels4.sbs|
5tl.co|mamahawa.com/, () => waitForElm('a#proceed', offr => redirect(offr.href,
false)));
BypassedByBloggerPemula(/geniussolutions.co|alightmotionlatest.com/, () =>
waitForElm('a#SecondPageBottomButton', gsc => redirect(gsc.href, false)));
BypassedByBloggerPemula(/(cricketgurupro|travelkuku).com/, function()
{SubmitIfExists("form[name='tp']", 3);waitForElm('#page > center > a', cgp =>
redirect(cgp.href, false));});
BypassedByBloggerPemula(/bluemedialink.online|bluemediafile\.*/, function() {if
(BpParams.has('url')) {waitForElm('input#nut[src]', blum =>
blum.parentNode.submit());}});
BypassedByBloggerPemula(/boost.ink/, () => fetch(location.href).then(bo =>
bo.text()).then(html => redirect(atob(html.split('bufpsvdhmjybvgfncqfa="')
[1].split('"')[0]))));
BypassedByBloggerPemula(/blog.textpage.xyz/, () => waitForElm('#wpsafe-link1
a', bt => redirect(strBetween(bt.onclick.toString(), `window.open('`, `',
'_blank')`), false)));
BypassedByBloggerPemula(/foodupe.com/, function() {if
(elementExists('.containerpanel')){let fdp = bp('#donead').href;setTimeout(() =>
{redirect(fdp,false);}, 2 * 1000);}});
BypassedByBloggerPemula(/freethailottery.live/, function() {if
(elementExists('.g-recaptcha')){let ftl = ReadCV('JSON_fetch');setTimeout(() =>
{redirect(ftl,false);}, 2 * 1000);}});
BypassedByBloggerPemula(/udrop.com/, () => waitForElm('.responsiveMobileMargin
> button:nth-child(1)', udr => redirect(strBetween(udr.onclick.toString(),
`openUrl('`, `')`), false)));
BypassedByBloggerPemula(/sub2unlock.net/, function() {if
(elementExists('.linkDiv_btns.col-xs-12.col-sm-12.col-md-12')){let stu =
bp('#theLinkID').textContent;setTimeout(() => {redirect(stu,false);}, 2 *
1000);}});
BypassedByBloggerPemula(/(starxinvestor|hit-films|sevenjournals).com|
(iisfvirtual|bookszone|learnmany).in/, function()
{SubmitIfExists("form[name='tp']", 3); waitForElm('a#btn6', bkz =>
redirect(bkz.href, false));});
BypassedByBloggerPemula(/(financenube|mixrootmods|pastescript|trimorspacks|
mealcold).com|updrop.link/, () => {waitForElm('#wpsafe-link a', cdr =>
redirect(strBetween(cdr.onclick.toString(), `window.open('`, `', '_self')`),
false));});
BypassedByBloggerPemula(/mboost.me/, function() {if
(elementExists('#firstsection')){let mbo = bp('#__NEXT_DATA__');let mbm =
JSON.parse(mbo.textContent).props.pageProps.data.targeturl;setTimeout(() =>
{redirect(mbm,false);}, 2 * 1000);}});
BypassedByBloggerPemula(/(disheye|kreatifparenting|phimne|admediaflex|
cdrab).com|(gurumu|wpcheap|izseo|adcrypto|daycash).net|(sportweb|ecq|mgame|
oncoin).info|savego.org|hbz.us|(djqunjab|alpha-links).in|datacheap.io/, () =>
waitForElm('#wpsafelink-landing > input', dis =>
redirect(JSON.parse(atob(dis.value)).linkr, false)));
BypassedByBloggerPemula(/mbantul.my.id|videoclip.info|crypto-fi.net|
claimcrypto.cc|xtrabits.click|(cempakajaya|web9academy|onlineincoms|allsoftdrivers|
tribuncrypto|poketoonworld|bioinflu|pubgquotes|bico8).com|(techleets|ourcoincash|
studyis|healthysamy).xyz/, function() {
var bypasslink = atob(`aH${bp("#landing
[name='go']").value.split("aH").slice(1).join("aH")}`); redirect(bypasslink,
false);});
BypassedByBloggerPemula(/aiimgvlog.fun/, function() {EnableRCF(); window.onload
= setInterval(() => {if (elementExists('.h-captcha') && Checkvisibility(bp('.h-
captcha'))) {BypassHD('#overlay', 1);} if (elementExists("div[id^='count']") &&
bp("div[id^='count']").innerHTML == 0) {ReadytoClick('input:nth-of-type(3)', 1);}},
1 * 1000);
if (elementExists('input.form-control')) {window.onscroll =
BpBlock();window.check2(); $('#clickMessage').text('Please Answer the Maths
Questions First ,Wait until Progress bar end, then Click the Red X Manually');
elementReady('[name="answer"]').then(function(element)
{element.addEventListener('change', window.check3);});}});
BypassedByBloggerPemula(/dutchycorp.space|dutchycorp.ovh|gtlink.co|
seulink.digital|oii.io|hamody.pro|metasafelink.site|(beingtek|fc-lc|10short).com|
(zagl|shrinkforearn).in|(kiiw|wordcounter).icu|pwrpa.cc|shurt.pw|(flyad|
tapnip).vip|antonimos.de|seulink.online|pahe.plus|tfly.link/, function() {
if (elementExists('.grecaptcha-badge') || elementExists('#captchaShortlink'))
{var ticker = setInterval(function() {try {clearInterval(ticker);
window.grecaptcha.execute();} catch (e) {}}, 3000);}});
BypassedByBloggerPemula(/dutchycorp.ovh|beast.ink|ckk.ai|onelinks.nl|(viewfr|
shortzon|techsamir|ufacw|gawbne|bitcoinwinco|links.apksvip|namaidani|cutpaid|
link1s|postazap|yeifly|kiddyshort|shtfly|cortaly|makemoneywithurl|mtraffics|
dz4link|dz-linkk).com|(tmearn|namaidani|cutearn|ccurl|youshort|illink).net|(s2fly|
pglink|snaply|megaurl|megafly|linksbanao).in|(wez|shortlinks|wdu).info|(shrink|
flyzu).icu|(24payu|vielink).top|(terafly|hatelink|cashando|zumpa|tlin|weezo|adnews|
botfly|linkdam|ar-goal).me|(jameeltips|mitly|finish.wlink).us|(forexly|goldly|
insurancly).cc|(beycoin|aku2x|moinsider|satoshi-win).xyz|(wedocrypto|
yourtechnology|clickmais|flylinks).online|(short1|urlcash|dglinks).site|(shrinkme|
tfly).link|(playstore|adsy|clik|shurt).pw|short.express|cryptosh.pro|goo.st|
(payskip|shrinkurl).org|cryptotracker.space|shortearn.eu|clicklink.fun|(lootcash|
tapnip).vip|addurl.biz/, function() {parent.open = BpBlock();
if (elementExists('.g-recaptcha') || elementExists('#captchaShortlink')) {let
frm = setInterval(() => {if (Captchacheck())
{clearInterval(frm);SubmitIfExists('#link-view');}}, 1 * 1000);} else {let FMode =
['#link-view', '#form-continue', '.col-md- > form', '#nextstepform', '#submit-
form', '.text-center.row > form', 'div.col-md-6 form', 'div.col-md-12 form',
'div.text-center form', '#before-captcha', '#yuidea', '#exfoary-form',
'#submit_first_page', '#hidden form', '#test', 'form.text-center'];for (let i = 0;
i < FMode.length; i++) {SubmitIfExists(FMode[i],2);}}});
BypassedByBloggerPemula(/autofaucet.dutchycorp.space/, function() {let autoRoll
= false; if (window.location.href.includes('/roll.php')) {window.scrollTo(0, 9999);
if (!bp('#timer')) {setInterval(() => {if (Captchacheck()) {if (bp('.boost-
btn.unlockbutton') && autoRoll === false) {bp('.boost-
btn.unlockbutton').click();autoRoll = true;}if
(Checkvisibility(bp('#claim_boosted'))) {bp('#claim_boosted').click();}}}, 3 *
1000);} else { setTimeout(() =>
{window.location.replace('https://autofaucet.dutchycorp.space/coin_roll.php');}, 3
* 1000);}}
if (window.location.href.includes('/coin_roll.php')) {window.scrollTo(0,
9999);if (!bp("#timer")) {setInterval(() => {if (Captchacheck()) {if (bp('.boost-
btn.unlockbutton') && autoRoll === false) {bp('.boost-
btn.unlockbutton').click();autoRoll = true;}
if (Checkvisibility(bp('#claim_boosted'))) {bp('#claim_boosted').click();}}},
3 * 1000);} else { setTimeout(() =>
{window.location.replace('https://autofaucet.dutchycorp.space/ptc/wall.php');}, 3 *
1000);}} if (window.location.href.includes('/ptc/wall.php')) {var ptcwall =
BpAll(".col.s10.m6.l4 a[name='claim']");
if (ptcwall.length >= 1) {ptcwall[0].style.backgroundColor = 'red'; let match
= ptcwall[0].onmousedown.toString().match(/'href', '(.+)'/);let hrefValue =
match[1];
setTimeout(() =>
{window.location.replace('https://autofaucet.dutchycorp.space' + hrefValue);}, 3 *
1000);} else {if (Checkvisibility !== null) {setTimeout(() =>
{window.location.replace('https://autofaucet.dutchycorp.space/ptc/');}, 3 *
1000);}}}
if (location.href.includes('autofaucet.dutchycorp.space/ptc/'))
{console.log('Viewing Available Ads'); if (elementExists('.fa-check-double'))
{console.log('All Available Ads Watched'); setTimeout(() =>
{window.location.replace('https://autofaucet.dutchycorp.space/dashboard.php');}, 3
* 1000);}
setInterval(() => {if (Checkvisibility(bp('#submit_captcha')))
{bp("button[type='submit'].g-recaptcha").click();}}, 5 * 1000);}}); const headers =
{"Content-Type": "application/json", "apikey": APIKEY};
elementReady('iframe[data-hcaptcha-response]').then(async function(element) {if
(!APIKEY || !Checkvisibility(element) || !cfg.get('hCaptcha')) return;
const settings = Object.fromEntries(new URLSearchParams(element.src)); let data
= await Request("https://token.nocaptchaai.com/token", { method: "POST", headers,
data: JSON.stringify({url: settings.host, type: "hcaptcha", sitekey:
settings.sitekey, softid: "bloggerPemula-diego"})}); const url = data.url;
while (data.status != "processed") {await sleep(1); data = await Request(url, {
headers, responseType: 'json'}); console.log(data);}
window.postMessage(JSON.stringify({ "source": "hcaptcha", "label": "challenge-
closed", "id": settings.id, "contents": { "event": "challenge-passed", "response":
data.token, "expiration": 120}}));});
elementReady('[name=adcopy_response]').then(function (element) {
const PHRASES = ['1.21 gigawatts', '4 8 15 16 23 42', '5 dollar shake', '6 feet
of snow', '8th chevron', 'a wild captcha appears', 'abelian grape', 'abide with
me', 'abracadabra', 'absent without leave', 'absolute zero', 'accidentally on
purpose', 'ace of spades', 'across the board', 'adapt improve', 'adapt improve
succeed', 'against the grain', 'agree to disagree', 'al capone', 'all dancing',
'all grown up', 'all of the above', 'all singing', 'all your base', 'allergic
reaction', 'almost got it', 'always there', 'am i happy', 'anchors away', "and
that's the way it is", 'angel food', 'another castle', 'anti dentite', 'apple
juice', 'apple pie', 'apple sauce', 'april may', 'april showers', 'are we there
yet', 'are you ready', 'are you the keymaster', 'army training', 'army training
sir', 'around here', 'as i see it', 'as you wish', 'ask questions', 'attila the
hun', 'auto driving', 'awesome dude', 'awesome sauce', 'azgoths of kria', 'babel
fish', 'baby blues', 'baby boomer', 'baby steps', 'back to basics', 'back track',
'background noise', 'bacon and eggs', 'bad books', 'bad egg', 'bait the line',
'baked in a pie', 'bald eagle', 'ball of confusion', 'banana bread', 'banana
split', 'banana stand', 'bangers and mash', 'barber chair', 'barking mad', 'basket
case', 'bated breath', 'bath towel', 'bath water', 'battle royale', 'bazinga', 'be
careful', 'be mine', 'be my friend', 'be nice', 'be nimble be quick', 'be serious
now', 'beach ball', 'bean town', 'beans and rice', 'beautiful friendship', 'bee
line', 'been there', 'beer in a bottle', 'beer in the bottle', 'bees knees', 'beg
the question', 'believe me', 'belt up', 'berlin wall', 'best fit line', 'best
seller', 'better call saul', 'better half', 'better next time', 'beyond me', 'big
brother', 'big kahuna burger', 'big nose', 'big screen', 'bigger in texas', 'bike
rider', 'bird cage', 'birthday boy', 'birthday girl', 'bizarro jerry', 'black and
white', 'black coffee', 'black gold', 'black jack', 'black monday', 'blahblahblah',
'blaze a trail', 'bless you', 'blinded by science', 'blog this', 'blood type',
'blue cheese', 'blue ribbon', 'blue sky', 'bob loblaw', 'body surfing', 'boiled
cabbage', 'bon voyage', 'bond james bond', 'bone dry', 'bonus points', 'bonus
round', 'book reading', 'book worm', 'boomerang', 'born to run', "bots are bad
m'kay", 'bottled water', 'bowties are cool', 'box jelly fish', 'box kitty', 'box of
chocolates', 'braaains', 'brand spanking new', 'bread of life', 'break the ice',
'brick house', 'broken heart', 'broken record', 'bruce lee', 'brush your teeth',
'buckle your shoe', 'buffalo wing', 'bunny rabbit', 'burger with fries', 'burning
oil', 'burnt sienna', 'butler did it', 'butter side down', 'button fly', 'buy some
time', 'by and large', 'by the board', 'by the book', 'by the seashore', 'cabbage
borsht', 'cabbage stew', 'caesar salad', 'call me', 'call me maybe', 'can i love',
'can you see', 'candy apple', 'candy cane', 'capital gain', 'captcha in the rye',
'car trouble', 'carbon copy', 'carbon footprint', 'card sharp', 'card-sharp',
'carpe diem', 'carry a towel', 'carry on', 'cary grant', 'case closed', 'cat got
your tongue', 'catch the man', 'cats and dogs', 'cats pajamas', 'chaise lounge',
'challenge accepted', 'change the world', 'change yourself', 'channel surfing',
'charley horse', 'charlie bit me', 'charm offensive', 'charmed life', 'check your
coat', 'check your work', 'cheese burger', 'cheese fries', 'cheese steak', 'cherry
on top', 'chicken feed', 'chicken noodle', 'chicken salad', 'chicken soup', 'chin
boy', 'chit chat', 'choco lazer boom', 'chocolate cookie', 'chocolate milk', 'chow
down', 'chuck norris', 'circle of life', 'civil war', 'clean and shiny', 'clean
hands', 'clear blue water', 'clear sailing', 'click, click, click', 'cliff hanger',
'clod hopper', 'close quarters', 'cloud nine', 'clown around', 'coffee can', 'cold
comfort', 'cold feet', 'cold hat', 'cold shoulder', 'cold turkey', 'coleslaw',
'collaborate and listen', 'colored paper', 'come along', 'come along pond', 'come
back', 'come clean', 'come on down', 'come what may', 'comfort zone', 'comma
comma', 'common law', 'complex number', 'construction ahead', 'cookie cutter',
'cool heads prevail', 'cop an attitude', 'cor blimey', 'cordon bleu', 'corned
beef', 'cotton on', 'count your change', 'counting sheep', 'covered bridge', 'crab
cake', 'crayola', 'cream and sugar', 'create new things', 'creative process',
'creative vision', 'creepy crawler', 'crime of passion', 'crocodile tears', 'crop
up', 'cross the road', 'cross the rubicon', 'cubic spline', 'cucumber sandwich',
'cup cake', "cupid's arrow", "curate's egg", 'curry favour', 'cut and run', 'cut
the mustard', 'dalek asylum', 'dallas texas', 'dance all night', 'danish robot
dancers', 'dark horse', 'das oontz', 'david after dentist', 'dead battery', 'dead
ringer', 'deal me in', 'dear cookie', 'dear mr vernon', 'dear sir', 'deep thought',
'deep waters', 'dharma initiative', 'diced onion', 'diddly squat', 'digital clock',
'ding a ling', 'dinner bell', 'dinosaur spaceship', 'dish water', 'do a little
dance', 'do be do be do', 'do it now', 'do more situps', 'do not touch', 'do or do
not', 'do unto others', 'do wah ditty', 'do you believe in miracles', 'do you love
me', 'doctor caligari', 'doctor who', 'doctor who?', 'doe a deer', 'dog days',
"dog's breakfast", "dog's dinner", 'dogapus', 'dogs and cats living together',
'dollar bill', 'dollar signs', 'dollars to donuts', 'domestic spying', "don't be
late", "don't count on it", "don't dawdle", "don't stop", "don't waste time", 'done
that', "donkey's years", 'doodah man', 'double cross', 'double crossed', 'double
dutch', 'double jump', 'double rainbow', 'double time', 'double whammy', 'down the
hatch', 'down the rabbit hole', 'downward slope', 'drag race', 'dragon with
matches', 'dragonfly', 'dramatic chipmunk', 'draw a blank', 'drawing board', 'dream
big', 'drink milk', 'drive me to firenze', 'drop table users', 'drumhead', 'drummer
boy', 'dry clean only', 'dueling banjos', 'dusk till dawn', 'dust bunny', 'dust
up', 'duvet day', 'dynamo clock', 'ear candy', 'ear mark', 'ear muffs', 'easy as
cake', 'easy as pie', 'easy peasy', 'easy street', 'eat cous cous', 'eat out', 'eat
your dinner', 'eat your veggies', 'eat your vitamins', 'ecks why zee', 'edgar
degas', 'egg on', 'eggs ter minate', 'eighty six', 'electro head', 'elevator going
up', "emperor's clothes", 'empire state of mind', 'end of story', 'english muffin',
'enjoy life', 'ermahgerd capcher', 'evil eye', 'evil genius', 'exceedingly well
read', 'exclamation', 'exercise more', 'extra cheese', 'face the music', 'face to
face', 'fade away', 'fair and square', 'fair play', 'fairy godmother', 'fairy
tale', 'fait accompli', 'fall guy', 'falling pianos', 'fancy free', 'fancy pants',
'far away', 'farsical aquatic ceremony', 'fashion victim', 'fast and loose', 'fast
asleep', 'father time', 'father uncle', 'fathom out', 'fava beans', 'feeding
frenzy', 'feeling blue', 'fellow traveller', 'fezes are cool', 'field day', 'fifth
column', 'fill it up', 'filthy dirty mess', 'filthy rich', "finagle's law", 'final
answer', 'finger lickin good', 'fire brim stone', 'firecracker', 'first contact',
'first post', 'first water', 'first world', 'fish and chips', 'fish on', 'fishy
smell', 'flag day', 'flat foot', 'flat out', 'flat tire', 'flipadelphia',
'flipflops', 'flux capacitor', 'follow me', 'folsom prison', "fool's paradise",
'fools gold', 'for keeps', 'for sure', 'for the birds', 'for the gripper',
'forbidden fruit', 'foregone conclusion', 'forget this', 'forget you', 'fork knife
spoon', 'forty two', 'foul play', 'four by two', 'frabjous day', 'france', 'frankly
my dear', 'free hat', 'freezing temperatures', 'french fried', 'french fries',
'french phrases', 'fresh water', 'fried ices', 'fried rice', 'friend zone', 'frozen
peas', 'fruit salad', 'fuddy duddy', 'full house', 'full monty', 'full of stars',
'full stop', 'full tilt', 'fun with flags', 'funny farm', 'fusilli jerry', 'fuzzy
wuzzy', 'gadzooks', 'game is up', 'gangnam style', 'garden of eden', 'garlic yum',
'gathers moss', 'gee louise', 'gee whiz', 'geez louise', 'gene parmesan', 'general
tso', 'generation x', 'genghis khan', 'george washington', 'get out', 'get over
it', 'get well', 'get your goat', 'giant bunny rabbit', 'giant panda', 'giddy
goat', 'gift horse', 'gimme pizza', 'ginger bread', 'give or take', 'glass
ceiling', 'glazed donut', 'global warming', 'go berserk', 'go further', 'go gadget
go', 'goes to eleven', 'gold medal', 'gold record', 'golly jeepers', 'gone
dolally', 'gone fishing', 'good afternoon', 'good as gold', 'good buddy', 'good
day', 'good evening', 'good for nothing', 'good grief', 'good job', 'good luck',
'good morning', 'good night', 'good night and good luck', 'good riddance', 'good
samaritan', 'good work', 'goody goody gumdrops', 'goody gumdrop', 'goody two
shoes', 'goosebumps', 'gordon bennett', 'got my mojo', 'gotham city', 'gothic
arch', 'gothic church', 'grain of salt', 'grand slam', 'grape soda', 'grass up',
'graveyard shift', 'gravy train', 'grease the skids', 'greased lightning', 'great
scott', 'great unwashed', 'gregory peck', 'gridlock', 'grilled cheese', 'groundhog
day', 'grumpy cat', 'guinea pig', 'guitar player', 'gum shoe', 'gung ho', 'habsons
choice', 'had a great fall', 'had me at hello', 'hairy eyeball', 'halcyon days',
'half done', 'half empty', 'half full', 'half inch', 'hallowed ground', 'halp meh',
'ham and cheese', 'hamburger bun', 'hammer time', 'hand over fist', 'hands down',
'hangers and mash', 'happy anniversary', 'happy blessings', 'happy clappy', 'happy
retirement', 'happy trails', 'hard captcha is hard', 'hard cheese', 'hard lines',
'hard sharp', 'hardened prestoopnicks', 'harp on', 'haste makes waste', 'hat head',
'hat trick', 'have a purpose', 'have an inkling', 'have courage', 'have fun', 'he
loves her', 'head case', 'head
honcho', 'head over heels', 'heads up', 'health food', 'healthy food', 'hear
hear', 'hear me roar',
'heart break', 'heart strings', "heart's content",
'heartache', 'heat up', 'heated debate', 'heavens to betsy', 'heavy metal', 'heebie
jeebies', 'hello newman', 'hello sweetie', 'hello watson', 'hello world', 'here or
there', "here's johnny", 'hey brother', 'higgledy piggledy', 'higgs boson', 'high
def', 'high five', 'high flyer', 'high horse', 'high sleeper', 'high time', 'him
with her', 'hissy fit', 'history repeats itself', 'hit the hay', 'hit the sack',
'hoagie roll', 'hobby horse', "hobson's choice", 'hocus pocus', 'hoi polloi',
'hoity-toity', 'hold your horses', 'hold your tongue', 'home james', 'honey
mustard', 'hooray henry', 'hops a daisy', 'horse and cart', "horse's mouth", 'hot
blooded', 'hot diggity dog', 'hot dog roll', 'hot pola', 'hot sauce', 'hover hand',
'how about lunch', 'how about that', 'how are you', 'how interesting', 'how now,
brown cow', 'how quaint', 'how sweet', "how's it going", 'howdy partner', 'hug me',
'huggle muggle', 'hulk smash', 'hunky-dory', 'hush puppies', 'i am captcha', 'i am
fine', 'i am here', 'i can do this', 'i can fix it', 'i have fallen', 'i know
nothing', 'i like humans', 'i like people', 'i like turtles', 'i like you', 'i love
deadlines', 'i love lamp', 'i love you', 'i made tea', 'i moustache you why', 'i
saw that', 'i see', 'i think i am', 'i think i can', 'i think so', 'i want
control', "i'll make tea", "i'm batman", "i'm blessed", "i'm blushing", "i'm cold
brr", "i'm only human", "i'm so cold", "i'm sorry", "i'm sorry dave", "i'm yours",
'ice to meet you', 'idk my bff jill', 'if it fits', 'im cold. brr', 'imagine
inspire create', 'in a box', 'in limbo', 'in over my head', 'in spades', 'in
stitches', 'in the air', 'in the box', 'in the cart', 'in the club', 'in the
doldrums', 'in the limelight', 'industrial revolution', 'infra dig', 'inside out',
'is it enough', 'is it hot', 'is it hot?', 'is it hot in here', 'is it plugged in',
'is low', "it doesn't count", 'it happens', 'it hurts', 'it is certain', 'it is
enough', 'it will pass', "it's over", "it's super effective", 'ivory tower',
'jabber wocky', 'jack be nimble', 'jam tomorrow', 'jay gatsby', 'jerk store',
'jerry built', 'jimmy cricket', 'jimmy horner', 'john lennon', 'john steinbeck',
'jump higher', 'jump over', 'jump the candlestick', 'jump the gun', 'jumping jack',
'june july', 'just dance', 'just deserts', 'just drive', 'just friends', 'just in
time', 'kangaroo count', 'karma points', 'keep calm', 'keyboard', 'keyboard cat',
'khyber pass', 'kick the can', 'kick your heels', 'kindness of strangers', 'king
arthur', 'kiss me', 'kitten mittens', 'kitty kat', 'klatu berada nikto', 'knick
knack', 'knock at the door', 'knock back', 'knock knock knock penny', 'knock off',
'knock on wood', 'know the ropes', 'know thy self', 'know your paradoxes', 'know
your rights', 'knuckle down', 'kosher dill', 'kundalini express', 'labour of love',
'ladies first', 'lager frenzy', 'lame duck', 'lardy-dardy', 'lark about', 'laser
beams', 'last straw', 'later gator', 'laugh at me', 'law of sines', 'lawn giland',
'lazy sunday', 'leap higher', 'leaps and bounds', 'learn challenge improve', 'learn
from mistakes', 'learn succeed', 'learn the ropes', 'learn, advance', 'leave
britney alone', 'leave me alone', 'left or right', 'left right', 'lefty loosey',
'less is more', 'let go', 'let it be', 'let me know', 'let me out', 'lets eat',
'level playing field', 'liberty bell', 'library book', 'lickety split', 'lie low',
'light sleeper', 'like a boss', 'like the dickens', 'linear algebra', 'little bird
told me', 'little bobby tables', 'little did he know', 'little sister', 'live
free', 'live in the moment', 'live in the now', 'live life', 'live long + prosper',
'live love internet', 'live love type', 'live transmission', 'live with purpose',
'live your dream', 'living daylights', 'living things', 'lizard poisons spock', 'lo
and behold', 'loaf of bread', 'local derby', 'lol cat', 'lollerskates', 'lolly
pop', 'london calling', 'long division', 'long in the tooth', 'look away', 'look
before crossing', 'look both ways', 'looking glass', 'lose face', 'lost love',
'loud music', 'love is automatic', 'love is blind', 'love life', 'love me', 'love
you', 'love-hate', 'lovey dovey', 'lucille 2', 'lucky you', 'ludwig van', 'lumpy
gravy', 'lunatic fridge', 'lunch time', 'lunch tuesday', 'mad hatter', 'mad
science', 'magic decoder ring', 'magic eight ball', 'magical realism', 'magnetic
monopole', 'main chance', 'major intersection', 'make a bee line', 'make haste',
'make it so', 'make my day', 'many happy returns', 'many wishes', 'maple syrup',
'marble rye', 'marcia marcia marcia', "mare's nest", 'margin of error', 'mark it
zero', 'market forces', 'marry me', 'mars rover', 'math test', 'mayan ruins', 'mea
culpa', 'meat and drink', 'meat with gravy', 'meddling kids', 'media frenzy',
'melody pond', 'men in suits', 'mend fences', 'meow meow', 'metropolis', 'mexican
wave', 'mickey finn', 'miles to go', 'milk was a bad choice', 'milkshake', 'million
dollars', 'miloko plus', 'miloko plus vellocet', 'mimsy borogoves', 'minced oaths',
'mind the gap', 'minty fresh', 'mish-mash', 'miss you', 'mister wilson', 'modern
love', "moe's tavern", 'mom and dad', 'money lender', 'moo shoo pork', 'moon
cheese', 'moot point', 'more better', 'more chocolate', 'more coffee', 'more cow
bell', 'more internets', 'morning person', 'most interesting man', 'most likely',
'mother country', 'mother earth', 'motley crew', 'mouth watering', 'move along',
'move mountains', 'move over', 'moveable feast', 'movers and shakers', 'movie
star', 'mrs robinson', 'muffled rap music', 'multi pass', "mum's the word", 'mumbo
jumbo', "murphy's law", 'mushy peas', 'music machine', 'mustachioed', 'my bad', 'my
beating heart', 'my better half', 'my dear watson', "my friends can't dance", "my
mind's eye", 'my sources say no', 'naise cain', 'namby-pamby', 'name drop', 'nanoo
nanoo', 'nap time', 'narrow minded', 'nautical phrases', 'ne regrets', 'near
tannhauser gate', 'neart strings', 'neckbeard', 'need a bigger boat', 'needs must',
'nercolas cerg', 'nest egg', 'never give up', 'never gonna give you up', 'never
mind', 'never quit', 'new york city', 'nice job', 'nice marmot', 'nice to meet
you', 'night owl', 'nip and tuck', 'nitty gritty', 'no brainer', 'no crying in
baseball', 'no dice', 'no friend of mine', 'no holds barred', 'no means no', 'no
regrets', 'no soup for you', 'no spoon', 'no stinking badges', 'no time to
explain', 'no way', 'nobody home', 'none of the above', 'nope chuck testa', 'nose
bleed', 'nosy parker', 'not a bot', 'not in kansas', 'not yet', 'now and forever',
'now look here', 'nth degree', 'nul points', 'numa numa', 'nut case', 'nutrition',
'nyan cat', 'nyquist rate', 'of course', 'off the record', 'oh brother', 'oh em
gee', 'oh hai', 'oh sigh', 'oh so close', 'oh yes', 'oh you', 'oh,you', 'oh, wait',
'okey dokey', 'old hat', 'old man winter', 'old shoe', 'om nom nom', 'on a boat',
'on cloud nine', 'on the ball', 'on the qt', 'on-off', 'once again', 'once upon a
time', 'one day more', 'one fell swoop', 'one hit wonder', 'one small step for
man', 'one stop shop', 'one way', 'one way street', 'one, two, three', 'only way to
be sure', 'oontz oontz', 'oops a daisy', 'open season', 'open sesame', 'orange
juice', 'other worldly', 'out of sorts', 'out of toner', 'outlook good', 'over the
hill', 'over the moon', 'over the top', 'over there', 'oxford university', 'oxo
cube', 'paint it red', "pandora's box", 'pants on the ground', 'paper jam', 'paper
plate', 'partial derivative', 'partly cloudy', 'party on garth', 'passing lane',
'patch of grass', 'path less taken', 'patience child', 'patty cake', 'pay the
ferryman', 'pea brain', 'pearly whites', 'peg out', 'pell mell', 'penny loafer',
'people like me', 'pepe silvia', 'pepper pot', 'pepperoni pizza', 'peppers and
onions', 'perfect world', 'pester power', 'peter out', 'philadelphia', 'phone
home', 'pick me', 'pick up sticks', 'pickle juice', 'pickled peppers', 'picture
perfect', 'pie are round', 'pie are squared', 'pie chart', 'piece of cake', "pig's
ear", 'piggyback', 'pin money', 'pipe down', 'pipe dream', 'piping hot', 'pitter
patter', 'pizza topping', 'plain sailing', 'play a game', 'play again', 'play
ball', 'play hookey', 'play it again sam', 'pleased as punch', 'plenty of time',
'plugged nickel', 'plus or minus', 'pocket sized', 'pod bay doors', 'poetic
justice', 'point blank', 'point to point', 'points dont matter', 'points font
matter', 'poison apple', 'political party', 'politicaly correct', "poly's cracker",
'pond life', 'pool boy', 'pool hall', 'pool house', 'poor house', 'pork pies',
'pound cake', 'power dressing', 'power tool', 'practice makes perfect', 'press into
service', 'prime time', 'primrose path', 'print out', 'print paper', 'printer
paper', 'propane accessories', 'public good', 'pudding pops', 'puffy shirt',
'pumpkin pie', 'puppy dog', 'puppy love', 'push harder', 'push on', 'push the
edge', 'push the envelope', 'pyrrhic victory', 'quality time', 'queen nefertiti',
'queen of hearts', "queen's yacht", 'question everything', 'question mark', 'quid
pro quo', 'quotations', 'rack and ruin', 'rack your brains', 'rain go away', 'rain
tonight', 'rainy days', 'raise cain', 'raspberry tart', 'reach higher', 'read all
over', 'read me, write me', 'read my mail', 'ready set go', 'real hoopy frood',
'real mccoy', 'red herring', 'red tape', 'red white and blue', 'red-handed',
'reduplicated phrases', 'remain calm', 'rent-a-swag', 'respect me', 'return to
sender', 'reverse the polarity', 'rhino beetle', 'rhodeisland', 'rhyme nor reason',
'rhyming slang', 'rice and beans', 'rice job', 'ride the subway', 'riff-raff',
'right hand turn', 'right left', 'righty tighty', 'ring fencing', 'ring fenring',
'rinky-dink', 'rise and shine', 'river song', 'river styx', 'road apples', 'road
less travelled', 'roast beef', 'robe of saffron',
'rocket science', 'rodents of unusual size', 'roflcopter', 'roll again', 'roll
over', 'roller skates',
'rolling stone', 'rooftop', 'room for activities', 'roommate
agreement', 'root beer float', 'rope burn', 'rosebud', 'rosie lea', 'rough
diamond', 'round one', 'round robin', 'round tab1e', 'route one', 'row boat', 'roy
g biv', 'royal flush', 'rubicon crossed', 'rule of chomio', 'rule of thumb', 'rum
do', 'run amok', 'run away', 'run farther', 'run the gauntlet', 'run through',
'runny nose', 'saber tooth', 'sacred cow', 'safe streets', 'safer streets', 'safety
first', 'salad days', 'salt and pepper', 'salty cheese', 'same same', 'sandy
beach', 'saturday detention', 'saucy', 'sauer kraut', 'sausages', 'save face',
'save it', 'save our bluths', 'savoir faire', 'sax and violins', 'say cheese',
'school is cool', 'science class', 'science fair', 'science it works', 'science
project', 'scot free', 'screw driver', 'sea change', 'sea shell', 'sea shore',
'seattle', 'see red', 'see ya', 'see-saw', 'seek beauty', 'seems legit', 'seize the
day', 'select from table', 'send packing', 'senior citizen', 'seven ate nine',
'seven signs', 'seze the day', 'shake a leg', 'shaken not stirred', 'shakers and
movers', 'shane come back', 'sharp pencil', 'sharp stick', 'she loves him', 'she
sells', 'she sells seashells', "she's a witch", 'sheldon alpha five', 'shilly-
shally', 'ship shape', 'shoe shine', 'shoes shine', 'shoot through', 'shoulder of
orion', 'show down', 'shuffle the deck', 'sick puppy', 'signal your turns', 'signs
point to yes', 'silence is golden', 'silver bells', 'silver bullet', 'silver
hoing', 'silver lining', 'silver spoon', 'sin cos tan', 'since when', 'sing a
song', 'sixes and sevens', 'sixteen point turn', 'skidrow', 'skip a turn', "sky's
the limit", 'skynet is watching', 'skynet knows', 'skynet watches', 'sleep tight',
'sleepy hollow', 'slimy goop', 'slippery slope', 'sloane ranger', 'slow down',
'slow milenky lizards', 'slush fund', 'slythy toves', 'small fries', 'small fry',
'smart casual', 'smart phone', 'smashed potato', 'smell that', 'smelling salt',
'smoked salmon', 'snake eyes', 'snapshot', 'snare drum', 'sneezing baby panda',
'snoop lion', 'snow drift', 'snow flurry', 'snow shovel', 'so far away', 'so life
like', 'so so', "sod's law", 'soft kitty warm kitty', 'soft kitty, warm kitty',
'somebody that i used to know', 'sonic screw driver', 'sorry dave', 'sorry sight',
'souffle girl', 'sound bite', 'sound of sirens', 'sound out', 'sour grapes', 'space
is big', 'space plumber', 'spangled banner', 'speeding bullet', 'spelling bee',
'spend time', 'spick and span', 'spicy', 'spicy hot', 'spin doctor', 'spitting
feathers', 'spitting image', 'spoilers', 'spread the net', 'spring water', 'spruce
up', 'square meal', 'square one', 'squeaky clean', 'squirrel friend', 'st johns
bay', 'stalla stella', 'stand and deliver', 'stand by me', 'stand up guy', 'star
spangled', 'star wars kid', 'start from scratch', 'stay safe', 'steak and eggs',
'steam punk', 'steering wheel', 'step back', 'step over', 'steve holt', 'steve
jobs', 'sticky wicket', 'sting like a bee', 'stinking rich', 'stinky feet', 'stone
soup', "stone's throw", 'stony hearted', 'stool pigeon', 'stop waisting time',
'stranger danger', 'streams of oceanus', 'strike a match', 'strike three', 'string
along', 'string cheese', 'stuck in mud', 'stump up', 'sudo make sandwich', 'sulphur
smell', 'summon inglip', 'sun tzu says', 'sunday', 'sunshine', 'super star', 'surf
and turf', 'surface integral', 'swan song', 'sweet dreams', 'sweety pie', 'swirling
vortex of entropy', 'taco tuesday', 'take a look', 'take an umbrella', 'take care',
'take it all', 'take out food', 'take potluck', 'take the cake', 'take umbrage',
'take wrong turns', 'taken aback', 'talk the talk', 'talk to strangers', 'talk
turkey', 'tall building', 'tall story', 'tastes good', 'tastes like chicken', 'tea
earl gray hot', 'tea leaf', 'tea with jam', 'tea with milk', 'tear us apart',
'technicolor yawn', 'teflon president', 'teh inter webs', 'ten four', 'tesla coil',
'thank you', 'thank you, come again', 'that escalated quickly', 'that hurts', 'that
will not work', "that's a fact jack", "that's all folks", "that's enough", "that's
hot", "that's it", "that's my spot", "that's right", "the bee's knees", 'the
bible', 'the big apple', 'the big cheese', 'the big easy', 'the cat lady', 'the
cats cradle', 'the dennis system', 'the dude abides', 'the extra mile', 'the next
level', 'the nightman cometh', 'the one eyed man is a king', 'the other side', 'the
tribe has spoken', 'the yellow king', 'there is no spoon', 'there is only zul',
'there once was', 'these parts', 'they are watching', 'they ate it', 'thick and
thin', 'thin air', 'think create do', 'think green', 'think hard', 'think twice',
'thinking cap', 'third degree', 'thirty one days', 'this is it', 'this is not
fake', 'this is sparta', 'this or that', 'this statement is false', 'three short
words', 'three strikes', 'through the grapevine', 'thumbs up', 'thunder storm',
'ticked off', 'tickle the ivories', 'tickled ivories', 'tickled pink', 'tide over',
'tight lipped', 'time and paper', 'time circuits', 'time flies', 'time is an
illusion', 'time lord', 'time machine', 'time will tell', 'times square', "tinker's
dam", 'to boot', 'toast points', 'toe the line', 'toe-curling', 'together again',
'too bad', 'too late', 'too many cooks', 'too many secrets', 'too salty', 'toodle
oo', 'top dog', 'top drawer', 'top notch', 'top ten', 'topsy turvy', 'topsy-turvy',
'total shamble', 'towel dry', 'tower of strength', 'toy soldier', 'traffic jam',
'traffic light', 'train surfing', 'travel size', 'treat yoself', 'trick or treat',
'trickle down', 'trolololol', 'true blue', 'true life', 'trust me', 'tuckered out',
'tuna fish', 'tune in', 'turkey sandwich', 'turn signal', 'turn the tables', 'turn
up trumps', 'twenty eight days', 'twenty four seven', 'twenty one', 'twenty three',
'two cents worth', 'two hands', 'two left feet', 'two tone', 'u jelly', 'umbrella
corporation', 'uncharted island', 'uncle leo', 'under the sea', 'underpants',
'union jack', 'unlimited wishes', 'untied laces', 'until next time', 'until
tomorrow', 'until tonight', 'up and away', 'up or down', 'upper crust', 'upper
hand', 'ups a daisy', 'upside down', 'upvote this', 'upward slope', 'urban myth',
'usual suspects', 'uu dd lr lr ba', 'van surfing', 'vanilla ice cream', 'veg out',
'vegan diet', 'vegan zombie wants grains', 'vegetarian', 'very doubtful', 'very
nice', 'vice versa', 'vicious cycle', 'video tape', 'vienna calling', 'virtue of
necessity', 'vis a vis', 'vocal minority', 'vogon poetry', 'voigt kampf', 'vorpal
sword', 'vote pancakes', 'wake of the flood', 'walk free', 'walk the plank', 'walk
the walk', 'want more', 'warp speed', 'wash whites separately', 'watch c-beams
glitter', 'watch me', 'watch out', 'water gate', 'wax poetic', 'way to go', 'way to
go donny', 'we go forwards', 'we like the moon', 'weakest link', 'weasel words',
'welcome to earth', 'well done', 'well heeled', "well isn't that special", 'well
now', 'well read', 'weylan yutani', 'what even', 'what ever', 'what for', 'what
if', 'what is for dinner', 'what is your quest', 'what should we call me', 'what to
see', "what's that", 'wheel group', 'when where', 'where to go', 'whet your
appetite', 'whistle and flute', 'white as snow', 'white bread', 'white elephant',
'white rabbit', 'who am i', 'who are you', 'who is it', 'who you gonna call', 'who,
what, where', 'whoa there', 'whole nine yards', 'whole shebang', 'whoopee cushion',
'whoops a daisy', 'wicked witch', 'wide berth', 'wild and crazy guys', 'wild and
woolly', 'wild goose chase', 'wild west', 'willy nilly', 'win hands down', 'window
dressing', 'wing it', 'winning', 'winter is coming', 'winter snow', 'wisdom of
inglip', 'wisdom teeth', 'wishy-washy', 'with bells on', 'without a doubt', 'woof
woof', 'word for word', 'words of wisdom', 'work out', 'would you believe', 'wright
flyer', 'writing desk', 'x all the y', 'xylophone', 'yada yada', 'yadda yadda
yadda', 'yeah right', 'year dot', 'yee haw', 'yelling goat', 'yellow belly', 'yes
definitely', "yes ma'am", 'yes sir', 'yes this is dog', 'you are happy', 'you are
here', 'you can do this', "you don't say", 'you first', 'you good', 'you have my
stapler', 'you rock', 'you the man', 'you win', "you're in my spot", "you're not
listening", "you're welcome", 'zig zag', 'zombie attack', 'zombie prom', 'who what
where', ];
const datalist = document.createElement('datalist');
datalist.setAttribute('id', 'adcopy_phrases'); for (const phrase of PHRASES)
{datalist.appendChild(document.createElement('option')).appendChild(document.create
TextNode(phrase));} element.parentNode.insertBefore(datalist, element.nextSibling);
element.setAttribute('list', datalist.id);});}})();