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

Manly United W vs Gladesville Ravens W

New South Wales NPL Women · Australia · 12 Jul 2026, 07:00 UTC

Final score
1 : 0
Result
Won
Pick
Manly United W
Market
1x2
Model prob.
51.4%
Best price
2.27
Min odds
2.11
Stake factor
2.30

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)
wTHMNK3d8J/AVG9Gkh2xrbbQUF9qrltgomAy4sqNImCOzBORMY60ox2VD+9H7U1DqDtqno3hNYT4WBQ98CtJKJ24xGD62+kBOBLEP39m05K1duVkmPB4QpNR32Hb53/T5oudwH3xiJJJE4EfoAEXMgYEQYd7FBnAx6W+yYDWFz4b5tyXA6RupFj3gSZ1cSFb0FAbfhpI6YFX4LyeRMCKaH1u4Y7MPs9/q15g9Ql3jOLVR6r9aBlhbMVllt12D5A3nPCVYp3r2wV4/rr9nTfyoYWqgl2PaYFt8ZPEn7hwpc1n6dmKUOnQX9LMvA0ahy7kZkAJTYvwoZVtNQqx4reFC+HvXVhKthMbVxFa9Sbdrw==
key fingerprint sha256: 52d075f76a6e25f6526781994a5bc2fe01fd0f9a605c8fa76a7c03191209653d
Decrypt it & read the pick
Decryption key (released after the match)
f9a3ab3b02c0ce3296936efb3f0c0e8f920d49532b187ed39ecc37262b70d3ff
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("wTHMNK3d8J/AVG9Gkh2xrbbQUF9qrltgomAy4sqNImCOzBORMY60ox2VD+9H7U1DqDtqno3hNYT4WBQ98CtJKJ24xGD62+kBOBLEP39m05K1duVkmPB4QpNR32Hb53/T5oudwH3xiJJJE4EfoAEXMgYEQYd7FBnAx6W+yYDWFz4b5tyXA6RupFj3gSZ1cSFb0FAbfhpI6YFX4LyeRMCKaH1u4Y7MPs9/q15g9Ql3jOLVR6r9aBlhbMVllt12D5A3nPCVYp3r2wV4/rr9nTfyoYWqgl2PaYFt8ZPEn7hwpc1n6dmKUOnQX9LMvA0ahy7kZkAJTYvwoZVtNQqx4reFC+HvXVhKthMbVxFa9Sbdrw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("f9a3ab3b02c0ce3296936efb3f0c0e8f920d49532b187ed39ecc37262b70d3ff".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): f9a3ab3b02c0ce3296936efb3f0c0e8f920d49532b187ed39ecc37262b70d3ff
  • IV / nonce (hex): c131cc34adddf09fc0546f46
  • Ciphertext (hex): 921db1adb6d0505f6aae5b60a26032e2ca8d22608ecc1391318eb4a31d950fef47ed4d43a83b6a9e8de13584f858143df02b49289db8c460fadbe9013812c43f7f66d392b576e56498f078429351df61dbe77fd3e68b9dc07df188924913811fa0011732060441877b1419c0c7a5bec980d6173e1be6dc9703a46ea458f781267571215bd0501b7e1a48e98157e0bc9e44c08a687d6ee18ecc3ecf7fab5e60f509778ce2d547aafd6819616cc56596dd760f90379cf095629debdb0578febafd9d37f2a185aa825d8f69816df193c49fb870a5cd67e9d98a50e9d05fd2ccbc0d1a872ee46640094d8bf0a1956d350ab1e2b785
  • Auth tag (hex): 0be1ef5d584ab6131b57115af526ddaf

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