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

São Caetano U20 vs São Bernardo U20

Paulista U20 · Brazil · 17 Jul 2026, 18:00 UTC

Final score
2 : 0
Result
Won
Pick
São Caetano U20
Market
1x2
Model prob.
37.9%
Best price
3.40
Min odds
2.95
Stake factor
3.00

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)
FaOM+NhyuHOulwN7l5kKYa04/iHAhaGpXyxmsoM44htpdhWMI8vncGHvaNm4m4st8hqjoNvpaxaQOr8MgFmrw+D5/3NHuWxjW7skugiYxJYyYU+ZBpIDsHnH26gtjS/M9LBjcUf5gEwA4NN4FUTBEuIiLatEE5tOji697EU7s5CAeLBR6H3w/EzNQwz5pWXjzpRM5BD4WdDIIG7CT052bDkTSUEh86kesH2HCDfV0n5sS/UyplTSjg70pTz5z/UIaPnNzYR+wbRbPFLu2fRiao6m3ylH6IYLs4TdHjtI2MeH5/usIOfrcXFavjJrJT7v6zNEj6eOY0qUXc3zd+Fhhi44YSuGNaohc4Al
key fingerprint sha256: 0381299d9b3fbe4d7b32d0444762fe1b28d1045c4c2b060329569c2546b7c1f5
Decrypt it & read the pick
Decryption key (released after the match)
a7544c98453fba57fa83df5fc69a4c6924f213799ba55d7031da2968fcc20940
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("FaOM+NhyuHOulwN7l5kKYa04/iHAhaGpXyxmsoM44htpdhWMI8vncGHvaNm4m4st8hqjoNvpaxaQOr8MgFmrw+D5/3NHuWxjW7skugiYxJYyYU+ZBpIDsHnH26gtjS/M9LBjcUf5gEwA4NN4FUTBEuIiLatEE5tOji697EU7s5CAeLBR6H3w/EzNQwz5pWXjzpRM5BD4WdDIIG7CT052bDkTSUEh86kesH2HCDfV0n5sS/UyplTSjg70pTz5z/UIaPnNzYR+wbRbPFLu2fRiao6m3ylH6IYLs4TdHjtI2MeH5/usIOfrcXFavjJrJT7v6zNEj6eOY0qUXc3zd+Fhhi44YSuGNaohc4Al"), c => c.charCodeAt(0));
const key  = Uint8Array.from("a7544c98453fba57fa83df5fc69a4c6924f213799ba55d7031da2968fcc20940".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): a7544c98453fba57fa83df5fc69a4c6924f213799ba55d7031da2968fcc20940
  • IV / nonce (hex): 15a38cf8d872b873ae97037b
  • Ciphertext (hex): 97990a61ad38fe21c085a1a95f2c66b28338e21b6976158c23cbe77061ef68d9b89b8b2df21aa3a0dbe96b16903abf0c8059abc3e0f9ff7347b96c635bbb24ba0898c49632614f99069203b079c7dba82d8d2fccf4b0637147f9804c00e0d3781544c112e2222dab44139b4e8e2ebdec453bb3908078b051e87df0fc4ccd430cf9a565e3ce944ce410f859d0c8206ec24f4e766c3913494121f3a91eb07d870837d5d27e6c4bf532a654d28e0ef4a53cf9cff50868f9cdcd847ec1b45b3c52eed9f4626a8ea6df2947e8860bb384dd1e3b48d8c787e7fbac20e7eb71715abe326b253eefeb33448fa78e634a945dcd
  • Auth tag (hex): f377e161862e38612b8635aa21738025

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