Norwich City vs Burnley
Championship · England · 29 Aug 2026, 14:00 UTC
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.
TCcme2JQyE7fak20HmJUkAXDhMZ6Wafhe0wTl+/cI7c06+lSKrzXz+NkRYWWlUzRoROy2NStRdKw3nPqqXGn7cg4Jeps7QEjXHFU1m2xuO+aBkw/4vw15oXtEWNL4QqPMJPK2lxBF80aBeM8+k3EOv0uVQzcym9HB72uTKgpKuMrzS40WosYBe41IWEqiwpeFspRHGEtXMWVxuEFZv0yK+s28iOptoULWA4p5vpOap7ULXNUZl3VjKPDb5SvH6W4QX54xlYkCQeVMFRzDUfNEf7AgvHicwQAthqebmIDMQT2sD+5PSeq31jhqG6rXr47hDBF++xHpOX63B0IW30Ta17O/Hs63W0l1CIAv5JE
0c11ea2a3de703f608a3c53c51a75963a05f1040eca0ca2c89fd303176209345Decrypt 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 F12 → Console),
paste this, press Enter — it decrypts the exact pick shown above:
const blob = Uint8Array.from(atob("TCcme2JQyE7fak20HmJUkAXDhMZ6Wafhe0wTl+/cI7c06+lSKrzXz+NkRYWWlUzRoROy2NStRdKw3nPqqXGn7cg4Jeps7QEjXHFU1m2xuO+aBkw/4vw15oXtEWNL4QqPMJPK2lxBF80aBeM8+k3EOv0uVQzcym9HB72uTKgpKuMrzS40WosYBe41IWEqiwpeFspRHGEtXMWVxuEFZv0yK+s28iOptoULWA4p5vpOap7ULXNUZl3VjKPDb5SvH6W4QX54xlYkCQeVMFRzDUfNEf7AgvHicwQAthqebmIDMQT2sD+5PSeq31jhqG6rXr47hDBF++xHpOX63B0IW30Ta17O/Hs63W0l1CIAv5JE"), c => c.charCodeAt(0));
const key = Uint8Array.from("0c11ea2a3de703f608a3c53c51a75963a05f1040eca0ca2c89fd303176209345".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):
0c11ea2a3de703f608a3c53c51a75963a05f1040eca0ca2c89fd303176209345 - IV / nonce (hex):
4c27267b6250c84edf6a4db4 - Ciphertext (hex):
1e62549005c384c67a59a7e17b4c1397efdc23b734ebe9522abcd7cfe364458596954cd1a113b2d8d4ad45d2b0de73eaa971a7edc83825ea6ced01235c7154d66db1b8ef9a064c3fe2fc35e685ed11634be10a8f3093cada5c4117cd1a05e33cfa4dc43afd2e550cdcca6f4707bdae4ca8292ae32bcd2e345a8b1805ee3521612a8b0a5e16ca511c612d5cc595c6e10566fd322beb36f223a9b6850b580e29e6fa4e6a9ed42d7354665dd58ca3c36f94af1fa5b8417e78c656240907953054730d47cd11fec082f1e2730400b61a9e6e62033104f6b03fb93d27aadf58e1a86eab5ebe3b843045fbec47a4e5fadc1d085b7d - Auth tag (hex):
136b5ecefc7b3add6d25d42200bf9244
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:
- Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
- Drop both into opentimestamps.org (or run
ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time. - See it independently: block #963718 · 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.