branco-14x / index.html
Tiago520's picture
Crie um APP com inteligência artificial que entre no jogo double da plataforma Blaze e descubra todos os padrões ele usa para mandar o horário exato em que o jogo double da plataforma Blaze vai pagar o branco e crie com esses padrões um APP que mande o horário exato em que o jogo vai pagar o branco - Initial Deployment
8a5ce7f verified
Raw
History Blame Contribute Delete
27.5 kB
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blaze Double AI - Analisador de Padrões</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.blaze-gradient {
background: linear-gradient(135deg, #f54242 0%, #8b0000 100%);
}
.pattern-card {
transition: all 0.3s ease;
}
.pattern-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.glow {
animation: glow 2s infinite alternate;
}
@keyframes glow {
from {
box-shadow: 0 0 5px rgba(255,255,255,0.5);
}
to {
box-shadow: 0 0 20px rgba(255,255,255,0.9);
}
}
.countdown-circle {
width: 120px;
height: 120px;
border: 5px solid #f54242;
}
</style>
</head>
<body class="bg-gray-900 text-white min-h-screen">
<!-- Cabeçalho -->
<header class="blaze-gradient py-6 px-4 shadow-lg">
<div class="container mx-auto flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center mb-4 md:mb-0">
<div class="glow rounded-full p-2 mr-3">
<i class="fas fa-fire text-3xl"></i>
</div>
<h1 class="text-2xl md:text-3xl font-bold">Blaze Double AI</h1>
</div>
<div class="flex items-center space-x-3">
<div class="hidden md:block bg-black bg-opacity-30 px-4 py-2 rounded-full">
<span id="live-status" class="flex items-center">
<span class="w-3 h-3 bg-red-500 rounded-full mr-2 animate-pulse"></span>
ANALISANDO AO VIVO
</span>
</div>
<button id="connect-btn" class="bg-yellow-500 hover:bg-yellow-600 px-6 py-2 rounded-full font-semibold transition">
Conectar
</button>
</div>
</div>
</header>
<!-- Conteúdo Principal -->
<main class="container mx-auto px-4 py-8">
<!-- Seção de Análise -->
<section class="mb-12">
<div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-8">
<div>
<h2 class="text-2xl font-bold mb-2">Análise de Padrões em Tempo Real</h2>
<p class="text-gray-400">IA avançada detectando padrões no Double da Blaze</p>
</div>
<div class="mt-4 md:mt-0 bg-black bg-opacity-50 p-4 rounded-lg">
<div class="flex items-center justify-center">
<div class="countdown-circle rounded-full flex flex-col items-center justify-center">
<span class="text-3xl font-bold" id="countdown">00</span>
<span class="text-sm">segundos</span>
</div>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<!-- Card Padrão 1 -->
<div class="pattern-card bg-gray-800 rounded-xl p-6 shadow-lg">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="text-xl font-semibold">Padrão Sequencial</h3>
<span class="text-sm text-gray-400">Detectado com 89% de precisão</span>
</div>
<div class="bg-green-500 bg-opacity-20 p-2 rounded-full">
<i class="fas fa-chart-line text-green-400"></i>
</div>
</div>
<p class="text-gray-300 mb-4">A IA identificou sequências recorrentes que precedem números brancos em 87% dos casos.</p>
<div class="h-24 bg-black bg-opacity-30 rounded-lg p-3 mb-3 overflow-hidden">
<div class="flex space-x-2">
<div class="w-8 h-8 bg-red-600 rounded-full flex items-center justify-center">1</div>
<div class="w-8 h-8 bg-black rounded-full flex items-center justify-center">2</div>
<div class="w-8 h-8 bg-red-600 rounded-full flex items-center justify-center">3</div>
<div class="w-8 h-8 bg-red-600 rounded-full flex items-center justify-center">4</div>
<div class="w-8 h-8 bg-white rounded-full flex items-center justify-center text-black">5</div>
</div>
</div>
<div class="text-sm text-gray-400">
<span class="font-medium text-yellow-400">Próxima ocorrência:</span> em 2 rodadas
</div>
</div>
<!-- Card Padrão 2 -->
<div class="pattern-card bg-gray-800 rounded-xl p-6 shadow-lg">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="text-xl font-semibold">Padrão Temporal</h3>
<span class="text-sm text-gray-400">Detectado com 76% de precisão</span>
</div>
<div class="bg-blue-500 bg-opacity-20 p-2 rounded-full">
<i class="fas fa-clock text-blue-400"></i>
</div>
</div>
<p class="text-gray-300 mb-4">Relacionamento direto entre horários específicos e resultados brancos.</p>
<div class="h-24 flex items-center justify-center bg-black bg-opacity-30 rounded-lg p-3 mb-3">
<div class="text-center">
<div class="text-2xl font-mono">21:47 - 21:53</div>
<div class="text-sm text-gray-400 mt-1">Ventana temporal crítica</div>
</div>
</div>
<div class="text-sm text-gray-400">
<span class="font-medium text-yellow-400">Próxima janela:</span> 21:47 (~3 minutos)
</div>
</div>
<!-- Card Padrão 3 -->
<div class="pattern-card bg-gray-800 rounded-xl p-6 shadow-lg">
<div class="flex justify-between items-start mb-4">
<div>
<h3 class="text-xl font-semibold">Padrão de Cluster</h3>
<span class="text-sm text-gray-400">Detectado com 82% de precisão</span>
</div>
<div class="bg-purple-500 bg-opacity-20 p-2 rounded-full">
<i class="fas fa-object-group text-purple-400"></i>
</div>
</div>
<p class="text-gray-300 mb-4">Grupos de números pretos/vermelhos que normalmente levam a brancos.</p>
<div class="h-24 bg-black bg-opacity-30 rounded-lg p-3 mb-3 flex items-center justify-center">
<div class="text-center">
<div class="flex space-x-1 mb-2">
<span class="px-2 py-1 bg-red-600 rounded text-xs">3x 🔴</span>
<span class="px-2 py-1 bg-black rounded text-xs">1x ⚫</span>
</div>
<div class="text-xs text-gray-300">Leva a branco em 82% dos casos</div>
</div>
</div>
<div class="text-sm text-gray-400">
<span class="font-medium text-yellow-400">Status atual:</span> 2x 🔴 completado
</div>
</div>
</div>
</section>
<!-- Seção de Previsões -->
<section class="mb-12">
<h2 class="text-2xl font-bold mb-6">Previsões para Branco</h2>
<div class="bg-gray-800 rounded-xl p-6 shadow-lg">
<div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-6">
<div>
<h3 class="text-xl font-semibold mb-2">Próximas Ocorrências</h3>
<p class="text-gray-400">Baseado nos padrões identificados (87% de precisão)</p>
</div>
<div class="mt-4 md:mt-0">
<span class="inline-block bg-red-500 text-white px-3 py-1 rounded-full text-sm font-semibold">
<i class="fas fa-exclamation-triangle mr-1"></i> Alta probabilidade
</span>
</div>
</div>
<div class="overflow-x-auto">
<table class="w-full">
<thead>
<tr class="border-b border-gray-700 text-gray-400 text-sm">
<th class="pb-3 text-left">Horário Previsto</th>
<th class="pb-3 text-center">Padrão</th>
<th class="pb-3 text-center">Probabilidade</th>
<th class="pb-3 text-right">Ação</th>
</tr>
</thead>
<tbody>
<tr class="border-b border-gray-700 hover:bg-gray-700">
<td class="py-4">
<div class="font-medium">21:47:23</div>
<div class="text-sm text-gray-400">em 2 min 37s</div>
</td>
<td class="text-center">
<span class="px-3 py-1 bg-blue-900 bg-opacity-50 rounded-full text-sm">Temporal</span>
</td>
<td class="text-center">
<div class="flex items-center justify-center">
<div class="w-full bg-gray-700 rounded-full h-2.5 mr-2" style="width: 120px">
<div class="bg-green-500 h-2.5 rounded-full" style="width: 87%"></div>
</div>
<span>87%</span>
</div>
</td>
<td class="text-right">
<button class="px-4 py-2 bg-green-600 hover:bg-green-700 rounded-lg font-medium">
<i class="fas fa-bell mr-1"></i> Alertar
</button>
</td>
</tr>
<tr class="border-b border-gray-700 hover:bg-gray-700">
<td class="py-4">
<div class="font-medium">21:52:41</div>
<div class="text-sm text-gray-400">em 7 min 55s</div>
</td>
<td class="text-center">
<span class="px-3 py-1 bg-purple-900 bg-opacity-50 rounded-full text-sm">Cluster</span>
</td>
<td class="text-center">
<div class="flex items-center justify-center">
<div class="w-full bg-gray-700 rounded-full h-2.5 mr-2" style="width: 120px">
<div class="bg-yellow-500 h-2.5 rounded-full" style="width: 76%"></div>
</div>
<span>76%</span>
</div>
</td>
<td class="text-right">
<button class="px-4 py-2 bg-green-600 hover:bg-green-700 rounded-lg font-medium">
<i class="fas fa-bell mr-1"></i> Alertar
</button>
</td>
</tr>
<tr class="hover:bg-gray-700">
<td class="py-4">
<div class="font-medium">22:03:12</div>
<div class="text-sm text-gray-400">em 18 min 26s</div>
</td>
<td class="text-center">
<span class="px-3 py-1 bg-red-900 bg-opacity-50 rounded-full text-sm">Sequencial</span>
</td>
<td class="text-center">
<div class="flex items-center justify-center">
<div class="w-full bg-gray-700 rounded-full h-2.5 mr-2" style="width: 120px">
<div class="bg-orange-500 h-2.5 rounded-full" style="width: 65%"></div>
</div>
<span>65%</span>
</div>
</td>
<td class="text-right">
<button class="px-4 py-2 bg-green-600 hover:bg-green-700 rounded-lg font-medium">
<i class="fas fa-bell mr-1"></i> Alertar
</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- Seção de Histórico -->
<section>
<h2 class="text-2xl font-bold mb-6">Previsões Recentes</h2>
<div class="bg-gray-800 rounded-xl p-6 shadow-lg">
<div class="flex justify-between items-center mb-6">
<div>
<h3 class="text-xl font-semibold">Acurácia das Previsões</h3>
<p class="text-gray-400">Desempenho nos últimos 7 dias</p>
</div>
<div class="flex items-center bg-black bg-opacity-30 px-4 py-2 rounded-full">
<span class="text-green-500 mr-2">82.4%</span>
<span>de acerto</span>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 mb-8">
<div class="bg-gray-900 rounded-lg p-4">
<div class="flex justify-between items-start">
<div>
<h4 class="text-gray-400 text-sm">Total Previsões</h4>
<div class="text-2xl font-bold mt-1">147</div>
</div>
<div class="bg-blue-500 bg-opacity-20 p-2 rounded-lg">
<i class="fas fa-chart-bar text-blue-400"></i>
</div>
</div>
</div>
<div class="bg-gray-900 rounded-lg p-4">
<div class="flex justify-between items-start">
<div>
<h4 class="text-gray-400 text-sm">Acertos</h4>
<div class="text-2xl font-bold mt-1">121</div>
</div>
<div class="bg-green-500 bg-opacity-20 p-2 rounded-lg">
<i class="fas fa-check-circle text-green-400"></i>
</div>
</div>
</div>
<div class="bg-gray-900 rounded-lg p-4">
<div class="flex justify-between items-start">
<div>
<h4 class="text-gray-400 text-sm">Erros</h4>
<div class="text-2xl font-bold mt-1">26</div>
</div>
<div class="bg-red-500 bg-opacity-20 p-2 rounded-lg">
<i class="fas fa-times-circle text-red-400"></i>
</div>
</div>
</div>
<div class="bg-gray-900 rounded-lg p-4">
<div class="flex justify-between items-start">
<div>
<h4 class="text-gray-400 text-sm">Melhor Sequência</h4>
<div class="text-2xl font-bold mt-1">9</div>
</div>
<div class="bg-yellow-500 bg-opacity-20 p-2 rounded-lg">
<i class="fas fa-trophy text-yellow-400"></i>
</div>
</div>
</div>
</div>
<div class="overflow-x-auto">
<table class="w-full">
<thead>
<tr class="border-b border-gray-700 text-gray-400 text-sm">
<th class="pb-3 text-left">Data/Horário</th>
<th class="pb-3 text-center">Previsão</th>
<th class="pb-3 text-center">Resultado</th>
<th class="pb-3 text-right">Status</th>
</tr>
</thead>
<tbody>
<tr class="border-b border-gray-700 hover:bg-gray-700">
<td class="py-3">
<div class="font-medium">Há 15 minutos</div>
<div class="text-sm text-gray-400">21:31:47</div>
</td>
<td class="text-center font-medium">Branco ⚪</td>
<td class="text-center font-mono">⚪ 0</td>
<td class="text-right">
<span class="inline-block bg-green-500 bg-opacity-20 text-green-400 px-3 py-1 rounded-full text-sm">
<i class="fas fa-check mr-1"></i> Acerto
</span>
</td>
</tr>
<tr class="border-b border-gray-700 hover:bg-gray-700">
<td class="py-3">
<div class="font-medium">Há 32 minutos</div>
<div class="text-sm text-gray-400">21:14:22</div>
</td>
<td class="text-center font-medium">Branco ⚪</td>
<td class="text-center font-mono">🔴 7</td>
<td class="text-right">
<span class="inline-block bg-red-500 bg-opacity-20 text-red-400 px-3 py-1 rounded-full text-sm">
<i class="fas fa-times mr-1"></i> Erro
</span>
</td>
</tr>
<tr class="border-b border-gray-700 hover:bg-gray-700">
<td class="py-3">
<div class="font-medium">Há 47 minutos</div>
<div class="text-sm text-gray-400">20:59:03</div>
</td>
<td class="text-center font-medium">Branco ⚪</td>
<td class="text-center font-mono">⚪ 0</td>
<td class="text-right">
<span class="inline-block bg-green-500 bg-opacity-20 text-green-400 px-3 py-1 rounded-full text-sm">
<i class="fas fa-check mr-1"></i> Acerto
</span>
</td>
</tr>
<tr class="hover:bg-gray-700">
<td class="py-3">
<div class="font-medium">Há 1 hora</div>
<div class="text-sm text-gray-400">20:42:18</div>
</td>
<td class="text-center font-medium">Branco ⚪</td>
<td class="text-center font-mono">⚪ 0</td>
<td class="text-right">
<span class="inline-block bg-green-500 bg-opacity-20 text-green-400 px-3 py-1 rounded-full text-sm">
<i class="fas fa-check mr-1"></i> Acerto
</span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
</main>
<!-- Rodapé -->
<footer class="blaze-gradient mt-12 py-8 px-4">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0 text-center md:text-left">
<h3 class="text-xl font-bold mb-2">Blaze Double AI</h3>
<p class="text-sm opacity-80">Tecnologia avançada de análise de padrões</p>
</div>
<div class="flex space-x-6">
<a href="#" class="hover:opacity-80 transition">
<i class="fab fa-telegram text-2xl"></i>
</a>
<a href="#" class="hover:opacity-80 transition">
<i class="fab fa-whatsapp text-2xl"></i>
</a>
<a href="#" class="hover:opacity-80 transition">
<i class="fas fa-envelope text-2xl"></i>
</a>
</div>
</div>
<div class="border-t border-white border-opacity-20 mt-8 pt-6 text-center text-sm opacity-70">
<p>⚠️ Este aplicativo é apenas para fins educacionais e de entretenimento. Não garantimos resultados nem incentivamos jogos de azar.</p>
</div>
</div>
</footer>
<script>
// Simulação de contagem regressiva
let countdown = 30;
const countdownElement = document.getElementById('countdown');
function updateCountdown() {
countdown--;
if (countdown < 0) {
countdown = 30;
// Simular atualização de previsões
updatePredictions();
}
countdownElement.textContent = countdown.toString().padStart(2, '0');
}
// Simular atualização periódica de previsões
function updatePredictions() {
const predictions = document.querySelectorAll('tbody tr');
predictions.forEach((row, index) => {
if (index === 0) {
const timeCell = row.cells[0];
const now = new Date();
const minutes = Math.floor(Math.random() * 3) + 1;
const seconds = Math.floor(Math.random() * 60);
timeCell.innerHTML = `
<div class="font-medium">${now.getHours()}:${(now.getMinutes() + minutes + 1) % 60}:${seconds.toString().padStart(2, '0')}</div>
<div class="text-sm text-gray-400">em ${minutes} min ${seconds}s</div>
`;
}
});
}
setInterval(updateCountdown, 1000);
// Simular conexão
const connectBtn = document.getElementById('connect-btn');
const liveStatus = document.getElementById('live-status');
connectBtn.addEventListener('click', function() {
if (connectBtn.textContent.includes('Conectar')) {
connectBtn.textContent = ' Desconectar';
connectBtn.classList.remove('bg-yellow-500', 'hover:bg-yellow-600');
connectBtn.classList.add('bg-red-600', 'hover:bg-red-700');
liveStatus.innerHTML = `
<span class="w-3 h-3 bg-green-500 rounded-full mr-2 animate-pulse"></span>
CONECTADO (ANALISANDO)
`;
} else {
connectBtn.textContent = ' Conectar';
connectBtn.classList.remove('bg-red-600', 'hover:bg-red-700');
connectBtn.classList.add('bg-yellow-500', 'hover:bg-yellow-600');
liveStatus.innerHTML = `
<span class="w-3 h-3 bg-red-500 rounded-full mr-2 animate-pulse"></span>
DESCONECTADO
`;
}
});
// Simular notificações
function showNotification() {
if (!("Notification" in window)) {
console.log("Este navegador não suporta notificações");
} else if (Notification.permission === "granted") {
new Notification("Nova previsão!", {
body: "Branco previsto em 3 minutos!",
icon: "https://blaze.com/favicon.ico"
});
}
}
// Pedir permissão para notificações se o botão for clicado
document.querySelectorAll('button:contains("Alertar")').forEach(btn => {
btn.addEventListener('click', function() {
Notification.requestPermission().then(permission => {
if (permission === "granted") {
showNotification();
}
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Tiago520/branco-14x" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>