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

Hauts Lyonnais vs Chateauroux

National 1 · France · 22 Aug 2026, 16:00 UTC

Final score
0 : 0
Result
Lost
Pick
Hauts Lyonnais
Market
1X2
CLV vs fair close
+4.20%
Model prob.
31.1%
Best price
3.60
Min odds
3.28
Stake factor
1.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)
rj30FAmbpWyn0cApCStcaUL9QbkBHQdq2hmwyzPA20fdqrMDjc6U1KRAyr70ks6FP6CdTIaj0lUxUlVouS+d/KPP2sGvixppTeGdpBqnA2xAOKuuH7hYoFUCsMrKdbz+//vK2onJN7QN+8EjSkloXV8ysvmQJ3AuCGW/0MWdjfY+LerZz1BkRnkOEQT7GyvuHUVltpbUk3Iw/L6utTGHgPqCXazOPtK7lMRWL0kI92UHoxHuD6JfEcFR97W4/S2gVmWxO5cGbW8Q03xut3fuFOnKCN6I8n5BrDimOsGVunHrZ0ozaSi7aJhOpClE4uNH2gJL2IZUz90CfGgk8TpQ8+S55z+bI3OaCzjKIhcCR6j2
key fingerprint sha256: f9c0f97ab5af037fb74408b7e84c69addf6cc4d0fdc0ee3d047cce6b76f31082
Decrypt it & read the pick
Decryption key (released after the match)
6baaf29fc68c8a4fc75aff9f8fd6f30f0ba68cece6eff19af76e5f78c75e0736
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("rj30FAmbpWyn0cApCStcaUL9QbkBHQdq2hmwyzPA20fdqrMDjc6U1KRAyr70ks6FP6CdTIaj0lUxUlVouS+d/KPP2sGvixppTeGdpBqnA2xAOKuuH7hYoFUCsMrKdbz+//vK2onJN7QN+8EjSkloXV8ysvmQJ3AuCGW/0MWdjfY+LerZz1BkRnkOEQT7GyvuHUVltpbUk3Iw/L6utTGHgPqCXazOPtK7lMRWL0kI92UHoxHuD6JfEcFR97W4/S2gVmWxO5cGbW8Q03xut3fuFOnKCN6I8n5BrDimOsGVunHrZ0ozaSi7aJhOpClE4uNH2gJL2IZUz90CfGgk8TpQ8+S55z+bI3OaCzjKIhcCR6j2"), c => c.charCodeAt(0));
const key  = Uint8Array.from("6baaf29fc68c8a4fc75aff9f8fd6f30f0ba68cece6eff19af76e5f78c75e0736".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): 6baaf29fc68c8a4fc75aff9f8fd6f30f0ba68cece6eff19af76e5f78c75e0736
  • IV / nonce (hex): ae3df414099ba56ca7d1c029
  • Ciphertext (hex): 092b5c6942fd41b9011d076ada19b0cb33c0db47ddaab3038dce94d4a440cabef492ce853fa09d4c86a3d25531525568b92f9dfca3cfdac1af8b1a694de19da41aa7036c4038abae1fb858a05502b0caca75bcfefffbcada89c937b40dfbc1234a49685d5f32b2f99027702e0865bfd0c59d8df63e2dead9cf506446790e1104fb1b2bee1d4565b696d4937230fcbeaeb5318780fa825dacce3ed2bb94c4562f4908f76507a311ee0fa25f11c151f7b5b8fd2da05665b13b97066d6f10d37c6eb777ee14e9ca08de88f27e41ac38a63ac195ba71eb674a336928bb68984ea42944e2e347da024bd88654cfdd027c6824f13a50f3e4
  • Auth tag (hex): b9e73f9b23739a0b38ca22170247a8f6

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