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

Guabirá vs Real Oruro

Liga De Futbol Prof · Bolivia · 25 Jul 2026, 21:15 UTC

Final score
4 : 1
Result
Won
Pick
Guabirá
Market
1x2
Model prob.
63.2%
Best price
1.87
Min odds
1.69
Stake factor
2.50

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)
XVcjUDHvU265JbzneKsOvWBNg0ObCp/M+VoiR+n7tlIFgqERQ1FW0sGrey8lLHAqhKRxHXzFKuTVpGxagaQLApT743qJceee702AXdzMaxoPrA/9oY9fHMq3+lZfKSPulo2Oh2Uh37dPWuVnkmj92HoUlWpFY2zhpEMJHIjmqVvCjj6CEubHSq9G8RUfg0pP3jMDxXAPs+ySt6nwd3PyQJD4D21fGeZhEJImkUP+4aN05bQjJtZSMCPavVubjaOY468+M39ervIo/ynPK0DFS+ahK2dplqtbvWDbyPR7Gp4HnNd+yCX0+e0ye6i+h12DLiae0ikiyzTt3VMOqpiU/8tBbxMn0CJnqg==
key fingerprint sha256: eeadfa4244efb28d4a6aeff564d863e17ae08c348279a61a8c46338c798158b9
Decrypt it & read the pick
Decryption key (released after the match)
3251ec9d4ccfb10ad1c6db8fabbad58c1ff71523affd794755f8021bfe611609
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("XVcjUDHvU265JbzneKsOvWBNg0ObCp/M+VoiR+n7tlIFgqERQ1FW0sGrey8lLHAqhKRxHXzFKuTVpGxagaQLApT743qJceee702AXdzMaxoPrA/9oY9fHMq3+lZfKSPulo2Oh2Uh37dPWuVnkmj92HoUlWpFY2zhpEMJHIjmqVvCjj6CEubHSq9G8RUfg0pP3jMDxXAPs+ySt6nwd3PyQJD4D21fGeZhEJImkUP+4aN05bQjJtZSMCPavVubjaOY468+M39ervIo/ynPK0DFS+ahK2dplqtbvWDbyPR7Gp4HnNd+yCX0+e0ye6i+h12DLiae0ikiyzTt3VMOqpiU/8tBbxMn0CJnqg=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("3251ec9d4ccfb10ad1c6db8fabbad58c1ff71523affd794755f8021bfe611609".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): 3251ec9d4ccfb10ad1c6db8fabbad58c1ff71523affd794755f8021bfe611609
  • IV / nonce (hex): 5d57235031ef536eb925bce7
  • Ciphertext (hex): 78ab0ebd604d83439b0a9fccf95a2247e9fbb6520582a111435156d2c1ab7b2f252c702a84a4711d7cc52ae4d5a46c5a81a40b0294fbe37a8971e79eef4d805ddccc6b1a0fac0ffda18f5f1ccab7fa565f2923ee968d8e876521dfb74f5ae5679268fdd87a14956a45636ce1a443091c88e6a95bc28e3e8212e6c74aaf46f1151f834a4fde3303c5700fb3ec92b7a9f07773f24090f80f6d5f19e6611092269143fee1a374e5b42326d6523023dabd5b9b8da398e3af3e337f5eaef228ff29cf2b40c54be6a12b676996ab5bbd60dbc8f47b1a9e079cd77ec825f4f9ed327ba8be875d832e269ed22922cb34ed
  • Auth tag (hex): dd530eaa9894ffcb416f1327d02267aa

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 #959563 · 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.