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

TKS Viet Nam W vs GT Thai Nguyen W

Women's National League · Vietnam · 25 Jun 2026, 09:00 UTC

Final score
3 : 4
Result
Won
Pick
GT Thai Nguyen W
Market
1x2
Model prob.
42.0%
Best price
2.81
Min odds
2.63
Stake factor
2.50

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)
48oH9xetTS0gHL5V+SI99oU6opnOnWQ/dgFrtX3KG58hSAbSi9Qa9wKvJOVnuqRtQYpkYcdJNTDK7qLu6kcYRs2BB/rqRoNojWFFeyxU/ZrmHS9vWMS8HoHLe5cZt9dmnWKf5VdEp55R2YwkmzYkRgNJyhKIo7jnB6VJkakc1+xHjOetW2CtK2PFHnRelToA/SJ7xDLjQDe30KLkvCBUWzOMF9Jr39vnV/HbOHyARGINhAf1MWkuYXoiL6Pg5GzaTHBGqq3fcasqM+hwTLaXLirWdVnjqw7PojBSJmONoKhSv1QjATdRoBR9k23pMtj89NNYbOh7wWqgLAjYFRyx5/t/QQ4PuWgirSLcji/o7vFF
key fingerprint sha256: 26a376c7c821214d13b5e5deab53b8d9b4d2f8cd7ea6301c396ab2bd53f01314
Decrypt it & read the pick
Decryption key (released after the match)
5a77b0f374125cf4f3d6d98b2c8a691b03d3d065e282a6ad74db82e2e5023d9d
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("48oH9xetTS0gHL5V+SI99oU6opnOnWQ/dgFrtX3KG58hSAbSi9Qa9wKvJOVnuqRtQYpkYcdJNTDK7qLu6kcYRs2BB/rqRoNojWFFeyxU/ZrmHS9vWMS8HoHLe5cZt9dmnWKf5VdEp55R2YwkmzYkRgNJyhKIo7jnB6VJkakc1+xHjOetW2CtK2PFHnRelToA/SJ7xDLjQDe30KLkvCBUWzOMF9Jr39vnV/HbOHyARGINhAf1MWkuYXoiL6Pg5GzaTHBGqq3fcasqM+hwTLaXLirWdVnjqw7PojBSJmONoKhSv1QjATdRoBR9k23pMtj89NNYbOh7wWqgLAjYFRyx5/t/QQ4PuWgirSLcji/o7vFF"), c => c.charCodeAt(0));
const key  = Uint8Array.from("5a77b0f374125cf4f3d6d98b2c8a691b03d3d065e282a6ad74db82e2e5023d9d".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): 5a77b0f374125cf4f3d6d98b2c8a691b03d3d065e282a6ad74db82e2e5023d9d
  • IV / nonce (hex): e3ca07f717ad4d2d201cbe55
  • Ciphertext (hex): f9223df6853aa299ce9d643f76016bb57dca1b9f214806d28bd41af702af24e567baa46d418a6461c7493530caeea2eeea471846cd8107faea4683688d61457b2c54fd9ae61d2f6f58c4bc1e81cb7b9719b7d7669d629fe55744a79e51d98c249b3624460349ca1288a3b8e707a54991a91cd7ec478ce7ad5b60ad2b63c51e745e953a00fd227bc432e34037b7d0a2e4bc20545b338c17d26bdfdbe757f1db387c8044620d8407f531692e617a222fa3e0e46cda4c7046aaaddf71ab2a33e8704cb6972e2ad67559e3ab0ecfa2305226638da0a852bf5423013751a0147d936de932d8fcf4d3586ce87bc16aa02c08d8151cb1e7fb
  • Auth tag (hex): 7f410e0fb96822ad22dc8e2fe8eef145

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