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

Campbelltown City vs Adelaide City

Npl South Australian · Australia · 31 Jul 2026, 10:00 UTC

Final score
0 : 4
Result
Won
Pick
Adelaide City
Market
1x2
Model prob.
59.0%
Best price
1.90
Min odds
1.82
Stake factor
1.90

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)
pTfXPHiQdP4GLtJ1UHk6vEfiBlJTXeQOCw9HgRQ0J354fTWRbgH7tJFmABBQPVsrE4LL4f3A1O6Ep8rzdd05Z+hzdoK2f2efQQcvUgaXfn28rtFQ0WREnM08bkV8nUQCOfll2roMIehfbSBsAAIekUv0jgQgCF0jV9OcE9bDKjdsdv9Sb5O7zkytGtSd96D4k7k1LAYrZqSEKCIzEc7LhaJVRu3+RzqIZZaxrBZ9650hF3HxJd2/en14zVu4bHyQTEl2ufY1s90vsDDEOz4ytlDCDZg4jgtCDtgWjrOI6IlNs/qGcL7gzAf5YIU+OObFJSjpfD+G8YsFmo6c5zydaX12qfSdaxfIbPmL5g==
key fingerprint sha256: bdcffb9594d25eb1decb9d326718d5f1beb03f110a035237f6ab94136d5f9272
Decrypt it & read the pick
Decryption key (released after the match)
bfc8bae8d3804b35c2bc6d0e2a584572a5a16792f6ad8429000ca161350624d0
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("pTfXPHiQdP4GLtJ1UHk6vEfiBlJTXeQOCw9HgRQ0J354fTWRbgH7tJFmABBQPVsrE4LL4f3A1O6Ep8rzdd05Z+hzdoK2f2efQQcvUgaXfn28rtFQ0WREnM08bkV8nUQCOfll2roMIehfbSBsAAIekUv0jgQgCF0jV9OcE9bDKjdsdv9Sb5O7zkytGtSd96D4k7k1LAYrZqSEKCIzEc7LhaJVRu3+RzqIZZaxrBZ9650hF3HxJd2/en14zVu4bHyQTEl2ufY1s90vsDDEOz4ytlDCDZg4jgtCDtgWjrOI6IlNs/qGcL7gzAf5YIU+OObFJSjpfD+G8YsFmo6c5zydaX12qfSdaxfIbPmL5g=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("bfc8bae8d3804b35c2bc6d0e2a584572a5a16792f6ad8429000ca161350624d0".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): bfc8bae8d3804b35c2bc6d0e2a584572a5a16792f6ad8429000ca161350624d0
  • IV / nonce (hex): a537d73c789074fe062ed275
  • Ciphertext (hex): 50793abc47e20652535de40e0b0f47811434277e787d35916e01fbb491660010503d5b2b1382cbe1fdc0d4ee84a7caf375dd3967e8737682b67f679f41072f5206977e7dbcaed150d164449ccd3c6e457c9d440239f965daba0c21e85f6d206c00021e914bf48e0420085d2357d39c13d6c32a376c76ff526f93bbce4cad1ad49df7a0f893b9352c062b66a48428223311cecb85a25546edfe473a886596b1ac167deb9d211771f125ddbf7a7d78cd5bb86c7c904c4976b9f635b3dd2fb030c43b3e32b650c20d98388e0b420ed8168eb388e8894db3fa8670bee0cc07f960853e38e6c52528e97c3f86f18b059a8e9c
  • Auth tag (hex): e73c9d697d76a9f49d6b17c86cf98be6

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