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

UNSW U20 vs Sutherland Sharks U20

New South Wales NPL Youth League · Australia · 27 Jun 2026, 03:00 UTC

Final score
3 : 1
Result
Lost
Pick
Sutherland Sharks U20
Market
1x2
Model prob.
38.7%
Best price
3.10
Min odds
2.88
Stake factor
2.70

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)
LqaAT4CX5uHxrrvQ5rWYXsF5c3W5V3hsEw2ts80J1sBWD9/Q5JGnnMeYOgCILq4hSxd3sruyNlAVEQe77G+jfjgcxVlQMR4Vw0ygcGUgxbqHGL/00EGdlMzBpAHHG/h75lGMF8uZanKL+VDWuvtNJ4seXVTUeue52KpPwi7Xb+5x4Z6EM5PclxXwBMjmb6oJgjPPzmmqqSgTxnzQ8ao4mKt+IOCSlickZt354vGnCLoCh/73Ro5olcg6lIPWQr3Dp1wpm8nUP+QIexWe6snzFMLb+mHW4xD1rtv/rZECLuSRP1Sd1TMAGprd5e7vjIiqSQjHgoKjFZhIu6QyWv9aGxR9hPeeH8SE/BvpQeuKtX4gYnT0
key fingerprint sha256: 92533ef7435f4f3162052dd18f1997648bdc4d69ae225fc84f1116274671a451
Decrypt it & read the pick
Decryption key (released after the match)
92392904e4995481a7b550973584d989d922600d3c4200ed4f4c0c5157165a40
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("LqaAT4CX5uHxrrvQ5rWYXsF5c3W5V3hsEw2ts80J1sBWD9/Q5JGnnMeYOgCILq4hSxd3sruyNlAVEQe77G+jfjgcxVlQMR4Vw0ygcGUgxbqHGL/00EGdlMzBpAHHG/h75lGMF8uZanKL+VDWuvtNJ4seXVTUeue52KpPwi7Xb+5x4Z6EM5PclxXwBMjmb6oJgjPPzmmqqSgTxnzQ8ao4mKt+IOCSlickZt354vGnCLoCh/73Ro5olcg6lIPWQr3Dp1wpm8nUP+QIexWe6snzFMLb+mHW4xD1rtv/rZECLuSRP1Sd1TMAGprd5e7vjIiqSQjHgoKjFZhIu6QyWv9aGxR9hPeeH8SE/BvpQeuKtX4gYnT0"), c => c.charCodeAt(0));
const key  = Uint8Array.from("92392904e4995481a7b550973584d989d922600d3c4200ed4f4c0c5157165a40".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): 92392904e4995481a7b550973584d989d922600d3c4200ed4f4c0c5157165a40
  • IV / nonce (hex): 2ea6804f8097e6e1f1aebbd0
  • Ciphertext (hex): e6b5985ec1797375b957786c130dadb3cd09d6c0560fdfd0e491a79cc7983a00882eae214b1777b2bbb23650151107bbec6fa37e381cc55950311e15c34ca0706520c5ba8718bff4d0419d94ccc1a401c71bf87be6518c17cb996a728bf950d6bafb4d278b1e5d54d47ae7b9d8aa4fc22ed76fee71e19e843393dc9715f004c8e66faa098233cfce69aaa92813c67cd0f1aa3898ab7e20e09296272466ddf9e2f1a708ba0287fef7468e6895c83a9483d642bdc3a75c299bc9d43fe4087b159eeac9f314c2dbfa61d6e310f5aedbffad91022ee4913f549dd533001a9adde5eeef8c88aa4908c78282a3159848bba4325aff5a1b147d84f7
  • Auth tag (hex): 9e1fc484fc1be941eb8ab57e206274f4

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