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

Odense BK vs Midtjylland

Superliga · Denmark · 19 Sept 2026, 16:00 UTC

Final score
1 : 1
Result
Lost
Pick
Odense BK
Market
1X2
CLV vs fair close
-12.10%
Model prob.
25.4%
Best price
4.40
Min odds
4.01
Stake factor
1.20

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)
ow96nSZJSdnwlHlSN5K+eL+u0qQ3XX0FFwN9kQIg5NXevIun5QEAh7SvE95sta1/IiPOZnrTXbjiNGlhPciT+8NcRDoAIp8sZGSr3L6mbxgwfrgrT/DV4QuYKr8S2zDMfGPiAe4/MGQDB0XqyZnYz4Kz+uSfQo2bgnClU2islb57vu11cM8ReCVe9IplX+d9zVQwkXBDXgAYSli6JQkOYKt84L7M/5jQf8W2BGwJvyVbRG+8qxPlMOjZhUrRTQwT4ITONcYes1MMxUXxZ+5DWBGWdFBf6e5eTWynGhGPBfiJs6+Qg6TpbsPO7X6awzdHTdqRzKMJkR/saadmCzAyodwXsIFNqzJ/r0I=
key fingerprint sha256: 6879f21f6578301e6c9939ab9db5bb80abf2b34275dad30f888a529a408dda5d
Decrypt it & read the pick
Decryption key (released after the match)
6aadd9fa6f07537b41c68799d9d4f8aae488ed48b5a8f033be873f22dc4fe682
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("ow96nSZJSdnwlHlSN5K+eL+u0qQ3XX0FFwN9kQIg5NXevIun5QEAh7SvE95sta1/IiPOZnrTXbjiNGlhPciT+8NcRDoAIp8sZGSr3L6mbxgwfrgrT/DV4QuYKr8S2zDMfGPiAe4/MGQDB0XqyZnYz4Kz+uSfQo2bgnClU2islb57vu11cM8ReCVe9IplX+d9zVQwkXBDXgAYSli6JQkOYKt84L7M/5jQf8W2BGwJvyVbRG+8qxPlMOjZhUrRTQwT4ITONcYes1MMxUXxZ+5DWBGWdFBf6e5eTWynGhGPBfiJs6+Qg6TpbsPO7X6awzdHTdqRzKMJkR/saadmCzAyodwXsIFNqzJ/r0I="), c => c.charCodeAt(0));
const key  = Uint8Array.from("6aadd9fa6f07537b41c68799d9d4f8aae488ed48b5a8f033be873f22dc4fe682".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): 6aadd9fa6f07537b41c68799d9d4f8aae488ed48b5a8f033be873f22dc4fe682
  • IV / nonce (hex): a30f7a9d264949d9f0947952
  • Ciphertext (hex): 3792be78bfaed2a4375d7d0517037d910220e4d5debc8ba7e5010087b4af13de6cb5ad7f2223ce667ad35db8e23469613dc893fbc35c443a00229f2c6464abdcbea66f18307eb82b4ff0d5e10b982abf12db30cc7c63e201ee3f3064030745eac999d8cf82b3fae49f428d9b8270a55368ac95be7bbeed7570cf1178255ef48a655fe77dcd54309170435e00184a58ba25090e60ab7ce0beccff98d07fc5b6046c09bf255b446fbcab13e530e8d9854ad14d0c13e084ce35c61eb3530cc545f167ee4358119674505fe9ee5e4d6ca71a118f05f889b3af9083a4e96ec3ceed7e9ac337474dda91cca309911fec69
  • Auth tag (hex): a7660b3032a1dc17b0814dab327faf42

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