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

Kumu vs LAUTP / 2

Kolmonen - Eastern Group · Finland · 02 Jul 2026, 16:00 UTC

Final score
4 : 0
Result
Lost
Pick
LAUTP / 2
Market
1x2
Model prob.
32.4%
Best price
4.02
Min odds
3.52
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)
EkD/mcd4iHJKgK2uRUDXAPiTHCjfK4g1jdCpkJWhs6vhC3x6HzEb94BSmFoHY8OojFwSFHq9wyWrsATQQnCNd0aNTW/NtiWgQhiC6GA9FQqKldfTXiI+afyKqTeVc499nNRgYciKGK79JdWCDMv4aBOcJHZHLsQtQPmXJzZWaRoI4yfkCrOU3I1fU0oDrp6geGCqruS1CIAX1y7BCm5UckTIhVzUH1ItIe9OrsN+ZaLFytAoS1AuA0CSpcFZgipFjLEctngxkdTmqLUmBU+q5Yywcxt+qBLes/tAUQFFI5kj3jsohBy4Qwqu3XBYGqKGwmJu1xqDtjOJvUw67P1xWe/7XQO2JZg8
key fingerprint sha256: 5fdb863888eb03beea528b051b826a8371285bdf88848e11e33d8ddaef9e15fc
Decrypt it & read the pick
Decryption key (released after the match)
c129af52216a391004684f31f171ac4ae27c70fb0707a3e64f61e6f8ee8cad42
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("EkD/mcd4iHJKgK2uRUDXAPiTHCjfK4g1jdCpkJWhs6vhC3x6HzEb94BSmFoHY8OojFwSFHq9wyWrsATQQnCNd0aNTW/NtiWgQhiC6GA9FQqKldfTXiI+afyKqTeVc499nNRgYciKGK79JdWCDMv4aBOcJHZHLsQtQPmXJzZWaRoI4yfkCrOU3I1fU0oDrp6geGCqruS1CIAX1y7BCm5UckTIhVzUH1ItIe9OrsN+ZaLFytAoS1AuA0CSpcFZgipFjLEctngxkdTmqLUmBU+q5Yywcxt+qBLes/tAUQFFI5kj3jsohBy4Qwqu3XBYGqKGwmJu1xqDtjOJvUw67P1xWe/7XQO2JZg8"), c => c.charCodeAt(0));
const key  = Uint8Array.from("c129af52216a391004684f31f171ac4ae27c70fb0707a3e64f61e6f8ee8cad42".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): c129af52216a391004684f31f171ac4ae27c70fb0707a3e64f61e6f8ee8cad42
  • IV / nonce (hex): 1240ff99c77888724a80adae
  • Ciphertext (hex): 4540d700f8931c28df2b88358dd0a99095a1b3abe10b7c7a1f311bf78052985a0763c3a88c5c12147abdc325abb004d042708d77468d4d6fcdb625a0421882e8603d150a8a95d7d35e223e69fc8aa93795738f7d9cd46061c88a18aefd25d5820ccbf868139c2476472ec42d40f997273656691a08e327e40ab394dc8d5f534a03ae9ea07860aaaee4b5088017d72ec10a6e547244c8855cd41f522d21ef4eaec37e65a2c5cad0284b502e034092a5c159822a458cb11cb6783191d4e6a8b526054faae58cb0731b7ea812deb3fb40510145239923de3b28841cb8430aaedd70581aa286c2626ed71a83b633
  • Auth tag (hex): 89bd4c3aecfd7159effb5d03b625983c

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