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

Union Macomb vs Lansing City

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

Final score
2 : 3
Result
Won
Pick
Lansing City
Market
1x2
Model prob.
19.1%
Best price
12.36
Min odds
6.61
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)
DEcw8a2uO9Wo6eiIAxUzutGhRPWPQHkE0v6HdRT28FvRk6PqlBrlcyRoARTwi8XuibLp5/q3OfRnsGkODyk9YMabmELnKVFjXw6/ofXzVYbkgtb06Mx6SLkJG5a8ZYHnqB+xZsu8S79wQsUGs2ueRfQZ2qh2w5jayQ7fk0GW0rPWH4ti0pCFQbu08kV9fgKQYAL6gH9mMC6sVfkXJEiRx4j0KRdyq3+Hl5mwg0O58Q3y4EIvi/YgqXp41NgCqHL1ruikj5RviHDvMG2GfrAhCxsHECb+6DfDT3OcvTvgDyn/gSX786w776Y3uG3Be6lLYu3IiskfmZrqwd4Uu+cqmkf62/huF8jd2JHwxg==
key fingerprint sha256: 820c60f96edd346e1154f7a6a2b495bf99600ba8999391d5fe29d5b6a697ffbf
Decrypt it & read the pick
Decryption key (released after the match)
94979becc5a71b8037329b340e8c28367e0bbcccf978596625cd3880996f797a
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("DEcw8a2uO9Wo6eiIAxUzutGhRPWPQHkE0v6HdRT28FvRk6PqlBrlcyRoARTwi8XuibLp5/q3OfRnsGkODyk9YMabmELnKVFjXw6/ofXzVYbkgtb06Mx6SLkJG5a8ZYHnqB+xZsu8S79wQsUGs2ueRfQZ2qh2w5jayQ7fk0GW0rPWH4ti0pCFQbu08kV9fgKQYAL6gH9mMC6sVfkXJEiRx4j0KRdyq3+Hl5mwg0O58Q3y4EIvi/YgqXp41NgCqHL1ruikj5RviHDvMG2GfrAhCxsHECb+6DfDT3OcvTvgDyn/gSX786w776Y3uG3Be6lLYu3IiskfmZrqwd4Uu+cqmkf62/huF8jd2JHwxg=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("94979becc5a71b8037329b340e8c28367e0bbcccf978596625cd3880996f797a".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): 94979becc5a71b8037329b340e8c28367e0bbcccf978596625cd3880996f797a
  • IV / nonce (hex): 0c4730f1adae3bd5a8e9e888
  • Ciphertext (hex): 031533bad1a144f58f407904d2fe877514f6f05bd193a3ea941ae57324680114f08bc5ee89b2e9e7fab739f467b0690e0f293d60c69b9842e72951635f0ebfa1f5f35586e482d6f4e8cc7a48b9091b96bc6581e7a81fb166cbbc4bbf7042c506b36b9e45f419daa876c398dac90edf934196d2b3d61f8b62d2908541bbb4f2457d7e02906002fa807f66302eac55f917244891c788f4291772ab7f879799b08343b9f10df2e0422f8bf620a97a78d4d802a872f5aee8a48f946f8870ef306d867eb0210b1b071026fee837c34f739cbd3be00f29ff8125fbf3ac3befa637b86dc17ba94b62edc88ac91f999aeac1de14
  • Auth tag (hex): bbe72a9a47fadbf86e17c8ddd891f0c6

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