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

Gyirmót vs Kozarmisleny

Merkantil Bank Liga · Hungary · 01 Aug 2026, 17:00 UTC

Final score
2 : 1
Result
Lost
Pick
Kozarmisleny
Market
1x2
Model prob.
23.5%
Best price
7.90
Min odds
5.14
Stake factor
3.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)
fBlFCAWqMeP+rZzjr5rzoy/2mCy3qoifs7nJJfh4Kv2w5MXlSeUPHuKLE3Mzpj3BwentFPotzd8D3YnfoIoQchdglM2EvzhFb+LDQaGZATS4cvbJ1zcnwt7aknnaokWXi0lABgUiaucE3ispNrQsUaxS3e1SlDwv88b70sQw8nEVPlAkc/aIbvq9k4Gne1Xi0UGN956ThnDGPml7l75ySn2cNc6zo5OTuvzgOSdU62KD4FcRKlSaBwLgZ0zACyvKk8QVHo+eJsFnABDwtfU3eyDmmLBqa8/5N3jLwUPVkzErVRHiumLdJ3Dh1uiHhSQd0fITlFU1Rl9I6kCvJiKRXv2KsdTy964vqM4=
key fingerprint sha256: ec57447797a23ce1495e0dfa37e576a3f30400ad695052816514b00eb34a0985
Decrypt it & read the pick
Decryption key (released after the match)
ed101f2240ec48c89e9d272a5c60e89203eaee5c49677191e8ce8fe9be516db9
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("fBlFCAWqMeP+rZzjr5rzoy/2mCy3qoifs7nJJfh4Kv2w5MXlSeUPHuKLE3Mzpj3BwentFPotzd8D3YnfoIoQchdglM2EvzhFb+LDQaGZATS4cvbJ1zcnwt7aknnaokWXi0lABgUiaucE3ispNrQsUaxS3e1SlDwv88b70sQw8nEVPlAkc/aIbvq9k4Gne1Xi0UGN956ThnDGPml7l75ySn2cNc6zo5OTuvzgOSdU62KD4FcRKlSaBwLgZ0zACyvKk8QVHo+eJsFnABDwtfU3eyDmmLBqa8/5N3jLwUPVkzErVRHiumLdJ3Dh1uiHhSQd0fITlFU1Rl9I6kCvJiKRXv2KsdTy964vqM4="), c => c.charCodeAt(0));
const key  = Uint8Array.from("ed101f2240ec48c89e9d272a5c60e89203eaee5c49677191e8ce8fe9be516db9".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): ed101f2240ec48c89e9d272a5c60e89203eaee5c49677191e8ce8fe9be516db9
  • IV / nonce (hex): 7c19450805aa31e3fead9ce3
  • Ciphertext (hex): af9af3a32ff6982cb7aa889fb3b9c925f8782afdb0e4c5e549e50f1ee28b137333a63dc1c1e9ed14fa2dcddf03dd89dfa08a1072176094cd84bf38456fe2c341a1990134b872f6c9d73727c2deda9279daa245978b49400605226ae704de2b2936b42c51ac52dded52943c2ff3c6fbd2c430f271153e502473f6886efabd9381a77b55e2d1418df79e938670c63e697b97be724a7d9c35ceb3a39393bafce0392754eb6283e057112a549a0702e0674cc00b2bca93c4151e8f9e26c1670010f0b5f5377b20e698b06a6bcff93778cbc143d593312b5511e2ba62dd2770e1d6e88785241dd1f213945535465f48ea
  • Auth tag (hex): 40af2622915efd8ab1d4f2f7ae2fa8ce

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