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

FC Cartagena vs Johor Darul Ta'zim

Club Friendlies 4 · World · 31 Jul 2026, 17:30 UTC

Final score
0 : 2
Result
Won
Pick
Johor Darul Ta'zim
Market
1x2
Model prob.
49.8%
Best price
2.32
Min odds
2.19
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)
Ckwvr+y9ULWBy4Zen75qmfMpN2HqKroZsnFHkeKHrFTpZn3aYSaLPNuwR9eeLW2yvgWpEGHsAvR/WMhvASce9dtMTBXNgijCxjAzR7fTW8dFiKUDcyvlwWWjntr8i+4l8gmDhuAOOK+xnLLNGPzptA/TCTE9FUyLovN/Nx+4hs1JT0St+hB+rTBxJe3DWYgigBBKLsA+GjbKH3uJS2UHAOA/DeSftOOMXQtLz5rBPBt3baY1+Dj3jEHWD1Nj9qXfLfal+APKJ6Fkp5u2hbNy/eEuKSKssF/N/GvFq35y9p//qwkpsRW77ovtMNI6iX5p4/e3wnMP6w8RK4OErXUrDymi2Xtwg2vHLgOVoM/dDTPrBkg=
key fingerprint sha256: 08b68cbfdf06c752e42028441c035cf229123c1eabf935e59ff76db6ab294e5a
Decrypt it & read the pick
Decryption key (released after the match)
ce6370eaf810d634cd22a5577962fb29b3e1a8ddacfef204ce88eb8d9fb4292d
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("Ckwvr+y9ULWBy4Zen75qmfMpN2HqKroZsnFHkeKHrFTpZn3aYSaLPNuwR9eeLW2yvgWpEGHsAvR/WMhvASce9dtMTBXNgijCxjAzR7fTW8dFiKUDcyvlwWWjntr8i+4l8gmDhuAOOK+xnLLNGPzptA/TCTE9FUyLovN/Nx+4hs1JT0St+hB+rTBxJe3DWYgigBBKLsA+GjbKH3uJS2UHAOA/DeSftOOMXQtLz5rBPBt3baY1+Dj3jEHWD1Nj9qXfLfal+APKJ6Fkp5u2hbNy/eEuKSKssF/N/GvFq35y9p//qwkpsRW77ovtMNI6iX5p4/e3wnMP6w8RK4OErXUrDymi2Xtwg2vHLgOVoM/dDTPrBkg="), c => c.charCodeAt(0));
const key  = Uint8Array.from("ce6370eaf810d634cd22a5577962fb29b3e1a8ddacfef204ce88eb8d9fb4292d".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): ce6370eaf810d634cd22a5577962fb29b3e1a8ddacfef204ce88eb8d9fb4292d
  • IV / nonce (hex): 0a4c2fafecbd50b581cb865e
  • Ciphertext (hex): 9fbe6a99f3293761ea2aba19b2714791e287ac54e9667dda61268b3cdbb047d79e2d6db2be05a91061ec02f47f58c86f01271ef5db4c4c15cd8228c2c6303347b7d35bc74588a503732be5c165a39edafc8bee25f2098386e00e38afb19cb2cd18fce9b40fd309313d154c8ba2f37f371fb886cd494f44adfa107ead307125edc359882280104a2ec03e1a36ca1f7b894b650700e03f0de49fb4e38c5d0b4bcf9ac13c1b776da635f838f78c41d60f5363f6a5df2df6a5f803ca27a164a79bb685b372fde12e2922acb05fcdfc6bc5ab7e72f69fffab0929b115bbee8bed30d23a897e69e3f7b7c2730feb0f112b8384ad752b0f29a2d9
  • Auth tag (hex): 7b70836bc72e0395a0cfdd0d33eb0648

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