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

Preston Lions W vs Spring Hills W

Victoria NPL Women · Australia · 26 Jun 2026, 10:30 UTC

Final score
0 : 1
Result
Won
Pick
Spring Hills W
Market
1x2
Model prob.
36.3%
Best price
3.50
Min odds
3.10
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)
/eFMAJkAdSAvrAlTciteXe7QTK+I83kNsUjMPy0v83JblzXG0dtWcVztiHozaX0gd+kSanprMQJCJlaI+GbAzzHu1BntAfZkcftGGgQBjQ69Y800PyBHbhBpGR/WchHaYa/3QXH7hArtS5iIY+dqMYdQveSYteIMNOjxuihUqn96J1e1WrJdbdlQQ2+iw5ZoAvEZ1kQ1z21qMO1kAmohqH6eGNvu8rtr9A8sfRSWAvFlnGkH5gsBIxHl2TaKhIX4r54Cq7yKcalNz3azADLlkqcDtX+IfVkSL+iAi+bqTyt19lMauWGT8syVOFXBrk39Swg8q2RagvzaUdGHH3jWARerGe2FP0qw
key fingerprint sha256: 85bc1621a3b6950d36d3bb4677a59423d40ce1bbb7694b410422c9b1427a10e9
Decrypt it & read the pick
Decryption key (released after the match)
12670125e462c68f8a0883f6d433b02b3ee7ac8a10c4eb7bcf8dc61a204d3a60
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("/eFMAJkAdSAvrAlTciteXe7QTK+I83kNsUjMPy0v83JblzXG0dtWcVztiHozaX0gd+kSanprMQJCJlaI+GbAzzHu1BntAfZkcftGGgQBjQ69Y800PyBHbhBpGR/WchHaYa/3QXH7hArtS5iIY+dqMYdQveSYteIMNOjxuihUqn96J1e1WrJdbdlQQ2+iw5ZoAvEZ1kQ1z21qMO1kAmohqH6eGNvu8rtr9A8sfRSWAvFlnGkH5gsBIxHl2TaKhIX4r54Cq7yKcalNz3azADLlkqcDtX+IfVkSL+iAi+bqTyt19lMauWGT8syVOFXBrk39Swg8q2RagvzaUdGHH3jWARerGe2FP0qw"), c => c.charCodeAt(0));
const key  = Uint8Array.from("12670125e462c68f8a0883f6d433b02b3ee7ac8a10c4eb7bcf8dc61a204d3a60".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): 12670125e462c68f8a0883f6d433b02b3ee7ac8a10c4eb7bcf8dc61a204d3a60
  • IV / nonce (hex): fde14c00990075202fac0953
  • Ciphertext (hex): 722b5e5deed04caf88f3790db148cc3f2d2ff3725b9735c6d1db56715ced887a33697d2077e9126a7a6b310242265688f866c0cf31eed419ed01f66471fb461a04018d0ebd63cd343f20476e1069191fd67211da61aff74171fb840aed4b988863e76a318750bde498b5e20c34e8f1ba2854aa7f7a2757b55ab25d6dd950436fa2c3966802f119d64435cf6d6a30ed64026a21a87e9e18dbeef2bb6bf40f2c7d149602f1659c6907e60b012311e5d9368a8485f8af9e02abbc8a71a94dcf76b30032e592a703b57f887d59122fe8808be6ea4f2b75f6531ab96193f2cc953855c1ae4dfd4b083cab645a82fc
  • Auth tag (hex): da51d1871f78d60117ab19ed853f4ab0

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