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

Dartford vs Chatham Town

Isthmian Premier League · England · 31 Aug 2026, 14:00 UTC

Final score
1 : 0
Result
Lost
Pick
Chatham Town
Market
1X2
CLV vs fair close
+0.71%
Model prob.
44.9%
Best price
2.62
Min odds
2.27
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)
6QXyjghmO2NwRiVhOhn+EU75guaTD77r+1z0s7CgBNARJE7q+S33qeXuQTBVuo+X+N6VV3LkyYXMJN1PyrEfa7waJYxxRzQU8jl8quVKTyyz7ZcmWBhJCAKhDc0q+zTLVWVAQ/5pYO8cLIsNjaYJvPG20xZYkQNa68LMOfjTxlLfnbtPM8icpQrqe6GPlDu6MVz653+ADEM82eM37u/OG0DVmUVCVLxbnMEmbaIRF0AztDrvYsuRaHQbsztITuhyrMEQZqvzqm7njJ6VHwKVdpvaNsNgVMNXMQXFO1IxKl2ZQM/Hs2pp4wX5PqrJ6Id6MjrwtTOvb8gE6VINum/p9xATgSDH4dMMxSoQZylg
key fingerprint sha256: c7bfdd50c50533ea567b220b58fb29219aacd3b4e4e2211606967717a35aade0
Decrypt it & read the pick
Decryption key (released after the match)
ee5ade54e548b933433a63f71e511a323adea323b890dcdfdf0344500c2517cb
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("6QXyjghmO2NwRiVhOhn+EU75guaTD77r+1z0s7CgBNARJE7q+S33qeXuQTBVuo+X+N6VV3LkyYXMJN1PyrEfa7waJYxxRzQU8jl8quVKTyyz7ZcmWBhJCAKhDc0q+zTLVWVAQ/5pYO8cLIsNjaYJvPG20xZYkQNa68LMOfjTxlLfnbtPM8icpQrqe6GPlDu6MVz653+ADEM82eM37u/OG0DVmUVCVLxbnMEmbaIRF0AztDrvYsuRaHQbsztITuhyrMEQZqvzqm7njJ6VHwKVdpvaNsNgVMNXMQXFO1IxKl2ZQM/Hs2pp4wX5PqrJ6Id6MjrwtTOvb8gE6VINum/p9xATgSDH4dMMxSoQZylg"), c => c.charCodeAt(0));
const key  = Uint8Array.from("ee5ade54e548b933433a63f71e511a323adea323b890dcdfdf0344500c2517cb".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): ee5ade54e548b933433a63f71e511a323adea323b890dcdfdf0344500c2517cb
  • IV / nonce (hex): e905f28e08663b6370462561
  • Ciphertext (hex): 3a19fe114ef982e6930fbeebfb5cf4b3b0a004d011244eeaf92df7a9e5ee413055ba8f97f8de955772e4c985cc24dd4fcab11f6bbc1a258c71473414f2397caae54a4f2cb3ed97265818490802a10dcd2afb34cb55654043fe6960ef1c2c8b0d8da609bcf1b6d3165891035aebc2cc39f8d3c652df9dbb4f33c89ca50aea7ba18f943bba315cfae77f800c433cd9e337eeefce1b40d599454254bc5b9cc1266da211174033b43aef62cb9168741bb33b484ee872acc11066abf3aa6ee78c9e951f0295769bda36c36054c3573105c53b52312a5d9940cfc7b36a69e305f93eaac9e8877a323af0b533af6fc804e9520dba6f
  • Auth tag (hex): e9f710138120c7e1d30cc52a10672960

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