APIA Leichhardt W vs NWS Spirit W
New South Wales NPL Women · Australia · 05 Jul 2026, 06:50 UTC
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.
NuFfCbAkGAEQY0I77tlDOHsKzrOyldMJKWIOsjz7Dgmeda5NCTjwOIfiy81saPnjXesqBh6GTRn+/826DGw8QHB39wb4nt//dO06EpW4TpztQiTqYbBBa5YH1PyzWg/tvx4mjklvdekxNnvHzguGecm9crS46MS5VxfZId0Ku5ogbh7Scc1+KG+Lseit8un8/pLVRLm3N/sqIvqTSIPz3UVPpNwlr3Rrm2Y6N1G3uQsIZOR3T0FUSApa16e1pWFvsLi6r+IRoQlnzMX3rotfAOd+FvB+rBd6fW488Dc1nZP9/OSzPSfo1u2cv+Jyxuc73MRTxjV7e0lALbmgEmQ4sLxu6ZEZVAEYPqxTQqDYw8K4
ab79dbadd30037f753b9ca7b45e89e93f50b01c27d41046dcaed1ee5fe89d9ffDecrypt 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 F12 → Console),
paste this, press Enter — it decrypts the exact pick shown above:
const blob = Uint8Array.from(atob("NuFfCbAkGAEQY0I77tlDOHsKzrOyldMJKWIOsjz7Dgmeda5NCTjwOIfiy81saPnjXesqBh6GTRn+/826DGw8QHB39wb4nt//dO06EpW4TpztQiTqYbBBa5YH1PyzWg/tvx4mjklvdekxNnvHzguGecm9crS46MS5VxfZId0Ku5ogbh7Scc1+KG+Lseit8un8/pLVRLm3N/sqIvqTSIPz3UVPpNwlr3Rrm2Y6N1G3uQsIZOR3T0FUSApa16e1pWFvsLi6r+IRoQlnzMX3rotfAOd+FvB+rBd6fW488Dc1nZP9/OSzPSfo1u2cv+Jyxuc73MRTxjV7e0lALbmgEmQ4sLxu6ZEZVAEYPqxTQqDYw8K4"), c => c.charCodeAt(0));
const key = Uint8Array.from("ab79dbadd30037f753b9ca7b45e89e93f50b01c27d41046dcaed1ee5fe89d9ff".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):
ab79dbadd30037f753b9ca7b45e89e93f50b01c27d41046dcaed1ee5fe89d9ff - IV / nonce (hex):
36e15f09b02418011063423b - Ciphertext (hex):
eed943387b0aceb3b295d30929620eb23cfb0e099e75ae4d0938f03887e2cbcd6c68f9e35deb2a061e864d19feffcdba0c6c3c407077f706f89edfff74ed3a1295b84e9ced4224ea61b0416b9607d4fcb35a0fedbf1e268e496f75e931367bc7ce0b8679c9bd72b4b8e8c4b95717d921dd0abb9a206e1ed271cd7e286f8bb1e8adf2e9fcfe92d544b9b737fb2a22fa934883f3dd454fa4dc25af746b9b663a3751b7b90b0864e4774f4154480a5ad7a7b5a5616fb0b8baafe211a10967ccc5f7ae8b5f00e77e16f07eac177a7d6e3cf037359d93fdfce4b33d27e8d6ed9cbfe272c6e73bdcc453c6357b7b49402db9a0126438b0bc - Auth tag (hex):
6ee991195401183eac5342a0d8c3c2b8
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:
- Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
- Drop both into opentimestamps.org (or run
ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time. - See it independently: block #956571 · 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.