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

PPJ/Ruoholahti vs SexyPoxyt

Kolmonen · Finland · 27 Aug 2026, 17:00 UTC

Final score
2 : 1
Result
Won
Pick
PPJ/Ruoholahti
Market
1X2
CLV vs fair close
+5.62%
Model prob.
36.1%
Best price
3.00
Min odds
2.83
Stake factor
1.40

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)
U9RXjJhwooyMDjI/WaNFWuMDAZatD9i6LyAGVYCT0hvdWPmzz2tDNi7b2ZL7ZT5COGbh68UOrItKl3ZfBMTGa/kdE5orym3CkxtjK4s54W2Gt0umvM+4ine5TM3oFVE0svxhU6JqQmwuvTV/QzkcmkahczW5A6wqcjVC+ktRIjH2eMKIV1aXHGVoIxNYh3nMdjthbLd6HtjO30Pjo0VcYpV/i46bP5hl4dJOT2206YXk5cmIp7Qgl4VFj0B20SvIKNQiednRkcCoXg457vj7uI72loBGD5WLVVMwIuZjHI7BP4bowdB4MHrYEB0xoK5/jpnnx1jEpwQg/Zngk43PjOia4ZnwwVJDIY9T
key fingerprint sha256: 110297739f168fbb932a87b7be986b4a8f66045a040a1ef9e35c2d61d4979c8f
Decrypt it & read the pick
Decryption key (released after the match)
31e501a4f5e4384d1c98d65050bfd96b4c3c639a2b82ce43afa88c010dca8da6
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("U9RXjJhwooyMDjI/WaNFWuMDAZatD9i6LyAGVYCT0hvdWPmzz2tDNi7b2ZL7ZT5COGbh68UOrItKl3ZfBMTGa/kdE5orym3CkxtjK4s54W2Gt0umvM+4ine5TM3oFVE0svxhU6JqQmwuvTV/QzkcmkahczW5A6wqcjVC+ktRIjH2eMKIV1aXHGVoIxNYh3nMdjthbLd6HtjO30Pjo0VcYpV/i46bP5hl4dJOT2206YXk5cmIp7Qgl4VFj0B20SvIKNQiednRkcCoXg457vj7uI72loBGD5WLVVMwIuZjHI7BP4bowdB4MHrYEB0xoK5/jpnnx1jEpwQg/Zngk43PjOia4ZnwwVJDIY9T"), c => c.charCodeAt(0));
const key  = Uint8Array.from("31e501a4f5e4384d1c98d65050bfd96b4c3c639a2b82ce43afa88c010dca8da6".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): 31e501a4f5e4384d1c98d65050bfd96b4c3c639a2b82ce43afa88c010dca8da6
  • IV / nonce (hex): 53d4578c9870a28c8c0e323f
  • Ciphertext (hex): 59a3455ae3030196ad0fd8ba2f2006558093d21bdd58f9b3cf6b43362edbd992fb653e423866e1ebc50eac8b4a97765f04c4c66bf91d139a2bca6dc2931b632b8b39e16d86b74ba6bccfb88a77b94ccde8155134b2fc6153a26a426c2ebd357f43391c9a46a17335b903ac2a723542fa4b512231f678c2885756971c65682313588779cc763b616cb77a1ed8cedf43e3a3455c62957f8b8e9b3f9865e1d24e4f6db4e985e4e5c988a7b4209785458f4076d12bc828d42279d9d191c0a85e0e39eef8fbb88ef69680460f958b55533022e6631c8ec13f86e8c1d078307ad8101d31a0ae7f8e99e7c758c4a70420fd99
  • Auth tag (hex): e0938dcf8ce89ae199f0c15243218f53

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