Sign in
← All matches
✅ Cryptographically verified · sealed pick #1011

Atlético Bucaramanga vs Llaneros

Liga BetPlay · Colombia · 31 Jul 2026, 01:00 UTC

Final score
1 : 1
Result
Lost
Pick
Atlético Bucaramanga
Market
1x2
Model prob.
66.8%
Best price
1.65
Min odds
1.59
Stake factor
1.80

Proof this pick was locked in before kickoff

The pick was encrypted before kickoff and published the moment it was sealed to Telegram and GitHub, each carrying an independent timestamp. The encrypted batch is also anchored in Bitcoin — a public record nobody, including us, can alter or back-date. After the match the key is released; decrypting that exact pre-published message reveals the pick, proving it was fixed in advance, not cherry-picked.

Encrypted pick (AES-256-GCM)
o7+ja/XLZZ+zOhFL8Qimj/gGaOTyRIHpjEsw7dltWEO/5JwuEI7gDwS1X9dNZB7GfDo1NSNs8HSoo5iVLji2Rs6/m0oKZqoyfQVkm4XJpROILABVuhM4gF3TLm4krNpYhvQblV0Kt0/HrU75yHSpxwiGyvc9GTPbEW9A+AWXoLH/5LpRsTYVlb76rjLB6AC6WEkGtBx5NtU4FAMhH8f/kF6Ytrx600MdeaAA0NDI7vSOAhhL3dKkWA7kPUWjTGFFGXizzCFOqCbFv4/7gJsyNBXWpjRFE4yC8XIoyd+rRCuohWllYtJ6yZNvY13CmHNUjSP0t8y7OYL2Ru9QuCkxefvRNk8J81/TshIcMQBjn+xDBs2GMMY=
key fingerprint sha256: 782b519a320fccecb694a805deecbcd6995452a9d8b3736cc80a51f9f02a8a49
Decrypt it & read the pick
Decryption key (released after the match)
048ca88716e8d1149e595a1c63dac7f9af471a46e3ca21cb41586c5fa98745ac
Decrypt in CyberChef →
Verify it yourself — paste both values, no install

The Encrypted pick above is base64( nonce[12 bytes] + ciphertext + tag[16 bytes] ), AES-256-GCM. Zero-install check: open your browser console (press F12Console), paste this, press Enter — it decrypts the exact pick shown above:

const blob = Uint8Array.from(atob("o7+ja/XLZZ+zOhFL8Qimj/gGaOTyRIHpjEsw7dltWEO/5JwuEI7gDwS1X9dNZB7GfDo1NSNs8HSoo5iVLji2Rs6/m0oKZqoyfQVkm4XJpROILABVuhM4gF3TLm4krNpYhvQblV0Kt0/HrU75yHSpxwiGyvc9GTPbEW9A+AWXoLH/5LpRsTYVlb76rjLB6AC6WEkGtBx5NtU4FAMhH8f/kF6Ytrx600MdeaAA0NDI7vSOAhhL3dKkWA7kPUWjTGFFGXizzCFOqCbFv4/7gJsyNBXWpjRFE4yC8XIoyd+rRCuohWllYtJ6yZNvY13CmHNUjSP0t8y7OYL2Ru9QuCkxefvRNk8J81/TshIcMQBjn+xDBs2GMMY="), c => c.charCodeAt(0));
const key  = Uint8Array.from("048ca88716e8d1149e595a1c63dac7f9af471a46e3ca21cb41586c5fa98745ac".match(/../g).map(h => parseInt(h, 16)));
crypto.subtle.importKey("raw", key, "AES-GCM", false, ["decrypt"])
  .then(k => crypto.subtle.decrypt({ name: "AES-GCM", iv: blob.slice(0, 12) }, k, blob.slice(12)))
  .then(b => console.log(new TextDecoder().decode(b)));

Prefer a GUI? The orange button opens CyberChef pre-filled. Or split the parts yourself for any AES-256-GCM tool:

  • Algorithm: AES-256-GCM
  • Key (hex): 048ca88716e8d1149e595a1c63dac7f9af471a46e3ca21cb41586c5fa98745ac
  • IV / nonce (hex): a3bfa36bf5cb659fb33a114b
  • Ciphertext (hex): f108a68ff80668e4f24481e98c4b30edd96d5843bfe49c2e108ee00f04b55fd74d641ec67c3a3535236cf074a8a398952e38b646cebf9b4a0a66aa327d05649b85c9a513882c0055ba1338805dd32e6e24acda5886f41b955d0ab74fc7ad4ef9c874a9c70886caf73d1933db116f40f80597a0b1ffe4ba51b1361595befaae32c1e800ba584906b41c7936d5381403211fc7ff905e98b6bc7ad3431d79a000d0d0c8eef48e02184bddd2a4580ee43d45a34c61451978b3cc214ea826c5bf8ffb809b323415d6a63445138c82f17228c9dfab442ba885696562d27ac9936f635dc29873548d23f4b7ccbb3982f646ef50b8293179fbd1364f09f3
  • Auth tag (hex): 5fd3b2121c3100639fec4306cd8630c6

Any standard AES-256-GCM tool returns the exact same pick — the algorithm is a public standard.

How to verify the Bitcoin timestamp yourself

Bitcoin doesn't store the pick — it stores a 32-byte fingerprint (SHA-256) of the encrypted batch, via OpenTimestamps. That fingerprint is frozen in a public block nobody can alter or back-date. You can't spot it by eye on a block explorer (a block holds thousands of unrelated transactions) — you verify it with the .ots proof and any OpenTimestamps tool:

  1. Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
  2. Drop both into opentimestamps.org (or run ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time.
  3. See it independently: block #960291 · anchoring transaction (its OP_RETURN holds the commitment). The block's Timestamp is when it became permanent.

Note: Bitcoin anchoring lands ~30–60 min after sealing, and a block's timestamp is miner-set (approximate). So the exact “before kickoff” proof is the seal time above — timestamped instantly by Telegram/GitHub — while Bitcoin is the independent, un-forgeable anchor of permanence.