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

Levski Sofia vs Kairat

Champions League · Europe · 04 Aug 2026, 17:30 UTC

Final score
1 : 0
Result
Won
Pick
Levski Sofia
Market
1x2
Model prob.
63.9%
Best price
1.73
Min odds
1.67
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)
lm0PKf3lZIvD52qHHTI2F4DAyHXDllHYZKzL073ksLxSgCbaVRx8y2toQbawqQFDVlTu44B1lEfHH6c1zXl6q04FmSueV8zYnn+UZk9tRSVrpVGSJ6plw6S/sGKKzdrbid3Xug802c38KP6jY5X+co0pQaLcXANg+mAjyqNAFwCmIH4ml6dMWyxU+EzqaTY3rKdin+eJB/UWbXNQd8tVY625B3KRaxY+IMeFuixtaJcDHsJ3L8x9XINGvlE5v/AyTMNN8FkL7p8GyFytAH5WCW/uhbh3f7g4i+LqM7GTJXUht1a0b6V5K4zdsVKFC38UVYZve9q6VIOtYL6bQbWroFzDDdCt6JN46dJOlQ==
key fingerprint sha256: 4a2efcc066c2f541b2c585d6668e7b89e1d74af327d6265f8a54d882ab5656cc
Decrypt it & read the pick
Decryption key (released after the match)
4c1ae20fd0e3a5196dd09d0d7b3c603752e88c6f1874f249eea3a3cf65be49dc
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("lm0PKf3lZIvD52qHHTI2F4DAyHXDllHYZKzL073ksLxSgCbaVRx8y2toQbawqQFDVlTu44B1lEfHH6c1zXl6q04FmSueV8zYnn+UZk9tRSVrpVGSJ6plw6S/sGKKzdrbid3Xug802c38KP6jY5X+co0pQaLcXANg+mAjyqNAFwCmIH4ml6dMWyxU+EzqaTY3rKdin+eJB/UWbXNQd8tVY625B3KRaxY+IMeFuixtaJcDHsJ3L8x9XINGvlE5v/AyTMNN8FkL7p8GyFytAH5WCW/uhbh3f7g4i+LqM7GTJXUht1a0b6V5K4zdsVKFC38UVYZve9q6VIOtYL6bQbWroFzDDdCt6JN46dJOlQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("4c1ae20fd0e3a5196dd09d0d7b3c603752e88c6f1874f249eea3a3cf65be49dc".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): 4c1ae20fd0e3a5196dd09d0d7b3c603752e88c6f1874f249eea3a3cf65be49dc
  • IV / nonce (hex): 966d0f29fde5648bc3e76a87
  • Ciphertext (hex): 1d32361780c0c875c39651d864accbd3bde4b0bc528026da551c7ccb6b6841b6b0a901435654eee380759447c71fa735cd797aab4e05992b9e57ccd89e7f94664f6d45256ba5519227aa65c3a4bfb0628acddadb89ddd7ba0f34d9cdfc28fea36395fe728d2941a2dc5c0360fa6023caa3401700a6207e2697a74c5b2c54f84cea693637aca7629fe78907f5166d735077cb5563adb90772916b163e20c785ba2c6d6897031ec2772fcc7d5c8346be5139bff0324cc34df0590bee9f06c85cad007e56096fee85b8777fb8388be2ea33b193257521b756b46fa5792b8cddb152850b7f1455866f7bdaba5483ad60be9b
  • Auth tag (hex): 41b5aba05cc30dd0ade89378e9d24e95

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