Vasco da Gama vs Coritiba
Serie A · Brazil · 19 Sept 2026, 23: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.
M6TTAzceMEdMoxDi9mZFwcj/A+JBYNSoV3YETrMoTbQzugNwTOIp+AEd6srRuVREg2Ydn2wPAsO4NKTHpF1DqJakKzEPcDGr+qdT7qwrDzO/KpDDDYLYYiG2ZOXJGHl4et9VmJM0XoIiqJVoWE7e4OifEKVu7VksOECzFvNowW03g1pveaEG6L28Gs75+hkJDwrlp5vT2p2ZtLW3jjU42ofXDufeFbywtoj3068bzaBnY28/IkqTsq2m1cXVUVbBdS8iKLxJKrFHnKI/W4ETF/ZqWQc5XTaRDbJ6wbCggpQzI0+ydFQ/bYrkQ2EmDF3RxwecQVWL9gzzE+uDWFwHlf1dn050q+knwDEJQh6K
e402000541cb9a4835b458270527777bb9d8e90f734b458a8b36027393efa879Decrypt 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("M6TTAzceMEdMoxDi9mZFwcj/A+JBYNSoV3YETrMoTbQzugNwTOIp+AEd6srRuVREg2Ydn2wPAsO4NKTHpF1DqJakKzEPcDGr+qdT7qwrDzO/KpDDDYLYYiG2ZOXJGHl4et9VmJM0XoIiqJVoWE7e4OifEKVu7VksOECzFvNowW03g1pveaEG6L28Gs75+hkJDwrlp5vT2p2ZtLW3jjU42ofXDufeFbywtoj3068bzaBnY28/IkqTsq2m1cXVUVbBdS8iKLxJKrFHnKI/W4ETF/ZqWQc5XTaRDbJ6wbCggpQzI0+ydFQ/bYrkQ2EmDF3RxwecQVWL9gzzE+uDWFwHlf1dn050q+knwDEJQh6K"), c => c.charCodeAt(0));
const key = Uint8Array.from("e402000541cb9a4835b458270527777bb9d8e90f734b458a8b36027393efa879".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):
e402000541cb9a4835b458270527777bb9d8e90f734b458a8b36027393efa879 - IV / nonce (hex):
33a4d303371e30474ca310e2 - Ciphertext (hex):
f66645c1c8ff03e24160d4a85776044eb3284db433ba03704ce229f8011deacad1b9544483661d9f6c0f02c3b834a4c7a45d43a896a42b310f7031abfaa753eeac2b0f33bf2a90c30d82d86221b664e5c91879787adf559893345e8222a89568584edee0e89f10a56eed592c3840b316f368c16d37835a6f79a106e8bdbc1acef9fa19090f0ae5a79bd3da9d99b4b5b78e3538da87d70ee7de15bcb0b688f7d3af1bcda067636f3f224a93b2ada6d5c5d55156c1752f2228bc492ab1479ca23f5b811317f66a5907395d36910db27ac1b0a0829433234fb274543f6d8ae44361260c5dd1c7079c41558bf60cf313eb83585c - Auth tag (hex):
0795fd5d9f4e74abe927c03109421e8a
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 #966712 · 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.