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

Spezia vs Livorno

Serie C Group B · Italy · 12 Sept 2026, 16:00 UTC

Final score
2 : 0
Result
Won
Pick
Spezia
Market
1X2
CLV vs fair close
+4.41%
Model prob.
60.6%
Best price
1.75
Min odds
1.68
Stake factor
2.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)
BYUY4QPu70jRflr3OGR4RU/JQ/PfDVuw47C6co6lyAaeh+ea1tADq4pTmqmJthyzyltKzOM41tBSjH5s1ARhKCsRdgrjXLd0deQNNNOxLbNYHnhl/Aq1ZrZZsgavo1QV12aH/s2GpLLwzzYAutMVh9YjVWTKZVM/jbihms72CL0QFv7G/PmkLdKQUElmP07JMvVdUozLoYH5uFnQ2yPx4ue0Fs0BAbnSAN6xegn4oQfMitsyNWsB53nwt+G+Djq97agI+s/fN6vu+x4maLRLgJrIMmcHEi4Qk0wp6UztxtlrKrdvCmD0xucRzjbJopPsmymoaYFSV8xjnWK4u0clp6wyNojM+GQ=
key fingerprint sha256: 835adff9f32b58baffd4c52f41446f8f6c39376e2fedaac15452a009f3928ad0
Decrypt it & read the pick
Decryption key (released after the match)
676614a81e5e2f1c6607b604aac9e4526c82f4bf13314424a620a2d9a7ed8172
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("BYUY4QPu70jRflr3OGR4RU/JQ/PfDVuw47C6co6lyAaeh+ea1tADq4pTmqmJthyzyltKzOM41tBSjH5s1ARhKCsRdgrjXLd0deQNNNOxLbNYHnhl/Aq1ZrZZsgavo1QV12aH/s2GpLLwzzYAutMVh9YjVWTKZVM/jbihms72CL0QFv7G/PmkLdKQUElmP07JMvVdUozLoYH5uFnQ2yPx4ue0Fs0BAbnSAN6xegn4oQfMitsyNWsB53nwt+G+Djq97agI+s/fN6vu+x4maLRLgJrIMmcHEi4Qk0wp6UztxtlrKrdvCmD0xucRzjbJopPsmymoaYFSV8xjnWK4u0clp6wyNojM+GQ="), c => c.charCodeAt(0));
const key  = Uint8Array.from("676614a81e5e2f1c6607b604aac9e4526c82f4bf13314424a620a2d9a7ed8172".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): 676614a81e5e2f1c6607b604aac9e4526c82f4bf13314424a620a2d9a7ed8172
  • IV / nonce (hex): 058518e103eeef48d17e5af7
  • Ciphertext (hex): 386478454fc943f3df0d5bb0e3b0ba728ea5c8069e87e79ad6d003ab8a539aa989b61cb3ca5b4acce338d6d0528c7e6cd40461282b11760ae35cb77475e40d34d3b12db3581e7865fc0ab566b659b206afa35415d76687fecd86a4b2f0cf3600bad31587d6235564ca65533f8db8a19acef608bd1016fec6fcf9a42dd2905049663f4ec932f55d528ccba181f9b859d0db23f1e2e7b416cd0101b9d200deb17a09f8a107cc8adb32356b01e779f0b7e1be0e3abdeda808facfdf37abeefb1e2668b44b809ac8326707122e10934c29e94cedc6d96b2ab76f0a60f4c6e711ce36c9a293ec9b29a869815257
  • Auth tag (hex): cc639d62b8bb4725a7ac323688ccf864

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