Deportivo Garcilaso vs Cusco
Liga 1 · Peru · 23 Aug 2026, 00: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.
xfgsrPQfnQzVKrpUYtFcroToqe1i3tAWeqK+4frP2MZbOo2sxtTqlWsC2EfvLbr6KpI3zfXw+yMZK9xmZwPrNuh5GIm9yxEL98zhRNlXNcqhwLkJ34Vg+4XLyFphs3u1elWtEkJjT/GBs92H6CUb+mzhYKfj4lfrV5HdzxXTpT7upnzT14x028aZGVR6279xJCgkwmkMBSM+HrMGVlagF7DlxrktfGCSeH/UAYwxxU79cOnIe0UrGRerXxeWCFm49lYnB0PbcZRnuoy3TYpLAz8KL+SGc1iTPFRGeMgzfoN+RhSIseGutIlb3Aq++52vyTH0JaLADwfyWwHDqDxcJ4af
98d45f4e1894ca891f614865a0b76be8e88db021fa200f392c8573f804735731Decrypt 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("xfgsrPQfnQzVKrpUYtFcroToqe1i3tAWeqK+4frP2MZbOo2sxtTqlWsC2EfvLbr6KpI3zfXw+yMZK9xmZwPrNuh5GIm9yxEL98zhRNlXNcqhwLkJ34Vg+4XLyFphs3u1elWtEkJjT/GBs92H6CUb+mzhYKfj4lfrV5HdzxXTpT7upnzT14x028aZGVR6279xJCgkwmkMBSM+HrMGVlagF7DlxrktfGCSeH/UAYwxxU79cOnIe0UrGRerXxeWCFm49lYnB0PbcZRnuoy3TYpLAz8KL+SGc1iTPFRGeMgzfoN+RhSIseGutIlb3Aq++52vyTH0JaLADwfyWwHDqDxcJ4af"), c => c.charCodeAt(0));
const key = Uint8Array.from("98d45f4e1894ca891f614865a0b76be8e88db021fa200f392c8573f804735731".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):
98d45f4e1894ca891f614865a0b76be8e88db021fa200f392c8573f804735731 - IV / nonce (hex):
c5f82cacf41f9d0cd52aba54 - Ciphertext (hex):
62d15cae84e8a9ed62ded0167aa2bee1facfd8c65b3a8dacc6d4ea956b02d847ef2dbafa2a9237cdf5f0fb23192bdc666703eb36e8791889bdcb110bf7cce144d95735caa1c0b909df8560fb85cbc85a61b37bb57a55ad1242634ff181b3dd87e8251bfa6ce160a7e3e257eb5791ddcf15d3a53eeea67cd3d78c74dbc69919547adbbf71242824c2690c05233e1eb3065656a017b0e5c6b92d7c6092787fd4018c31c54efd70e9c87b452b1917ab5f17960859b8f656270743db719467ba8cb74d8a4b033f0a2fe4867358933c544678c8337e837e461488b1e1aeb4895bdc0abefb9dafc931 - Auth tag (hex):
f425a2c00f07f25b01c3a83c5c27869f
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 #963367 · 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.