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

Hutnik Krakow II vs Dalin Myslenice

4th Liga · Poland · 05 Sept 2026, 13:00 UTC

Final score
0 : 0
Result
Lost
Pick
Hutnik Krakow II
Market
1X2
CLV vs fair close
+2.23%
Model prob.
44.0%
Best price
2.55
Min odds
2.32
Stake factor
2.60

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)
PWa+07qU24D25LLyRAo/0SXeBb9seP0AuCm4Sab5+nS+zEBiDtYIaAgX6uIcxijsTxmfprpiNbK17TPsEJZJ4x51D5pODkcZhCk/c8uJakLpup9tpK/Lotf8hnx9BRgXRg1qFMjJ44zip+IbQOUV6ihV05/DV5ME5hFrxe7ZxI4wOf+iSoJ1qIBNGS8cTwYhzLAe/Lz3MMU7yX1qsKz6F1dZo4yLDUBBG+VWzeT8/eIzYTTxGIporSDtqU5idfItodXtjJKtL85dtOX92VT/pYxIwSauecRerlqv63b8Kgwmi7ERYbnMwB7slsS1YBd2Jvl/dp71t62b59KYQlexZDJsJKIZIkRfd6ModXGAGHEKs1nVCQ==
key fingerprint sha256: 75ac4eb02272c3cc8d22f6dc969132f0ba53bbffcb8dd761c26d71df33c07fb6
Decrypt it & read the pick
Decryption key (released after the match)
d678ec2b87bb07f65e112afb7d70f41b8aadd77156700ce3b61ceee23a3490cd
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("PWa+07qU24D25LLyRAo/0SXeBb9seP0AuCm4Sab5+nS+zEBiDtYIaAgX6uIcxijsTxmfprpiNbK17TPsEJZJ4x51D5pODkcZhCk/c8uJakLpup9tpK/Lotf8hnx9BRgXRg1qFMjJ44zip+IbQOUV6ihV05/DV5ME5hFrxe7ZxI4wOf+iSoJ1qIBNGS8cTwYhzLAe/Lz3MMU7yX1qsKz6F1dZo4yLDUBBG+VWzeT8/eIzYTTxGIporSDtqU5idfItodXtjJKtL85dtOX92VT/pYxIwSauecRerlqv63b8Kgwmi7ERYbnMwB7slsS1YBd2Jvl/dp71t62b59KYQlexZDJsJKIZIkRfd6ModXGAGHEKs1nVCQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("d678ec2b87bb07f65e112afb7d70f41b8aadd77156700ce3b61ceee23a3490cd".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): d678ec2b87bb07f65e112afb7d70f41b8aadd77156700ce3b61ceee23a3490cd
  • IV / nonce (hex): 3d66bed3ba94db80f6e4b2f2
  • Ciphertext (hex): 440a3fd125de05bf6c78fd00b829b849a6f9fa74becc40620ed608680817eae21cc628ec4f199fa6ba6235b2b5ed33ec109649e31e750f9a4e0e471984293f73cb896a42e9ba9f6da4afcba2d7fc867c7d051817460d6a14c8c9e38ce2a7e21b40e515ea2855d39fc3579304e6116bc5eed9c48e3039ffa24a8275a8804d192f1c4f0621ccb01efcbcf730c53bc97d6ab0acfa175759a38c8b0d40411be556cde4fcfde2336134f1188a68ad20eda94e6275f22da1d5ed8c92ad2fce5db4e5fdd954ffa58c48c126ae79c45eae5aafeb76fc2a0c268bb11161b9ccc01eec96c4b560177626f97f769ef5b7ad9be7d2984257b164326c24a219
  • Auth tag (hex): 22445f77a32875718018710ab359d509

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