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

Legion vs Phoenix

Esiliiga B · Estonia · 01 Aug 2026, 16:00 UTC

Final score
0 : 1
Result
Lost
Pick
Legion
Market
1x2
Model prob.
16.5%
Best price
11.33
Min odds
8.01
Stake factor
3.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)
8722dIjUiUNn4dpyVcTNhlRq0MgqQEfjdvcijOIVTPEU2Lv9wyN+CC91+qRKn6xODE7eO/ApIZ6noG/UfHiQMh0aX8ZoAfmpjTo6djDa3gNSAmT2iY9Ixm/BWO6W6rv5qX45vsqPIHQZpvzUKvc9t4aNpU7h0VEQug5RxnVm1lC3TDCRCqh4M5GpE4DeKqukWHZjxQ4lZCMJIGYaXXy55OUWfnwlJEwVGyH1hsGzc+Hn6JaE34V31gvUFL16QRcKI0uxc1rxHqsDc2ATGfaRvnPZqfa8tV5x9z0boZ3TzIm6DLVq24Uv0WL9wIdf5jr40U9xKtmaCP/xFmkwzqEmB77KlmDdpQ==
key fingerprint sha256: 7c0a2ea103d0cc0f7c6f4b66c2978ba12cd1249f511e0bed3326f15544fbf014
Decrypt it & read the pick
Decryption key (released after the match)
36b4b1e0744a1bf6696b96d67c270160f58bb6bd2943d1469f0910c6332d17db
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("8722dIjUiUNn4dpyVcTNhlRq0MgqQEfjdvcijOIVTPEU2Lv9wyN+CC91+qRKn6xODE7eO/ApIZ6noG/UfHiQMh0aX8ZoAfmpjTo6djDa3gNSAmT2iY9Ixm/BWO6W6rv5qX45vsqPIHQZpvzUKvc9t4aNpU7h0VEQug5RxnVm1lC3TDCRCqh4M5GpE4DeKqukWHZjxQ4lZCMJIGYaXXy55OUWfnwlJEwVGyH1hsGzc+Hn6JaE34V31gvUFL16QRcKI0uxc1rxHqsDc2ATGfaRvnPZqfa8tV5x9z0boZ3TzIm6DLVq24Uv0WL9wIdf5jr40U9xKtmaCP/xFmkwzqEmB77KlmDdpQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("36b4b1e0744a1bf6696b96d67c270160f58bb6bd2943d1469f0910c6332d17db".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): 36b4b1e0744a1bf6696b96d67c270160f58bb6bd2943d1469f0910c6332d17db
  • IV / nonce (hex): f3bdb67488d4894367e1da72
  • Ciphertext (hex): 55c4cd86546ad0c82a4047e376f7228ce2154cf114d8bbfdc3237e082f75faa44a9fac4e0c4ede3bf029219ea7a06fd47c7890321d1a5fc66801f9a98d3a3a7630dade03520264f6898f48c66fc158ee96eabbf9a97e39beca8f207419a6fcd42af73db7868da54ee1d15110ba0e51c67566d650b74c30910aa8783391a91380de2aaba4587663c50e2564230920661a5d7cb9e4e5167e7c25244c151b21f586c1b373e1e7e89684df8577d60bd414bd7a41170a234bb1735af11eab0373601319f691be73d9a9f6bcb55e71f73d1ba19dd3cc89ba0cb56adb852fd162fdc0875fe63af8d14f712ad99a
  • Auth tag (hex): 08fff1166930cea12607beca9660dda5

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