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

Rotherham United vs Chesterfield

League 2 · England · 29 Aug 2026, 12:00 UTC

Final score
2 : 1
Result
Lost
Pick
Chesterfield
Market
1X2
CLV vs fair close
+11.21%
Model prob.
43.3%
Best price
2.50
Min odds
2.35
Stake factor
1.80

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)
/XfJf3AzO6B/yPSdj1xBnMO4payLLwU90FudtnM+ZUKsAnAh9vSVileMGbwMxN4/kInj7Hp6Vt8g18v2DIKII+Uh/We+LQUCvFtupMQiSzqdPIcWKzQT9X76Nbsd9ptOK5RxkkwaX5emFPtdiQArLFgU8m8tx7e1aDWegENMikJrOaVmmQGrj7L7OWw9DyprPmy3G3cIUPFp21+HSKWKPulqqGuqb3U8pJ4+BlY7vbT42p5mGisY3gHSCzi+SD9O5IhKKNpKYYTYkwz6eRX5GQ+x6TrRWhsdFfKNbHqc6iShFs9j2A8yaqsaDy9GlMYU9J7dl1jKN9jR8sDvKwvUMDozO2tYFxlyb8gKmEW0
key fingerprint sha256: a861c02573918f803531cf8bc6488cd00fba2817ab8f2ee496668d426d70eecf
Decrypt it & read the pick
Decryption key (released after the match)
ba085626928fbb3073ff672c73259576d62dc1f96881b8b57d72e8c486760346
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("/XfJf3AzO6B/yPSdj1xBnMO4payLLwU90FudtnM+ZUKsAnAh9vSVileMGbwMxN4/kInj7Hp6Vt8g18v2DIKII+Uh/We+LQUCvFtupMQiSzqdPIcWKzQT9X76Nbsd9ptOK5RxkkwaX5emFPtdiQArLFgU8m8tx7e1aDWegENMikJrOaVmmQGrj7L7OWw9DyprPmy3G3cIUPFp21+HSKWKPulqqGuqb3U8pJ4+BlY7vbT42p5mGisY3gHSCzi+SD9O5IhKKNpKYYTYkwz6eRX5GQ+x6TrRWhsdFfKNbHqc6iShFs9j2A8yaqsaDy9GlMYU9J7dl1jKN9jR8sDvKwvUMDozO2tYFxlyb8gKmEW0"), c => c.charCodeAt(0));
const key  = Uint8Array.from("ba085626928fbb3073ff672c73259576d62dc1f96881b8b57d72e8c486760346".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): ba085626928fbb3073ff672c73259576d62dc1f96881b8b57d72e8c486760346
  • IV / nonce (hex): fd77c97f70333ba07fc8f49d
  • Ciphertext (hex): 8f5c419cc3b8a5ac8b2f053dd05b9db6733e6542ac027021f6f4958a578c19bc0cc4de3f9089e3ec7a7a56df20d7cbf60c828823e521fd67be2d0502bc5b6ea4c4224b3a9d3c87162b3413f57efa35bb1df69b4e2b9471924c1a5f97a614fb5d89002b2c5814f26f2dc7b7b568359e80434c8a426b39a5669901ab8fb2fb396c3d0f2a6b3e6cb71b770850f169db5f8748a58a3ee96aa86baa6f753ca49e3e06563bbdb4f8da9e661a2b18de01d20b38be483f4ee4884a28da4a6184d8930cfa7915f9190fb1e93ad15a1b1d15f28d6c7a9cea24a116cf63d80f326aab1a0f2f4694c614f49edd9758ca37d8d1f2c0ef2b0b
  • Auth tag (hex): d4303a333b6b581719726fc80a9845b4

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