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

Radnik Surdulica vs Budućnost

Club Friendlies 3 · World · 04 Jul 2026, 16:00 UTC

Final score
3 : 1
Result
Lost
Pick
Budućnost
Market
1x2
Model prob.
41.2%
Best price
3.11
Min odds
2.69
Stake factor
3.00

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)
DsBqECkXDi/M3Eo7dLK/oRh2bwrKfCPnlCnamStdBz2BEJdg8KWM15wLcnot/aWBJyECfKmWtEA9yw4JGeuHqEYCDHAsEile3bSQD9ExOuaimNocWrUeSmIJV8AsBzAPHmLvTz1Z/HG8YXkXfQ70mg3bCsA0rSFy7UD2F0X7VEksyvPjxuDri90/IheGwAWw0QOXls9y8N/6MVBw27Eix7eMmho24rU2/DWhqqcmKfsQt//z4Y4CuJxbxwVsZXq/lkdpQd6NN0ua76yphchSr8S9dTszI6DUJ4Otx7vHdQhj7a6r8Jztb3C+hSbkErz4dTvGmc8jAn5iXu6I/X5oshJtids4wQ==
key fingerprint sha256: 7cc6c57bd7606b1898603022a6b111d7a19229b276dd2b1a25d546d9161800fd
Decrypt it & read the pick
Decryption key (released after the match)
ae6b51cf7d22f2d222e223f4d7e4efd293616422b2f7a2bf8e7ec6521a1e775b
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("DsBqECkXDi/M3Eo7dLK/oRh2bwrKfCPnlCnamStdBz2BEJdg8KWM15wLcnot/aWBJyECfKmWtEA9yw4JGeuHqEYCDHAsEile3bSQD9ExOuaimNocWrUeSmIJV8AsBzAPHmLvTz1Z/HG8YXkXfQ70mg3bCsA0rSFy7UD2F0X7VEksyvPjxuDri90/IheGwAWw0QOXls9y8N/6MVBw27Eix7eMmho24rU2/DWhqqcmKfsQt//z4Y4CuJxbxwVsZXq/lkdpQd6NN0ua76yphchSr8S9dTszI6DUJ4Otx7vHdQhj7a6r8Jztb3C+hSbkErz4dTvGmc8jAn5iXu6I/X5oshJtids4wQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("ae6b51cf7d22f2d222e223f4d7e4efd293616422b2f7a2bf8e7ec6521a1e775b".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): ae6b51cf7d22f2d222e223f4d7e4efd293616422b2f7a2bf8e7ec6521a1e775b
  • IV / nonce (hex): 0ec06a1029170e2fccdc4a3b
  • Ciphertext (hex): 74b2bfa118766f0aca7c23e79429da992b5d073d81109760f0a58cd79c0b727a2dfda5812721027ca996b4403dcb0e0919eb87a846020c702c12295eddb4900fd1313ae6a298da1c5ab51e4a620957c02c07300f1e62ef4f3d59fc71bc6179177d0ef49a0ddb0ac034ad2172ed40f61745fb54492ccaf3e3c6e0eb8bdd3f221786c005b0d1039796cf72f0dffa315070dbb122c7b78c9a1a36e2b536fc35a1aaa72629fb10b7fff3e18e02b89c5bc7056c657abf96476941de8d374b9aefaca985c852afc4bd753b3323a0d42783adc7bbc7750863edaeabf09ced6f70be8526e412bcf8753bc699cf23
  • Auth tag (hex): 027e625eee88fd7e68b2126d89db38c1

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