Al Bataeh vs Palm City
President's Cup · UAE · 23 Sept 2026, 14:40 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.
n4iQFwbMe5IgFPpSsioivhQU2IwUr8Hw2SlxnIeR40n2F3pSh/0hr1Xv5O7E1CJDM5xF+ORf/5J07353VtIoq2iSdnIS4JTn4Yd3gRmLuXJXx6kuSumgk3gONNNQN7pANDtDeOa3FAsg48PHqlM33DC4l9S5yf+s+GHapg6hYaA/lihtLuvy/2FVn62sOrlHmnmrUyEXjybUxAf4IvjnxJiX2fd95Yknsb40qSSMb4+aI9e5G/I72n6DGagBc+fLAqGlm8rUPt0xqHDJ3r7aLBc4vVcbOKcJk5cpvKoloU/Fm4pkzFbwZ2MdI1wRcyR4xoOOh5IyiYA9+6Q/Z25ulCun9IA=
9ede32576064761806e23c3164efd27277cb7b6db79325ae415e6e57355d6fceDecrypt 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("n4iQFwbMe5IgFPpSsioivhQU2IwUr8Hw2SlxnIeR40n2F3pSh/0hr1Xv5O7E1CJDM5xF+ORf/5J07353VtIoq2iSdnIS4JTn4Yd3gRmLuXJXx6kuSumgk3gONNNQN7pANDtDeOa3FAsg48PHqlM33DC4l9S5yf+s+GHapg6hYaA/lihtLuvy/2FVn62sOrlHmnmrUyEXjybUxAf4IvjnxJiX2fd95Yknsb40qSSMb4+aI9e5G/I72n6DGagBc+fLAqGlm8rUPt0xqHDJ3r7aLBc4vVcbOKcJk5cpvKoloU/Fm4pkzFbwZ2MdI1wRcyR4xoOOh5IyiYA9+6Q/Z25ulCun9IA="), c => c.charCodeAt(0));
const key = Uint8Array.from("9ede32576064761806e23c3164efd27277cb7b6db79325ae415e6e57355d6fce".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).split("\n")[0])); 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):
9ede32576064761806e23c3164efd27277cb7b6db79325ae415e6e57355d6fce - IV / nonce (hex):
9f88901706cc7b922014fa52 - Ciphertext (hex):
b22a22be1414d88c14afc1f0d929719c8791e349f6177a5287fd21af55efe4eec4d42243339c45f8e45fff9274ef7e7756d228ab6892767212e094e7e1877781198bb97257c7a92e4ae9a093780e34d35037ba40343b4378e6b7140b20e3c3c7aa5337dc30b897d4b9c9ffacf861daa60ea161a03f96286d2eebf2ff61559fadac3ab9479a79ab5321178f26d4c407f822f8e7c49897d9f77de58927b1be34a9248c6f8f9a23d7b91bf23bda7e8319a80173e7cb02a1a59bcad43edd31a870c9debeda2c1738bd571b38a709939729bcaa25a14fc59b8a64cc56f067631d235c11732478c6838e87 - Auth tag (hex):
923289803dfba43f676e6e942ba7f480
Any standard AES-256-GCM tool returns the exact same pick — the algorithm is a public standard.
The pick is the first line of the decrypted text. Records sealed from 24 September 2026
are followed by a line break and spaces up to a fixed size, so every encrypted pick has the same length
and its size reveals nothing about the selection before the key is published. The commitment hash is
sha256(first line + key), exactly as before.
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 #968263 · 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.