Khovd Western vs Khovd
Premier League · Mongolia · 22 Jun 2026, 11: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.
cC7djjt6rWcpSHTi/DI78zesTCtXt8xoOjvRw04EqMKa2q8BU+LqY0U9/PNz7sUdSRfvUxSPPcj8YhiEmZdeaen2Lp3hn5/R5gcR8ScZpx8S9uHqVDRWqXd+awciYgEatjQJf7v27ZUyrY6zpWXQCD8s2UKJghYlrSyUqI1Xn+0EtNAJ4urE8L1Wi8kYS8IfCpKuVa4G8bSK4A+Fiqnl7NAt86TzsIccXNbA2vvY2ZN9Bnd8s9/8ZdDgUe/R1qXT2EgXm8trVpR05rWPNEzfkCOuQKFTnUFsdcT5ltSZBFl78G5Fh6KVE0qnUoSN6GbTMKv/rnywLaU1SbWItEOZxxJFU+xwQOyEqA==
af3a5906ea8fcdedb5db67b1c2f929bcbfddf06f8e31107e8e1a27e0a7c77e4cDecrypt 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("cC7djjt6rWcpSHTi/DI78zesTCtXt8xoOjvRw04EqMKa2q8BU+LqY0U9/PNz7sUdSRfvUxSPPcj8YhiEmZdeaen2Lp3hn5/R5gcR8ScZpx8S9uHqVDRWqXd+awciYgEatjQJf7v27ZUyrY6zpWXQCD8s2UKJghYlrSyUqI1Xn+0EtNAJ4urE8L1Wi8kYS8IfCpKuVa4G8bSK4A+Fiqnl7NAt86TzsIccXNbA2vvY2ZN9Bnd8s9/8ZdDgUe/R1qXT2EgXm8trVpR05rWPNEzfkCOuQKFTnUFsdcT5ltSZBFl78G5Fh6KVE0qnUoSN6GbTMKv/rnywLaU1SbWItEOZxxJFU+xwQOyEqA=="), c => c.charCodeAt(0));
const key = Uint8Array.from("af3a5906ea8fcdedb5db67b1c2f929bcbfddf06f8e31107e8e1a27e0a7c77e4c".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):
af3a5906ea8fcdedb5db67b1c2f929bcbfddf06f8e31107e8e1a27e0a7c77e4c - IV / nonce (hex):
702edd8e3b7aad67294874e2 - Ciphertext (hex):
fc323bf337ac4c2b57b7cc683a3bd1c34e04a8c29adaaf0153e2ea63453dfcf373eec51d4917ef53148f3dc8fc62188499975e69e9f62e9de19f9fd1e60711f12719a71f12f6e1ea543456a9777e6b072262011ab634097fbbf6ed9532ad8eb3a565d0083f2cd94289821625ad2c94a88d579fed04b4d009e2eac4f0bd568bc9184bc21f0a92ae55ae06f1b48ae00f858aa9e5ecd02df3a4f3b0871c5cd6c0dafbd8d9937d06777cb3dffc65d0e051efd1d6a5d3d848179bcb6b569474e6b58f344cdf9023ae40a1539d416c75c4f996d49904597bf06e4587a295134aa752848de866d330abffae7cb02da535 - Auth tag (hex):
49b588b44399c7124553ec7040ec84a8
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 #954708 · 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.