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

Rēzekne / BJSS vs JFK Ventspils

First Liga · Latvia · 04 Jul 2026, 14:00 UTC

Final score
1 : 1
Result
Lost
Pick
JFK Ventspils
Market
1x2
Model prob.
56.1%
Best price
2.37
Min odds
1.92
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)
+qxK/unLR7B+tML2lBY0goVfPqAy1fw9xHPzEQWOh6cu5tAaB6GcJiH3A5cALJljk8OvfSI5NAFFL2bPn13rCAMeCQYtj2Du51eLKLOx0tLOcUrFSv0ItQYEa3prnPuwGK7iFCdYeM+xuBVbOoS7HBs0yG78tFnc0quemABGqeyZIavGOyVqpTVRz32ENdq7KScQwEkdcBIKFmmvjTLVlTIxqnQlKhy1Y49X9xyyiSoKTs9drIq+KUkIIoRs3LFF37LTCmdJc4fMkdWxcKO3fucE2qigSODq1sx40MxW4rE1H6P0p1TuMtaBZuc7coUbFmdhLls5QlV+rNYwXAZd6J4VszTeFSICUftu8A==
key fingerprint sha256: b4fb438dd07945202296ab0d0b63a49fd23e9d950b1f1ae476fcba15d788939f
Decrypt it & read the pick
Decryption key (released after the match)
52753527d107d4db34d3431390a5973203a71cfb18a5fdef65711e6417e87a3b
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("+qxK/unLR7B+tML2lBY0goVfPqAy1fw9xHPzEQWOh6cu5tAaB6GcJiH3A5cALJljk8OvfSI5NAFFL2bPn13rCAMeCQYtj2Du51eLKLOx0tLOcUrFSv0ItQYEa3prnPuwGK7iFCdYeM+xuBVbOoS7HBs0yG78tFnc0quemABGqeyZIavGOyVqpTVRz32ENdq7KScQwEkdcBIKFmmvjTLVlTIxqnQlKhy1Y49X9xyyiSoKTs9drIq+KUkIIoRs3LFF37LTCmdJc4fMkdWxcKO3fucE2qigSODq1sx40MxW4rE1H6P0p1TuMtaBZuc7coUbFmdhLls5QlV+rNYwXAZd6J4VszTeFSICUftu8A=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("52753527d107d4db34d3431390a5973203a71cfb18a5fdef65711e6417e87a3b".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): 52753527d107d4db34d3431390a5973203a71cfb18a5fdef65711e6417e87a3b
  • IV / nonce (hex): faac4afee9cb47b07eb4c2f6
  • Ciphertext (hex): 94163482855f3ea032d5fc3dc473f311058e87a72ee6d01a07a19c2621f70397002c996393c3af7d22393401452f66cf9f5deb08031e09062d8f60eee7578b28b3b1d2d2ce714ac54afd08b506046b7a6b9cfbb018aee214275878cfb1b8155b3a84bb1c1b34c86efcb459dcd2ab9e980046a9ec9921abc63b256aa53551cf7d8435dabb292710c0491d70120a1669af8d32d5953231aa74252a1cb5638f57f71cb2892a0a4ecf5dac8abe29490822846cdcb145dfb2d30a67497387cc91d5b170a3b77ee704daa8a048e0ead6cc78d0cc56e2b1351fa3f4a754ee32d68166e73b72851b1667612e5b3942557eacd630
  • Auth tag (hex): 5c065de89e15b334de15220251fb6ef0

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