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

Ilves vs Jaro

Veikkausliiga · Finland · 08 Sept 2026, 15:00 UTC

Final score
2 : 0
Result
Lost
Pick
Jaro
Market
1X2
CLV vs fair close
+6.98%
Model prob.
17.9%
Best price
5.90
Min odds
5.69
Stake factor
1.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)
8wL13jTbmzkW9/7ND9Vf06OTiOf1JCalL8jl9RWLgyqwr3N7M5BjnTo/4zf000rjamaNKckDqbmG3+hLTpoedZjf18Swqmt5/16YWSOqBwJGrDoC8ZnV1ECbzOiDvp+wOvYB/7y+rnis0qeUbludYwljTVCo37TcpWfbX2P21mfigC2Gcq+93E9lvsr5V3mSpM4cwzvyvAORYauJK1n6AwXMLri5WLAGdEEUIlwVDT50wYrbmIhX0atdqFvCWExaA5B0BjNCeAdu/R5B8FduWxq2uk/hR/03SgbkukDXwkY/eT9MmOItkIeG47/iNbRT7gaZhsAdyj2y3jXB1f/MgT9ko8o=
key fingerprint sha256: d96c4fd4341990a3cdcd9883ee5457308b95c0bd1c90fe85a8b6a7fca729e214
Decrypt it & read the pick
Decryption key (released after the match)
e488c1a958bdc23b8c7c60365de8eff18113508093a556a764f2ca029e4d1a50
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("8wL13jTbmzkW9/7ND9Vf06OTiOf1JCalL8jl9RWLgyqwr3N7M5BjnTo/4zf000rjamaNKckDqbmG3+hLTpoedZjf18Swqmt5/16YWSOqBwJGrDoC8ZnV1ECbzOiDvp+wOvYB/7y+rnis0qeUbludYwljTVCo37TcpWfbX2P21mfigC2Gcq+93E9lvsr5V3mSpM4cwzvyvAORYauJK1n6AwXMLri5WLAGdEEUIlwVDT50wYrbmIhX0atdqFvCWExaA5B0BjNCeAdu/R5B8FduWxq2uk/hR/03SgbkukDXwkY/eT9MmOItkIeG47/iNbRT7gaZhsAdyj2y3jXB1f/MgT9ko8o="), c => c.charCodeAt(0));
const key  = Uint8Array.from("e488c1a958bdc23b8c7c60365de8eff18113508093a556a764f2ca029e4d1a50".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): e488c1a958bdc23b8c7c60365de8eff18113508093a556a764f2ca029e4d1a50
  • IV / nonce (hex): f302f5de34db9b3916f7fecd
  • Ciphertext (hex): 0fd55fd3a39388e7f52426a52fc8e5f5158b832ab0af737b3390639d3a3fe337f4d34ae36a668d29c903a9b986dfe84b4e9a1e7598dfd7c4b0aa6b79ff5e985923aa070246ac3a02f199d5d4409bcce883be9fb03af601ffbcbeae78acd2a7946e5b9d6309634d50a8dfb4dca567db5f63f6d667e2802d8672afbddc4f65becaf9577992a4ce1cc33bf2bc039161ab892b59fa0305cc2eb8b958b006744114225c150d3e74c18adb988857d1ab5da85bc2584c5a03907406334278076efd1e41f0576e5b1ab6ba4fe147fd374a06e4ba40d7c2463f793f4c98e22d908786e3bfe235b453ee069986
  • Auth tag (hex): c01dca3db2de35c1d5ffcc813f64a3ca

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