Cerro Porteño vs Sportivo Luqueño
Division 1 · Paraguay · 01 Aug 2026, 21:30 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.
GvQesShzV4AbQFmF41ZmSjJKPD76Bj3222YWAVpaVwIcnZc7ZGA1wCWLcni1JgjsWbt8T62aVBTicw+dandlaJRsoGrhmvTkHDYt0aFXHaKuTDCH9NTKaDA1kpHnpYUeodkhxEBrx+s2CO+CdOtQwroGKYpAHFHLR9DfZ781eqoBjuTQwTjd8lnuZJ0rKI7ZSXGHFyZX15ud9jvcBO29y+Fium0miNYBVgLHiPYpRwgcWAocAEXswZjq7AH5gVjw5kbURj+wvHWIncrcOy3HnmfGYeDFbdIQTf9GJIdau6qd90H2M5RL9dZGVW8PfU6INHwyUAY0AQqAxats9wXfb11dy23mxNu4HUt8udgf
9bb70f782f1b9c230f41efd849322d830d908f88ca12bc23fc13dcdb3736e3f8Decrypt 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("GvQesShzV4AbQFmF41ZmSjJKPD76Bj3222YWAVpaVwIcnZc7ZGA1wCWLcni1JgjsWbt8T62aVBTicw+dandlaJRsoGrhmvTkHDYt0aFXHaKuTDCH9NTKaDA1kpHnpYUeodkhxEBrx+s2CO+CdOtQwroGKYpAHFHLR9DfZ781eqoBjuTQwTjd8lnuZJ0rKI7ZSXGHFyZX15ud9jvcBO29y+Fium0miNYBVgLHiPYpRwgcWAocAEXswZjq7AH5gVjw5kbURj+wvHWIncrcOy3HnmfGYeDFbdIQTf9GJIdau6qd90H2M5RL9dZGVW8PfU6INHwyUAY0AQqAxats9wXfb11dy23mxNu4HUt8udgf"), c => c.charCodeAt(0));
const key = Uint8Array.from("9bb70f782f1b9c230f41efd849322d830d908f88ca12bc23fc13dcdb3736e3f8".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):
9bb70f782f1b9c230f41efd849322d830d908f88ca12bc23fc13dcdb3736e3f8 - IV / nonce (hex):
1af41eb1287357801b405985 - Ciphertext (hex):
e356664a324a3c3efa063df6db6616015a5a57021c9d973b646035c0258b7278b52608ec59bb7c4fad9a5414e2730f9d6a776568946ca06ae19af4e41c362dd1a1571da2ae4c3087f4d4ca6830359291e7a5851ea1d921c4406bc7eb3608ef8274eb50c2ba06298a401c51cb47d0df67bf357aaa018ee4d0c138ddf259ee649d2b288ed9497187172657d79b9df63bdc04edbdcbe162ba6d2688d6015602c788f62947081c580a1c0045ecc198eaec01f98158f0e646d4463fb0bc75889dcadc3b2dc79e67c661e0c56dd2104dff4624875abbaa9df741f633944bf5d646556f0f7d4e88347c32500634010a80c5ab6cf705 - Auth tag (hex):
df6f5d5dcb6de6c4dbb81d4b7cb9d81f
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 #960435 · 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.