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

Torquay United vs Exeter City

Club Friendlies 3 · World · 31 Jul 2026, 18:30 UTC

Final score
2 : 1
Result
Lost
Pick
Exeter City
Market
1x2
Model prob.
35.3%
Best price
4.12
Min odds
3.20
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)
HHs8L8cQbWkkUYt8XAuZV3vUwiPxaStzXG9wgu8bne2GWu+Ck6i1LxitgGrJab88Q05KfsUKc/dYDs8pc5CcUcOVrAAjPZu5KYmNRfuYHQ3+v1Z0gkbERYLmgu+81u8qVMQo7Lq20sVDoKGCZfI4vtQ8gAZNdPFDH8SWL8mmjnkmGFxJKPVnSuP5UUMwNJdxc6+gPN1XjWfRJfgY2wtbFIB7X4/r8ci1Q4GyD+/f8chzTxCwkjdOZoB1WMdAR2RkabwcIqCsBdZBLhouMOhB0iSY4xuyJWhxjkIYE4929lAvAPi+bcEq0jHyP2R9OE/wKBmqSDCCckRebHcyQQofoL5nMyzgRWvMTQ==
key fingerprint sha256: 66170c231326414522084c7d72715936e6ba8d9bc256aff8ecab6f39f8140d41
Decrypt it & read the pick
Decryption key (released after the match)
1e32e3601d75ea3e27839d3a9f1713e800831da26e285217e0cd88acdf090448
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("HHs8L8cQbWkkUYt8XAuZV3vUwiPxaStzXG9wgu8bne2GWu+Ck6i1LxitgGrJab88Q05KfsUKc/dYDs8pc5CcUcOVrAAjPZu5KYmNRfuYHQ3+v1Z0gkbERYLmgu+81u8qVMQo7Lq20sVDoKGCZfI4vtQ8gAZNdPFDH8SWL8mmjnkmGFxJKPVnSuP5UUMwNJdxc6+gPN1XjWfRJfgY2wtbFIB7X4/r8ci1Q4GyD+/f8chzTxCwkjdOZoB1WMdAR2RkabwcIqCsBdZBLhouMOhB0iSY4xuyJWhxjkIYE4929lAvAPi+bcEq0jHyP2R9OE/wKBmqSDCCckRebHcyQQofoL5nMyzgRWvMTQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("1e32e3601d75ea3e27839d3a9f1713e800831da26e285217e0cd88acdf090448".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): 1e32e3601d75ea3e27839d3a9f1713e800831da26e285217e0cd88acdf090448
  • IV / nonce (hex): 1c7b3c2fc7106d6924518b7c
  • Ciphertext (hex): 5c0b99577bd4c223f1692b735c6f7082ef1b9ded865aef8293a8b52f18ad806ac969bf3c434e4a7ec50a73f7580ecf2973909c51c395ac00233d9bb929898d45fb981d0dfebf56748246c44582e682efbcd6ef2a54c428ecbab6d2c543a0a18265f238bed43c80064d74f1431fc4962fc9a68e7926185c4928f5674ae3f951433034977173afa03cdd578d67d125f818db0b5b14807b5f8febf1c8b54381b20fefdff1c8734f10b092374e66807558c74047646469bc1c22a0ac05d6412e1a2e30e841d22498e31bb22568718e4218138f76f6502f00f8be6dc12ad231f23f647d384ff02819aa48308272445e
  • Auth tag (hex): 6c7732410a1fa0be67332ce0456bcc4d

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