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

Labasa vs Nadroga

National Football League · Fiji · 05 Jul 2026, 02:00 UTC

Final score
3 : 1
Result
Won
Pick
Labasa
Market
1x2
Model prob.
82.3%
Best price
1.33
Min odds
1.28
Stake factor
1.70

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)
2agTZIj+7KP78OxPfJFWlQWaUP8jiZS3ny+3ATJD3IjTy7RyH0WbVuiSos5US8eI0Ih5dxIk+wY/9Ix2IIPyOM5OB4TkYKMLGRiVypzCkDcaHJTf+1SIUrCSF1g7Tcqj9NX/ne/VBo3SD8Hn/WHagAs0kshJz0z2zKY3tvJOSpZdZB7kvCaNczvjWDKXk7cXcmYdFZdwUckLezW7DuzlF8whpTs8fnlUZMMDztF3Jf8NkSiaopZ4k+OpXROrOUaGAhMnlnUvnxTA7GVnLP54D7YH7wRX/Wod0cTbDIbUJ0s3V2AewtJmrweydW95vIOGtApxSK09HKV3auhyYRbDAWyrCUwIgw==
key fingerprint sha256: 4047bfc7c301034e83758ebae804875a8c6a1e8737b0591173d920ad2119ef89
Decrypt it & read the pick
Decryption key (released after the match)
2a9a69661fcb9c34459fc26e3dcccf2e7ea9954dcd8c84456c46f2ca63ef7c92
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("2agTZIj+7KP78OxPfJFWlQWaUP8jiZS3ny+3ATJD3IjTy7RyH0WbVuiSos5US8eI0Ih5dxIk+wY/9Ix2IIPyOM5OB4TkYKMLGRiVypzCkDcaHJTf+1SIUrCSF1g7Tcqj9NX/ne/VBo3SD8Hn/WHagAs0kshJz0z2zKY3tvJOSpZdZB7kvCaNczvjWDKXk7cXcmYdFZdwUckLezW7DuzlF8whpTs8fnlUZMMDztF3Jf8NkSiaopZ4k+OpXROrOUaGAhMnlnUvnxTA7GVnLP54D7YH7wRX/Wod0cTbDIbUJ0s3V2AewtJmrweydW95vIOGtApxSK09HKV3auhyYRbDAWyrCUwIgw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("2a9a69661fcb9c34459fc26e3dcccf2e7ea9954dcd8c84456c46f2ca63ef7c92".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): 2a9a69661fcb9c34459fc26e3dcccf2e7ea9954dcd8c84456c46f2ca63ef7c92
  • IV / nonce (hex): d9a8136488feeca3fbf0ec4f
  • Ciphertext (hex): 7c915695059a50ff238994b79f2fb7013243dc88d3cbb4721f459b56e892a2ce544bc788d08879771224fb063ff48c762083f238ce4e0784e460a30b191895ca9cc290371a1c94dffb548852b09217583b4dcaa3f4d5ff9defd5068dd20fc1e7fd61da800b3492c849cf4cf6cca637b6f24e4a965d641ee4bc268d733be358329793b71772661d15977051c90b7b35bb0eece517cc21a53b3c7e795464c303ced17725ff0d91289aa2967893e3a95d13ab39468602132796752f9f14c0ec65672cfe780fb607ef0457fd6a1dd1c4db0c86d4274b3757601ec2d266af07b2756f79bc8386b40a7148ad3d
  • Auth tag (hex): 1ca5776ae8726116c3016cab094c0883

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