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

La Louvière vs Excelsior

Club Friendlies 3 · World · 15 Jul 2026, 13:00 UTC

Final score
3 : 1
Result
Won
Pick
La Louvière
Market
1x2
Model prob.
71.0%
Best price
1.67
Min odds
1.49
Stake factor
2.50

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)
oIQe1hlfigV6bebrb4hbY7qdfdYynqybACYOn/u4BSCxFCseruRifH8uDkXUPKkGMBloaoAWm8qkpNQ1CriBFS3N/sYin3ww5THRnU1Ss/88fSAZOGrKxunTQJ8fpWHabC3gSOHZ4r0CUFE8Vyk4Js8y6/vE/0yebBWmHheyZpPAi/BiqtJLDyMxeVc4wfY8riY6+vEXBCFIYUp+2EalG8U3iII4tx+nBM2osPTOVkKQJ9f75iuDuC+POnfyjz5MR2Uhs/GOE4d6SDqLOhKCOwCi8C7S+aUeLWZqhQyODdB8cXV7ReHsdmov4DLmIFp4PG5R6zx/yBE6m0ZW3uh1F6ThrJPHnVGfVxsa
key fingerprint sha256: 899a734fd5ebf89b76a90face17192bc3e5dc0f9560585d2c90d8752e7544c67
Decrypt it & read the pick
Decryption key (released after the match)
668c2a4413154b21533ced56d6cf9e71e5d4941e536b5c4e6fd3baf91b98675e
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("oIQe1hlfigV6bebrb4hbY7qdfdYynqybACYOn/u4BSCxFCseruRifH8uDkXUPKkGMBloaoAWm8qkpNQ1CriBFS3N/sYin3ww5THRnU1Ss/88fSAZOGrKxunTQJ8fpWHabC3gSOHZ4r0CUFE8Vyk4Js8y6/vE/0yebBWmHheyZpPAi/BiqtJLDyMxeVc4wfY8riY6+vEXBCFIYUp+2EalG8U3iII4tx+nBM2osPTOVkKQJ9f75iuDuC+POnfyjz5MR2Uhs/GOE4d6SDqLOhKCOwCi8C7S+aUeLWZqhQyODdB8cXV7ReHsdmov4DLmIFp4PG5R6zx/yBE6m0ZW3uh1F6ThrJPHnVGfVxsa"), c => c.charCodeAt(0));
const key  = Uint8Array.from("668c2a4413154b21533ced56d6cf9e71e5d4941e536b5c4e6fd3baf91b98675e".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): 668c2a4413154b21533ced56d6cf9e71e5d4941e536b5c4e6fd3baf91b98675e
  • IV / nonce (hex): a0841ed6195f8a057a6de6eb
  • Ciphertext (hex): 6f885b63ba9d7dd6329eac9b00260e9ffbb80520b1142b1eaee4627c7f2e0e45d43ca9063019686a80169bcaa4a4d4350ab881152dcdfec6229f7c30e531d19d4d52b3ff3c7d2019386acac6e9d3409f1fa561da6c2de048e1d9e2bd0250513c57293826cf32ebfbc4ff4c9e6c15a61e17b26693c08bf062aad24b0f2331795738c1f63cae263afaf117042148614a7ed846a51bc537888238b71fa704cda8b0f4ce56429027d7fbe62b83b82f8f3a77f28f3e4c476521b3f18e13877a483a8b3a12823b00a2f02ed2f9a51e2d666a850c8e0dd07c71757b45e1ec766a2fe032e6205a783c6e51eb3c7fc8113a9b46
  • Auth tag (hex): 56dee87517a4e1ac93c79d519f571b1a

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