Congleton Town vs Atherton Collieries
FA Trophy · 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.
BtJtWiUitfTk0WENoHyQKEZ8hBqOzwWurE1SYqJxpDIuiluy+BX331VuePqEgsI1hMbuGmHLeRAVXbPOs4Hd8BDmqMNEfQZfYsGS2FHcGD+py+U8I6r8m+anzjAuCZ9kkR4KjXg0dtO/ezsyVDQWL9q3rfON+dp4WrCA0RvZFn6JyZgNl4kff3m4CUygvk3MwoIZheBmnzFGkf5EggbEn/lUa5Zlbztpb2sn07n/QqhcY4U3o/Nt/fJPItTIzTzZk3JWl3cyZB0LhMG5YvocO0FjiPjmwsoY3Pneb6adzQF3hC4mFKvZGKJXWe/QO/zdLyIkBT5Jzq9jOhnglv5ZG/iamgT+NmAjBP78CJzu
919be1a916f057e034de395d784dbb68a755a4d12bd31a9ba0a24ee1de99a156Decrypt 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("BtJtWiUitfTk0WENoHyQKEZ8hBqOzwWurE1SYqJxpDIuiluy+BX331VuePqEgsI1hMbuGmHLeRAVXbPOs4Hd8BDmqMNEfQZfYsGS2FHcGD+py+U8I6r8m+anzjAuCZ9kkR4KjXg0dtO/ezsyVDQWL9q3rfON+dp4WrCA0RvZFn6JyZgNl4kff3m4CUygvk3MwoIZheBmnzFGkf5EggbEn/lUa5Zlbztpb2sn07n/QqhcY4U3o/Nt/fJPItTIzTzZk3JWl3cyZB0LhMG5YvocO0FjiPjmwsoY3Pneb6adzQF3hC4mFKvZGKJXWe/QO/zdLyIkBT5Jzq9jOhnglv5ZG/iamgT+NmAjBP78CJzu"), c => c.charCodeAt(0));
const key = Uint8Array.from("919be1a916f057e034de395d784dbb68a755a4d12bd31a9ba0a24ee1de99a156".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):
919be1a916f057e034de395d784dbb68a755a4d12bd31a9ba0a24ee1de99a156 - IV / nonce (hex):
06d26d5a2522b5f4e4d1610d - Ciphertext (hex):
a07c9028467c841a8ecf05aeac4d5262a271a4322e8a5bb2f815f7df556e78fa8482c23584c6ee1a61cb7910155db3ceb381ddf010e6a8c3447d065f62c192d851dc183fa9cbe53c23aafc9be6a7ce302e099f64911e0a8d783476d3bf7b3b325434162fdab7adf38df9da785ab080d11bd9167e89c9980d97891f7f79b8094ca0be4dccc2821985e0669f314691fe448206c49ff9546b96656f3b696f6b27d3b9ff42a85c638537a3f36dfdf24f22d4c8cd3cd9937256977732641d0b84c1b962fa1c3b416388f8e6c2ca18dcf9de6fa69dcd0177842e2614abd918a25759efd03bfcdd2f2224053e49ceaf633a19e096fe - Auth tag (hex):
591bf89a9a04fe36602304fefc089cee
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 #964516 · 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.