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

CSKA Sofia vs OFI Crete

Europa League Qualifiers · UEFA · 27 Aug 2026, 18:00 UTC

Final score
0 : 2
Result
Lost
Pick
CSKA Sofia
Market
1X2
CLV vs fair close
-8.35%
Model prob.
66.5%
Best price
1.60
Min odds
1.53
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)
JOILZkJfTCqa/GMrTzu5vGJAevMLDVyVwWFuysXDGbvXKrpXM6VTILiMuj0+duYIRODc6Nkl/WKHkWEd3gErEUVBUhfa9Sv+mmb5Ovd1t95gBs/2/7FRiG/QOggjjTXyMRis4qcuyKTnCghampxMvqtguh50FNf9HnqDXnKpS9aKW+syLD08QcfLIXeiteCp9LxDvOnyD0fLC01VU/jMCLmEPMZhsNglhoKawTUdtpnCPfRTcbv92uK66TFeZ8WnlKkyYEyWi77qshUl1teQqboFlSJkOwFBGGzyFQPDth9ncAtCW8Zunvqg+s1BsVLSFafmS7gP7m08imcb0ho2tSUMFsmN561c6MZs
key fingerprint sha256: b7eb99c4bbc965d44cdb91005d208049813bea6f72ee0d9bbfd0406248f7115e
Decrypt it & read the pick
Decryption key (released after the match)
38fe126d2f5f5d332580d51ae161ffb26d7dc5f1beb18d854a00d05edfd633e1
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("JOILZkJfTCqa/GMrTzu5vGJAevMLDVyVwWFuysXDGbvXKrpXM6VTILiMuj0+duYIRODc6Nkl/WKHkWEd3gErEUVBUhfa9Sv+mmb5Ovd1t95gBs/2/7FRiG/QOggjjTXyMRis4qcuyKTnCghampxMvqtguh50FNf9HnqDXnKpS9aKW+syLD08QcfLIXeiteCp9LxDvOnyD0fLC01VU/jMCLmEPMZhsNglhoKawTUdtpnCPfRTcbv92uK66TFeZ8WnlKkyYEyWi77qshUl1teQqboFlSJkOwFBGGzyFQPDth9ncAtCW8Zunvqg+s1BsVLSFafmS7gP7m08imcb0ho2tSUMFsmN561c6MZs"), c => c.charCodeAt(0));
const key  = Uint8Array.from("38fe126d2f5f5d332580d51ae161ffb26d7dc5f1beb18d854a00d05edfd633e1".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): 38fe126d2f5f5d332580d51ae161ffb26d7dc5f1beb18d854a00d05edfd633e1
  • IV / nonce (hex): 24e20b66425f4c2a9afc632b
  • Ciphertext (hex): 4f3bb9bc62407af30b0d5c95c1616ecac5c319bbd72aba5733a55320b88cba3d3e76e60844e0dce8d925fd628791611dde012b1145415217daf52bfe9a66f93af775b7de6006cff6ffb151886fd03a08238d35f23118ace2a72ec8a4e70a085a9a9c4cbeab60ba1e7414d7fd1e7a835e72a94bd68a5beb322c3d3c41c7cb2177a2b5e0a9f4bc43bce9f20f47cb0b4d5553f8cc08b9843cc661b0d82586829ac1351db699c23df45371bbfddae2bae9315e67c5a794a932604c968bbeeab21525d6d790a9ba059522643b0141186cf21503c3b61f67700b425bc66e9efaa0facd41b152d215a7e64bb80fee6d3c8a67
  • Auth tag (hex): 1bd21a36b5250c16c98de7ad5ce8c66c

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