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

Potenza vs Monopoli

Serie C Cup · Italy · 01 Sept 2026, 19:00 UTC

Final score
1 : 1
Result
Lost
Pick
Monopoli
Market
1X2
CLV vs fair close
-1.88%
Model prob.
30.5%
Best price
3.50
Min odds
3.34
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)
RVkFmBxiFzrRAkk8qoPj+CyLfytRvNmDHsxnw8o10B6sF2kPZ/aV/opV3QnhyopBhivHCg1SCUa8RC5e0KFbn/k0etMMHKPxCBNSd8UH+TxtsjylE4nlu1RJv/EmqdwYQsg1EPUEZSYBaCQBNkVA9bz/+2aRv16T5fY+sqwyDS8I1EgyZU+AJ4tKH5qOuu0vex9/0wAeVWIsctRDmfx2ECn81sDfCWsW6QpR0K/ZhIQxYSfFfkLTHDLGM+A6esRS4SYGBSLbv2bNKxN/V34RnWsVqSR3J8oaMADwPKwYYx3U4j2uSe5te1Bh+RzvCe3DDyYW3xkeqhqy1lMsCZ133/BsCe9J7uVr
key fingerprint sha256: 2acdbc4428bdbb58e6707fecef1eeaf8e02c664a8507fad37a9d42aa497cc9dd
Decrypt it & read the pick
Decryption key (released after the match)
a4b0f557ddc12e769ad5c9e5d04bc0bc64960c15f5babcdf54a4ecd2f6d16dc0
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("RVkFmBxiFzrRAkk8qoPj+CyLfytRvNmDHsxnw8o10B6sF2kPZ/aV/opV3QnhyopBhivHCg1SCUa8RC5e0KFbn/k0etMMHKPxCBNSd8UH+TxtsjylE4nlu1RJv/EmqdwYQsg1EPUEZSYBaCQBNkVA9bz/+2aRv16T5fY+sqwyDS8I1EgyZU+AJ4tKH5qOuu0vex9/0wAeVWIsctRDmfx2ECn81sDfCWsW6QpR0K/ZhIQxYSfFfkLTHDLGM+A6esRS4SYGBSLbv2bNKxN/V34RnWsVqSR3J8oaMADwPKwYYx3U4j2uSe5te1Bh+RzvCe3DDyYW3xkeqhqy1lMsCZ133/BsCe9J7uVr"), c => c.charCodeAt(0));
const key  = Uint8Array.from("a4b0f557ddc12e769ad5c9e5d04bc0bc64960c15f5babcdf54a4ecd2f6d16dc0".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): a4b0f557ddc12e769ad5c9e5d04bc0bc64960c15f5babcdf54a4ecd2f6d16dc0
  • IV / nonce (hex): 455905981c62173ad102493c
  • Ciphertext (hex): aa83e3f82c8b7f2b51bcd9831ecc67c3ca35d01eac17690f67f695fe8a55dd09e1ca8a41862bc70a0d520946bc442e5ed0a15b9ff9347ad30c1ca3f108135277c507f93c6db23ca51389e5bb5449bff126a9dc1842c83510f504652601682401364540f5bcfffb6691bf5e93e5f63eb2ac320d2f08d44832654f80278b4a1f9a8ebaed2f7b1f7fd3001e55622c72d44399fc761029fcd6c0df096b16e90a51d0afd98484316127c57e42d31c32c633e03a7ac452e126060522dbbf66cd2b137f577e119d6b15a9247727ca1a3000f03cac18631dd4e23dae49ee6d7b5061f91cef09edc30f2616df191eaa1a
  • Auth tag (hex): b2d6532c099d77dff06c09ef49eee56b

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