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

Estrella Roja vs CD Olimpia

Liga Nacional · Honduras · 30 Aug 2026, 21:00 UTC

Final score
2 : 2
Result
Won
Pick
Draw
Market
1X2
CLV vs fair close
+5.62%
Model prob.
31.1%
Best price
3.40
Min odds
3.28
Stake factor
1.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)
wbrYu1jkikUgnjbQoc3ZNzGxheZWBro6M4521vuAm716Vfd1V2OChynRXZXijeD6wPWhXDdgpOx1a1QTmdxhNzH3IICsGmg1tTqKfNjxnN/Lcpm90cgYNphQVqEyddi/36jjDDFFvcQIwrywDoWJpz/nLv38RYY7W2QLQgG9D7rLnDqzi3XYjX8farTUu2dYQOJn0SbZl7UWihyiCDuKwNSMWkPM7rWSS1TNDgFL5d369nSf1Fl1dv5RstJATA9RQ+SC7Amv8n0E1mt18NU4+Xy/w5QK65zL9wnLLyws6r8+V2upBbLQ12ZypsixLkM7P6hD4q+fMkuRv56xBx6BFJXjef8=
key fingerprint sha256: c3deb4c87ee016321281d797b49118dfc9e57d33df333904a0919ad8024e6a49
Decrypt it & read the pick
Decryption key (released after the match)
b5e3e736d064784902504a74226af6e7dc9a3506ffd853e2f4dc0dee0d0cf294
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("wbrYu1jkikUgnjbQoc3ZNzGxheZWBro6M4521vuAm716Vfd1V2OChynRXZXijeD6wPWhXDdgpOx1a1QTmdxhNzH3IICsGmg1tTqKfNjxnN/Lcpm90cgYNphQVqEyddi/36jjDDFFvcQIwrywDoWJpz/nLv38RYY7W2QLQgG9D7rLnDqzi3XYjX8farTUu2dYQOJn0SbZl7UWihyiCDuKwNSMWkPM7rWSS1TNDgFL5d369nSf1Fl1dv5RstJATA9RQ+SC7Amv8n0E1mt18NU4+Xy/w5QK65zL9wnLLyws6r8+V2upBbLQ12ZypsixLkM7P6hD4q+fMkuRv56xBx6BFJXjef8="), c => c.charCodeAt(0));
const key  = Uint8Array.from("b5e3e736d064784902504a74226af6e7dc9a3506ffd853e2f4dc0dee0d0cf294".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): b5e3e736d064784902504a74226af6e7dc9a3506ffd853e2f4dc0dee0d0cf294
  • IV / nonce (hex): c1bad8bb58e48a45209e36d0
  • Ciphertext (hex): a1cdd93731b185e65606ba3a338e76d6fb809bbd7a55f7755763828729d15d95e28de0fac0f5a15c3760a4ec756b541399dc613731f72080ac1a6835b53a8a7cd8f19cdfcb7299bdd1c81836985056a13275d8bfdfa8e30c3145bdc408c2bcb00e8589a73fe72efdfc45863b5b640b4201bd0fbacb9c3ab38b75d88d7f1f6ab4d4bb675840e267d126d997b5168a1ca2083b8ac0d48c5a43cceeb5924b54cd0e014be5ddfaf6749fd4597576fe51b2d2404c0f5143e482ec09aff27d04d66b75f0d538f97cbfc3940aeb9ccbf709cb2f2c2ceabf3e576ba905b2d0d76672a6c8b12e433b3fa843e2
  • Auth tag (hex): af9f324b91bf9eb1071e811495e379ff

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