Hitchin Town vs Kettering Town
Southern Premier League Central · 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.
zaOqyGui6riKbHH+e95t/QH/ef1XDmmm1d+5gFHlL09oW88oPXCWyPWn+HVFqiRR95MVTgwLbCzVE03qoFRjKvVG2mzYEkay7ll4OpQnehhCUmtRoZ3qsQlsi63EOJE93NnsveTeehPEpETl3hQSlpGUD2WH/RKYDpcHlqTZhXO+Q2r8zy+Zc7lX5uO/DikN8ghWIlHxtp6F7I+LBQscuLtsze7ZeKT/6JCOYEKrD7wQZaVSGqYFG7T75AzG1q3Ba+IAstmwfgX9oGwgwqprPuuViakB2tMSZkk5t2UayJXDGCmrrbUKS8f0bpxLN0iYvvAXTW4J58vRrcyB3bkIa4dIqKJcA3O0
16940b05da94c3e0f7823de66867e224ad5c00ecfb4b97d7e47860a27be36a74Decrypt 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("zaOqyGui6riKbHH+e95t/QH/ef1XDmmm1d+5gFHlL09oW88oPXCWyPWn+HVFqiRR95MVTgwLbCzVE03qoFRjKvVG2mzYEkay7ll4OpQnehhCUmtRoZ3qsQlsi63EOJE93NnsveTeehPEpETl3hQSlpGUD2WH/RKYDpcHlqTZhXO+Q2r8zy+Zc7lX5uO/DikN8ghWIlHxtp6F7I+LBQscuLtsze7ZeKT/6JCOYEKrD7wQZaVSGqYFG7T75AzG1q3Ba+IAstmwfgX9oGwgwqprPuuViakB2tMSZkk5t2UayJXDGCmrrbUKS8f0bpxLN0iYvvAXTW4J58vRrcyB3bkIa4dIqKJcA3O0"), c => c.charCodeAt(0));
const key = Uint8Array.from("16940b05da94c3e0f7823de66867e224ad5c00ecfb4b97d7e47860a27be36a74".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):
16940b05da94c3e0f7823de66867e224ad5c00ecfb4b97d7e47860a27be36a74 - IV / nonce (hex):
cda3aac86ba2eab88a6c71fe - Ciphertext (hex):
7bde6dfd01ff79fd570e69a6d5dfb98051e52f4f685bcf283d7096c8f5a7f87545aa2451f793154e0c0b6c2cd5134deaa054632af546da6cd81246b2ee59783a94277a1842526b51a19deab1096c8badc438913ddcd9ecbde4de7a13c4a444e5de14129691940f6587fd12980e970796a4d98573be436afccf2f9973b957e6e3bf0e290df208562251f1b69e85ec8f8b050b1cb8bb6ccdeed978a4ffe8908e6042ab0fbc1065a5521aa6051bb4fbe40cc6d6adc16be200b2d9b07e05fda06c20c2aa6b3eeb9589a901dad312664939b7651ac895c31829abadb50a4bc7f46e9c4b374898bef0174d6e09e7cb - Auth tag (hex):
d1adcc81ddb9086b8748a8a25c0373b4
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 #964449 · 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.