Eastern United Res. vs Modbury Jets Res.
South Australia State League 1 Reserves · Australia · 04 Jul 2026, 02:30 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.
0KpW3UQ9dcminaIiTzAkGntaiI3qE4lAgD3ZNKnrX7KSsbSn7Wjz+M7YlYyR848c1yvyud/xHIEiRx7vzSuzCH26bs0Col8zbn8hjrw59D3Vyi99chSXMluI92ojndmcX9ALCPMQ/8w7Y0v96D2PMXVuGFdVbznJ6fEHbovlqTOTC8321q0nTJDQNUnSEBQgOEHP4GEtzQfl3AWaUkuypoAziR7HSLDNUg1/r6o2400s5tsUCCvPia4Vpw012Tk8UDOIU7omCZYK8km4F4Srxx1XdCRRy+96X/Kjy8NN7wTsh6iMVOy91Lq0CCUtDrcFhg67Djv6WMDKA9UxnCZIMCl7heSNMDrqOaawjrzO
cc50d1f7dd53974f8e5fe9aaf4dea17c4a5ebd3d90b1997609b9ca2bc71cadcbDecrypt 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("0KpW3UQ9dcminaIiTzAkGntaiI3qE4lAgD3ZNKnrX7KSsbSn7Wjz+M7YlYyR848c1yvyud/xHIEiRx7vzSuzCH26bs0Col8zbn8hjrw59D3Vyi99chSXMluI92ojndmcX9ALCPMQ/8w7Y0v96D2PMXVuGFdVbznJ6fEHbovlqTOTC8321q0nTJDQNUnSEBQgOEHP4GEtzQfl3AWaUkuypoAziR7HSLDNUg1/r6o2400s5tsUCCvPia4Vpw012Tk8UDOIU7omCZYK8km4F4Srxx1XdCRRy+96X/Kjy8NN7wTsh6iMVOy91Lq0CCUtDrcFhg67Djv6WMDKA9UxnCZIMCl7heSNMDrqOaawjrzO"), c => c.charCodeAt(0));
const key = Uint8Array.from("cc50d1f7dd53974f8e5fe9aaf4dea17c4a5ebd3d90b1997609b9ca2bc71cadcb".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):
cc50d1f7dd53974f8e5fe9aaf4dea17c4a5ebd3d90b1997609b9ca2bc71cadcb - IV / nonce (hex):
d0aa56dd443d75c9a29da222 - Ciphertext (hex):
4f30241a7b5a888dea138940803dd934a9eb5fb292b1b4a7ed68f3f8ced8958c91f38f1cd72bf2b9dff11c8122471eefcd2bb3087dba6ecd02a25f336e7f218ebc39f43dd5ca2f7d721497325b88f76a239dd99c5fd00b08f310ffcc3b634bfde83d8f31756e1857556f39c9e9f1076e8be5a933930bcdf6d6ad274c90d03549d21014203841cfe0612dcd07e5dc059a524bb2a68033891ec748b0cd520d7fafaa36e34d2ce6db14082bcf89ae15a70d35d9393c50338853ba2609960af249b81784abc71d57742451cbef7a5ff2a3cbc34def04ec87a88c54ecbdd4bab408252d0eb705860ebb0e3bfa58c0ca03d5319c26 - Auth tag (hex):
4830297b85e48d303aea39a6b08ebcce
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 #956518 · 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.