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

GKS Tychy vs Avia Swidnik

2nd Liga · Poland · 06 Sept 2026, 17:30 UTC

Final score
1 : 0
Result
Lost
Pick
Avia Swidnik
Market
1X2
CLV vs fair close
+18.83%
Model prob.
20.9%
Best price
5.15
Min odds
4.89
Stake factor
1.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)
ThEXPeaggqTub492k1qh1/P2fmOok/QHB6lZwLzwge7LL2FCk0KbccIsbuXlBWSxtTiTP8IFjKsqVckL1faGaXOOnNb4soQ7tC6rUPyFVP/lgDphDdTH9skyaORAvBnERfzanZ0pdhYW1AEPhCKbNIyQGm0Q0HJOMoYLqxhlMT4TjsGUIZupuOCn+d+NZaZEpFZG67FAyzwYrhJV0z3NyqTqiWoDYXQnLhCF7wEeKCtTDGVfuIkMI6U0l63NgsCShL/1F195S4M7yRcu+Had1n9y5N00ocE5/VUnuJQf6T03XgHoX0GJh6wPz/+nFW3o1AzFYrRHkcf7SjUWPQsz93VGXjDJVyDkJlOfj3th
key fingerprint sha256: d1dd3b0fbd3471e966430c0126e68f1963f3f5cda68cf185d5f37b3e6f110c79
Decrypt it & read the pick
Decryption key (released after the match)
13453434640d5a59919ee0315904861ea9c90f09f940c2119fe8af27383b48e6
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("ThEXPeaggqTub492k1qh1/P2fmOok/QHB6lZwLzwge7LL2FCk0KbccIsbuXlBWSxtTiTP8IFjKsqVckL1faGaXOOnNb4soQ7tC6rUPyFVP/lgDphDdTH9skyaORAvBnERfzanZ0pdhYW1AEPhCKbNIyQGm0Q0HJOMoYLqxhlMT4TjsGUIZupuOCn+d+NZaZEpFZG67FAyzwYrhJV0z3NyqTqiWoDYXQnLhCF7wEeKCtTDGVfuIkMI6U0l63NgsCShL/1F195S4M7yRcu+Had1n9y5N00ocE5/VUnuJQf6T03XgHoX0GJh6wPz/+nFW3o1AzFYrRHkcf7SjUWPQsz93VGXjDJVyDkJlOfj3th"), c => c.charCodeAt(0));
const key  = Uint8Array.from("13453434640d5a59919ee0315904861ea9c90f09f940c2119fe8af27383b48e6".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): 13453434640d5a59919ee0315904861ea9c90f09f940c2119fe8af27383b48e6
  • IV / nonce (hex): 4e11173de6a082a4ee6f8f76
  • Ciphertext (hex): 935aa1d7f3f67e63a893f40707a959c0bcf081eecb2f614293429b71c22c6ee5e50564b1b538933fc2058cab2a55c90bd5f68669738e9cd6f8b2843bb42eab50fc8554ffe5803a610dd4c7f6c93268e440bc19c445fcda9d9d29761616d4010f84229b348c901a6d10d0724e32860bab1865313e138ec194219ba9b8e0a7f9df8d65a644a45646ebb140cb3c18ae1255d33dcdcaa4ea896a036174272e1085ef011e282b530c655fb8890c23a53497adcd82c09284bff5175f794b833bc9172ef8769dd67f72e4dd34a1c139fd5527b8941fe93d375e01e85f418987ac0fcfffa7156de8d40cc562b44791c7fb4a35163d0b
  • Auth tag (hex): 33f775465e30c95720e426539f8f7b61

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