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

Deportivo Paraguayo vs Berazategui

Primera C · Argentina · 11 Jul 2026, 17:00 UTC

Final score
0 : 1
Result
Won
Pick
Berazategui
Market
1x2
Model prob.
60.6%
Best price
1.87
Min odds
1.77
Stake factor
2.10

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)
qIAXIpf4XVHDlNAFbuq/88Sl8p6K1cblw4JZkQ9sESRW9CsClb6O1bYDbByuL6BFMEXb/SK4F3KSnxFeLadNZ7fsRuwS0oCVX9rMcxkSaFYS0aG4ALj0qYXDeUF/bmoUdJpD4/ZarM5p9PYX2KufAegVOZso2srHpHfMYNeT98/PBMG78Bjl4uwVnVWkj622za/WFNzo8oWoAkpw3KS8aFuGOL2WULc6vWIIxRr/nsMzet7ob1HJpZfkOVgQgGAPOvtr/fV6Ur5BfIR+blnbJ688jq8orJTF9f0yX0hTSe0Kz9/ZUbzZdFVdveDqLokCoEALhb/S0Tj78PC8FbkaSuXprz5Yn8PQK5PL
key fingerprint sha256: c11e40a0adfdfe04ba02275b32584053f223dbd10cada2218ac832b237867cdb
Decrypt it & read the pick
Decryption key (released after the match)
729a9c40e734b23f77e1995f8738f2bcb49befb9eb46c06cf74372bdb855ad03
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("qIAXIpf4XVHDlNAFbuq/88Sl8p6K1cblw4JZkQ9sESRW9CsClb6O1bYDbByuL6BFMEXb/SK4F3KSnxFeLadNZ7fsRuwS0oCVX9rMcxkSaFYS0aG4ALj0qYXDeUF/bmoUdJpD4/ZarM5p9PYX2KufAegVOZso2srHpHfMYNeT98/PBMG78Bjl4uwVnVWkj622za/WFNzo8oWoAkpw3KS8aFuGOL2WULc6vWIIxRr/nsMzet7ob1HJpZfkOVgQgGAPOvtr/fV6Ur5BfIR+blnbJ688jq8orJTF9f0yX0hTSe0Kz9/ZUbzZdFVdveDqLokCoEALhb/S0Tj78PC8FbkaSuXprz5Yn8PQK5PL"), c => c.charCodeAt(0));
const key  = Uint8Array.from("729a9c40e734b23f77e1995f8738f2bcb49befb9eb46c06cf74372bdb855ad03".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): 729a9c40e734b23f77e1995f8738f2bcb49befb9eb46c06cf74372bdb855ad03
  • IV / nonce (hex): a880172297f85d51c394d005
  • Ciphertext (hex): 6eeabff3c4a5f29e8ad5c6e5c38259910f6c112456f42b0295be8ed5b6036c1cae2fa0453045dbfd22b81772929f115e2da74d67b7ec46ec12d280955fdacc731912685612d1a1b800b8f4a985c379417f6e6a14749a43e3f65aacce69f4f617d8ab9f01e815399b28dacac7a477cc60d793f7cfcf04c1bbf018e5e2ec159d55a48fadb6cdafd614dce8f285a8024a70dca4bc685b8638bd9650b73abd6208c51aff9ec3337adee86f51c9a597e439581080600f3afb6bfdf57a52be417c847e6e59db27af3c8eaf28ac94c5f5fd325f485349ed0acfdfd951bcd974555dbde0ea2e8902a0400b85bfd2d138fbf0f0
  • Auth tag (hex): bc15b91a4ae5e9af3e589fc3d02b93cb

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