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

El-Entag El-Harby vs Ismaily

2nd Division A · Egypt · 11 Sept 2026, 13:30 UTC

Final score
1 : 1
Result
Lost
Pick
Ismaily
Market
1X2
CLV vs fair close
-1.51%
Model prob.
33.8%
Best price
3.30
Min odds
3.02
Stake factor
1.70

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)
8Uf5Imw34IHSFwm8hh6xgrVevRpsTnOnXoX0dwWhst967YR1fBp+6SRO/GCwcHoqBYOvkd0UpmB10BM7A77S8tg8oib/qiRSNDn6RbF2W82znOFlEgKMIyfJEz8lTc1dTOXf13gII01ELY3+SKuOxxCOCgFxSiQNzpW9FwR4Ll0Yt9R+aP1LJgV7AUWQhFMEVSguL5xW1FSdZ/rZNw30CcfPiyu9hSUngom4WgoEquHSITfgnU2BHf+Gy4uXply9w6SCqJXEheeaV6dBJtbwHQB0n7M8IfqY9VLpQKnM+qZ66DhtBxw/UjD9oL1iV793sre1KvrHv5sDdDmtJFVjU40UOeyiBj1abEk=
key fingerprint sha256: 8de10259d294c400a6b0219864730e7f0f1fa207e3f42253f9d94f2dd6b2dec3
Decrypt it & read the pick
Decryption key (released after the match)
4bf74e1bbbcffacdf09db8b78680633063a201c1fe973ec6b41419542a51aef3
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("8Uf5Imw34IHSFwm8hh6xgrVevRpsTnOnXoX0dwWhst967YR1fBp+6SRO/GCwcHoqBYOvkd0UpmB10BM7A77S8tg8oib/qiRSNDn6RbF2W82znOFlEgKMIyfJEz8lTc1dTOXf13gII01ELY3+SKuOxxCOCgFxSiQNzpW9FwR4Ll0Yt9R+aP1LJgV7AUWQhFMEVSguL5xW1FSdZ/rZNw30CcfPiyu9hSUngom4WgoEquHSITfgnU2BHf+Gy4uXply9w6SCqJXEheeaV6dBJtbwHQB0n7M8IfqY9VLpQKnM+qZ66DhtBxw/UjD9oL1iV793sre1KvrHv5sDdDmtJFVjU40UOeyiBj1abEk="), c => c.charCodeAt(0));
const key  = Uint8Array.from("4bf74e1bbbcffacdf09db8b78680633063a201c1fe973ec6b41419542a51aef3".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): 4bf74e1bbbcffacdf09db8b78680633063a201c1fe973ec6b41419542a51aef3
  • IV / nonce (hex): f147f9226c37e081d21709bc
  • Ciphertext (hex): 861eb182b55ebd1a6c4e73a75e85f47705a1b2df7aed84757c1a7ee9244efc60b0707a2a0583af91dd14a66075d0133b03bed2f2d83ca226ffaa24523439fa45b1765bcdb39ce16512028c2327c9133f254dcd5d4ce5dfd77808234d442d8dfe48ab8ec7108e0a01714a240dce95bd1704782e5d18b7d47e68fd4b26057b01459084530455282e2f9c56d4549d67fad9370df409c7cf8b2bbd8525278289b85a0a04aae1d22137e09d4d811dff86cb8b97a65cbdc3a482a895c485e79a57a74126d6f01d00749fb33c21fa98f552e940a9ccfaa67ae8386d071c3f5230fda0bd6257bf77b2b7b52afac7bf9b0374
  • Auth tag (hex): 39ad245563538d1439eca2063d5a6c49

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