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

Santos U20 vs União Suzano U20

Paulista U20 · Brazil · 11 Jul 2026, 13:00 UTC

Final score
6 : 0
Result
Won
Pick
Santos U20
Market
1x2
Model prob.
85.1%
Best price
1.30
Min odds
1.23
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)
thtqXIzNjZSC+OJfhI8V2jXYbVxgXJGuCIYzPHbfM/wdfDq0o/5k84za745WywmvNU0husFRX3oFPa37ki0QzkArnYDyMKxPUOhsoeUWM1nlBwEYSthTrUAVmZRlvQAb/LhpmIv1t9astTRurK3YXJ6h1Uig1D5UL1Z1alV5Rc9G9ZpUw5E3Px9WQWHHcJDoyfMjWHv9uJpZvuAerUQsdLy549Rc1l5EDS85VHnfcO652ub0tI64FErwW+WoXluQjuGg/Pi+Ok5OqIXQvwEwogOvNuIR328Tro4JcHH+fUquE95pjmyB0it5fiAHgbWTPMwUsw8AlpOXGREvvT9uSy6sLn4GVYxSlg==
key fingerprint sha256: ef5bc450aa155559a8bdc701d94d69552e600b952daae069712c9d531b04a075
Decrypt it & read the pick
Decryption key (released after the match)
344e22d8801d396c8888234c60039e532dca338a613082d57c52064733728104
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("thtqXIzNjZSC+OJfhI8V2jXYbVxgXJGuCIYzPHbfM/wdfDq0o/5k84za745WywmvNU0husFRX3oFPa37ki0QzkArnYDyMKxPUOhsoeUWM1nlBwEYSthTrUAVmZRlvQAb/LhpmIv1t9astTRurK3YXJ6h1Uig1D5UL1Z1alV5Rc9G9ZpUw5E3Px9WQWHHcJDoyfMjWHv9uJpZvuAerUQsdLy549Rc1l5EDS85VHnfcO652ub0tI64FErwW+WoXluQjuGg/Pi+Ok5OqIXQvwEwogOvNuIR328Tro4JcHH+fUquE95pjmyB0it5fiAHgbWTPMwUsw8AlpOXGREvvT9uSy6sLn4GVYxSlg=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("344e22d8801d396c8888234c60039e532dca338a613082d57c52064733728104".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): 344e22d8801d396c8888234c60039e532dca338a613082d57c52064733728104
  • IV / nonce (hex): b61b6a5c8ccd8d9482f8e25f
  • Ciphertext (hex): 848f15da35d86d5c605c91ae0886333c76df33fc1d7c3ab4a3fe64f38cdaef8e56cb09af354d21bac1515f7a053dadfb922d10ce402b9d80f230ac4f50e86ca1e5163359e50701184ad853ad4015999465bd001bfcb869988bf5b7d6acb5346eacadd85c9ea1d548a0d43e542f56756a557945cf46f59a54c391373f1f564161c77090e8c9f323587bfdb89a59bee01ead442c74bcb9e3d45cd65e440d2f395479df70eeb9dae6f4b48eb8144af05be5a85e5b908ee1a0fcf8be3a4e4ea885d0bf0130a203af36e211df6f13ae8e097071fe7d4aae13de698e6c81d22b797e200781b5933ccc14b30f00969397
  • Auth tag (hex): 19112fbd3f6e4b2eac2e7e06558c5296

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 #957488 · 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.