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

KPV Akatemia vs Virkiä

Kolmonen - Western Group · Finland · 29 Jul 2026, 16:00 UTC

Final score
2 : 4
Result
Won
Pick
Virkiä
Market
1x2
Model prob.
59.1%
Best price
2.01
Min odds
1.81
Stake factor
2.50

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)
5LR5/bxkzInUILk3eXtrJJ4eN4duj3a0JLB2ddnxhmQ2c38vpbzRLcNJBij8avGliNsYyNdfZBDsjxXq28qU5aYpbD0BR07lEWPQUW0O3QODOQd0QiWmK2zh664h24xB6dT3eXt7mxbvhXh3hpdJAp4KOWbIvbgNEviFHzWzCkAlXxg7zdCs07wV+X+ORCRvC8UzSzC2sFenrcqfEisS70WfpHkT2g2/z7dk230j440LYQFjaGqD5iuuRxRrW+pwh+oKovgtODn3DVHhcKpHO5HAVSX/SOn7fGj/WwxUBeL7UIopRhfiUpEa1YD0Ij8kDLsTMsQplALghfGQkPKMdzYcdT4pYtYP
key fingerprint sha256: 085cb9dfaf6314b09c273d69777649ba80bafbd55c45f31fba899cbd0252bcde
Decrypt it & read the pick
Decryption key (released after the match)
d6ae74b44f927f839b904f2353e46432db6319f5c5a80976db3ac6b03c9dc1e0
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("5LR5/bxkzInUILk3eXtrJJ4eN4duj3a0JLB2ddnxhmQ2c38vpbzRLcNJBij8avGliNsYyNdfZBDsjxXq28qU5aYpbD0BR07lEWPQUW0O3QODOQd0QiWmK2zh664h24xB6dT3eXt7mxbvhXh3hpdJAp4KOWbIvbgNEviFHzWzCkAlXxg7zdCs07wV+X+ORCRvC8UzSzC2sFenrcqfEisS70WfpHkT2g2/z7dk230j440LYQFjaGqD5iuuRxRrW+pwh+oKovgtODn3DVHhcKpHO5HAVSX/SOn7fGj/WwxUBeL7UIopRhfiUpEa1YD0Ij8kDLsTMsQplALghfGQkPKMdzYcdT4pYtYP"), c => c.charCodeAt(0));
const key  = Uint8Array.from("d6ae74b44f927f839b904f2353e46432db6319f5c5a80976db3ac6b03c9dc1e0".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): d6ae74b44f927f839b904f2353e46432db6319f5c5a80976db3ac6b03c9dc1e0
  • IV / nonce (hex): e4b479fdbc64cc89d420b937
  • Ciphertext (hex): 797b6b249e1e37876e8f76b424b07675d9f1866436737f2fa5bcd12dc3490628fc6af1a588db18c8d75f6410ec8f15eadbca94e5a6296c3d01474ee51163d0516d0edd03833907744225a62b6ce1ebae21db8c41e9d4f7797b7b9b16ef857877869749029e0a3966c8bdb80d12f8851f35b30a40255f183bcdd0acd3bc15f97f8e44246f0bc5334b30b6b057a7adca9f122b12ef459fa47913da0dbfcfb764db7d23e38d0b610163686a83e62bae47146b5bea7087ea0aa2f82d3839f70d51e170aa473b91c05525ff48e9fb7c68ff5b0c5405e2fb508a294617e252911ad580f4223f240cbb1332c4299402
  • Auth tag (hex): e085f19090f28c77361c753e2962d60f

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