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

Tamworth vs Worthing

National League · England · 28 Aug 2026, 18:45 UTC

Final score
3 : 2
Result
Won
Pick
Tamworth
Market
1X2
CLV vs fair close
-7.15%
Model prob.
49.3%
Best price
2.15
Min odds
2.07
Stake factor
1.70

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)
9FgqQIS9SHzf3wCEuRjpxWHfXey+chFGg3P+Koa/3cb/vR7QQk9d17I++7X+MVnzY8wqxJipRhLtNm99M9swQyX+XIyWliPtIl+aSIQ9HwKMeZC/84nCNNsu1XGT9Lu8x5jduLwiDBzYVyongDBu6/gS6cQZMio2UOXyPu3fuOuX/DIq71wQxjJxR3mK9+n4s3LNyVrFajrIfTxJxFGPttYoUZA7JmXBAkW2Ka5PfD10iBPdWFKpBYa7CqjUdK6Bcx7wAEu1yDW8//orXq9hgf307ePRnkVB/9I6MZG+ekc8f3bQ2dwG8SeicOgO72V0qSGXsil/anLBivBhLey5XAoRO6OzZwh57pc=
key fingerprint sha256: e8da0391c226d4eea4999cef2727d1145952a32a9f79a0cc269edbe092cef61e
Decrypt it & read the pick
Decryption key (released after the match)
c74ac338691a0d288dc67bb3dea01b4f072d7a8da36e65d8c701322048d1438f
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("9FgqQIS9SHzf3wCEuRjpxWHfXey+chFGg3P+Koa/3cb/vR7QQk9d17I++7X+MVnzY8wqxJipRhLtNm99M9swQyX+XIyWliPtIl+aSIQ9HwKMeZC/84nCNNsu1XGT9Lu8x5jduLwiDBzYVyongDBu6/gS6cQZMio2UOXyPu3fuOuX/DIq71wQxjJxR3mK9+n4s3LNyVrFajrIfTxJxFGPttYoUZA7JmXBAkW2Ka5PfD10iBPdWFKpBYa7CqjUdK6Bcx7wAEu1yDW8//orXq9hgf307ePRnkVB/9I6MZG+ekc8f3bQ2dwG8SeicOgO72V0qSGXsil/anLBivBhLey5XAoRO6OzZwh57pc="), c => c.charCodeAt(0));
const key  = Uint8Array.from("c74ac338691a0d288dc67bb3dea01b4f072d7a8da36e65d8c701322048d1438f".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): c74ac338691a0d288dc67bb3dea01b4f072d7a8da36e65d8c701322048d1438f
  • IV / nonce (hex): f4582a4084bd487cdfdf0084
  • Ciphertext (hex): b918e9c561df5decbe7211468373fe2a86bfddc6ffbd1ed0424f5dd7b23efbb5fe3159f363cc2ac498a94612ed366f7d33db304325fe5c8c969623ed225f9a48843d1f028c7990bff389c234db2ed57193f4bbbcc798ddb8bc220c1cd8572a2780306eebf812e9c419322a3650e5f23eeddfb8eb97fc322aef5c10c6327147798af7e9f8b372cdc95ac56a3ac87d3c49c4518fb6d62851903b2665c10245b629ae4f7c3d748813dd5852a90586bb0aa8d474ae81731ef0004bb5c835bcfffa2b5eaf6181fdf4ede3d19e4541ffd23a3191be7a473c7f76d0d9dc06f127a270e80eef6574a92197b2297f6a72c18a
  • Auth tag (hex): f0612decb95c0a113ba3b3670879ee97

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