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

ASO Chlef vs Belouizdad

Ligue 1 · Algeria · 05 Sept 2026, 20:00 UTC

Final score
3 : 3
Result
Won
Pick
Draw
Market
1X2
CLV vs fair close
+2.83%
Model prob.
38.6%
Best price
3.20
Min odds
2.64
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)
4IGkLwB6qhujDVYd9FNLE04tDtUn4iVRic28yH3dbZ+au9zwbEC71F52DUb0YBDagU4LS9ET7fjOQq1BjdW8ziOmtsLqYPedyNX9KCUCi95TXkFOkZP6MZpTnWJTOWBPyCmtcjKxfdp2n68uuMERWi8D0GOP+++VqT9wJ5WOgzlHXoYYmTummy5LPtTAEswmqJCoMDWVS+qCVsWTbkWUDI8Vt5Z69jBUfV11QzmBKPzB2MiH26VFIkZthAA4KYX0EROl4SVSTyB9PJGlAy88VjHqD3iEO3dKnRdK4ztPc0iGUEFgYvmS5YKYpvFsk3eElvBKQfdK0WYB3rYtANRU7xF5wN9h
key fingerprint sha256: 59c5cf8837850bcce86d497e40b7a31cfd938cfd8857883e529a81634671b2f9
Decrypt it & read the pick
Decryption key (released after the match)
b5284fe08b9a18d128e806f55567cf1cc546706c20aaa4a51866b6a426791932
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("4IGkLwB6qhujDVYd9FNLE04tDtUn4iVRic28yH3dbZ+au9zwbEC71F52DUb0YBDagU4LS9ET7fjOQq1BjdW8ziOmtsLqYPedyNX9KCUCi95TXkFOkZP6MZpTnWJTOWBPyCmtcjKxfdp2n68uuMERWi8D0GOP+++VqT9wJ5WOgzlHXoYYmTummy5LPtTAEswmqJCoMDWVS+qCVsWTbkWUDI8Vt5Z69jBUfV11QzmBKPzB2MiH26VFIkZthAA4KYX0EROl4SVSTyB9PJGlAy88VjHqD3iEO3dKnRdK4ztPc0iGUEFgYvmS5YKYpvFsk3eElvBKQfdK0WYB3rYtANRU7xF5wN9h"), c => c.charCodeAt(0));
const key  = Uint8Array.from("b5284fe08b9a18d128e806f55567cf1cc546706c20aaa4a51866b6a426791932".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): b5284fe08b9a18d128e806f55567cf1cc546706c20aaa4a51866b6a426791932
  • IV / nonce (hex): e081a42f007aaa1ba30d561d
  • Ciphertext (hex): f4534b134e2d0ed527e2255189cdbcc87ddd6d9f9abbdcf06c40bbd45e760d46f46010da814e0b4bd113edf8ce42ad418dd5bcce23a6b6c2ea60f79dc8d5fd2825028bde535e414e9193fa319a539d625339604fc829ad7232b17dda769faf2eb8c1115a2f03d0638ffbef95a93f7027958e8339475e8618993ba69b2e4b3ed4c012cc26a890a83035954bea8256c5936e45940c8f15b7967af630547d5d7543398128fcc1d8c887dba54522466d8400382985f41113a5e125524f207d3c91a5032f3c5631ea0f78843b774a9d174ae33b4f73488650416062f992e58298a6f16c93778496f04a41f7
  • Auth tag (hex): 4ad16601deb62d00d454ef1179c0df61

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