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

Luis Angel Firpo vs CD Olimpia

Central American Cup · CONCACAF · 11 Sept 2026, 03:06 UTC

Final score
0 : 3
Result
Lost
Pick
Draw
Market
1X2
CLV vs fair close
+4.49%
Model prob.
32.0%
Best price
3.30
Min odds
3.19
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)
pKRAI4dqZFWEXxpsESV8R6F+BidX111Xr+eHpDS6f4+SzH2g2XOBt0/M2t0kniz/8OQsTnY+88D7qqLXNQtS/T5kw8RSpz1QBEhkT0CrH+ugAZA3W/vTL1XDZvBJRvbs5bNQvLqOhuDC7vyAbmdnbF1VHT3qmzveQDkVbdzbeUiOUNSKwk4HhmP4rfjszT8xWiGcJ6TLvKT618+77WflH10H96PaIED2hCpPnK7WJp31ZlSGBRqxYFq/cFCAf+iBZI+Qr14jzQNzxojMngCvDn+xT9IX/7UGLMBCSYabUPvVWTSfh+lzGifqKW+OKPowZCUKECoUpmZdmOtGmB+xiGiP
key fingerprint sha256: 0be503e8b22e9d70f076c9ca9adf85c35c169ddbfef2da707a588821f176633d
Decrypt it & read the pick
Decryption key (released after the match)
ed49347468928edb1f2d779dd6540cda1a0f5d630b3e912872313592d8aad66f
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("pKRAI4dqZFWEXxpsESV8R6F+BidX111Xr+eHpDS6f4+SzH2g2XOBt0/M2t0kniz/8OQsTnY+88D7qqLXNQtS/T5kw8RSpz1QBEhkT0CrH+ugAZA3W/vTL1XDZvBJRvbs5bNQvLqOhuDC7vyAbmdnbF1VHT3qmzveQDkVbdzbeUiOUNSKwk4HhmP4rfjszT8xWiGcJ6TLvKT618+77WflH10H96PaIED2hCpPnK7WJp31ZlSGBRqxYFq/cFCAf+iBZI+Qr14jzQNzxojMngCvDn+xT9IX/7UGLMBCSYabUPvVWTSfh+lzGifqKW+OKPowZCUKECoUpmZdmOtGmB+xiGiP"), c => c.charCodeAt(0));
const key  = Uint8Array.from("ed49347468928edb1f2d779dd6540cda1a0f5d630b3e912872313592d8aad66f".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): ed49347468928edb1f2d779dd6540cda1a0f5d630b3e912872313592d8aad66f
  • IV / nonce (hex): a4a44023876a6455845f1a6c
  • Ciphertext (hex): 11257c47a17e062757d75d57afe787a434ba7f8f92cc7da0d97381b74fccdadd249e2cfff0e42c4e763ef3c0fbaaa2d7350b52fd3e64c3c452a73d500448644f40ab1feba00190375bfbd32f55c366f04946f6ece5b350bcba8e86e0c2eefc806e67676c5d551d3dea9b3bde4039156ddcdb79488e50d48ac24e078663f8adf8eccd3f315a219c27a4cbbca4fad7cfbbed67e51f5d07f7a3da2040f6842a4f9caed6269df5665486051ab1605abf7050807fe881648f90af5e23cd0373c688cc9e00af0e7fb14fd217ffb5062cc04249869b50fbd559349f87e9731a27ea296f8e28fa306425
  • Auth tag (hex): 0a102a14a6665d98eb46981fb188688f

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