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

Komeetat vs FCV/2

Kolmonen · Finland · 21 Aug 2026, 16:00 UTC

Final score
0 : 2
Result
Lost
Pick
Komeetat
Market
1X2
CLV vs fair close
+5.59%
Model prob.
65.7%
Best price
1.60
Min odds
1.55
Stake factor
2.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)
DRrLjCgmVW7dlA1dRqaN5eXb2bC6ekQwX5LMg5iXDXCS8+4VIxu/fyq0yxnYRjvGsjkMKGfmy/l2WH4zZR+XCLGrv5nMcd3ffc+K9aI/KmWeU6kT2n7aCj0YwOZEdpOw7xtGbY+Mahc6i1vdIBdfRzzu7y5YUzurbiZE2MtSw5CTeg/CDkQ71tvGkWbL4q0r1M2coMb59LUautPqZQ0Au5CLnPNHcPgEMpULBLO2w0fFW4i1r3yWr/+OHqQ4lMf5+AqXFMoWVyO+e54TYaytOmYnvqAbBGCDlpVHERD32OWmoF/GZmz6jmMjA3z7RHG3mrBBMC9c9DFjLy191J/D/nDoyfjADzuoE3E=
key fingerprint sha256: 4a5b61eb1f5583ed62bda5473972a10cc0bd620a15b6a1eecb7a777d9129c4bf
Decrypt it & read the pick
Decryption key (released after the match)
8a171b1e6ea38a55a7e0c5e9cb5419e85d25f1d4b62c9634d881f940520bfb72
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("DRrLjCgmVW7dlA1dRqaN5eXb2bC6ekQwX5LMg5iXDXCS8+4VIxu/fyq0yxnYRjvGsjkMKGfmy/l2WH4zZR+XCLGrv5nMcd3ffc+K9aI/KmWeU6kT2n7aCj0YwOZEdpOw7xtGbY+Mahc6i1vdIBdfRzzu7y5YUzurbiZE2MtSw5CTeg/CDkQ71tvGkWbL4q0r1M2coMb59LUautPqZQ0Au5CLnPNHcPgEMpULBLO2w0fFW4i1r3yWr/+OHqQ4lMf5+AqXFMoWVyO+e54TYaytOmYnvqAbBGCDlpVHERD32OWmoF/GZmz6jmMjA3z7RHG3mrBBMC9c9DFjLy191J/D/nDoyfjADzuoE3E="), c => c.charCodeAt(0));
const key  = Uint8Array.from("8a171b1e6ea38a55a7e0c5e9cb5419e85d25f1d4b62c9634d881f940520bfb72".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): 8a171b1e6ea38a55a7e0c5e9cb5419e85d25f1d4b62c9634d881f940520bfb72
  • IV / nonce (hex): 0d1acb8c2826556edd940d5d
  • Ciphertext (hex): 46a68de5e5dbd9b0ba7a44305f92cc8398970d7092f3ee15231bbf7f2ab4cb19d8463bc6b2390c2867e6cbf976587e33651f9708b1abbf99cc71dddf7dcf8af5a23f2a659e53a913da7eda0a3d18c0e6447693b0ef1b466d8f8c6a173a8b5bdd20175f473ceeef2e58533bab6e2644d8cb52c390937a0fc20e443bd6dbc69166cbe2ad2bd4cd9ca0c6f9f4b51abad3ea650d00bb908b9cf34770f80432950b04b3b6c347c55b88b5af7c96afff8e1ea43894c7f9f80a9714ca165723be7b9e1361acad3a6627bea01b0460839695471110f7d8e5a6a05fc6666cfa8e6323037cfb4471b79ab041302f5cf431632f
  • Auth tag (hex): 2d7dd49fc3fe70e8c9f8c00f3ba81371

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