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

Warta Sieradz vs Mławianka Mława

3. Liga - Group 1 · Poland · 01 Aug 2026, 16:00 UTC

Final score
1 : 2
Result
Lost
Pick
Warta Sieradz
Market
1x2
Model prob.
54.1%
Best price
2.21
Min odds
2.00
Stake factor
2.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)
+R35QpAXoAMDVNf9QZ8ZRG3xxcJsaQQjVPa2j4691HvyAENe307KRq99ryx4YvE+1oo6YOtPHNccNF8j5+mbBrx6Z8GJUcjbS2fFrNGHSX9rH6TPBtljOv+Ori4KrGkHyx7U4FmlNJECZkI4Mk4cFGFtoOvPOQdgIEku/aUMF7pDGPnGLsQcn4RBs9HRC6VgwbIavfSc+mlEX+XNmd/SXUYZXqq4n35nM37K6KkphF8bOQBsVMByQqE7f62vrx+iiSZIHBLeYjwGpmqUVyn2w1BWxzm1/ljqAKx0bXQqMWBh3jtHIiQcOLFOU0vw/bgDKIiJjJDCVrLikxyroc0T0odIQ4NEJE+cLNg=
key fingerprint sha256: 54c295ac62586845e477bea0667c255fb85f7fb2ecc0aa8b8d54e547482dfe77
Decrypt it & read the pick
Decryption key (released after the match)
0406ccc2368f0f617df41732817e4503114073bd2c647c230e213996b6018aa4
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("+R35QpAXoAMDVNf9QZ8ZRG3xxcJsaQQjVPa2j4691HvyAENe307KRq99ryx4YvE+1oo6YOtPHNccNF8j5+mbBrx6Z8GJUcjbS2fFrNGHSX9rH6TPBtljOv+Ori4KrGkHyx7U4FmlNJECZkI4Mk4cFGFtoOvPOQdgIEku/aUMF7pDGPnGLsQcn4RBs9HRC6VgwbIavfSc+mlEX+XNmd/SXUYZXqq4n35nM37K6KkphF8bOQBsVMByQqE7f62vrx+iiSZIHBLeYjwGpmqUVyn2w1BWxzm1/ljqAKx0bXQqMWBh3jtHIiQcOLFOU0vw/bgDKIiJjJDCVrLikxyroc0T0odIQ4NEJE+cLNg="), c => c.charCodeAt(0));
const key  = Uint8Array.from("0406ccc2368f0f617df41732817e4503114073bd2c647c230e213996b6018aa4".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): 0406ccc2368f0f617df41732817e4503114073bd2c647c230e213996b6018aa4
  • IV / nonce (hex): f91df9429017a0030354d7fd
  • Ciphertext (hex): 419f19446df1c5c26c69042354f6b68f8ebdd47bf200435edf4eca46af7daf2c7862f13ed68a3a60eb4f1cd71c345f23e7e99b06bc7a67c18951c8db4b67c5acd187497f6b1fa4cf06d9633aff8eae2e0aac6907cb1ed4e059a5349102664238324e1c14616da0ebcf39076020492efda50c17ba4318f9c62ec41c9f8441b3d1d10ba560c1b21abdf49cfa69445fe5cd99dfd25d46195eaab89f7e67337ecae8a929845f1b39006c54c07242a13b7fadafaf1fa28926481c12de623c06a66a945729f6c35056c739b5fe58ea00ac746d742a316061de3b4722241c38b14e534bf0fdb8032888898c90c256b2e293
  • Auth tag (hex): 1caba1cd13d28748438344244f9c2cd8

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