Cardiff City vs Roma
Club Friendlies 1 · World · 01 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.
vF6XCWiIzYmzsmixseJdbnfx6VZWakAJe588hw3wdK1D1ayrW2DmyhHbayc/0CxWuPoVjKdJICyuxFAtGkElR7IUe1/hN9aD8B9vKKdp++kyXYj0o1WFLHEkRI5mGkKmc8gGw6qPK2W8HFUqbIiK2Niaz97a7qQCYUjskF9chD4o53/KuGxETf4/QfhtSX+eVQ24o96XT/xfdLQjMQor2DgXLOoRtTgd+ZBnA/HKbERMC+AU8kuMydV5i61H8HPg3HS/YJQwlNTyFdcDfm4gyM6iMScQXXxFuo7EsTxdpNZwCnxtUxFdf9s/KXrKxbJrcAgACA641csNoNr/lbD/9QJhmeD9FFUL
77997706a0f54a9d84325a54da25e33fae957444ce07ba7aec700700589d5fa7Decrypt 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("vF6XCWiIzYmzsmixseJdbnfx6VZWakAJe588hw3wdK1D1ayrW2DmyhHbayc/0CxWuPoVjKdJICyuxFAtGkElR7IUe1/hN9aD8B9vKKdp++kyXYj0o1WFLHEkRI5mGkKmc8gGw6qPK2W8HFUqbIiK2Niaz97a7qQCYUjskF9chD4o53/KuGxETf4/QfhtSX+eVQ24o96XT/xfdLQjMQor2DgXLOoRtTgd+ZBnA/HKbERMC+AU8kuMydV5i61H8HPg3HS/YJQwlNTyFdcDfm4gyM6iMScQXXxFuo7EsTxdpNZwCnxtUxFdf9s/KXrKxbJrcAgACA641csNoNr/lbD/9QJhmeD9FFUL"), c => c.charCodeAt(0));
const key = Uint8Array.from("77997706a0f54a9d84325a54da25e33fae957444ce07ba7aec700700589d5fa7".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):
77997706a0f54a9d84325a54da25e33fae957444ce07ba7aec700700589d5fa7 - IV / nonce (hex):
bc5e97096888cd89b3b268b1 - Ciphertext (hex):
b1e25d6e77f1e956566a40097b9f3c870df074ad43d5acab5b60e6ca11db6b273fd02c56b8fa158ca749202caec4502d1a412547b2147b5fe137d683f01f6f28a769fbe9325d88f4a355852c7124448e661a42a673c806c3aa8f2b65bc1c552a6c888ad8d89acfdedaeea4026148ec905f5c843e28e77fcab86c444dfe3f41f86d497f9e550db8a3de974ffc5f74b423310a2bd838172cea11b5381df9906703f1ca6c444c0be014f24b8cc9d5798bad47f073e0dc74bf60943094d4f215d7037e6e20c8cea23127105d7c45ba8ec4b13c5da4d6700a7c6d53115d7fdb3f297acac5b26b700800080eb8d5cb - Auth tag (hex):
0da0daff95b0fff5026199e0fd14550b
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 #960500 · 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.