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

Valentine vs Kahibah

Northern Nsw · Australia · 12 Jul 2026, 03:00 UTC

Final score
3 : 2
Result
Lost
Pick
Kahibah
Market
1x2
Model prob.
35.0%
Best price
3.58
Min odds
3.22
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)
GCD7aidRllseINzINznxDh482xduZ1MtkUAvunQfbv5JZ6tEZhvme0jQYGe7CGXUNGa8bLYl7ExAWmg8Rf7jONB9A23L8rHhMvGp6TUYF/LMqljVo9AkAZ5qgX+ujJ40E+FtTic0sU6JJCqvnFsb5zOLMfcOwZcmLNyghPbTMudglwwPs6eR5FvJzu0StxgDhDkR58tD69Beb1shYhmFlHrWNbE/dE2FEcihyuJyW+cMVeOhHWgdipP83LGAnKC/NAlZr7CL0vYeTAp9EK+0vGrw12jKzfEzfMK6w+INHaHKrnnkSfyukIUw2u1gcx5BfgKfnnaD0gf3NJ/QXokdGkRzetwtJQ==
key fingerprint sha256: 797aab8956588f7dfb2e88647a48c8c5d0992c5c20f80bb3e14deef818ed0161
Decrypt it & read the pick
Decryption key (released after the match)
d434d8797e8c3fa8b0313f52bbae17988ca49f8a71db8c6c42ef03a21211c02e
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("GCD7aidRllseINzINznxDh482xduZ1MtkUAvunQfbv5JZ6tEZhvme0jQYGe7CGXUNGa8bLYl7ExAWmg8Rf7jONB9A23L8rHhMvGp6TUYF/LMqljVo9AkAZ5qgX+ujJ40E+FtTic0sU6JJCqvnFsb5zOLMfcOwZcmLNyghPbTMudglwwPs6eR5FvJzu0StxgDhDkR58tD69Beb1shYhmFlHrWNbE/dE2FEcihyuJyW+cMVeOhHWgdipP83LGAnKC/NAlZr7CL0vYeTAp9EK+0vGrw12jKzfEzfMK6w+INHaHKrnnkSfyukIUw2u1gcx5BfgKfnnaD0gf3NJ/QXokdGkRzetwtJQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("d434d8797e8c3fa8b0313f52bbae17988ca49f8a71db8c6c42ef03a21211c02e".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): d434d8797e8c3fa8b0313f52bbae17988ca49f8a71db8c6c42ef03a21211c02e
  • IV / nonce (hex): 1820fb6a2751965b1e20dcc8
  • Ciphertext (hex): 3739f10e1e3cdb176e67532d91402fba741f6efe4967ab44661be67b48d06067bb0865d43466bc6cb625ec4c405a683c45fee338d07d036dcbf2b1e132f1a9e9351817f2ccaa58d5a3d024019e6a817fae8c9e3413e16d4e2734b14e89242aaf9c5b1be7338b31f70ec197262cdca084f6d332e760970c0fb3a791e45bc9ceed12b71803843911e7cb43ebd05e6f5b21621985947ad635b13f744d8511c8a1cae2725be70c55e3a11d681d8a93fcdcb1809ca0bf340959afb08bd2f61e4c0a7d10afb4bc6af0d768cacdf1337cc2bac3e20d1da1caae79e449fcae908530daed60731e417e029f9e7683
  • Auth tag (hex): d207f7349fd05e891d1a44737adc2d25

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