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

MFK Karvina vs Viktoria Zizkov

FNL · Czech Republic · 21 Aug 2026, 16:00 UTC

Final score
3 : 0
Result
Won
Pick
MFK Karvina
Market
1X2
CLV vs fair close
+9.45%
Model prob.
72.6%
Best price
1.45
Min odds
1.40
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)
VvGa8Pxtf4uQ3k2q0YkLqxRYULUPzHVHSWyG7O814CnaQaHPVs3F7hp5AWt2OjOzruX6W5wppXfpNHrOjToMIjDr55281bA+G0J9sh+zTZR6Zr0OfgODNLW6AQGXeuJXA8s6kKnCdeto23RXmZl4ZxBjIJkeEAPYTW+d1XuieXr7HwvoCeVdWJuhKIrShVBX24U5FsaxkEQTUoA5ec9aWEPkUVyEUie7+phKBNw/sXykJpqirJbvsuCb9hCn0YjC+8KK2i6e02QArkVPaHVTGCMhiVFoQkRalHB74IoZUk/POEnStBPO+EBCYni+mXnRpe49nlIE17aZH/1dcNQmfK4VaJI9lpRAMUgO1Q==
key fingerprint sha256: 6c47cabe7cdd773ac2d737a9626f71d0657972700a7c62004fe708077f770775
Decrypt it & read the pick
Decryption key (released after the match)
02a86d582ce87ef6c0b6c380a7a0cb138cd08df0fb1c8e2f8247e949742d875e
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("VvGa8Pxtf4uQ3k2q0YkLqxRYULUPzHVHSWyG7O814CnaQaHPVs3F7hp5AWt2OjOzruX6W5wppXfpNHrOjToMIjDr55281bA+G0J9sh+zTZR6Zr0OfgODNLW6AQGXeuJXA8s6kKnCdeto23RXmZl4ZxBjIJkeEAPYTW+d1XuieXr7HwvoCeVdWJuhKIrShVBX24U5FsaxkEQTUoA5ec9aWEPkUVyEUie7+phKBNw/sXykJpqirJbvsuCb9hCn0YjC+8KK2i6e02QArkVPaHVTGCMhiVFoQkRalHB74IoZUk/POEnStBPO+EBCYni+mXnRpe49nlIE17aZH/1dcNQmfK4VaJI9lpRAMUgO1Q=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("02a86d582ce87ef6c0b6c380a7a0cb138cd08df0fb1c8e2f8247e949742d875e".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): 02a86d582ce87ef6c0b6c380a7a0cb138cd08df0fb1c8e2f8247e949742d875e
  • IV / nonce (hex): 56f19af0fc6d7f8b90de4daa
  • Ciphertext (hex): d1890bab145850b50fcc7547496c86ecef35e029da41a1cf56cdc5ee1a79016b763a33b3aee5fa5b9c29a577e9347ace8d3a0c2230ebe79dbcd5b03e1b427db21fb34d947a66bd0e7e038334b5ba0101977ae25703cb3a90a9c275eb68db745799997867106320991e1003d84d6f9dd57ba2797afb1f0be809e55d589ba1288ad2855057db853916c6b190441352803979cf5a5843e4515c845227bbfa984a04dc3fb17ca4269aa2ac96efb2e09bf610a7d188c2fbc28ada2e9ed36400ae454f68755318232189516842445a94707be08a19524fcf3849d2b413cef840426278be9979d1a5ee3d9e5204d7b6991ffd5d
  • Auth tag (hex): 70d4267cae1568923d96944031480ed5

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