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

Brentford vs Sunderland

Premier League · England · 05 Sept 2026, 14:00 UTC

Final score
1 : 1
Result
Lost
Pick
Sunderland
Market
1X2
CLV vs fair close
+0.21%
Model prob.
18.9%
Best price
5.60
Min odds
5.39
Stake factor
1.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)
rVZDUUL5tCegwCK4wbqS3WMUe2wiNVUPcKmechN+Ic93BDY4XSxuc9fVA9LLO0/UqT5fxEJwpsZOjWDmOWnNw+S70KcEO6Mr8eRq3GWjsAdTAQ34fG5VdK82Pzl+dxKE/VQRkh8n6WiCiVdKADJNtLPKkDPXMHrM2262zvIaj/BFwiqfGzJIzrCdohfBcWw/IwcBG0z9557aaC4g+Z+I/qU3opd5CsWydYqQFEDxcPd131suNzd0YmP7fil+iARnnz8Ububx2s2/BAs1S6mLMm2F7Ly5kRPOGAx5+aPG9dpyqyL1UBBj2F7QE7cOySpRU3aPsbrCmF8eNmn0whfkA+B4qW0rUj3w
key fingerprint sha256: 124a1b3f3bfa344305f9683614311bb7f710165d4321888c419c1b3be6c1d5f8
Decrypt it & read the pick
Decryption key (released after the match)
2901838e6d52d24f7e82f33c44f1ee16bd3b9c44b20bc912461b3525a1f987dd
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("rVZDUUL5tCegwCK4wbqS3WMUe2wiNVUPcKmechN+Ic93BDY4XSxuc9fVA9LLO0/UqT5fxEJwpsZOjWDmOWnNw+S70KcEO6Mr8eRq3GWjsAdTAQ34fG5VdK82Pzl+dxKE/VQRkh8n6WiCiVdKADJNtLPKkDPXMHrM2262zvIaj/BFwiqfGzJIzrCdohfBcWw/IwcBG0z9557aaC4g+Z+I/qU3opd5CsWydYqQFEDxcPd131suNzd0YmP7fil+iARnnz8Ububx2s2/BAs1S6mLMm2F7Ly5kRPOGAx5+aPG9dpyqyL1UBBj2F7QE7cOySpRU3aPsbrCmF8eNmn0whfkA+B4qW0rUj3w"), c => c.charCodeAt(0));
const key  = Uint8Array.from("2901838e6d52d24f7e82f33c44f1ee16bd3b9c44b20bc912461b3525a1f987dd".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): 2901838e6d52d24f7e82f33c44f1ee16bd3b9c44b20bc912461b3525a1f987dd
  • IV / nonce (hex): ad56435142f9b427a0c022b8
  • Ciphertext (hex): c1ba92dd63147b6c2235550f70a99e72137e21cf770436385d2c6e73d7d503d2cb3b4fd4a93e5fc44270a6c64e8d60e63969cdc3e4bbd0a7043ba32bf1e46adc65a3b00753010df87c6e5574af363f397e771284fd5411921f27e9688289574a00324db4b3ca9033d7307accdb6eb6cef21a8ff045c22a9f1b3248ceb09da217c1716c3f2307011b4cfde79eda682e20f99f88fea537a297790ac5b2758a901440f170f775df5b2e3737746263fb7e297e8804679f3f146ee6f1dacdbf040b354ba98b326d85ecbcb99113ce180c79f9a3c6f5da72ab22f5501063d85ed013b70ec92a5153768fb1bac2985f
  • Auth tag (hex): 1e3669f4c217e403e078a96d2b523df0

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