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

Mohammedan Sc Reserve vs Police

Calcutta Premier Division A · India · 20 Jul 2026, 09:30 UTC

Final score
Result
Void
Pick
Police
Market
1x2
Model prob.
27.1%
Best price
4.89
Min odds
4.33
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)
y8MdHDpTAO7YSFxAh7qExNNwlT7DpFiLuntALSBRPsQ26nV8U4SJg0de8aDAJ9tmFyFnCJkACmdQdu5qdn5GQfvEmYBSsqBhE61yMqAyM33KOQ3n7eF2wZlOIjH86TrTt+OuW3l3cCvv9hCsMUd+BBxuN1+nCteDSE5Oa3GRaBfpHhu19aukZsjnJ9PpB40Sal6AeV+PbfRx5qbMXlTlcZw5ez6KiSbfxr2CZCTLtBR8Pv/kYlfjUXTHyAgRduIeFnB2RGjEHxpIFxme+zZN791AyjhWmN4EMDBRwxcJua2DMTIHFUx6NStzEKqRo5/y7k8vsGLvff45r5R0Uf3r6LwrDX3w
key fingerprint sha256: 6e130ed4892b3ef9bb84bc5bd8602c3f5737f1bd9fdd59dc9ce8aa58aa392b9f
Decrypt it & read the pick
Decryption key (released after the match)
7338f773df528883b42f1816f80183172849dec37c74f4ce64a06a9f13db1b40
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("y8MdHDpTAO7YSFxAh7qExNNwlT7DpFiLuntALSBRPsQ26nV8U4SJg0de8aDAJ9tmFyFnCJkACmdQdu5qdn5GQfvEmYBSsqBhE61yMqAyM33KOQ3n7eF2wZlOIjH86TrTt+OuW3l3cCvv9hCsMUd+BBxuN1+nCteDSE5Oa3GRaBfpHhu19aukZsjnJ9PpB40Sal6AeV+PbfRx5qbMXlTlcZw5ez6KiSbfxr2CZCTLtBR8Pv/kYlfjUXTHyAgRduIeFnB2RGjEHxpIFxme+zZN791AyjhWmN4EMDBRwxcJua2DMTIHFUx6NStzEKqRo5/y7k8vsGLvff45r5R0Uf3r6LwrDX3w"), c => c.charCodeAt(0));
const key  = Uint8Array.from("7338f773df528883b42f1816f80183172849dec37c74f4ce64a06a9f13db1b40".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): 7338f773df528883b42f1816f80183172849dec37c74f4ce64a06a9f13db1b40
  • IV / nonce (hex): cbc31d1c3a5300eed8485c40
  • Ciphertext (hex): 87ba84c4d370953ec3a4588bba7b402d20513ec436ea757c53848983475ef1a0c027db661721670899000a675076ee6a767e4641fbc4998052b2a06113ad7232a032337dca390de7ede176c1994e2231fce93ad3b7e3ae5b7977702beff610ac31477e041c6e375fa70ad783484e4e6b71916817e91e1bb5f5aba466c8e727d3e9078d126a5e80795f8f6df471e6a6cc5e54e5719c397b3e8a8926dfc6bd826424cbb4147c3effe46257e35174c7c8081176e21e1670764468c41f1a4817199efb364defdd40ca385698de04303051c31709b9ad83313207154c7a352b7310aa91a39ff2ee4f2fb062
  • Auth tag (hex): ef7dfe39af947451fdebe8bc2b0d7df0

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