San Pedro vs Xelajú
Liga Nacional · Guatemala · 25 Jul 2026, 19: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.
wldGGUzFPZ8kJPl5QueB+Ms7W9JvytUEBjV1ISrrCDke6IxyRUN+GG2J5ud/VkXxbuczsWF7FnJf1fNL2q9VniUaWbMnko0ZGyIoiD2x7/ksleytT8BjkYezgyB0X9EfqXFBN7+SGK+Qu+w9305QbTd7X3+mopQqiuXTeqgOBKX4VTEVlz+CjiMBgZ0VOkWoDc2S4pZ3cNGxLLkEDcdk0wft+6gWGKFqnTSojEAjmt7z60f4XigNSZ4nwGjDxmvj0IHnzea9WnyzDrg/yFd1GmZw54+fDJ5zx2ivJ6Hfyir4smwchojKKUCL26h2uast0MX14iZnSZVTdC35btXl7sjCy8OF
c4d6db04cb744ac2719abc28d39bdb51dc4bccb7cff8115429b557f013080919Decrypt 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("wldGGUzFPZ8kJPl5QueB+Ms7W9JvytUEBjV1ISrrCDke6IxyRUN+GG2J5ud/VkXxbuczsWF7FnJf1fNL2q9VniUaWbMnko0ZGyIoiD2x7/ksleytT8BjkYezgyB0X9EfqXFBN7+SGK+Qu+w9305QbTd7X3+mopQqiuXTeqgOBKX4VTEVlz+CjiMBgZ0VOkWoDc2S4pZ3cNGxLLkEDcdk0wft+6gWGKFqnTSojEAjmt7z60f4XigNSZ4nwGjDxmvj0IHnzea9WnyzDrg/yFd1GmZw54+fDJ5zx2ivJ6Hfyir4smwchojKKUCL26h2uast0MX14iZnSZVTdC35btXl7sjCy8OF"), c => c.charCodeAt(0));
const key = Uint8Array.from("c4d6db04cb744ac2719abc28d39bdb51dc4bccb7cff8115429b557f013080919".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):
c4d6db04cb744ac2719abc28d39bdb51dc4bccb7cff8115429b557f013080919 - IV / nonce (hex):
c25746194cc53d9f2424f979 - Ciphertext (hex):
42e781f8cb3b5bd26fcad504063575212aeb08391ee88c7245437e186d89e6e77f5645f16ee733b1617b16725fd5f34bdaaf559e251a59b327928d191b2228883db1eff92c95ecad4fc0639187b38320745fd11fa9714137bf9218af90bbec3ddf4e506d377b5f7fa6a2942a8ae5d37aa80e04a5f8553115973f828e2301819d153a45a80dcd92e2967770d1b12cb9040dc764d307edfba81618a16a9d34a88c40239adef3eb47f85e280d499e27c068c3c66be3d081e7cde6bd5a7cb30eb83fc857751a6670e78f9f0c9e73c768af27a1dfca2af8b26c1c8688ca29408bdba876b9ab2dd0c5f5e226 - Auth tag (hex):
67499553742df96ed5e5eec8c2cbc385
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 #959534 · 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.