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

Polissya Zhytomyr vs Sabah

Club Friendlies 3 · World · 02 Jul 2026, 12:00 UTC

Final score
4 : 1
Result
Won
Pick
Polissya Zhytomyr
Market
1x2
Model prob.
41.3%
Best price
3.09
Min odds
2.68
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)
u5g8avQqWbs61Cv+55N7VsJFifE39Wbi/TNGy8eBMSbqSXZtj8c7Ddm0wi+aqZ8qjpGpO4m1RuDa51zOJ8gVP+8OmtyUIHdSn5LxU2yY//D9lFos3zi33abx1T3LPr7a0GLeXj7BAqyA2UKn9fNi0aeIQKuOejnY7iMCcW1UNHUZZmhvlr1LQzE70i2oyUFme1Ah4XPwWbLh25b/VluJ79mWKsnv9VDQEUir37ZfuUiRqIbgAJtIztQt8T5yEF3PbfzE/ZizdA3kC209MuN15iuN1Gq1HzOi/vG8pwTOMZKjWb/E1XSDAMSF0o/8GfTNMUefZyhXgdIbYp4zHgT07wrbatvIHQsbDoaci+Wg+g==
key fingerprint sha256: 13d8af0440feb023bb56a988a76b47889eaf3d7196b877ebafb1c39340de433b
Decrypt it & read the pick
Decryption key (released after the match)
a045b29ce414ec1d8b06dfc3f3079479347944b3be8c039fbff5e6c1b1ccc816
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("u5g8avQqWbs61Cv+55N7VsJFifE39Wbi/TNGy8eBMSbqSXZtj8c7Ddm0wi+aqZ8qjpGpO4m1RuDa51zOJ8gVP+8OmtyUIHdSn5LxU2yY//D9lFos3zi33abx1T3LPr7a0GLeXj7BAqyA2UKn9fNi0aeIQKuOejnY7iMCcW1UNHUZZmhvlr1LQzE70i2oyUFme1Ah4XPwWbLh25b/VluJ79mWKsnv9VDQEUir37ZfuUiRqIbgAJtIztQt8T5yEF3PbfzE/ZizdA3kC209MuN15iuN1Gq1HzOi/vG8pwTOMZKjWb/E1XSDAMSF0o/8GfTNMUefZyhXgdIbYp4zHgT07wrbatvIHQsbDoaci+Wg+g=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("a045b29ce414ec1d8b06dfc3f3079479347944b3be8c039fbff5e6c1b1ccc816".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): a045b29ce414ec1d8b06dfc3f3079479347944b3be8c039fbff5e6c1b1ccc816
  • IV / nonce (hex): bb983c6af42a59bb3ad42bfe
  • Ciphertext (hex): e7937b56c24589f137f566e2fd3346cbc7813126ea49766d8fc73b0dd9b4c22f9aa99f2a8e91a93b89b546e0dae75cce27c8153fef0e9adc942077529f92f1536c98fff0fd945a2cdf38b7dda6f1d53dcb3ebedad062de5e3ec102ac80d942a7f5f362d1a78840ab8e7a39d8ee2302716d5434751966686f96bd4b43313bd22da8c941667b5021e173f059b2e1db96ff565b89efd9962ac9eff550d01148abdfb65fb94891a886e0009b48ced42df13e72105dcf6dfcc4fd98b3740de40b6d3d32e375e62b8dd46ab51f33a2fef1bca704ce3192a359bfc4d5748300c485d28ffc19f4cd31479f67285781d21b629e331e04f4
  • Auth tag (hex): ef0adb6adbc81d0b1b0e869c8be5a0fa

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