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

Amiens SC vs Red Star

Club Friendlies 3 · World · 31 Jul 2026, 18:00 UTC

Final score
3 : 1
Result
Won
Pick
Amiens SC
Market
1x2
Model prob.
26.7%
Best price
4.94
Min odds
4.41
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)
hyWvzGxySmp6phIX3AxcrKJopkNvWnFZAP6JUOmIIkKCdcm91LQADSmoyYOGIRg8rjAxhYWrIdZGpmt9Rl4c6iF2VoBKtodBtBm1v+RYKa7aBnGKk6KcOzkULEyj25eihdXVKys5FUqMCeuMcN18yDbYDnuKx442D86osrvBailV91Bo7MVDDc2SeOP23/pcxCX4V4/HtXWp9ytThFtIeF0Z4XA/E/v+c3z98jHI4LO7Hyjc2L3aPoBA9Lev5vmM4POnFKjHzKJFZ5vHgYgdCLxvMsC42Q5wI8jTGyJ44eAhYPR3i5swUt6DaTb0GPWOO3Dgl9S5YTLwXMifL451QWngyle9zkjz
key fingerprint sha256: bbaac9b9eeace1f74037bbf0092e762274d860f2444cacebbdff30f306ff8660
Decrypt it & read the pick
Decryption key (released after the match)
c2ad540130cfe7e6202d6ed2b929cb16893e08708cbe09098aa73c3b53998f7b
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("hyWvzGxySmp6phIX3AxcrKJopkNvWnFZAP6JUOmIIkKCdcm91LQADSmoyYOGIRg8rjAxhYWrIdZGpmt9Rl4c6iF2VoBKtodBtBm1v+RYKa7aBnGKk6KcOzkULEyj25eihdXVKys5FUqMCeuMcN18yDbYDnuKx442D86osrvBailV91Bo7MVDDc2SeOP23/pcxCX4V4/HtXWp9ytThFtIeF0Z4XA/E/v+c3z98jHI4LO7Hyjc2L3aPoBA9Lev5vmM4POnFKjHzKJFZ5vHgYgdCLxvMsC42Q5wI8jTGyJ44eAhYPR3i5swUt6DaTb0GPWOO3Dgl9S5YTLwXMifL451QWngyle9zkjz"), c => c.charCodeAt(0));
const key  = Uint8Array.from("c2ad540130cfe7e6202d6ed2b929cb16893e08708cbe09098aa73c3b53998f7b".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): c2ad540130cfe7e6202d6ed2b929cb16893e08708cbe09098aa73c3b53998f7b
  • IV / nonce (hex): 8725afcc6c724a6a7aa61217
  • Ciphertext (hex): dc0c5caca268a6436f5a715900fe8950e98822428275c9bdd4b4000d29a8c9838621183cae30318585ab21d646a66b7d465e1cea217656804ab68741b419b5bfe45829aeda06718a93a29c3b39142c4ca3db97a285d5d52b2b39154a8c09eb8c70dd7cc836d80e7b8ac78e360fcea8b2bbc16a2955f75068ecc5430dcd9278e3f6dffa5cc425f8578fc7b575a9f72b53845b48785d19e1703f13fbfe737cfdf231c8e0b3bb1f28dcd8bdda3e8040f4b7afe6f98ce0f3a714a8c7cca245679bc781881d08bc6f32c0b8d90e7023c8d31b2278e1e02160f4778b9b3052de836936f418f58e3b70e097d4b96132
  • Auth tag (hex): f05cc89f2f8e754169e0ca57bdce48f3

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