Clermont vs Bourges Foot 18
Club Friendlies 3 · World · 15 Jul 2026, 15: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.
aWKOiFkg96nHrAxcDb089vcyDv79oDIDxyOSUU4DDIzD5F7qBcKe+OENYNKbYmEUNTbhOPkmiFVVefwlk8yb6F4iaIawYL8x7IhKf+Fi6uHMIFJWDFoGGD6JLKFjBt63IC+GdXKX+OtCgM7DhllJ3ndc4nqFfIvzzVjQzjUuT4uRfHQb8/zyr5G0vQb5+E8ij+viqgprtBT39wxglJ57I52wMSfIaifRLVnhaUGho5cn3n9miSqhRjGDijTKZuEZhibQ5DilWuoHo7NXnGcNu6ZSSWmCqA+RFJn+xeSUcTR+QfJd2s3nZ1oV+WS5ejez+89TK/WdnyCLSXuC7bHkmsjj
f4838c4b0bba24288061e84dec8c63903776f011f1788628edbc412110907102Decrypt 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("aWKOiFkg96nHrAxcDb089vcyDv79oDIDxyOSUU4DDIzD5F7qBcKe+OENYNKbYmEUNTbhOPkmiFVVefwlk8yb6F4iaIawYL8x7IhKf+Fi6uHMIFJWDFoGGD6JLKFjBt63IC+GdXKX+OtCgM7DhllJ3ndc4nqFfIvzzVjQzjUuT4uRfHQb8/zyr5G0vQb5+E8ij+viqgprtBT39wxglJ57I52wMSfIaifRLVnhaUGho5cn3n9miSqhRjGDijTKZuEZhibQ5DilWuoHo7NXnGcNu6ZSSWmCqA+RFJn+xeSUcTR+QfJd2s3nZ1oV+WS5ejez+89TK/WdnyCLSXuC7bHkmsjj"), c => c.charCodeAt(0));
const key = Uint8Array.from("f4838c4b0bba24288061e84dec8c63903776f011f1788628edbc412110907102".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):
f4838c4b0bba24288061e84dec8c63903776f011f1788628edbc412110907102 - IV / nonce (hex):
69628e885920f7a9c7ac0c5c - Ciphertext (hex):
0dbd3cf6f7320efefda03203c72392514e030c8cc3e45eea05c29ef8e10d60d29b6261143536e138f92688555579fc2593cc9be85e226886b060bf31ec884a7fe162eae1cc2052560c5a06183e892ca16306deb7202f86757297f8eb4280cec3865949de775ce27a857c8bf3cd58d0ce352e4f8b917c741bf3fcf2af91b4bd06f9f84f228febe2aa0a6bb414f7f70c60949e7b239db03127c86a27d12d59e16941a1a39727de7f66892aa14631838a34ca66e1198626d0e438a55aea07a3b3579c670dbba652496982a80f911499fec5e49471347e41f25ddacde7675a15f964b97a37b3fbcf - Auth tag (hex):
532bf59d9f208b497b82edb1e49ac8e3
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 #958163 · 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.