Sign in
← All matches
✅ Cryptographically verified · sealed pick #1112

Atletico Mineiro U20 vs Coimbra U20

Mineiro U20 · Brazil · 01 Aug 2026, 18:00 UTC

Final score
4 : 3
Result
Won
Pick
Atletico Mineiro U20
Market
1x2
Model prob.
66.6%
Best price
1.66
Min odds
1.60
Stake factor
1.80

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.

Encrypted pick (AES-256-GCM)
wF9dsSsYp+lTfOoE0h1WLmHmKZRVAFSJsdRWFw016rXGJ3yFa1GVoY4S5vZv9pP7axtlATQ8w1Gz/WGWh28ESqqXIXhKg93CR6cjjVw+jemFM5anAfceo29rZ0L7pZ5P6emupDDkZzCQ74EjhIGkaMHiaaKud8R5vcI6am5qHMk3rtmldp42ZwpU2aSAHvow8WYvka3yikAv/8ka3xhrGVFHhj9iJoBb5vw1s5tB4CLhD9TSu/0kUhySZzuEiOmpBYAZPVbg84ZLVl1CNRHoUCV7sdlK+avX1V+bRTnEmOoaZ1IlT6B6BWYfXT+vKLz/DMpFfuWb1gV3+uZXOo8YEPr4GIY7ZRWlKTr2HqK40iBWyGt8
key fingerprint sha256: ab20a86ae099ad19a770d46c281bd6a8813011011e96151155396411f26cb225
Decrypt it & read the pick
Decryption key (released after the match)
55cf7d1c2f64054cdf13a65e51d93177901b3c7bb8e4fd3d8c0302557011ff68
Decrypt 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 F12Console), paste this, press Enter — it decrypts the exact pick shown above:

const blob = Uint8Array.from(atob("wF9dsSsYp+lTfOoE0h1WLmHmKZRVAFSJsdRWFw016rXGJ3yFa1GVoY4S5vZv9pP7axtlATQ8w1Gz/WGWh28ESqqXIXhKg93CR6cjjVw+jemFM5anAfceo29rZ0L7pZ5P6emupDDkZzCQ74EjhIGkaMHiaaKud8R5vcI6am5qHMk3rtmldp42ZwpU2aSAHvow8WYvka3yikAv/8ka3xhrGVFHhj9iJoBb5vw1s5tB4CLhD9TSu/0kUhySZzuEiOmpBYAZPVbg84ZLVl1CNRHoUCV7sdlK+avX1V+bRTnEmOoaZ1IlT6B6BWYfXT+vKLz/DMpFfuWb1gV3+uZXOo8YEPr4GIY7ZRWlKTr2HqK40iBWyGt8"), c => c.charCodeAt(0));
const key  = Uint8Array.from("55cf7d1c2f64054cdf13a65e51d93177901b3c7bb8e4fd3d8c0302557011ff68".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): 55cf7d1c2f64054cdf13a65e51d93177901b3c7bb8e4fd3d8c0302557011ff68
  • IV / nonce (hex): c05f5db12b18a7e9537cea04
  • Ciphertext (hex): d21d562e61e6299455005489b1d456170d35eab5c6277c856b5195a18e12e6f66ff693fb6b1b6501343cc351b3fd6196876f044aaa9721784a83ddc247a7238d5c3e8de9853396a701f71ea36f6b6742fba59e4fe9e9aea430e4673090ef81238481a468c1e269a2ae77c479bdc23a6a6e6a1cc937aed9a5769e36670a54d9a4801efa30f1662f91adf28a402fffc91adf186b195147863f6226805be6fc35b39b41e022e10fd4d2bbfd24521c92673b8488e9a90580193d56e0f3864b565d423511e850257bb1d94af9abd7d55f9b4539c498ea1a6752254fa07a05661f5d3faf28bcff0cca457ee59bd60577fae6573a8f1810faf81886
  • Auth tag (hex): 3b6515a5293af61ea2b8d22056c86b7c

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:

  1. Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
  2. Drop both into opentimestamps.org (or run ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time.
  3. See it independently: block #960567 · 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.