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

Ružomberok vs OFK Malženice

Club Friendlies 3 · World · 24 Jun 2026, 00:00 UTC

Final score
1 : 0
Result
Won
Pick
Ružomberok
Market
1x2
Model prob.
62.3%
Best price
1.83
Min odds
1.72
Stake factor
2.10

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)
LTrJe7igx//WQnvUXx39s35kyTgAK+rVgcTt7BsLIrgxJDE2o60LpZxFlX3Mmjy7vQCy7z6ifGRAGtZBtbGVws1EIAv/3xa3hp3AgT4NZxnCLFH6egbQ+IWYAKNblBv5rpBCnPStD4u/1eMSw+ZcXtJye1EXCwPxCPiB3sRSmAI+LGKcmFzODY5fIztqNHd4ecXhpvm2H50gIT1o/xIV86KnqO+M39wOmpe/En9ya3N8nbNlA1dhjAqkwbCEqt6gHrmkehxOAjIJyPa3LqylzOLnCFJSztImNR3rgfq9jPElCryXqMkhyNvx1WBkKyvZ9/6r3NncHVygG4qRil+r2JD8Yrh6dzescpll
key fingerprint sha256: 187b67edc898b6213f67547b12dd0f00743e7d1139b4fa00ff6c1d635a853366
Decrypt it & read the pick
Decryption key (released after the match)
f0199e1d192cd09dce4c3fe5536ca924467a055d16e24b3ad3c8f212fda807ae
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("LTrJe7igx//WQnvUXx39s35kyTgAK+rVgcTt7BsLIrgxJDE2o60LpZxFlX3Mmjy7vQCy7z6ifGRAGtZBtbGVws1EIAv/3xa3hp3AgT4NZxnCLFH6egbQ+IWYAKNblBv5rpBCnPStD4u/1eMSw+ZcXtJye1EXCwPxCPiB3sRSmAI+LGKcmFzODY5fIztqNHd4ecXhpvm2H50gIT1o/xIV86KnqO+M39wOmpe/En9ya3N8nbNlA1dhjAqkwbCEqt6gHrmkehxOAjIJyPa3LqylzOLnCFJSztImNR3rgfq9jPElCryXqMkhyNvx1WBkKyvZ9/6r3NncHVygG4qRil+r2JD8Yrh6dzescpll"), c => c.charCodeAt(0));
const key  = Uint8Array.from("f0199e1d192cd09dce4c3fe5536ca924467a055d16e24b3ad3c8f212fda807ae".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): f0199e1d192cd09dce4c3fe5536ca924467a055d16e24b3ad3c8f212fda807ae
  • IV / nonce (hex): 2d3ac97bb8a0c7ffd6427bd4
  • Ciphertext (hex): 5f1dfdb37e64c938002bead581c4edec1b0b22b831243136a3ad0ba59c45957dcc9a3cbbbd00b2ef3ea27c64401ad641b5b195c2cd44200bffdf16b7869dc0813e0d6719c22c51fa7a06d0f8859800a35b941bf9ae90429cf4ad0f8bbfd5e312c3e65c5ed2727b51170b03f108f881dec45298023e2c629c985cce0d8e5f233b6a34777879c5e1a6f9b61f9d20213d68ff1215f3a2a7a8ef8cdfdc0e9a97bf127f726b737c9db3650357618c0aa4c1b084aadea01eb9a47a1c4e023209c8f6b72eaca5cce2e7085252ced226351deb81fabd8cf1250abc97a8c921c8dbf1d560642b2bd9f7feabdcd9dc1d5ca01b8a
  • Auth tag (hex): 918a5fabd890fc62b87a7737ac729965

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