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

Calcio Pavonese vs Calcio Desenzano

Club Friendlies 4 · World · 06 Aug 2026, 15:30 UTC

Final score
1 : 2
Result
Won
Pick
Calcio Desenzano
Market
1x2
Model prob.
78.5%
Best price
1.45
Min odds
1.34
Stake factor
2.10

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)
G6Ir2AKR8D9Nkg6QjQh6jKdO24pkb4mKtMeZUe+HZ61g4nVJRri7N9uSjYt/029MurflIT1Cc8NBMoJ66cgp1qtHxbUazz+X554s4EeQv+xRqEtTShwqqIrTZCTta1EGC1NE0AhMLwezfhRsQiSMfy9oq8AIuXQWcjfTcn3fZqb2EIczYs6BI2H5F2fRurGFRv0vqI44OAc1ZZ+L8Qy7aT/kMhKd7hRHybaqSMiRAeJjF7w1dV3vXRo9e2dOpoOVe+B2iORabS88rTLpR2bmuLMX0p+bP4midD+5Bpz3oG34Qhft+cx5I8CHSnNI49Q6TPmjy/Vgj0fBUhE9SR5XRV4YcCzU7+XxAPWik4GEl0Fy
key fingerprint sha256: 0dc9a821e924b463f7166b1867bab788d10f89e9ef340e774b7725abc9b85e75
Decrypt it & read the pick
Decryption key (released after the match)
4aec2bc1343fc8c2104477b9540e4c0be5553493b3a92597fe9ec211a5024232
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("G6Ir2AKR8D9Nkg6QjQh6jKdO24pkb4mKtMeZUe+HZ61g4nVJRri7N9uSjYt/029MurflIT1Cc8NBMoJ66cgp1qtHxbUazz+X554s4EeQv+xRqEtTShwqqIrTZCTta1EGC1NE0AhMLwezfhRsQiSMfy9oq8AIuXQWcjfTcn3fZqb2EIczYs6BI2H5F2fRurGFRv0vqI44OAc1ZZ+L8Qy7aT/kMhKd7hRHybaqSMiRAeJjF7w1dV3vXRo9e2dOpoOVe+B2iORabS88rTLpR2bmuLMX0p+bP4midD+5Bpz3oG34Qhft+cx5I8CHSnNI49Q6TPmjy/Vgj0fBUhE9SR5XRV4YcCzU7+XxAPWik4GEl0Fy"), c => c.charCodeAt(0));
const key  = Uint8Array.from("4aec2bc1343fc8c2104477b9540e4c0be5553493b3a92597fe9ec211a5024232".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): 4aec2bc1343fc8c2104477b9540e4c0be5553493b3a92597fe9ec211a5024232
  • IV / nonce (hex): 1ba22bd80291f03f4d920e90
  • Ciphertext (hex): 8d087a8ca74edb8a646f898ab4c79951ef8767ad60e2754946b8bb37db928d8b7fd36f4cbab7e5213d4273c34132827ae9c829d6ab47c5b51acf3f97e79e2ce04790bfec51a84b534a1c2aa88ad36424ed6b51060b5344d0084c2f07b37e146c42248c7f2f68abc008b974167237d3727ddf66a6f610873362ce812361f91767d1bab18546fd2fa88e38380735659f8bf10cbb693fe432129dee1447c9b6aa48c89101e26317bc35755def5d1a3d7b674ea683957be07688e45a6d2f3cad32e94766e6b8b317d29f9b3f89a2743fb9069cf7a06df84217edf9cc7923c0874a7348e3d43a4cf9a3cbf5608f47c152113d491e57455e
  • Auth tag (hex): 18702cd4efe5f100f5a2938184974172

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