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

El Nacional vs Cumbaya

Liga Pro Serie B · Ecuador · 08 Jul 2026, 20:00 UTC

Final score
0 : 1
Result
Won
Pick
Cumbaya
Market
1x2
Model prob.
50.9%
Best price
2.24
Min odds
2.13
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)
n/f4Rv51tvlpKiB3Pc2ytWEcpelcnQ4YOQ+uRHNe75jLs86+4DujxGZRpeSO506Kxm/wcWOJrA8cjpPcWiSpe9N6sbaLbemCXZv03tcxiZTlXMbu1zn7mlsfki0oV5dJ0CkVxs744Mq87PGbeZlMhx2DS5SVqQW+1W6u/g71Wv/mgT+IwfKLJ8iJHjC0gX2c2aHFGin4cnbroDlkl1vMrPrU885UzO3BJiVLnJFIQY7C61neyL3Kd9vZrFZfkSRbYzOjSf+Ak3GkHAkiFwj36u8amsk0nDIHFnqguiqPMA9Ctk/sEFEhLL9R6uLMdmccHpe47AprDA7/h548ieEFt3kL5Wbc4Uo=
key fingerprint sha256: ad32290125f405d4770be9676e4a67f7639caee81ea1f59009a828163ffcec3d
Decrypt it & read the pick
Decryption key (released after the match)
312c406f8c841d3964e1fad777bb171f868aee8da5294879b7d65ad1b1625b0e
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("n/f4Rv51tvlpKiB3Pc2ytWEcpelcnQ4YOQ+uRHNe75jLs86+4DujxGZRpeSO506Kxm/wcWOJrA8cjpPcWiSpe9N6sbaLbemCXZv03tcxiZTlXMbu1zn7mlsfki0oV5dJ0CkVxs744Mq87PGbeZlMhx2DS5SVqQW+1W6u/g71Wv/mgT+IwfKLJ8iJHjC0gX2c2aHFGin4cnbroDlkl1vMrPrU885UzO3BJiVLnJFIQY7C61neyL3Kd9vZrFZfkSRbYzOjSf+Ak3GkHAkiFwj36u8amsk0nDIHFnqguiqPMA9Ctk/sEFEhLL9R6uLMdmccHpe47AprDA7/h548ieEFt3kL5Wbc4Uo="), c => c.charCodeAt(0));
const key  = Uint8Array.from("312c406f8c841d3964e1fad777bb171f868aee8da5294879b7d65ad1b1625b0e".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): 312c406f8c841d3964e1fad777bb171f868aee8da5294879b7d65ad1b1625b0e
  • IV / nonce (hex): 9ff7f846fe75b6f9692a2077
  • Ciphertext (hex): 3dcdb2b5611ca5e95c9d0e18390fae44735eef98cbb3cebee03ba3c46651a5e48ee74e8ac66ff0716389ac0f1c8e93dc5a24a97bd37ab1b68b6de9825d9bf4ded7318994e55cc6eed739fb9a5b1f922d28579749d02915c6cef8e0cabcecf19b79994c871d834b9495a905bed56eaefe0ef55affe6813f88c1f28b27c8891e30b4817d9cd9a1c51a29f87276eba03964975bccacfad4f3ce54ccedc126254b9c9148418ec2eb59dec8bdca77dbd9ac565f91245b6333a349ff809371a41c09221708f7eaef1a9ac9349c3207167aa0ba2a8f300f42b64fec1051212cbf51eae2cc76671c1e97b8ec0a6b0c
  • Auth tag (hex): 0eff879e3c89e105b7790be566dce14a

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