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

Luton Town vs Go Ahead Eagles

Club Friendlies 3 · World · 02 Aug 2026, 12:00 UTC

Final score
0 : 1
Result
Lost
Pick
Luton Town
Market
1x2
Model prob.
47.7%
Best price
2.49
Min odds
2.29
Stake factor
2.60

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)
syQHMUa3bqUV/wBqCCxJVj8GcThcJLaKp6v/Nf1SmrtQ9Jjq5zI+4kI0YavrvbUFLWWJGQRKASNuNWUHMmYZgMslqX5srM9LXZA+LWbAeNw207zJkw3+553XnBPRwF9FHKId/zU011eWjU31Fuckg8ivl/N19qpVsViHE7fFZ6n2rm7AzxpQWZEB8cDa2Hwl0JtUxpmw5HGWa8e9u53soYBRBfl9hR8moNoytdVEgicL1HTD09Mv4oB4neRcytZiw7auMRCwbbl+6PNCHk2OZKuCMrSwtJ9jl38jfgO/5cT8Rha3Rc2ywYztYUbh69a+rLsnK2XX8lXh4v6/gAXh1l+V2wZoAWlXPZyl
key fingerprint sha256: 07daccc80894bbdba456e3ed9c329101061aa5241baa90d7a04a893f781d11eb
Decrypt it & read the pick
Decryption key (released after the match)
eceb7c712ef1126707c7666fbd48c91284a0a30a0e7dabff99ecac08e0ab4a86
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("syQHMUa3bqUV/wBqCCxJVj8GcThcJLaKp6v/Nf1SmrtQ9Jjq5zI+4kI0YavrvbUFLWWJGQRKASNuNWUHMmYZgMslqX5srM9LXZA+LWbAeNw207zJkw3+553XnBPRwF9FHKId/zU011eWjU31Fuckg8ivl/N19qpVsViHE7fFZ6n2rm7AzxpQWZEB8cDa2Hwl0JtUxpmw5HGWa8e9u53soYBRBfl9hR8moNoytdVEgicL1HTD09Mv4oB4neRcytZiw7auMRCwbbl+6PNCHk2OZKuCMrSwtJ9jl38jfgO/5cT8Rha3Rc2ywYztYUbh69a+rLsnK2XX8lXh4v6/gAXh1l+V2wZoAWlXPZyl"), c => c.charCodeAt(0));
const key  = Uint8Array.from("eceb7c712ef1126707c7666fbd48c91284a0a30a0e7dabff99ecac08e0ab4a86".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): eceb7c712ef1126707c7666fbd48c91284a0a30a0e7dabff99ecac08e0ab4a86
  • IV / nonce (hex): b324073146b76ea515ff006a
  • Ciphertext (hex): 082c49563f0671385c24b68aa7abff35fd529abb50f498eae7323ee2423461abebbdb5052d658919044a01236e35650732661980cb25a97e6caccf4b5d903e2d66c078dc36d3bcc9930dfee79dd79c13d1c05f451ca21dff3534d757968d4df516e72483c8af97f375f6aa55b1588713b7c567a9f6ae6ec0cf1a50599101f1c0dad87c25d09b54c699b0e471966bc7bdbb9deca1805105f97d851f26a0da32b5d54482270bd474c3d3d32fe280789de45ccad662c3b6ae3110b06db97ee8f3421e4d8e64ab8232b4b0b49f63977f237e03bfe5c4fc4616b745cdb2c18ced6146e1ebd6beacbb272b65d7f255e1e2fe
  • Auth tag (hex): bf8005e1d65f95db06680169573d9ca5

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