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

Keilor ParkW vs Melbourne Victory II

Victoria NPL Women · Australia · 27 Jun 2026, 05:00 UTC

Final score
2 : 1
Result
Lost
Pick
Melbourne Victory II
Market
1x2
Model prob.
61.4%
Best price
1.85
Min odds
1.74
Stake factor
2.10

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)
gn0dq9NnsnmlM+qd2DRwgP0OTDzw6yeug3ghCCT+IEP3NAMxM7kztSfOh0KoZuk05cfPNRSbzhQhXzByrn4Sgbbo+WvRqMsUqK+KssCS6hi/EI6kotNZmphhis1fECWyY0cccykTuwicMxls73dc8wpmFTcKoPPLB+Swz2uQj+bjykREIFaaRHXOWhwxHKwGm/NP5n63IAT9YtBwO9+4ZynDFxIvGLdQJoVjl2vtXESIlSTkIIngWXRUxeak4WQCUlmX83rGnpHRlODOO/uHNCzijJTG1xUDXGj5q3rF80+9li3SIeYzDnk1WVUalutLmtRYf3+vIRssSiuVNoB7Oaa71B8J7W8l0O6WqQr0FduN9p2b+Q==
key fingerprint sha256: 264850ada801f8197262464e6178bffcbbbb571b104ee6fc2e4da9e00fb156c5
Decrypt it & read the pick
Decryption key (released after the match)
e9603ebce920fa031e3685fe6a5968bc118f482830dbf3c88a76100773159466
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("gn0dq9NnsnmlM+qd2DRwgP0OTDzw6yeug3ghCCT+IEP3NAMxM7kztSfOh0KoZuk05cfPNRSbzhQhXzByrn4Sgbbo+WvRqMsUqK+KssCS6hi/EI6kotNZmphhis1fECWyY0cccykTuwicMxls73dc8wpmFTcKoPPLB+Swz2uQj+bjykREIFaaRHXOWhwxHKwGm/NP5n63IAT9YtBwO9+4ZynDFxIvGLdQJoVjl2vtXESIlSTkIIngWXRUxeak4WQCUlmX83rGnpHRlODOO/uHNCzijJTG1xUDXGj5q3rF80+9li3SIeYzDnk1WVUalutLmtRYf3+vIRssSiuVNoB7Oaa71B8J7W8l0O6WqQr0FduN9p2b+Q=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("e9603ebce920fa031e3685fe6a5968bc118f482830dbf3c88a76100773159466".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): e9603ebce920fa031e3685fe6a5968bc118f482830dbf3c88a76100773159466
  • IV / nonce (hex): 827d1dabd367b279a533ea9d
  • Ciphertext (hex): d8347080fd0e4c3cf0eb27ae8378210824fe2043f734033133b933b527ce8742a866e934e5c7cf35149bce14215f3072ae7e1281b6e8f96bd1a8cb14a8af8ab2c092ea18bf108ea4a2d3599a98618acd5f1025b263471c732913bb089c33196cef775cf30a6615370aa0f3cb07e4b0cf6b908fe6e3ca444420569a4475ce5a1c311cac069bf34fe67eb72004fd62d0703bdfb86729c317122f18b750268563976bed5c44889524e42089e0597454c5e6a4e16402525997f37ac69e91d194e0ce3bfb87342ce28c94c6d715035c68f9ab7ac5f34fbd962dd221e6330e793559551a96eb4b9ad4587f7faf211b2c4a2b9536807b39a6bbd41f09
  • Auth tag (hex): ed6f25d0ee96a90af415db8df69d9bf9

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