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

Antwerp vs Olympiacos F.C.

Club Friendlies 3 · World · 24 Jul 2026, 17:00 UTC

Final score
3 : 0
Result
Lost
Pick
Olympiacos F.C.
Market
1x2
Model prob.
50.2%
Best price
2.37
Min odds
2.17
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.

Sealed at 24 Jul 2026, 09:58 UTC — published in:
Encrypted pick (AES-256-GCM)
LM4S0tBJ4buQzQ0IRXiGNUwbR4kn5sHESRcZh1eivh7OiBzsofVblY9mGQx/9Preirho2qedfqXYDN5TIl/gj9HXbvDOKLQTXmzSWDKGx7tZGDSC5I1AXDaYt1lwzlyVYh8wTJHeZltxvYE0bu4ai/xkOQ32F49YmfcbCUYxVBFqgQ9UcevaV6rp24KQUxe2d3i7tMg86+iAhzs3brhNO9ItfwpmYLzlaxSNJ+rdPhZSvlPaFl8IbR9UrZVinmZkqjefPB4QflHoL3GQFO/8tGLua2ipWMOh+dL8nn/kNGANcPHQ3zI+mBxc03xE/JD8toF7gPqBv3J9PhlR+Smy+RoLZgj194crYu+RxjmIDeE=
key fingerprint sha256: b1fbac12f455e562d23fdae1ee40166a0b31533785ebca1b4fea4ec51ebb37d1
Decrypt it & read the pick
Decryption key (released after the match)
d8d5a8a078401823b455ac3671da84515019f46eaa35a2c76cb41603ab1e4cde
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("LM4S0tBJ4buQzQ0IRXiGNUwbR4kn5sHESRcZh1eivh7OiBzsofVblY9mGQx/9Preirho2qedfqXYDN5TIl/gj9HXbvDOKLQTXmzSWDKGx7tZGDSC5I1AXDaYt1lwzlyVYh8wTJHeZltxvYE0bu4ai/xkOQ32F49YmfcbCUYxVBFqgQ9UcevaV6rp24KQUxe2d3i7tMg86+iAhzs3brhNO9ItfwpmYLzlaxSNJ+rdPhZSvlPaFl8IbR9UrZVinmZkqjefPB4QflHoL3GQFO/8tGLua2ipWMOh+dL8nn/kNGANcPHQ3zI+mBxc03xE/JD8toF7gPqBv3J9PhlR+Smy+RoLZgj194crYu+RxjmIDeE="), c => c.charCodeAt(0));
const key  = Uint8Array.from("d8d5a8a078401823b455ac3671da84515019f46eaa35a2c76cb41603ab1e4cde".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): d8d5a8a078401823b455ac3671da84515019f46eaa35a2c76cb41603ab1e4cde
  • IV / nonce (hex): 2cce12d2d049e1bb90cd0d08
  • Ciphertext (hex): 457886354c1b478927e6c1c44917198757a2be1ece881ceca1f55b958f66190c7ff4fade8ab868daa79d7ea5d80cde53225fe08fd1d76ef0ce28b4135e6cd2583286c7bb59183482e48d405c3698b75970ce5c95621f304c91de665b71bd81346eee1a8bfc64390df6178f5899f71b09463154116a810f5471ebda57aae9db82905317b67778bbb4c83cebe880873b376eb84d3bd22d7f0a6660bce56b148d27eadd3e1652be53da165f086d1f54ad95629e6664aa379f3c1e107e51e82f719014effcb462ee6b68a958c3a1f9d2fc9e7fe434600d70f1d0df323e981c5cd37c44fc90fcb6817b80fa81bf727d3e1951f929b2f9
  • Auth tag (hex): 1a0b6608f5f7872b62ef91c639880de1

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. 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.