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

Club Tacuary vs Deportivo Santani

Division Intermedia · Paraguay · 05 Sept 2026, 13:00 UTC

Final score
0 : 3
Result
Lost
Pick
Club Tacuary
Market
1X2
CLV vs fair close
-42.33%
Model prob.
31.8%
Best price
4.50
Min odds
3.20
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)
W8PTwN5mA+rzvWDKRNmiUgSSExiTAfBk85L+v0FhPuhu1lJkkNiNoEvWwr/e2eYTRyvBvYM0ZT6MZLldhmbCbeIfDLMVE8BxmesvFcXTe9QzSNTdI4HsYjM/S9qUxbBu10yjqhJZ48EfJTOmDosAChbji2RLNevFOsF33cXxtBSQoWp3evbRyNzWPMXKTxY6qZNc4w5K/pU0+iYXoXZNI9x5zlKhq4+DiQ2a+AEqjmfnVb0hqedOeY8WiZEqwtVACcfGLGArrmRwK0mZ3gaJ5gVOVscrtA0Kf7PvNTCkzx76ejTnfN2iQTJN0MEOk8B+M1wLN/x70ainWmg2T5wBakxMw4cBYAiYuVfRdg8=
key fingerprint sha256: 95b4a0426a0cc5cc1a11121f8e74a791c412435d901eb75e740b6883fff2f728
Decrypt it & read the pick
Decryption key (released after the match)
797b3a7b25389f923b65d1763ac667fa1911d360df9ded9af0d672a1b015e07b
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("W8PTwN5mA+rzvWDKRNmiUgSSExiTAfBk85L+v0FhPuhu1lJkkNiNoEvWwr/e2eYTRyvBvYM0ZT6MZLldhmbCbeIfDLMVE8BxmesvFcXTe9QzSNTdI4HsYjM/S9qUxbBu10yjqhJZ48EfJTOmDosAChbji2RLNevFOsF33cXxtBSQoWp3evbRyNzWPMXKTxY6qZNc4w5K/pU0+iYXoXZNI9x5zlKhq4+DiQ2a+AEqjmfnVb0hqedOeY8WiZEqwtVACcfGLGArrmRwK0mZ3gaJ5gVOVscrtA0Kf7PvNTCkzx76ejTnfN2iQTJN0MEOk8B+M1wLN/x70ainWmg2T5wBakxMw4cBYAiYuVfRdg8="), c => c.charCodeAt(0));
const key  = Uint8Array.from("797b3a7b25389f923b65d1763ac667fa1911d360df9ded9af0d672a1b015e07b".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): 797b3a7b25389f923b65d1763ac667fa1911d360df9ded9af0d672a1b015e07b
  • IV / nonce (hex): 5bc3d3c0de6603eaf3bd60ca
  • Ciphertext (hex): 44d9a252049213189301f064f392febf41613ee86ed6526490d88da04bd6c2bfded9e613472bc1bd8334653e8c64b95d8666c26de21f0cb31513c07199eb2f15c5d37bd43348d4dd2381ec62333f4bda94c5b06ed74ca3aa1259e3c11f2533a60e8b000a16e38b644b35ebc53ac177ddc5f1b41490a16a777af6d1c8dcd63cc5ca4f163aa9935ce30e4afe9534fa2617a1764d23dc79ce52a1ab8f83890d9af8012a8e67e755bd21a9e74e798f1689912ac2d54009c7c62c602bae64702b4999de0689e6054e56c72bb40d0a7fb3ef3530a4cf1efa7a34e77cdda241324dd0c10e93c07e335c0b37fc7bd1a8a75a68364f
  • Auth tag (hex): 9c016a4c4cc38701600898b957d1760f

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