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

Gornik Konin vs LKS Goluchow

4th Liga · Poland · 11 Sept 2026, 17:00 UTC

Final score
2 : 0
Result
Lost
Pick
LKS Goluchow
Market
1X2
CLV vs fair close
+59.14%
Model prob.
27.8%
Best price
4.20
Min odds
3.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)
HOucRhveLwUSuQntKGw55C+58VCeR1YjtW/23Qd/mummxzB/WZ3dqF/uuFIC/4SO69kJhAwFF0fGDEhU8mbuufaMf6x+Me9FGYUfpb0NLhVfNRw3ptkjjEp/ZXEsNTgoevGzjC45kF2wsrK0ca8T9ySK+qpx84BB0BLPFqiUtFhhVaYymdYs+nMlvLpsE74LcKmcGqiRU5GvKSooK5snXqq7FcDaeipUbYqGfJdaitnqfLbZ1GqqLcPPisZNdTwDed/6CoHtnf7Bh1QRh5uuRfwHUdbI2P9wmRP2hBXfSKP2us5cFK8ZBoECoCAFN9cyFt/ynemhqT54ZDAX/Pf3qQtLvHbkWYdKfOA6DJmfDA==
key fingerprint sha256: 548e2177e0e5069d33b9ad0f026a5ca3e030b3ea1abf8b25bc0dac31f05792b2
Decrypt it & read the pick
Decryption key (released after the match)
d44c13bb60029428a9a73034f30809b06edebdcca5cb64bec925718904c156fd
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("HOucRhveLwUSuQntKGw55C+58VCeR1YjtW/23Qd/mummxzB/WZ3dqF/uuFIC/4SO69kJhAwFF0fGDEhU8mbuufaMf6x+Me9FGYUfpb0NLhVfNRw3ptkjjEp/ZXEsNTgoevGzjC45kF2wsrK0ca8T9ySK+qpx84BB0BLPFqiUtFhhVaYymdYs+nMlvLpsE74LcKmcGqiRU5GvKSooK5snXqq7FcDaeipUbYqGfJdaitnqfLbZ1GqqLcPPisZNdTwDed/6CoHtnf7Bh1QRh5uuRfwHUdbI2P9wmRP2hBXfSKP2us5cFK8ZBoECoCAFN9cyFt/ynemhqT54ZDAX/Pf3qQtLvHbkWYdKfOA6DJmfDA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("d44c13bb60029428a9a73034f30809b06edebdcca5cb64bec925718904c156fd".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): d44c13bb60029428a9a73034f30809b06edebdcca5cb64bec925718904c156fd
  • IV / nonce (hex): 1ceb9c461bde2f0512b909ed
  • Ciphertext (hex): 286c39e42fb9f1509e475623b56ff6dd077f9ae9a6c7307f599ddda85feeb85202ff848eebd909840c051747c60c4854f266eeb9f68c7fac7e31ef4519851fa5bd0d2e155f351c37a6d9238c4a7f65712c3538287af1b38c2e39905db0b2b2b471af13f7248afaaa71f38041d012cf16a894b4586155a63299d62cfa7325bcba6c13be0b70a99c1aa8915391af292a282b9b275eaabb15c0da7a2a546d8a867c975a8ad9ea7cb6d9d46aaa2dc3cf8ac64d753c0379dffa0a81ed9dfec1875411879bae45fc0751d6c8d8ff709913f68415df48a3f6bace5c14af19068102a0200537d73216dff29de9a1a93e78643017fcf7f7
  • Auth tag (hex): a90b4bbc76e459874a7ce03a0c999f0c

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