CPK vs Shao Jiang SC
FA Cup · Macau · 02 Aug 2026, 12: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.
yv3z8BTq+s6v5j5/Je40t4anYECU7ergvTgMmgwIzXeIQ7dUCSpqGrslBlk944kVnFQtsC+MH9rshUQU+AEOk9Ee+7NL3EzyAbDgarDI0NCC/GNjX1yaZ3X45Zp8RFS73SlaYYS+y3klWKg0XzU9PRZxnPe+7PIdV+jKFasQqMvDvjRmBeyRuIFfzp09apuXSvQpWLySPqxdkFSs41fPmQqi4Bn17chIr4daRWjp+U2KgL3nDeiYqwbH2ZRg1Gm1DyRGAwpUF52fh6SLld6uKO0A2ep+3ILCvMqwLta68/I/QS+TlLEaPifCCRkLTzM6UWOe52Jtmil6CfZfB2Tb0hkI
6c486eebd405a464c9eed6ce399f73ade8cdfa6ad7579b1791dffe18419c87f1Decrypt 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("yv3z8BTq+s6v5j5/Je40t4anYECU7ergvTgMmgwIzXeIQ7dUCSpqGrslBlk944kVnFQtsC+MH9rshUQU+AEOk9Ee+7NL3EzyAbDgarDI0NCC/GNjX1yaZ3X45Zp8RFS73SlaYYS+y3klWKg0XzU9PRZxnPe+7PIdV+jKFasQqMvDvjRmBeyRuIFfzp09apuXSvQpWLySPqxdkFSs41fPmQqi4Bn17chIr4daRWjp+U2KgL3nDeiYqwbH2ZRg1Gm1DyRGAwpUF52fh6SLld6uKO0A2ep+3ILCvMqwLta68/I/QS+TlLEaPifCCRkLTzM6UWOe52Jtmil6CfZfB2Tb0hkI"), c => c.charCodeAt(0));
const key = Uint8Array.from("6c486eebd405a464c9eed6ce399f73ade8cdfa6ad7579b1791dffe18419c87f1".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):
6c486eebd405a464c9eed6ce399f73ade8cdfa6ad7579b1791dffe18419c87f1 - IV / nonce (hex):
cafdf3f014eafaceafe63e7f - Ciphertext (hex):
25ee34b786a7604094edeae0bd380c9a0c08cd778843b754092a6a1abb2506593de389159c542db02f8c1fdaec854414f8010e93d11efbb34bdc4cf201b0e06ab0c8d0d082fc63635f5c9a6775f8e59a7c4454bbdd295a6184becb792558a8345f353d3d16719cf7beecf21d57e8ca15ab10a8cbc3be346605ec91b8815fce9d3d6a9b974af42958bc923eac5d9054ace357cf990aa2e019f5edc848af875a4568e9f94d8a80bde70de898ab06c7d99460d469b50f2446030a54179d9f87a48b95deae28ed00d9ea7edc82c2bccab02ed6baf3f23f412f9394b11a3e27c209190b4f333a5163 - Auth tag (hex):
9ee7626d9a297a09f65f0764dbd21908
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 #960726 · 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.