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

Neptūną Klaipėda vs FA Šiauliai II

1. Lyga · Lithuania · 25 Jul 2026, 14:00 UTC

Final score
2 : 1
Result
Won
Pick
Neptūną Klaipėda
Market
1x2
Model prob.
76.5%
Best price
1.42
Min odds
1.38
Stake factor
1.60

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)
A+xXpOX1UUvAT0K+PtRqInOLdAImfjVBJba609127DsgVOS2jGfPtV6kskClYOemQAhOdDdREye0M3GriOQ3i8oNp9figoleeKtAZT+7KL6po9KZYzM8L/LazyW/fhZ9iNyV/Lp5+5PdTIEzb16YL1TxqObZEo4WdN+iZ46omeXyB/tfgaw7B4QPRicdcK6FEIsiOo2HnwRx+obdQiKnYo67gsdgO9XebTsoSHtdBnRy9MURqrcnVdFufjT09u7Uss25dpcdri7gTj9vgtQ2Vq9xDHBAIGFtuszm8PCZ3MTbtSuv3bmF/LVxipgw8LGHFKaqUiXeT+SiW88Ss2JLVxEZcIsoEPEommSFAjB3LpcSpLk=
key fingerprint sha256: db136bf36831ffdebabc1c0e98cb078315ddf32f80fa2fdc9c85510b49ed052e
Decrypt it & read the pick
Decryption key (released after the match)
7cc1c8adfd853b6a2ced832fb6002df74cdf90923162158cdc1f3a1a55d47bda
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("A+xXpOX1UUvAT0K+PtRqInOLdAImfjVBJba609127DsgVOS2jGfPtV6kskClYOemQAhOdDdREye0M3GriOQ3i8oNp9figoleeKtAZT+7KL6po9KZYzM8L/LazyW/fhZ9iNyV/Lp5+5PdTIEzb16YL1TxqObZEo4WdN+iZ46omeXyB/tfgaw7B4QPRicdcK6FEIsiOo2HnwRx+obdQiKnYo67gsdgO9XebTsoSHtdBnRy9MURqrcnVdFufjT09u7Uss25dpcdri7gTj9vgtQ2Vq9xDHBAIGFtuszm8PCZ3MTbtSuv3bmF/LVxipgw8LGHFKaqUiXeT+SiW88Ss2JLVxEZcIsoEPEommSFAjB3LpcSpLk="), c => c.charCodeAt(0));
const key  = Uint8Array.from("7cc1c8adfd853b6a2ced832fb6002df74cdf90923162158cdc1f3a1a55d47bda".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): 7cc1c8adfd853b6a2ced832fb6002df74cdf90923162158cdc1f3a1a55d47bda
  • IV / nonce (hex): 03ec57a4e5f5514bc04f42be
  • Ciphertext (hex): 3ed46a22738b7402267e354125b6bad3dd76ec3b2054e4b68c67cfb55ea4b240a560e7a640084e7437511327b43371ab88e4378bca0da7d7e282895e78ab40653fbb28bea9a3d29963333c2ff2dacf25bf7e167d88dc95fcba79fb93dd4c81336f5e982f54f1a8e6d9128e1674dfa2678ea899e5f207fb5f81ac3b07840f46271d70ae85108b223a8d879f0471fa86dd4222a7628ebb82c7603bd5de6d3b28487b5d067472f4c511aab72755d16e7e34f4f6eed4b2cdb976971dae2ee04e3f6f82d43656af710c704020616dbacce6f0f099dcc4dbb52bafddb985fcb5718a9830f0b18714a6aa5225de4fe4a25bcf12b3624b57111970
  • Auth tag (hex): 8b2810f1289a64850230772e9712a4b9

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