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

FC Twente vs Aberdeen

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

Final score
1 : 0
Result
Won
Pick
FC Twente
Market
1x2
Model prob.
71.5%
Best price
1.53
Min odds
1.48
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)
Qh4khheWPaZHOsUR/rfDtJydTp3Fn9rIgFpg4ZwcXiJ4+Jw6RHXhoUZH0/NCofv72dpFXwDlEhjlYgzGHdscqXp8sy/Hnoqjof3O7yS4CWnu7chdId9U5ecjNAW/pEH5iAj3BiSPG9bcKLshs5NQIIi/H8Rme0LLkYMTp4aq0wafSkEZk55qhcjeWO8I1vdOpnxLx9lzPH4IaRJNB8UIb4SeZykxfCSkEBy2AZ/jnd+dMBWi3MAGFlMusaCBPBuFz0dQ/s5TPItOwDB5WyQcONUAmeboIYr8PwVgvwbVIb4xY4eXhPrXG40ROB7kZR+bGiqFih2K9eZb8LMnvhdcHOfsGolXb2fy
key fingerprint sha256: 9299eaa7f627950634082a1e81eb8237da74f182ad12289225cbc51907f237bc
Decrypt it & read the pick
Decryption key (released after the match)
530e7893a15afad7581d2840b2c431994be77f252e87245092a9c3f304f94f7b
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("Qh4khheWPaZHOsUR/rfDtJydTp3Fn9rIgFpg4ZwcXiJ4+Jw6RHXhoUZH0/NCofv72dpFXwDlEhjlYgzGHdscqXp8sy/Hnoqjof3O7yS4CWnu7chdId9U5ecjNAW/pEH5iAj3BiSPG9bcKLshs5NQIIi/H8Rme0LLkYMTp4aq0wafSkEZk55qhcjeWO8I1vdOpnxLx9lzPH4IaRJNB8UIb4SeZykxfCSkEBy2AZ/jnd+dMBWi3MAGFlMusaCBPBuFz0dQ/s5TPItOwDB5WyQcONUAmeboIYr8PwVgvwbVIb4xY4eXhPrXG40ROB7kZR+bGiqFih2K9eZb8LMnvhdcHOfsGolXb2fy"), c => c.charCodeAt(0));
const key  = Uint8Array.from("530e7893a15afad7581d2840b2c431994be77f252e87245092a9c3f304f94f7b".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): 530e7893a15afad7581d2840b2c431994be77f252e87245092a9c3f304f94f7b
  • IV / nonce (hex): 421e248617963da6473ac511
  • Ciphertext (hex): feb7c3b49c9d4e9dc59fdac8805a60e19c1c5e2278f89c3a4475e1a14647d3f342a1fbfbd9da455f00e51218e5620cc61ddb1ca97a7cb32fc79e8aa3a1fdceef24b80969eeedc85d21df54e5e7233405bfa441f98808f706248f1bd6dc28bb21b393502088bf1fc4667b42cb918313a786aad3069f4a4119939e6a85c8de58ef08d6f74ea67c4bc7d9733c7e0869124d07c5086f849e6729317c24a4101cb6019fe39ddf9d3015a2dcc00616532eb1a0813c1b85cf4750fece533c8b4ec030795b241c38d50099e6e8218afc3f0560bf06d521be3163879784fad71b8d11381ee4651f9b1a2a858a1d8af5e6
  • Auth tag (hex): 5bf0b327be175c1ce7ec1a89576f67f2

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