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

Sporting CP vs Strasbourg

Club Friendlies 3 · World · 20 Jul 2026, 00:00 UTC

Final score
7 : 0
Result
Won
Pick
Sporting CP
Market
1x2
Model prob.
64.3%
Best price
1.72
Min odds
1.66
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)
yx7rL+popG/nPfBb1KStiziCNNcztNltP3WXk3vKQ5TnqTumIPNdrP2bPcedQs5jPe1Q4EJx0TJZdkMwyiGo9TYh3XAj8avzcxYpB0pDwFxKrIJALbQUMhJsnL3HR5I13wJNT4TtQ5ZD1WExu8lBhQsPP3O/TiXDTJDRKT6MYH8BHL/Lr9BLllB4Qzd0B4/c/lRV9BMGvArxETHrD7A6VwLZBy4MMGWW/wDy1kLrmJuLhrMGg1IlVayVpcV8H1dXOiGHJtXOR0Jh9Y2J0n1RJ/LC8gvpLZnNAD506VIcpRvj87BfNfzxBw39bhD7eehCbxN3F2Vl1rhDZIGp4AlGLKszGABDRXTdjOCfCw==
key fingerprint sha256: 3654f0861b4c3876d287ca307076cdb995a2426a0e88e4a4f926ae4959639ea5
Decrypt it & read the pick
Decryption key (released after the match)
3002e3a83213ba53188593a5bae835c6f9f0adcc1af26316a386bc8570dac509
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("yx7rL+popG/nPfBb1KStiziCNNcztNltP3WXk3vKQ5TnqTumIPNdrP2bPcedQs5jPe1Q4EJx0TJZdkMwyiGo9TYh3XAj8avzcxYpB0pDwFxKrIJALbQUMhJsnL3HR5I13wJNT4TtQ5ZD1WExu8lBhQsPP3O/TiXDTJDRKT6MYH8BHL/Lr9BLllB4Qzd0B4/c/lRV9BMGvArxETHrD7A6VwLZBy4MMGWW/wDy1kLrmJuLhrMGg1IlVayVpcV8H1dXOiGHJtXOR0Jh9Y2J0n1RJ/LC8gvpLZnNAD506VIcpRvj87BfNfzxBw39bhD7eehCbxN3F2Vl1rhDZIGp4AlGLKszGABDRXTdjOCfCw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("3002e3a83213ba53188593a5bae835c6f9f0adcc1af26316a386bc8570dac509".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): 3002e3a83213ba53188593a5bae835c6f9f0adcc1af26316a386bc8570dac509
  • IV / nonce (hex): cb1eeb2fea68a46fe73df05b
  • Ciphertext (hex): d4a4ad8b388234d733b4d96d3f7597937bca4394e7a93ba620f35dacfd9b3dc79d42ce633ded50e04271d13259764330ca21a8f53621dd7023f1abf3731629074a43c05c4aac82402db41432126c9cbdc7479235df024d4f84ed439643d56131bbc941850b0f3f73bf4e25c34c90d1293e8c607f011cbfcbafd04b965078433774078fdcfe5455f41306bc0af11131eb0fb03a5702d9072e0c306596ff00f2d642eb989b8b86b30683522555ac95a5c57c1f57573a218726d5ce474261f58d89d27d5127f2c2f20be92d99cd003e74e9521ca51be3f3b05f35fcf1070dfd6e10fb79e8426f1377176565d6b8436481a9
  • Auth tag (hex): e009462cab331800434574dd8ce09f0b

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