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

Coal India vs Techno Aryan

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

Final score
1 : 0
Result
Lost
Pick
Draw
Market
1x2
Model prob.
27.2%
Best price
5.77
Min odds
4.31
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)
efA6gpHYjdFGq9j9zX9YiQEiSZoWVwoKiUXbR31r04bl5DqybcolblMuIPSKCyj/EHlaq9FgJ1oHPwbMY2tuV5v9/YiFbderz1MdJz9TFSwhMSC9aLYNMjYZZ98VCJ68xTjHds+RWLq4nTyV0S9JLsZTt/0AhEqWOxUN6OHdKEFOxfEJJ8eRZ6yCxlMcXSO8u5KU+p5uabvjiJE1uNQcpCd5hehicKCvTPdgQNwGoFF5avWMjauXRwDG9FZCwDzdGL2eXKsmUq+aVIQbwmKHYxRtXAaxLoUHUReZOeWyKRG5D+JUTBRsbw2YJKdISgGr16FReEejPtqd9Fc6GqCMde4w
key fingerprint sha256: 2895da3608dfd30360d57b8b926d707783f8f34c7fdbd701af4f553e375ac2a1
Decrypt it & read the pick
Decryption key (released after the match)
98f88f92e7474bb557302a54986e1bf11b6c5dec5b41e71ede5d858d52b04228
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("efA6gpHYjdFGq9j9zX9YiQEiSZoWVwoKiUXbR31r04bl5DqybcolblMuIPSKCyj/EHlaq9FgJ1oHPwbMY2tuV5v9/YiFbderz1MdJz9TFSwhMSC9aLYNMjYZZ98VCJ68xTjHds+RWLq4nTyV0S9JLsZTt/0AhEqWOxUN6OHdKEFOxfEJJ8eRZ6yCxlMcXSO8u5KU+p5uabvjiJE1uNQcpCd5hehicKCvTPdgQNwGoFF5avWMjauXRwDG9FZCwDzdGL2eXKsmUq+aVIQbwmKHYxRtXAaxLoUHUReZOeWyKRG5D+JUTBRsbw2YJKdISgGr16FReEejPtqd9Fc6GqCMde4w"), c => c.charCodeAt(0));
const key  = Uint8Array.from("98f88f92e7474bb557302a54986e1bf11b6c5dec5b41e71ede5d858d52b04228".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): 98f88f92e7474bb557302a54986e1bf11b6c5dec5b41e71ede5d858d52b04228
  • IV / nonce (hex): 79f03a8291d88dd146abd8fd
  • Ciphertext (hex): cd7f58890122499a16570a0a8945db477d6bd386e5e43ab26dca256e532e20f48a0b28ff10795aabd160275a073f06cc636b6e579bfdfd88856dd7abcf531d273f53152c213120bd68b60d32361967df15089ebcc538c776cf9158bab89d3c95d12f492ec653b7fd00844a963b150de8e1dd28414ec5f10927c79167ac82c6531c5d23bcbb9294fa9e6e69bbe3889135b8d41ca4277985e86270a0af4cf76040dc06a051796af58c8dab974700c6f45642c03cdd18bd9e5cab2652af9a54841bc2628763146d5c06b12e850751179939e5b22911b90fe2544c146c6f0d9824a7484a01abd7a1
  • Auth tag (hex): 517847a33eda9df4573a1aa08c75ee30

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