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

Houston Dynamo vs Real Salt Lake

Major League Soccer · USA · 10 Sept 2026, 00:30 UTC

Final score
2 : 1
Result
Lost
Pick
Real Salt Lake
Market
1X2
CLV vs fair close
-13.11%
Model prob.
26.4%
Best price
4.00
Min odds
3.87
Stake factor
1.00

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)
fcH/EUfnACbx9iA9rterO7y2GlvMsNzEQS0WmoY/z5WNpOoJwswmQ1DeENXxuSnAmYJs7TFFYIZk6zj+zSHWhezbe7/bXinY0ym6Lkp33XC0HdVGs/b4ilzsxBnJ94VRljDKW/89oXzSLXldulj7/99mhlEW0RohBJYOVLurbF+TdIQ0Relw/jsxpW7DT9MxGFKXO7YRKaFZLo0JW1Jgj3/f+j6wxv0mYHhQDMzBikQiQrcX4o70hmglYkVdbmYm311jygJ1YUkpCvb81W1v1076elTU8h6eoIAmGEMyc0V3H/ixfSk/TVQstDh5B4fti74dddMWbTuhpS7QwSTe8x4WWIUpZePbwhCobg==
key fingerprint sha256: c9d16296144474cf83a533e7fcde74914799463788d6b412ad5a6bba9f70293c
Decrypt it & read the pick
Decryption key (released after the match)
8a24c3a5d12faca884d855f3bce23eb6aa9fa427d538bce1bc294c77ac793899
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("fcH/EUfnACbx9iA9rterO7y2GlvMsNzEQS0WmoY/z5WNpOoJwswmQ1DeENXxuSnAmYJs7TFFYIZk6zj+zSHWhezbe7/bXinY0ym6Lkp33XC0HdVGs/b4ilzsxBnJ94VRljDKW/89oXzSLXldulj7/99mhlEW0RohBJYOVLurbF+TdIQ0Relw/jsxpW7DT9MxGFKXO7YRKaFZLo0JW1Jgj3/f+j6wxv0mYHhQDMzBikQiQrcX4o70hmglYkVdbmYm311jygJ1YUkpCvb81W1v1076elTU8h6eoIAmGEMyc0V3H/ixfSk/TVQstDh5B4fti74dddMWbTuhpS7QwSTe8x4WWIUpZePbwhCobg=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("8a24c3a5d12faca884d855f3bce23eb6aa9fa427d538bce1bc294c77ac793899".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): 8a24c3a5d12faca884d855f3bce23eb6aa9fa427d538bce1bc294c77ac793899
  • IV / nonce (hex): 7dc1ff1147e70026f1f6203d
  • Ciphertext (hex): aed7ab3bbcb61a5bccb0dcc4412d169a863fcf958da4ea09c2cc264350de10d5f1b929c099826ced3145608664eb38fecd21d685ecdb7bbfdb5e29d8d329ba2e4a77dd70b41dd546b3f6f88a5cecc419c9f785519630ca5bff3da17cd22d795dba58fbffdf66865116d11a2104960e54bbab6c5f9374843445e970fe3b31a56ec34fd3311852973bb61129a1592e8d095b52608f7fdffa3eb0c6fd266078500cccc18a442242b717e28ef486682562455d6e6626df5d63ca02756149290af6fcd56d6fd74efa7a54d4f21e9ea080261843327345771ff8b17d293f4d542cb438790787ed8bbe1d75d3166d3ba1a52ed0
  • Auth tag (hex): c124def31e1658852965e3dbc210a86e

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