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

Partizan vs IMT Novi Beograd

Super Liga · Serbia · 02 Aug 2026, 18:00 UTC

Final score
1 : 2
Result
Lost
Pick
Partizan
Market
1x2
Model prob.
67.3%
Best price
1.65
Min odds
1.58
Stake factor
1.80

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)
WFhhxWhgTu7weylmQdUrrwPPz26M+DRvZWQXtLJism5TJp7FYQBpmtTnZ/OOh/BZ7XhgcOqFfqcVteDJCoBPL7x7oB5FLUVG5U1QlsLyeoJeNITdJsQaRZLohls3yL/8s6LujIYxmPGD19JIjHX9zBaW+8rD3bgRgYvqa5U46iX6ezuYYUUCshwTh+ZonDI4VYdjHjYbUMSRMYrAY9IuPbcqc5ze7i8aKo0HwV1jfzq5qFbO0iYFlItinFsLHX/VFNlvfet7tNaJMf8jIXUMeUyZoo6hmhFeSi2FU7K5BIqqJy2x5sYG5DdWKUTj84GnKZ4awHd3j6PHFwSbi6segxyYovoP+fxICQ==
key fingerprint sha256: 7e6870c4f76e0ee39f3f2aecda078567ebb4cd03f9bf28b79a1710525260fe63
Decrypt it & read the pick
Decryption key (released after the match)
c152cdcf60764e0aaa7cac4aea700c38de0caa3c4e3ede6cda3d2d37b2293b54
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("WFhhxWhgTu7weylmQdUrrwPPz26M+DRvZWQXtLJism5TJp7FYQBpmtTnZ/OOh/BZ7XhgcOqFfqcVteDJCoBPL7x7oB5FLUVG5U1QlsLyeoJeNITdJsQaRZLohls3yL/8s6LujIYxmPGD19JIjHX9zBaW+8rD3bgRgYvqa5U46iX6ezuYYUUCshwTh+ZonDI4VYdjHjYbUMSRMYrAY9IuPbcqc5ze7i8aKo0HwV1jfzq5qFbO0iYFlItinFsLHX/VFNlvfet7tNaJMf8jIXUMeUyZoo6hmhFeSi2FU7K5BIqqJy2x5sYG5DdWKUTj84GnKZ4awHd3j6PHFwSbi6segxyYovoP+fxICQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("c152cdcf60764e0aaa7cac4aea700c38de0caa3c4e3ede6cda3d2d37b2293b54".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): c152cdcf60764e0aaa7cac4aea700c38de0caa3c4e3ede6cda3d2d37b2293b54
  • IV / nonce (hex): 585861c568604eeef07b2966
  • Ciphertext (hex): 41d52baf03cfcf6e8cf8346f656417b4b262b26e53269ec56100699ad4e767f38e87f059ed786070ea857ea715b5e0c90a804f2fbc7ba01e452d4546e54d5096c2f27a825e3484dd26c41a4592e8865b37c8bffcb3a2ee8c863198f183d7d2488c75fdcc1696fbcac3ddb811818bea6b9538ea25fa7b3b98614502b21c1387e6689c32385587631e361b50c491318ac063d22e3db72a739cdeee2f1a2a8d07c15d637f3ab9a856ced22605948b629c5b0b1d7fd514d96f7deb7bb4d68931ff2321750c794c99a28ea19a115e4a2d8553b2b9048aaa272db1e6c606e437562944e3f381a7299e1ac077778fa3c7
  • Auth tag (hex): 17049b8bab1e831c98a2fa0ff9fc4809

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