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

Pamba Jiji vs Mbeya City

Ligi kuu Bara · Tanzania · 24 Jun 2026, 13:00 UTC

Final score
0 : 2
Result
Lost
Pick
Pamba Jiji
Market
1x2
Model prob.
57.5%
Best price
2.01
Min odds
1.87
Stake factor
2.20

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)
7FCncpwNGyLchRQj+d7npW4ExXkI4Fo61PdRjfPTctrR1ShFU2YFdabkGIu8zc9ThM4h6g/+nyEnizTLo65FKaQTEPgyN7EmccPip/ZfNZ/AL/kW8CIXZIojP4VZVZnXYlJe0A/0LPKxDLlGORzN7K5BWMY4QSFGGDSBgdurMK5mjqEjILoBHWYlL8hF3vEZMvoRNxOO+CjzNS4/5K8C0x3JL9QRftsyU+gZOktdSrOphU1tv37Iy8QMH4JXhGkYoTOi9CPrA+8NtmORW9DZz2i6AyRvSvhrQdTs0J5acBw2X05nfIAr3RBBe2DLztSrLXrkDg8aRwjwmgGM843K4AWPRbCJ7jHP7nr1
key fingerprint sha256: 3477046ef9d56d20e47a47c46b5f3d0c0c8e5f06170b67ff9e5b984788938a0a
Decrypt it & read the pick
Decryption key (released after the match)
2145f9addd3dbce1f4d83017b83459a41bb9abb1fecc73e133daca3a721c394c
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("7FCncpwNGyLchRQj+d7npW4ExXkI4Fo61PdRjfPTctrR1ShFU2YFdabkGIu8zc9ThM4h6g/+nyEnizTLo65FKaQTEPgyN7EmccPip/ZfNZ/AL/kW8CIXZIojP4VZVZnXYlJe0A/0LPKxDLlGORzN7K5BWMY4QSFGGDSBgdurMK5mjqEjILoBHWYlL8hF3vEZMvoRNxOO+CjzNS4/5K8C0x3JL9QRftsyU+gZOktdSrOphU1tv37Iy8QMH4JXhGkYoTOi9CPrA+8NtmORW9DZz2i6AyRvSvhrQdTs0J5acBw2X05nfIAr3RBBe2DLztSrLXrkDg8aRwjwmgGM843K4AWPRbCJ7jHP7nr1"), c => c.charCodeAt(0));
const key  = Uint8Array.from("2145f9addd3dbce1f4d83017b83459a41bb9abb1fecc73e133daca3a721c394c".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): 2145f9addd3dbce1f4d83017b83459a41bb9abb1fecc73e133daca3a721c394c
  • IV / nonce (hex): ec50a7729c0d1b22dc851423
  • Ciphertext (hex): f9dee7a56e04c57908e05a3ad4f7518df3d372dad1d5284553660575a6e4188bbccdcf5384ce21ea0ffe9f21278b34cba3ae4529a41310f83237b12671c3e2a7f65f359fc02ff916f02217648a233f85595599d762525ed00ff42cf2b10cb946391ccdecae4158c63841214618348181dbab30ae668ea12320ba011d66252fc845def11932fa1137138ef828f3352e3fe4af02d31dc92fd4117edb3253e8193a4b5d4ab3a9854d6dbf7ec8cbc40c1f8257846918a133a2f423eb03ef0db663915bd0d9cf68ba03246f4af86b41d4ecd09e5a701c365f4e677c802bdd10417b60cbced4ab2d7ae40e0f1a4708f09a01
  • Auth tag (hex): 8cf38dcae0058f45b089ee31cfee7af5

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