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

Accrington Stanley vs Crawley Town

League 2 · England · 05 Sept 2026, 14:00 UTC

Final score
3 : 2
Result
Lost
Pick
Crawley Town
Market
1X2
CLV vs fair close
-2.29%
Model prob.
30.6%
Best price
3.45
Min odds
3.33
Stake factor
1.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)
M9NjGbRNJuMI1g+5BwGGj3z0AfEVbZLPitrI+C/52M3ChW9KMUCACF4CDrYH5Pj8IgxJbO5nfzDJxlK9TRjlIh6xySL/8kIn+8ed/hzmG3Jv2tDGdL53zN8YFYQKTPqlli77zAWflBc//BhY3fSjgQyQWuC5kwRxLP4AcCXHwwLQxu/xyh4f4Xg8w2hkW/Dg6eqbI+PS53ZssHoFuWj7o8QVPOPpbc33YrKHI2ZUmUPOEret0CuLFJPeuQN0lQMZiJ5zFbWlLB5D+NEb/kXrj5ReUw3R5qe7CRLBVMjsRgfsVrNWx3Ebq0wagB7S3zKgJMMRPzdyR5ES8luAgwstTh6ec3P8PHwSHmvOJXlo
key fingerprint sha256: 084d65ca701b25e833b0e3a285dcf294cbedbb1456bbd746d51906e643696555
Decrypt it & read the pick
Decryption key (released after the match)
4074eb52951ce75e30b79eb4172c400d862a628919e0507c4c4db96cda36a47f
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("M9NjGbRNJuMI1g+5BwGGj3z0AfEVbZLPitrI+C/52M3ChW9KMUCACF4CDrYH5Pj8IgxJbO5nfzDJxlK9TRjlIh6xySL/8kIn+8ed/hzmG3Jv2tDGdL53zN8YFYQKTPqlli77zAWflBc//BhY3fSjgQyQWuC5kwRxLP4AcCXHwwLQxu/xyh4f4Xg8w2hkW/Dg6eqbI+PS53ZssHoFuWj7o8QVPOPpbc33YrKHI2ZUmUPOEret0CuLFJPeuQN0lQMZiJ5zFbWlLB5D+NEb/kXrj5ReUw3R5qe7CRLBVMjsRgfsVrNWx3Ebq0wagB7S3zKgJMMRPzdyR5ES8luAgwstTh6ec3P8PHwSHmvOJXlo"), c => c.charCodeAt(0));
const key  = Uint8Array.from("4074eb52951ce75e30b79eb4172c400d862a628919e0507c4c4db96cda36a47f".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): 4074eb52951ce75e30b79eb4172c400d862a628919e0507c4c4db96cda36a47f
  • IV / nonce (hex): 33d36319b44d26e308d60fb9
  • Ciphertext (hex): 0701868f7cf401f1156d92cf8adac8f82ff9d8cdc2856f4a314080085e020eb607e4f8fc220c496cee677f30c9c652bd4d18e5221eb1c922fff24227fbc79dfe1ce61b726fdad0c674be77ccdf1815840a4cfaa5962efbcc059f94173ffc1858ddf4a3810c905ae0b99304712cfe007025c7c302d0c6eff1ca1e1fe1783cc368645bf0e0e9ea9b23e3d2e7766cb07a05b968fba3c4153ce3e96dcdf762b2872366549943ce12b7add02b8b1493deb90374950319889e7315b5a52c1e43f8d11bfe45eb8f945e530dd1e6a7bb0912c154c8ec4607ec56b356c7711bab4c1a801ed2df32a024c3113f3772479112f25b80830b
  • Auth tag (hex): 2d4e1e9e7373fc3c7c121e6bce257968

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