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

Stade Tunisien vs Club Africain

League 1 · Tunisia · 17 Sept 2026, 15:00 UTC

Final score
0 : 0
Result
Won
Pick
Draw
Market
1X2
CLV vs fair close
+6.50%
Model prob.
39.0%
Best price
2.70
Min odds
2.62
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)
ImfUID+KglyPCoAJP4DIpgMGIvI0FYcSbsPELC4niRu++SSMIUxBGB9GPDqFNJfRx/cuy/hTye0xCqzsGlCEz4nfwXLxleNl+alKEdNaybvnxikgXHMssip486i4ei+viz4ztD3cMCsXRn2gBQ+QsLnX1ONYNfNMxS5KWF1mDPVMt2CZdW68r9ZY9N7sfARF9fx2aQ5jVBhi1LXdbIHRdleQEfF8DxOMUIZUJyoaOMZpqXrlsKKpu58N894+RhxXCHmK22/wevcC8BraG900gjeSxkPmpFahv36S8TMY+AX+pzjSMrhOeMepDvBSk3mT2MZuVA1EFgWwdvL1393N+Q6d
key fingerprint sha256: efe8f0c8e1fbe7f2b4b1255bc9b14ec44e67d1acf2204e362b283a44068563b6
Decrypt it & read the pick
Decryption key (released after the match)
a33497fd1548daff966ac33f00bea59e9cb73bb0a60e08474759b886b4f3dc59
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("ImfUID+KglyPCoAJP4DIpgMGIvI0FYcSbsPELC4niRu++SSMIUxBGB9GPDqFNJfRx/cuy/hTye0xCqzsGlCEz4nfwXLxleNl+alKEdNaybvnxikgXHMssip486i4ei+viz4ztD3cMCsXRn2gBQ+QsLnX1ONYNfNMxS5KWF1mDPVMt2CZdW68r9ZY9N7sfARF9fx2aQ5jVBhi1LXdbIHRdleQEfF8DxOMUIZUJyoaOMZpqXrlsKKpu58N894+RhxXCHmK22/wevcC8BraG900gjeSxkPmpFahv36S8TMY+AX+pzjSMrhOeMepDvBSk3mT2MZuVA1EFgWwdvL1393N+Q6d"), c => c.charCodeAt(0));
const key  = Uint8Array.from("a33497fd1548daff966ac33f00bea59e9cb73bb0a60e08474759b886b4f3dc59".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): a33497fd1548daff966ac33f00bea59e9cb73bb0a60e08474759b886b4f3dc59
  • IV / nonce (hex): 2267d4203f8a825c8f0a8009
  • Ciphertext (hex): 3f80c8a6030622f2341587126ec3c42c2e27891bbef9248c214c41181f463c3a853497d1c7f72ecbf853c9ed310aacec1a5084cf89dfc172f195e365f9a94a11d35ac9bbe7c629205c732cb22a78f3a8b87a2faf8b3e33b43ddc302b17467da0050f90b0b9d7d4e35835f34cc52e4a585d660cf54cb76099756ebcafd658f4deec7c0445f5fc76690e63541862d4b5dd6c81d176579011f17c0f138c508654272a1a38c669a97ae5b0a2a9bb9f0df3de3e461c5708798adb6ff07af702f01ada1bdd34823792c643e6a456a1bf7e92f13318f805fea738d232b84e78c7a90ef052937993d8c6
  • Auth tag (hex): 6e540d441605b076f2f5dfddcdf90e9d

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