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

Hill Country Lobos vs Laredo Heat

USL League Two · United States · 24 Jun 2026, 00:00 UTC

Final score
0 : 5
Result
Lost
Pick
Hill Country Lobos
Market
1x2
Model prob.
17.7%
Best price
8.76
Min odds
7.31
Stake factor
3.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)
JN4HXt9zGb0zfzawqDi420owenyraCck/dSPZOP/hyP+GjRZgpfZaYV6DQ2nXL+LGZ0MHH3IkMEPoJ2qdMLGbQQrfAMO+4YROVAbqSf2jKL2NIyf/pbde+8A8tKHmq2Ul9O7XzKbbUIOfU62axsKFoppQ06tbGJVRHzLIzPwxZqIEHYv/HqAn/81gQpoqUBCkAQXV3Kq6/eM1VnpSjxtbHAUGXvuDFLSGk9EoMHYkX4E2K4PK7XOojHYyOy7a5AhMWkjRyiDYVi8peJv52G5j437Vy/agIgJ3yFZzD7DGm4AKriYRT2mDouyWoX+4Kb82MR9X0wBbogKgK3xuWX0zkL79Hlm9JXjIIt+J3NlggQ=
key fingerprint sha256: 30694ebd5f2ab9f6d65348ee7f23b0592acdbe89d154df5d71118cedf7969d1f
Decrypt it & read the pick
Decryption key (released after the match)
c5d88588403a5ec644593d528eed098ab255c520f48ad245b8558303be0c0913
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("JN4HXt9zGb0zfzawqDi420owenyraCck/dSPZOP/hyP+GjRZgpfZaYV6DQ2nXL+LGZ0MHH3IkMEPoJ2qdMLGbQQrfAMO+4YROVAbqSf2jKL2NIyf/pbde+8A8tKHmq2Ul9O7XzKbbUIOfU62axsKFoppQ06tbGJVRHzLIzPwxZqIEHYv/HqAn/81gQpoqUBCkAQXV3Kq6/eM1VnpSjxtbHAUGXvuDFLSGk9EoMHYkX4E2K4PK7XOojHYyOy7a5AhMWkjRyiDYVi8peJv52G5j437Vy/agIgJ3yFZzD7DGm4AKriYRT2mDouyWoX+4Kb82MR9X0wBbogKgK3xuWX0zkL79Hlm9JXjIIt+J3NlggQ="), c => c.charCodeAt(0));
const key  = Uint8Array.from("c5d88588403a5ec644593d528eed098ab255c520f48ad245b8558303be0c0913".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): c5d88588403a5ec644593d528eed098ab255c520f48ad245b8558303be0c0913
  • IV / nonce (hex): 24de075edf7319bd337f36b0
  • Ciphertext (hex): a838b8db4a307a7cab682724fdd48f64e3ff8723fe1a34598297d969857a0d0da75cbf8b199d0c1c7dc890c10fa09daa74c2c66d042b7c030efb861139501ba927f68ca2f6348c9ffe96dd7bef00f2d2879aad9497d3bb5f329b6d420e7d4eb66b1b0a168a69434ead6c6255447ccb2333f0c59a8810762ffc7a809fff35810a68a940429004175772aaebf78cd559e94a3c6d6c7014197bee0c52d21a4f44a0c1d8917e04d8ae0f2bb5cea231d8c8ecbb6b90213169234728836158bca5e26fe761b98f8dfb572fda808809df2159cc3ec31a6e002ab898453da60e8bb25a85fee0a6fcd8c47d5f4c016e880a80adf1b965f4ce
  • Auth tag (hex): 42fbf47966f495e3208b7e2773658204

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