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

Palermo vs Mantova

Cup · Italy · 03 Sept 2026, 16:00 UTC

Final score
5 : 2
Result
Lost
Pick
Mantova
Market
1X2
CLV vs fair close
+67.66%
Model prob.
18.2%
Best price
6.00
Min odds
5.60
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)
cUKUJ6dZS4fF7pmTFu3+wTn5R5lFTUSJdBpdKjKYEHgtPHLB1OS1STczs5QKNv4bb0bMJ58zuRzcJUwaw7/fhzlFIjSdLe2ylQG8TSDCQamT4edLIRzowK50vErUg/9BlnnLbGgT3EXH3ljE5AVkSljc5bipXkLXZIsXBK+AeGfWuqqZy/TP6fyAvE5YTOHGOZu00Hzr/282gIixplbF3ckt73M1y8kHz4D+kqKkHx9p83kYQI8ZDHpL9jOwUNlzBAfjcJx3i6FF+x1eBM3q3Xd5QvMQ+rKKcvsoSFIogeTCsuXSQqJWNwqb7or/9sq7BqR31vLCsEVj+ZneBZ41E3GOgng=
key fingerprint sha256: 99f4955368bb45ad499f3b26c103cc2f5786592e0eb30618e8c260165f4d4292
Decrypt it & read the pick
Decryption key (released after the match)
0320acabf6f88237d799936e787255379861564008861193ccabd0aa1899ec61
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("cUKUJ6dZS4fF7pmTFu3+wTn5R5lFTUSJdBpdKjKYEHgtPHLB1OS1STczs5QKNv4bb0bMJ58zuRzcJUwaw7/fhzlFIjSdLe2ylQG8TSDCQamT4edLIRzowK50vErUg/9BlnnLbGgT3EXH3ljE5AVkSljc5bipXkLXZIsXBK+AeGfWuqqZy/TP6fyAvE5YTOHGOZu00Hzr/282gIixplbF3ckt73M1y8kHz4D+kqKkHx9p83kYQI8ZDHpL9jOwUNlzBAfjcJx3i6FF+x1eBM3q3Xd5QvMQ+rKKcvsoSFIogeTCsuXSQqJWNwqb7or/9sq7BqR31vLCsEVj+ZneBZ41E3GOgng="), c => c.charCodeAt(0));
const key  = Uint8Array.from("0320acabf6f88237d799936e787255379861564008861193ccabd0aa1899ec61".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): 0320acabf6f88237d799936e787255379861564008861193ccabd0aa1899ec61
  • IV / nonce (hex): 71429427a7594b87c5ee9993
  • Ciphertext (hex): 16edfec139f94799454d4489741a5d2a329810782d3c72c1d4e4b5493733b3940a36fe1b6f46cc279f33b91cdc254c1ac3bfdf87394522349d2dedb29501bc4d20c241a993e1e74b211ce8c0ae74bc4ad483ff419679cb6c6813dc45c7de58c4e405644a58dce5b8a95e42d7648b1704af807867d6baaa99cbf4cfe9fc80bc4e584ce1c6399bb4d07cebff6f368088b1a656c5ddc92def7335cbc907cf80fe92a2a41f1f69f37918408f190c7a4bf633b050d9730407e3709c778ba145fb1d5e04cdeadd777942f310fab28a72fb2848522881e4c2b2e5d242a256370a9bee8afff6cabb06a477d6
  • Auth tag (hex): f2c2b04563f999de059e3513718e8278

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