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

Newcastle Olympic vs Charlestown Azzurri

Northern Nsw · Australia · 01 Jul 2026, 10:00 UTC

Final score
7 : 1
Result
Lost
Pick
Charlestown Azzurri
Market
1x2
Model prob.
32.6%
Best price
3.91
Min odds
3.49
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)
0ip6ybC2MpA0nRUkZtMs9dgNYkjDrS0yexG5iDrZEewh0w+F9zEUOa23KbyOEKLoCwO5tRS55+RJ8ArPb3xYT57ZzkQzsK/TvBpqMdi3zgQNo1oPp6IxsJilBiimggyRlAaMfJpvc3ErRuccVeqB3yoqHcCXWjQpCIJPC22VzW1njKwpv2w85yCtoYRvj2msfLkf4uf/t5UXI+x2mBl7qOY8WRj1nZMGZH9Z+hp7+WHWxY4yHNZUlY9n3iSU6SRkn4dtaPqqH7xzfqElJdCuEnX3LiA1veDNEpKf1VE7IBitpXuRQh7m3poP98GoOOfHAnuGjtJdBxbDkzy5P7tQxonMivOH5z2HCqRja0eTMeLDLQ==
key fingerprint sha256: 6174d77a650917ca37ff7407ac4d0925212ec599f86e1201455445bc18c4db6a
Decrypt it & read the pick
Decryption key (released after the match)
961284a97d32d75bb11452ee90084cd338a6c8099daf5f93189c8ed7cda2f077
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("0ip6ybC2MpA0nRUkZtMs9dgNYkjDrS0yexG5iDrZEewh0w+F9zEUOa23KbyOEKLoCwO5tRS55+RJ8ArPb3xYT57ZzkQzsK/TvBpqMdi3zgQNo1oPp6IxsJilBiimggyRlAaMfJpvc3ErRuccVeqB3yoqHcCXWjQpCIJPC22VzW1njKwpv2w85yCtoYRvj2msfLkf4uf/t5UXI+x2mBl7qOY8WRj1nZMGZH9Z+hp7+WHWxY4yHNZUlY9n3iSU6SRkn4dtaPqqH7xzfqElJdCuEnX3LiA1veDNEpKf1VE7IBitpXuRQh7m3poP98GoOOfHAnuGjtJdBxbDkzy5P7tQxonMivOH5z2HCqRja0eTMeLDLQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("961284a97d32d75bb11452ee90084cd338a6c8099daf5f93189c8ed7cda2f077".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): 961284a97d32d75bb11452ee90084cd338a6c8099daf5f93189c8ed7cda2f077
  • IV / nonce (hex): d22a7ac9b0b63290349d1524
  • Ciphertext (hex): 66d32cf5d80d6248c3ad2d327b11b9883ad911ec21d30f85f7311439adb729bc8e10a2e80b03b9b514b9e7e449f00acf6f7c584f9ed9ce4433b0afd3bc1a6a31d8b7ce040da35a0fa7a231b098a50628a6820c9194068c7c9a6f73712b46e71c55ea81df2a2a1dc0975a342908824f0b6d95cd6d678cac29bf6c3ce720ada1846f8f69ac7cb91fe2e7ffb7951723ec7698197ba8e63c5918f59d9306647f59fa1a7bf961d6c58e321cd654958f67de2494e924649f876d68faaa1fbc737ea12525d0ae1275f72e2035bde0cd12929fd5513b2018ada57b91421ee6de9a0ff7c1a838e7c7027b868ed25d0716c3933cb93fbb50c689cc
  • Auth tag (hex): 8af387e73d870aa4636b479331e2c32d

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