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

Cruzeiro U20 vs Itabirito U20

Mineiro U20 · Brazil · 07 Aug 2026, 18:00 UTC

Final score
3 : 3
Result
Lost
Pick
Cruzeiro U20
Market
1x2
Model prob.
84.8%
Best price
1.29
Min odds
1.24
Stake factor
1.70

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)
wA5TbTGkOZ1nt59NmgRNpXNzr7CPa3igXZMHVXmUVG10ov5b9cIffUsj4zZ72Q1Dvk2+HWFu46r9oD4xuqnWEEyl7y22ppbxthiihwC5GHHvh1hUF7rWcfqy1qBZzp4JSUfXI5dVto9nDiemw7LMgD6cz8/NyEGUnB2cgiKg66OBXXmyI3YOm1oBLxIs20uFS6BkeVeKehYyINpVNIzGjcERk0mjcz4UA1BWGcTnxYljrJu+IOP0Q1ShSOp+wOK18UOX9kpC5koAWgqFeNxIU2O+RSzBY/G2AYBnxpHLrzq1AjJxdwkEiVBBvot9z4UTH+lh2Lg43krmCyAYxQm/VF1JCsENuC0vNej3
key fingerprint sha256: 0b9acdedd6bd80dbbd9f3a5f857b0f864e0a0709a20a3b0e87292ecd45ee4d6f
Decrypt it & read the pick
Decryption key (released after the match)
3e79a9b24ba2fca5a9209107814efe2ab92c0b39a9406089d3c2c612629928cf
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("wA5TbTGkOZ1nt59NmgRNpXNzr7CPa3igXZMHVXmUVG10ov5b9cIffUsj4zZ72Q1Dvk2+HWFu46r9oD4xuqnWEEyl7y22ppbxthiihwC5GHHvh1hUF7rWcfqy1qBZzp4JSUfXI5dVto9nDiemw7LMgD6cz8/NyEGUnB2cgiKg66OBXXmyI3YOm1oBLxIs20uFS6BkeVeKehYyINpVNIzGjcERk0mjcz4UA1BWGcTnxYljrJu+IOP0Q1ShSOp+wOK18UOX9kpC5koAWgqFeNxIU2O+RSzBY/G2AYBnxpHLrzq1AjJxdwkEiVBBvot9z4UTH+lh2Lg43krmCyAYxQm/VF1JCsENuC0vNej3"), c => c.charCodeAt(0));
const key  = Uint8Array.from("3e79a9b24ba2fca5a9209107814efe2ab92c0b39a9406089d3c2c612629928cf".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): 3e79a9b24ba2fca5a9209107814efe2ab92c0b39a9406089d3c2c612629928cf
  • IV / nonce (hex): c00e536d31a4399d67b79f4d
  • Ciphertext (hex): 9a044da57373afb08f6b78a05d9307557994546d74a2fe5bf5c21f7d4b23e3367bd90d43be4dbe1d616ee3aafda03e31baa9d6104ca5ef2db6a696f1b618a28700b91871ef87585417bad671fab2d6a059ce9e094947d7239755b68f670e27a6c3b2cc803e9ccfcfcdc841949c1d9c8222a0eba3815d79b223760e9b5a012f122cdb4b854ba06479578a7a163220da55348cc68dc1119349a3733e1403505619c4e7c58963ac9bbe20e3f44354a148ea7ec0e2b5f14397f64a42e64a005a0a8578dc485363be452cc163f1b6018067c691cbaf3ab5023271770904895041be8b7dcf85131fe961d8b838de4ae60b20
  • Auth tag (hex): 18c509bf545d490ac10db82d2f35e8f7

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