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

Deportivo Saprissa vs Alianza

Concacaf Central American Cup · North & Central America · 06 Aug 2026, 02:00 UTC

Final score
2 : 1
Result
Won
Pick
Deportivo Saprissa
Market
1x2
Model prob.
74.6%
Best price
1.54
Min odds
1.42
Stake factor
2.20

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)
aIxWLjQOMx08CrAnNrZlxuywT240pp7c6dBh2jsejWpjgCnn80IEJYmwxboi0JlxU8JraF/wg6qohMza5utM3S+EHcjze66tsnveMYU9lCQ+fzr0XvU4L1ZawhDjXgsN8a6fIkkRlsN27w/t126Z4EX9IggYSPvHwuseHR6Nk4g+5L8IQ0rfKCY04zhs/RX0bx8Lb94n3lqjyvZHhpalyZZla/mUDo8Hs7gcmiFr4xJd2tdt2WBF2n7VkxfJsuWJ2FRgWGstyGUo6s6b80xecN6kh+OMLqIByupU4hnW7n+wU8BMRMTZTkQ3nL7Zi2+VmWPwMAld/cz8r82UCHzsYAJpjQ/tSQc1gUJxrVeKam9loOg=
key fingerprint sha256: 483bd01af9d15ea668f5548f66a903f1991c8e41c91021cca9512a8f80976dd0
Decrypt it & read the pick
Decryption key (released after the match)
2a82ba47c2ae03939ccf04abef31e8805f01a1dd3f0b9732c42b7ad7b2c9f59b
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("aIxWLjQOMx08CrAnNrZlxuywT240pp7c6dBh2jsejWpjgCnn80IEJYmwxboi0JlxU8JraF/wg6qohMza5utM3S+EHcjze66tsnveMYU9lCQ+fzr0XvU4L1ZawhDjXgsN8a6fIkkRlsN27w/t126Z4EX9IggYSPvHwuseHR6Nk4g+5L8IQ0rfKCY04zhs/RX0bx8Lb94n3lqjyvZHhpalyZZla/mUDo8Hs7gcmiFr4xJd2tdt2WBF2n7VkxfJsuWJ2FRgWGstyGUo6s6b80xecN6kh+OMLqIByupU4hnW7n+wU8BMRMTZTkQ3nL7Zi2+VmWPwMAld/cz8r82UCHzsYAJpjQ/tSQc1gUJxrVeKam9loOg="), c => c.charCodeAt(0));
const key  = Uint8Array.from("2a82ba47c2ae03939ccf04abef31e8805f01a1dd3f0b9732c42b7ad7b2c9f59b".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): 2a82ba47c2ae03939ccf04abef31e8805f01a1dd3f0b9732c42b7ad7b2c9f59b
  • IV / nonce (hex): 688c562e340e331d3c0ab027
  • Ciphertext (hex): 36b665c6ecb04f6e34a69edce9d061da3b1e8d6a638029e7f342042589b0c5ba22d0997153c26b685ff083aaa884ccdae6eb4cdd2f841dc8f37baeadb27bde31853d94243e7f3af45ef5382f565ac210e35e0b0df1ae9f22491196c376ef0fedd76e99e045fd22081848fbc7c2eb1e1d1e8d93883ee4bf08434adf282634e3386cfd15f46f1f0b6fde27de5aa3caf6478696a5c996656bf9940e8f07b3b81c9a216be3125ddad76dd96045da7ed59317c9b2e589d85460586b2dc86528eace9bf34c5e70dea487e38c2ea201caea54e219d6ee7fb053c04c44c4d94e44379cbed98b6f959963f030095dfdccfcafcd94087cec6002698d
  • Auth tag (hex): 0fed490735814271ad578a6a6f65a0e8

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