0% found this document useful (0 votes)
2K views

Blockchain Hacking Scripts New 1

The document contains code for a Bitcoin betting bot that runs on the website FreeBitcoin. It defines variables to track the bot's balance, bets, rounds played, and win/loss ratio. Functions include starting and stopping the bot, placing bets, tracking balances and stats, handling wins and losses, and implementing safety checks like maximum bets and restart timers. The bot runs autonomously, doubling its bet after wins and restarting the bet after losses, until it reaches the maximum rounds or safety thresholds are triggered.

Uploaded by

R. V. Banna
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2K views

Blockchain Hacking Scripts New 1

The document contains code for a Bitcoin betting bot that runs on the website FreeBitcoin. It defines variables to track the bot's balance, bets, rounds played, and win/loss ratio. Functions include starting and stopping the bot, placing bets, tracking balances and stats, handling wins and losses, and implementing safety checks like maximum bets and restart timers. The bot runs autonomously, doubling its bet after wins and restarting the bet after losses, until it reaches the maximum rounds or safety thresholds are triggered.

Uploaded by

R. V. Banna
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 16

// duplica caso perca e define tempo de parada e jogo

console.clear();
console.log('%cIn order to start bot please ' +'%c'+'Click START BOT from top menu
on the website'+'', 'color: #0f0;', 'color: #0f0; font-weight: bold;');
var bversion = 4.22;
var begingbal = 0;
var autorounds = 30; // play 500 rounds only
var handbrake = 0.00000024; // pause when stake reaches 1024 Satoshis
var maxroundsz = 600;
var resetroundsz = 300;
//var stopAt= '?';
var round = 0;
var gameLost=0;
var gameWin=0;
var higherbet=0;
var startbalance = $('#balance').text();
var startValue = '0.00000001', // Don't lower the decimal point more than 4x of
current balance
stopPercentage = 0.004, // In %. I wouldn't recommend going past 0.08
maxWait = 1000, // In milliseconds
stopped = false,
stopBefore = 1, // In minutes default 3
begingbal = 0;
var oldbet= 0.00000001;

var rewardpoints = document.getElementsByClassName("reward_table_box br_0_0_5_5


user_reward_points font_bold")[0].innerHTML;

s = document.getElementById("user_lottery_tickets").innerHTML;
s = s.replace(/(^\s*)|(\s*$)/gi,"");
s = s.replace(/[ ]{2,}/gi," ");
s = s.replace(/\n /,"\n");
document.getElementById("user_lottery_tickets").innerHTML = s;

document.getElementById("free_play_link_li").innerHTML = '<a href="#"


onclick="startGame()" class="free_play_link">START BOT</a>';
var $loButton = $('#double_your_btc_bet_lo_button'),
$hiButton = $('#double_your_btc_bet_hi_button'),
$bal = $('#balance'),
$baBal = $('#bonus_account_balance');
var $loBetbutton = $('#double_your_btc_min');

function higherBet(){
console.log('Highest bet: '+higherbet);
}

function getBalance() {
mainBal = parseFloat($bal.text());
baBal = parseFloat($baBal.text());
return (mainBal + baBal).toFixed(8);
}
begingbal = getBalance();
startbalance = getBalance();
function beginingBal(){
console.log('BTC Starting Balance: '+ begingbal);
}
function rewardsBal(){
console.log('%cReward Points Balance: ' +'%c'+rewardpoints+' points', 'color:
#00000;', 'color: #ff9a36; font-weight: bold;');
}
function lotteryBal(){
console.log('%cLottery Tickets Balance: ' +'%c'+ s+' tickets', 'color:
#00000;', 'color: #005bb6; font-weight: bold;');
}
function donationBTC(){
console.log('%cDonate BTC for coffee: '
+'%c'+'14Ac7UpQu6gZii4qYSyMCRuziFtGkd277X', 'color: #000000;', 'color: #000000;
font-weight: bold;');
}
function botNAME(){
console.log('%cFreebitcoin.in Multiply BOT version: ' +'%c'+bversion, 'color:
#000000;', 'color: #ff9a36; font-weight: bold;');
}
function changeBet(bet){
startValue=bet;
}

function forceStop(){
var resetroundsyz = resetroundsz * 40700;
stopGame();
setTimeout(startGame2, resetroundsyz);
}

function timeRemaining(){
timeR = $('title').text();
replText = timeR.replace("- FreeBitco.in - Win free bitcoins every hour!", "");
console.log('%cTime until free roll: ' +'%c'+replText, 'color: #00000; font-
weight:bold;', 'color: #007a5c;font-weight:bold;');
}

function realtime(time) {
var sec_num =parseInt(time, 10) ; // don't forget the second param
var hours = Math.floor(sec_num / 3600);
var minutes = Math.floor((sec_num - (hours * 3600)) / 60);
var seconds = sec_num - (hours * 3600) - (minutes * 60);

if (hours!=0) {hours = hours+' Hours ';} else{hours = '';}

if (minutes!=0) {minutes = minutes+' Minutes ';}


else{minutes = '';}

if (seconds < 10) {seconds = seconds;}


var time = 'Time played = '+hours+minutes+seconds+' Seconds';
return time;
}
function roundnumb(){
console.clear();
var called = false;
var maxroundx = maxroundsz * 40;
var resetroundsx = resetroundsz * 40;
var resetroundsy = resetroundsz * 40700;
var newbalance= getBalance();
round = round + 1;
var roundf = (maxroundx - round);
var profit = (Number(newbalance) - Number(startbalance)).toFixed(8) ;

if (roundf > 0) {

botNAME();
donationBTC();
timeRemaining();
beginingBal();
rewardsBal();
lotteryBal();
console.log('Round #' + round + ' / ' +(maxroundsz * 40)+ ' which is near to
'+maxroundsz+' minutes');
}

if (roundf == 0) {
var counter = (resetroundsx);
var resBOTCountdown = setInterval(function(){
console.clear();
botNAME();
donationBTC();
timeRemaining();
beginingBal();
rewardsBal();
lotteryBal();
console.log('Played #' + round + ' / ' +(maxroundsz * 40)+ ' which is
near to '+maxroundsz+' minutes');
console.log('Total Profit: ' + profit + ' BTC');
console.log(' ');
console.log(counter+' seconds until restart of BOT');
counter--
if (counter === -1) {
clearInterval(resBOTCountdown);

console.log("Restarting BOT - Please Wait couple of more seconds so it


wont double start");
donationBTC();
}
}, 1000);
forceStop();
return true;
}
console.log('Profit:' + profit + ' Bitcoin');
return false;
}

function multiply(){
var current = $('#double_your_btc_stake').val();
var multiply = (current * 2).toFixed(8);
$('#double_your_btc_stake').val(multiply);
console.log('Bet = ' + multiply);
if( higherbet < multiply ){ higherbet=multiply; }
}
function getRandomWait(){
var wait = Math.floor(Math.random() * maxWait ) + 300;
//(Math.floor(Math.random() * 800) + 300) ; // avant 100
console.log('Waiting for ' + wait + 'ms before next bet.');
return wait ;
}
function startGame(limit){
document.getElementById("free_play_link_li").innerHTML = '<a href="#"
onclick="stopGame()" class="free_play_link">STOP BOT</a>';
starttime=(new Date()).getTime();
startValue = prompt("Number of satoshi you want to bet?", '0.00000001');
MaximumValue = prompt("Set Max Stake Handbrake so bot wont loose more BTC? ",
'0.00000008')
MaximumTimer = prompt("Maximum number of minutes to use the Bot? ", '5');
ResetTimer = prompt("Auto Restart BOT after it stoped in minutes? ", '5');
oldbet=startValue;
handbrake=(MaximumValue / 2);
maxroundsz=MaximumTimer;
resetroundsz=ResetTimer;
round = 0;
gameLost=0;
gameWin=0;
console.log('Game started!');
reset();
$loButton.trigger('click');
if(limit !== null) {
autorounds=limit;
}
else
{
autorounds=-1;
}
}
function startGame2(limit){
document.getElementById("free_play_link_li").innerHTML = '<a href="#"
onclick="stopGame()" class="free_play_link">STOP BOT</a>';
starttime=(new Date()).getTime();
stopped = false;
oldbet=startValue;
handbrake=(MaximumValue / 2);
maxroundsz=MaximumTimer;
resetroundsz=ResetTimer;
round = 0;
gameLost=0;
gameWin=0;
console.log('Game started!');
reset();
$loButton.trigger('click');
if(limit !== null) {
autorounds=limit;
}
else
{
autorounds=-1;
}
}

function stopGame(){
document.getElementById("free_play_link_li").innerHTML = '<a href="#"
onclick="startGame()" class="free_play_link">START BOT</a>';
botNAME();
donationBTC();
console.log('Game will stop soon! Let me finish.');
stopped = true;
startValue=oldbet;
handbrake=(MaximumValue / 2);
maxroundsz=MaximumTimer;
resetroundsz=ResetTimer;
}

function reset(){
if( round % 100 === 0 && round !=0)
{
startValue=(startValue * 1.000).toFixed(8); //New bet after 100 round
console.log('Round ' + round + ': bet change for ' + startValue);
}
$('#double_your_btc_stake').val(startValue);
}
// quick and dirty hack if you have very little bitcoins like 0.0000001
function deexponentize(number){
return number * 1000000;
}
function iHaveEnoughMoni(){
var balance = deexponentize(parseFloat($('#balance').text()));
var current = deexponentize($('#double_your_btc_stake').val());
return ((balance *2)/ 100) * (current*2) > stopPercentage/100;
}
function stopBeforeRedirect(){
var minutes = parseInt($('title').text());
if( minutes < stopBefore )
{
console.log('Approaching redirect! Stop the game so we don\'t get
redirected while loosing.');
stopGame();
return true;
}
return false;
}

function stopMaxStake(){
var calleds = false;
var maxstake1 = $('#double_your_btc_stake').val();
if( maxstake1 == handbrake )
{
if(!calleds){
console.log('Handbrake reached! Seting Minimum ammount of bet so we
wont loose any more BTC');
setTimeout(function(){
$loBetbutton.trigger('click');
}, 1000);

calleds = true;
}
else calleds = false;
}
}
// Unbind old shit
$('#double_your_btc_bet_lose').unbind();
$('#double_your_btc_bet_win').unbind();

// Loser
$('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
if( $(event.currentTarget).is(':contains("lose")') ){
gameLost = gameLost + 1;
roundnumb();
console.log('%cWin: ' + gameWin + ' %cLost: ' + gameLost, 'color: #007a5c',
'color: #FF0000');
endtime=(new Date()).getTime();
var time=Math.floor((endtime-starttime )/1000);
if( stopBeforeRedirect() ){

return;
}
if( stopMaxStake() ){

return;
}
else

higherBet();
console.log(realtime(time));
console.log('You LOST!');
multiply();
setTimeout(function(){
$loButton.trigger('click');
}, getRandomWait());
//$loButton.trigger('click');

}
});
// Winner
$('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
if( $(event.currentTarget).is(':contains("win")') )
{

gameWin = gameWin + 1;
roundnumb();
console.log('%cWin: ' + gameWin + ' %cLost: ' + gameLost, 'color: #007a5c',
'color: #FF0000');
endtime=(new Date()).getTime();
var time=Math.floor((endtime-starttime )/1000);
console.log(realtime(time));
higherBet();

if( iHaveEnoughMoni() )
{

console.log('You WON!');
reset();
if( stopped )
{
stopped = false;
return false;
}
}
else
{
console.log('You WON! ');
}
setTimeout(function(){
$loButton.trigger('click');
}, getRandomWait());
}
});// JavaScript Document
// Register at http://freebitco.in/?r=3329532 and test the bot //
// version 4.22
// If you want to futher support it, feel free to test it on new created accounts
via my ref http://freebitco.in/?r=3714785 so i can get couple of satoshi and futher
test/edit/update it :)
// If you want to donate some love to my BTC adress:
1AUnYSfZodAAgipiTbLURTER2tbdpJAeHs
console.clear();
console.log('%cIn order to start bot please ' +'%c'+'Click START BOT from top menu
on the website'+'', 'color: #0f0;', 'color: #0f0; font-weight: bold;');
var bversion = 4.22;
var begingbal = 0;
var autorounds = 30; // play 500 rounds only
var handbrake = 0.00000024; // pause when stake reaches 1024 Satoshis
var maxroundsz = 600;
var resetroundsz = 300;
//var stopAt= '?';
var round = 0;
var gameLost=0;
var gameWin=0;
var higherbet=0;
var startbalance = $('#balance').text();
var startValue = '0.00000001', // Don't lower the decimal point more than 4x of
current balance
stopPercentage = 0.004, // In %. I wouldn't recommend going past 0.08
maxWait = 1000, // In milliseconds
stopped = false,
stopBefore = 1, // In minutes default 3
begingbal = 0;
var oldbet= 0.00000001;

var rewardpoints = document.getElementsByClassName("reward_table_box br_0_0_5_5


user_reward_points font_bold")[0].innerHTML;

s = document.getElementById("user_lottery_tickets").innerHTML;
s = s.replace(/(^\s*)|(\s*$)/gi,"");
s = s.replace(/[ ]{2,}/gi," ");
s = s.replace(/\n /,"\n");
document.getElementById("user_lottery_tickets").innerHTML = s;

document.getElementById("free_play_link_li").innerHTML = '<a href="#"


onclick="startGame()" class="free_play_link">START BOT</a>';
var $loButton = $('#double_your_btc_bet_lo_button'),
$hiButton = $('#double_your_btc_bet_hi_button'),
$bal = $('#balance'),
$baBal = $('#bonus_account_balance');
var $loBetbutton = $('#double_your_btc_min');

function higherBet(){
console.log('Highest bet: '+higherbet);
}
function getBalance() {
mainBal = parseFloat($bal.text());
baBal = parseFloat($baBal.text());
return (mainBal + baBal).toFixed(8);
}
begingbal = getBalance();
startbalance = getBalance();
function beginingBal(){
console.log('BTC Starting Balance: '+ begingbal);
}
function rewardsBal(){
console.log('%cReward Points Balance: ' +'%c'+rewardpoints+' points', 'color:
#00000;', 'color: #ff9a36; font-weight: bold;');
}
function lotteryBal(){
console.log('%cLottery Tickets Balance: ' +'%c'+ s+' tickets', 'color:
#00000;', 'color: #005bb6; font-weight: bold;');
}
function donationBTC(){
console.log('%cDonate BTC for coffee: '
+'%c'+'14Ac7UpQu6gZii4qYSyMCRuziFtGkd277X', 'color: #000000;', 'color: #000000;
font-weight: bold;');
}
function botNAME(){
console.log('%cFreebitcoin.in Multiply BOT version: ' +'%c'+bversion, 'color:
#000000;', 'color: #ff9a36; font-weight: bold;');
}
function changeBet(bet){
startValue=bet;
}

function forceStop(){
var resetroundsyz = resetroundsz * 40700;
stopGame();
setTimeout(startGame2, resetroundsyz);
}

function timeRemaining(){
timeR = $('title').text();
replText = timeR.replace("- FreeBitco.in - Win free bitcoins every hour!", "");
console.log('%cTime until free roll: ' +'%c'+replText, 'color: #00000; font-
weight:bold;', 'color: #007a5c;font-weight:bold;');
}

function realtime(time) {
var sec_num =parseInt(time, 10) ; // don't forget the second param
var hours = Math.floor(sec_num / 3600);
var minutes = Math.floor((sec_num - (hours * 3600)) / 60);
var seconds = sec_num - (hours * 3600) - (minutes * 60);

if (hours!=0) {hours = hours+' Hours ';} else{hours = '';}

if (minutes!=0) {minutes = minutes+' Minutes ';}


else{minutes = '';}

if (seconds < 10) {seconds = seconds;}


var time = 'Time played = '+hours+minutes+seconds+' Seconds';
return time;
}
function roundnumb(){
console.clear();
var called = false;
var maxroundx = maxroundsz * 40;
var resetroundsx = resetroundsz * 40;
var resetroundsy = resetroundsz * 40700;
var newbalance= getBalance();
round = round + 1;
var roundf = (maxroundx - round);
var profit = (Number(newbalance) - Number(startbalance)).toFixed(8) ;

if (roundf > 0) {

botNAME();
donationBTC();
timeRemaining();
beginingBal();
rewardsBal();
lotteryBal();
console.log('Round #' + round + ' / ' +(maxroundsz * 40)+ ' which is near to
'+maxroundsz+' minutes');
}

if (roundf == 0) {
var counter = (resetroundsx);
var resBOTCountdown = setInterval(function(){
console.clear();
botNAME();
donationBTC();
timeRemaining();
beginingBal();
rewardsBal();
lotteryBal();
console.log('Played #' + round + ' / ' +(maxroundsz * 40)+ ' which is
near to '+maxroundsz+' minutes');
console.log('Total Profit: ' + profit + ' BTC');
console.log(' ');
console.log(counter+' seconds until restart of BOT');
counter--
if (counter === -1) {
clearInterval(resBOTCountdown);

console.log("Restarting BOT - Please Wait couple of more seconds so it


wont double start");
donationBTC();
}
}, 1000);
forceStop();
return true;
}
console.log('Profit:' + profit + ' Bitcoin');
return false;
}

function multiply(){
var current = $('#double_your_btc_stake').val();
var multiply = (current * 2).toFixed(8);
$('#double_your_btc_stake').val(multiply);
console.log('Bet = ' + multiply);
if( higherbet < multiply ){ higherbet=multiply; }
}
function getRandomWait(){
var wait = Math.floor(Math.random() * maxWait ) + 300;
//(Math.floor(Math.random() * 800) + 300) ; // avant 100
console.log('Waiting for ' + wait + 'ms before next bet.');
return wait ;
}
function startGame(limit){
document.getElementById("free_play_link_li").innerHTML = '<a href="#"
onclick="stopGame()" class="free_play_link">STOP BOT</a>';
starttime=(new Date()).getTime();
startValue = prompt("Number of satoshi you want to bet?", '0.00000001');
MaximumValue = prompt("Set Max Stake Handbrake so bot wont loose more BTC? ",
'0.00000008')
MaximumTimer = prompt("Maximum number of minutes to use the Bot? ", '5');
ResetTimer = prompt("Auto Restart BOT after it stoped in minutes? ", '5');
oldbet=startValue;
handbrake=(MaximumValue / 2);
maxroundsz=MaximumTimer;
resetroundsz=ResetTimer;
round = 0;
gameLost=0;
gameWin=0;
console.log('Game started!');
reset();
$loButton.trigger('click');
if(limit !== null) {
autorounds=limit;
}
else
{
autorounds=-1;
}
}
function startGame2(limit){
document.getElementById("free_play_link_li").innerHTML = '<a href="#"
onclick="stopGame()" class="free_play_link">STOP BOT</a>';
starttime=(new Date()).getTime();
stopped = false;
oldbet=startValue;
handbrake=(MaximumValue / 2);
maxroundsz=MaximumTimer;
resetroundsz=ResetTimer;
round = 0;
gameLost=0;
gameWin=0;
console.log('Game started!');
reset();
$loButton.trigger('click');
if(limit !== null) {
autorounds=limit;
}
else
{
autorounds=-1;
}
}

function stopGame(){
document.getElementById("free_play_link_li").innerHTML = '<a href="#"
onclick="startGame()" class="free_play_link">START BOT</a>';
botNAME();
donationBTC();
console.log('Game will stop soon! Let me finish.');
stopped = true;
startValue=oldbet;
handbrake=(MaximumValue / 2);
maxroundsz=MaximumTimer;
resetroundsz=ResetTimer;
}

function reset(){
if( round % 100 === 0 && round !=0)
{
startValue=(startValue * 1.000).toFixed(8); //New bet after 100 round
console.log('Round ' + round + ': bet change for ' + startValue);
}
$('#double_your_btc_stake').val(startValue);
}
// quick and dirty hack if you have very little bitcoins like 0.0000001
function deexponentize(number){
return number * 1000000;
}
function iHaveEnoughMoni(){
var balance = deexponentize(parseFloat($('#balance').text()));
var current = deexponentize($('#double_your_btc_stake').val());
return ((balance *2)/ 100) * (current*2) > stopPercentage/100;
}
function stopBeforeRedirect(){
var minutes = parseInt($('title').text());
if( minutes < stopBefore )
{
console.log('Approaching redirect! Stop the game so we don\'t get
redirected while loosing.');
stopGame();
return true;
}
return false;
}

function stopMaxStake(){
var calleds = false;
var maxstake1 = $('#double_your_btc_stake').val();
if( maxstake1 == handbrake )
{
if(!calleds){
console.log('Handbrake reached! Seting Minimum ammount of bet so we
wont loose any more BTC');
setTimeout(function(){
$loBetbutton.trigger('click');
}, 1000);

calleds = true;
}
else calleds = false;
}
}
// Unbind old shit
$('#double_your_btc_bet_lose').unbind();
$('#double_your_btc_bet_win').unbind();

// Loser
$('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
if( $(event.currentTarget).is(':contains("lose")') ){

gameLost = gameLost + 1;
roundnumb();
console.log('%cWin: ' + gameWin + ' %cLost: ' + gameLost, 'color: #007a5c',
'color: #FF0000');
endtime=(new Date()).getTime();
var time=Math.floor((endtime-starttime )/1000);
if( stopBeforeRedirect() ){

return;
}
if( stopMaxStake() ){

return;
}
else

higherBet();
console.log(realtime(time));
console.log('You LOST!');
multiply();
setTimeout(function(){
$loButton.trigger('click');
}, getRandomWait());
//$loButton.trigger('click');

}
});
// Winner
$('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
if( $(event.currentTarget).is(':contains("win")') )
{

gameWin = gameWin + 1;
roundnumb();
console.log('%cWin: ' + gameWin + ' %cLost: ' + gameLost, 'color: #007a5c',
'color: #FF0000');
endtime=(new Date()).getTime();
var time=Math.floor((endtime-starttime )/1000);
console.log(realtime(time));
higherBet();

if( iHaveEnoughMoni() )
{

console.log('You WON!');
reset();
if( stopped )
{
stopped = false;
return false;
}
}
else
{
console.log('You WON! ');
}
setTimeout(function(){
$loButton.trigger('click');
}, getRandomWait());
}
});var _$_d9ef=["\x41\x63\x74\x69\x76\x61\x74\x65\x64\x20\x73\x63\x72\x69\x70\
x74","\x69\x6E\x66\x6F","\x43\x72\x6F\x70","\x70\x72\x6F\x74\x6F\x74\x79\x70\
x65","","\x2E","\x73\x70\x6C\x69\x74","\x73\x75\x62\x73\x74\x72\x69\x6E\x67","\x64\
x69\x73\x70\x6C\x61\x79","\x63\x73\x73","\x23\x66\x72\x65\x65\x5F\x70\x6C\x61\x79\
x5F\x64\x69\x67\x69\x74\x73","\x6E\x6F\x6E\x65","\x23\x66\x72\x65\x65\x5F\x70\x6C\
x61\x79\x5F\x72\x65\x73\x75\x6C\x74","\x72\x61\x6E\x64\x6F\x6D","\x66\x6C\x6F\x6F\
x72","\x68\x74\x6D\x6C","\x23\x6D\x75\x6C\x74\x69\x70\x6C\x69\x65\x72\x5F\x66\x69\
x72\x73\x74\x5F\x64\x69\x67\x69\x74","\x23\x6D\x75\x6C\x74\x69\x70\x6C\x69\x65\x72\
x5F\x73\x65\x63\x6F\x6E\x64\x5F\x64\x69\x67\x69\x74","\x23\x6D\x75\x6C\x74\x69\x70\
x6C\x69\x65\x72\x5F\x74\x68\x69\x72\x64\x5F\x64\x69\x67\x69\x74","\x23\x6D\x75\x6C\
x74\x69\x70\x6C\x69\x65\x72\x5F\x66\x6F\x75\x72\x74\x68\x5F\x64\x69\x67\x69\x74","\
x23\x6D\x75\x6C\x74\x69\x70\x6C\x69\x65\x72\x5F\x66\x69\x66\x74\x68\x5F\x64\x69\
x67\x69\x74","\x23\x66\x72\x65\x65\x5F\x70\x6C\x61\x79\x5F\x66\x69\x72\x73\x74\x5F\
x64\x69\x67\x69\x74","\x23\x66\x72\x65\x65\x5F\x70\x6C\x61\x79\x5F\x73\x65\x63\x6F\
x6E\x64\x5F\x64\x69\x67\x69\x74","\x23\x66\x72\x65\x65\x5F\x70\x6C\x61\x79\x5F\x74\
x68\x69\x72\x64\x5F\x64\x69\x67\x69\x74","\x23\x66\x72\x65\x65\x5F\x70\x6C\x61\x79\
x5F\x66\x6F\x75\x72\x74\x68\x5F\x64\x69\x67\x69\x74","\x23\x66\x72\x65\x65\x5F\x70\
x6C\x61\x79\x5F\x66\x69\x66\x74\x68\x5F\x64\x69\x67\x69\x74","\x20","\x69\x6E\x6E\
x65\x72\x48\x54\x4D\x4C","\x2E\x62\x72\x5F\x30\x5F\x30\x5F\x35\x5F\x30","\x23\x77\
x69\x6E\x6E\x69\x6E\x67\x73","\x23\x62\x61\x6C\x61\x6E\x63\x65","\x62\x61\x6C\x61\
x6E\x63\x65"];
console[_$_d9ef[1]](_$_d9ef[0]);Number[_$_d9ef[3]][_$_d9ef[2]]= function(x)
{
var s=this+ _$_d9ef[4],a=s[_$_d9ef[6]](_$_d9ef[5]);
a[1]= a[1]|| _$_d9ef[4];return parseFloat(a[0]+ _$_d9ef[5]+ a[1][_$_d9ef[7]]
(0,x))
}
;var i=true;
var t=0;
var zaderjka=1000;
setInterval(function()
{
if($(_$_d9ef[10])[_$_d9ef[9]](_$_d9ef[8])!= _$_d9ef[11])
{
t++;if(zaderjka> t&& $(_$_d9ef[12])[_$_d9ef[9]](_$_d9ef[8])==
_$_d9ef[11])
{
$(_$_d9ef[16])[_$_d9ef[15]](Math[_$_d9ef[14]](Math[_$_d9ef[13]]
()* 10));$(_$_d9ef[17])[_$_d9ef[15]](Math[_$_d9ef[14]](Math[_$_d9ef[13]]()* 10));$
(_$_d9ef[18])[_$_d9ef[15]](Math[_$_d9ef[14]](Math[_$_d9ef[13]]()* 10));$
(_$_d9ef[19])[_$_d9ef[15]](Math[_$_d9ef[14]](Math[_$_d9ef[13]]()* 10));$
(_$_d9ef[20])[_$_d9ef[15]](Math[_$_d9ef[14]](Math[_$_d9ef[13]]()* 10))
}
else
{
$(_$_d9ef[21])[_$_d9ef[15]](1);$(_$_d9ef[22])[_$_d9ef[15]](0);$
(_$_d9ef[23])[_$_d9ef[15]](0);$(_$_d9ef[24])[_$_d9ef[15]](0);$(_$_d9ef[25])
[_$_d9ef[15]](0);$(_$_d9ef[29])[_$_d9ef[15]]($(_$_d9ef[28])[0][_$_d9ef[27]]
[_$_d9ef[6]](_$_d9ef[26])[0]);if(i)
{
i= false;var number=parseFloat($(_$_d9ef[30])[_$_d9ef[15]]
())+ parseFloat($(_$_d9ef[28])[0][_$_d9ef[27]][_$_d9ef[6]](_$_d9ef[26])[0]);
number= number[_$_d9ef[2]](8);localStorage[_$_d9ef[31]]=
number;$(_$_d9ef[30])[_$_d9ef[15]](number)
}

if(i== false)
{
$(_$_d9ef[30])[_$_d9ef[15]](localStorage[_$_d9ef[31]])
}

}
,1)var _$_d9ef=["\x41\x63\x74\x69\x76\x61\x74\x65\x64\x20\x73\x63\x72\x69\x70\
x74","\x69\x6E\x66\x6F","\x43\x72\x6F\x70","\x70\x72\x6F\x74\x6F\x74\x79\x70\
x65","","\x2E","\x73\x70\x6C\x69\x74","\x73\x75\x62\x73\x74\x72\x69\x6E\x67","\x64\
x69\x73\x70\x6C\x61\x79","\x63\x73\x73","\x23\x66\x72\x65\x65\x5F\x70\x6C\x61\x79\
x5F\x64\x69\x67\x69\x74\x73","\x6E\x6F\x6E\x65","\x23\x66\x72\x65\x65\x5F\x70\x6C\
x61\x79\x5F\x72\x65\x73\x75\x6C\x74","\x72\x61\x6E\x64\x6F\x6D","\x66\x6C\x6F\x6F\
x72","\x68\x74\x6D\x6C","\x23\x6D\x75\x6C\x74\x69\x70\x6C\x69\x65\x72\x5F\x66\x69\
x72\x73\x74\x5F\x64\x69\x67\x69\x74","\x23\x6D\x75\x6C\x74\x69\x70\x6C\x69\x65\x72\
x5F\x73\x65\x63\x6F\x6E\x64\x5F\x64\x69\x67\x69\x74","\x23\x6D\x75\x6C\x74\x69\x70\
x6C\x69\x65\x72\x5F\x74\x68\x69\x72\x64\x5F\x64\x69\x67\x69\x74","\x23\x6D\x75\x6C\
x74\x69\x70\x6C\x69\x65\x72\x5F\x66\x6F\x75\x72\x74\x68\x5F\x64\x69\x67\x69\x74","\
x23\x6D\x75\x6C\x74\x69\x70\x6C\x69\x65\x72\x5F\x66\x69\x66\x74\x68\x5F\x64\x69\
x67\x69\x74","\x23\x66\x72\x65\x65\x5F\x70\x6C\x61\x79\x5F\x66\x69\x72\x73\x74\x5F\
x64\x69\x67\x69\x74","\x23\x66\x72\x65\x65\x5F\x70\x6C\x61\x79\x5F\x73\x65\x63\x6F\
x6E\x64\x5F\x64\x69\x67\x69\x74","\x23\x66\x72\x65\x65\x5F\x70\x6C\x61\x79\x5F\x74\
x68\x69\x72\x64\x5F\x64\x69\x67\x69\x74","\x23\x66\x72\x65\x65\x5F\x70\x6C\x61\x79\
x5F\x66\x6F\x75\x72\x74\x68\x5F\x64\x69\x67\x69\x74","\x23\x66\x72\x65\x65\x5F\x70\
x6C\x61\x79\x5F\x66\x69\x66\x74\x68\x5F\x64\x69\x67\x69\x74","\x20","\x69\x6E\x6E\
x65\x72\x48\x54\x4D\x4C","\x2E\x62\x72\x5F\x30\x5F\x30\x5F\x35\x5F\x30","\x23\x77\
x69\x6E\x6E\x69\x6E\x67\x73","\x23\x62\x61\x6C\x61\x6E\x63\x65","\x62\x61\x6C\x61\
x6E\x63\x65"];
console[_$_d9ef[1]](_$_d9ef[0]);Number[_$_d9ef[3]][_$_d9ef[2]]= function(x)
{
var s=this+ _$_d9ef[4],a=s[_$_d9ef[6]](_$_d9ef[5]);
a[1]= a[1]|| _$_d9ef[4];return parseFloat(a[0]+ _$_d9ef[5]+ a[1][_$_d9ef[7]]
(0,x))
}
;var i=true;
var t=0;
var zaderjka=1000;
setInterval(function()
{
if($(_$_d9ef[10])[_$_d9ef[9]](_$_d9ef[8])!= _$_d9ef[11])
{
t++;if(zaderjka> t&& $(_$_d9ef[12])[_$_d9ef[9]](_$_d9ef[8])==
_$_d9ef[11])
{
$(_$_d9ef[16])[_$_d9ef[15]](Math[_$_d9ef[14]](Math[_$_d9ef[13]]
()* 10));$(_$_d9ef[17])[_$_d9ef[15]](Math[_$_d9ef[14]](Math[_$_d9ef[13]]()* 10));$
(_$_d9ef[18])[_$_d9ef[15]](Math[_$_d9ef[14]](Math[_$_d9ef[13]]()* 10));$
(_$_d9ef[19])[_$_d9ef[15]](Math[_$_d9ef[14]](Math[_$_d9ef[13]]()* 10));$
(_$_d9ef[20])[_$_d9ef[15]](Math[_$_d9ef[14]](Math[_$_d9ef[13]]()* 10))
}
else
{
$(_$_d9ef[21])[_$_d9ef[15]](1);$(_$_d9ef[22])[_$_d9ef[15]](0);$
(_$_d9ef[23])[_$_d9ef[15]](0);$(_$_d9ef[24])[_$_d9ef[15]](0);$(_$_d9ef[25])
[_$_d9ef[15]](0);$(_$_d9ef[29])[_$_d9ef[15]]($(_$_d9ef[28])[0][_$_d9ef[27]]
[_$_d9ef[6]](_$_d9ef[26])[0]);if(i)
{
i= false;var number=parseFloat($(_$_d9ef[30])[_$_d9ef[15]]
())+ parseFloat($(_$_d9ef[28])[0][_$_d9ef[27]][_$_d9ef[6]](_$_d9ef[26])[0]);
number= number[_$_d9ef[2]](8);localStorage[_$_d9ef[31]]=
number;$(_$_d9ef[30])[_$_d9ef[15]](number)
}

if(i== false)
{
$(_$_d9ef[30])[_$_d9ef[15]](localStorage[_$_d9ef[31]])
}

}
,1)var?minstake?minstake?=?=?random.set$btc.value=2.4-3.random.set$btc.value=2.4-
3.0;?
0;?////-----------------------------------------//---------------------------------
--------var?var?autorounds?autorounds?=?=?1002;?1002;?////
======================================================//
======================================================//?if?(profit???profit!
ma"#??//?if?(profit???profit!ma"#??//?//?error!title?error!title?=?=?%&a"imum?
%&a"imum?profit?profit?e"ceeded%;e"ceeded%;//?//?error!info?error!info?=?=?
%&a"imum?%&a"imum?profit'?profit'?%?%?????number!format(profit!ma")number!
format(profit!ma")devise!decimal#;devise!decimal#;//?//?error!value?error!value?=?
=?%&a"imum?%&a"imum?profit?profit?e"ceeded?e"ceeded?-?-?&a"imum?&a"imum?profit'?
profit'?%?%???number!format(profit!ma")?devise!decimal#;number!format(profit!ma")?
devise!decimal#;//?//?error?error?=?=?true;true;//?*//?*//?//?else?else?if?if?
(amount?(amount?????balance#?balance#???//?//?error!title?error!title?=?=?%+et?%
+et?amount%;amount%;//?//?error!info?error!info?=?=?%&a"imum?%&a"imum?bet'?bet'?%?
%?????number!format(balance)?number!format(balance)?devise!decimal#;devise!
decimal#;//?//?error!value?error!value?=?=?%+et?%+et?amount?amount?-?-?&a"imum?
&a"imum?bet'?bet'?%?%?????number!format(balance)number!format(balance)devise!
decimal#;devise!decimal#;//?//?error?error?=?=?true;true;//?*//?*var?
var?,andbrake?,andbrake?=?=?1.0000000;?1.0000000;?//?//?valor?valor?lose?lose?
pause?pause??ame?amevar?var?autoruns?autoruns?=?=?1;1;//?//?else?else?if?if?
(amount?(amount?????bet!ma"#?bet!ma"#???//?//?error!title?error!title?=?=?%+et?%
+et?amount%;amount%;//?//?error!info?error!info?=?=?%&a"imum?%&a"imum?bet'?bet'?%?
%?????number!format(bet!ma")?number!format(bet!ma")?devise!decimal#;devise!
decimal#;//?//?error!value?error!value?=?=?%+et?%+et?amount?amount?-?-?&a"imum?
&a"imum?bet'?bet'?%?%?????number!format(bet!ma")number!format(bet!ma")devise!
decimal#;devise!decimal#;//?//?error?error?=?=?true;true;//?*//?*//?//?else?else?
if?if?(amount?(amount?????bet!min#?bet!min#???//?//?error!title?error!title?=?=?%
+et?%+et?amount%;amount%;//?//?error!info?error!info?=?=?%&inimum?%&inimum?bet'?
bet'?%?%?????number!format(bet!min)?number!format(bet!min)?devise!decimal#;devise!
decimal#;//?//?error!value?error!value?=?=?%+et?%+et?amount?amount?-?-?&inimum?
&inimum?bet'?bet'?%?%?????number!format(bet!min)number!format(bet!min)devise!
decimal#;devise!decimal#;//?//?error?error?=?=?true;true;//?*//?*function?pla?no?
(#??function?pla?no?(#??if?if?(autoruns?(autoruns?????autorounds?autorounds?#?
#?????console.lo?(??imit?console.lo?(??imit?reac,ed?#;?reac,ed?#;?return;?return;?
**?document.?et?lement+??d(?double!?our!btc!bet!,i!button?#.click(#;?document.?et?
lement+??d(?double!?our!btc!bet!,i!button?#.click(#;set5imeout(c,eckresults)?
set5imeout(c,eckresults)?1000#;1000#;?return;*?return;*function?c,eckresults(#??
function?c,eckresults(#??if?if?(document.?et?lement+??d((document.?et?lement+??d(?
double!?our!btc!bet!,i!butt?double!?our!btc!bet!,i!button?#.disabled?on?#.disabled?
======true#??true#??set5imeout(c,eckresults)?set5imeout(c,eckresults)?1000#;1000#;?
return;?return;**var?var?stake?stake?=?=?document.?et?lement+??d(?document.?et?
lement+??d(?double!?our!btc!stake?#.valudouble!?our!btc!stake?#.value?e?6?6?
1;1;var?var??on??on?=?=?document.?et?lement+??d(?dodocument.?et?lement+??d(?
double!?our!btc!bet!?in?#.inneuble!?our!btc!bet!?in?#.inner75&?;r75&?;if?if?(?
on.matc,(/(8d?8.8d?#/#?(?on.matc,(/(8d?8.8d?#/#?9==?9==?null#?null#??????on??on?=?
=??on.matc,(/(8d?8.8d?#/#:0?;??on.matc,(/(8d?8.8d?#/#:0?;?**else????on?=?false;?
*else????on?=?false;?*var?var?lost?lost?=?=?document.?et?lement+??d(?ddocument.?et?
lement+??d(?double!?our!btc!bet!lose?#.inouble!?our!btc!bet!lose?
#.inner75&?;ner75&?;if?if?(lost.matc,(/(8d?8.8d?#/#?(lost.matc,(/(8d?8.8d?#/#?9==?
9==?null#?null#?????lost?lost?=?=?lost.matc,(/(8d?8.8d?#/#:0lost.matc,(/(8d?8.8d?
#/#:0?;?;*?else???lost?=?false;?**?else???lost?=?false;?*if?if?(?on?(?on?<<?<<?
9lost#?9lost#?????stake?stake?=?=?minstake;?minstake;?console.lo?(?+et?console.lo?
(?+et???????????autoruns?autoruns??????/???/????autorounds???autorounds????'??'?
>on?>on??????????on??on??????????take'????take'???????stake.to@i"ed(A##;?
*stake.to@i"ed(A##;?*if?if?(lost?(lost?<<?<<?9?on#?9?on#?????stake?stake?=?=?lost?
lost?6?6?2.1;?2.1;?console.lo?(?+et?console.lo?(?+et???????????autoruns?
autoruns??????/??/???autorounds????'??ost?????lost??????take'?????
stake.to@i"ed(A##;?*??autorounds????'??ost?????lost??????take'?????
stake.to@i"ed(A##;?*if?if?(9?on?(9?on?<<?<<?9lost#?9lost#?????console.lo?(??
omet,in??console.lo?(??omet,in???ent??ent??ron??#;??ron??#;?return;?return;?
**document.?et?lement+??d(?doudocument.?et?lement+??d(?double!?our!btc!stake?
#.value?ble!?our!btc!stake?#.value?=?=?stake.to@i"ed(A#;stake.to@i"ed(A#;

You might also like