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

Sport Boys II vs Alianza Lima II

Liga 3 · Peru · 31 Jul 2026, 16:00 UTC

Final score
3 : 0
Result
Lost
Pick
Alianza Lima II
Market
1x2
Model prob.
53.1%
Best price
2.18
Min odds
2.04
Stake factor
2.30

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)
13H3O9GDouHFpJ++5+peglt/DF6xq27yQfHufioNZoAvZ9PaPZlMv9nysEZDA/ONraQwWHVsIV0p3gKQaJGez5sivWwQurln9MlU8wAY63ffbAgxkFBPDjRM5plfr/0EgcDQtQjybP5J9e9Ne8xy8FJvvbnHc8fvcSqgLyI0mYBlriixvGDkJQj5TFEWLP+Z4gPwdrB0ptZZ3ebp5eC1q9KjIMQNOc+RewcjnW/c0Q479OqEa/WeUpCM8SVB/X8jHbfed2tkyT7v2wU9B7KjQiffmL019bO52lzptnVROTpeimTRfpQBaHREN+ILpa5l8beAwVf/1VcTgvkersxdQ97m8NFXYWvxlobnecPvXUM=
key fingerprint sha256: 310fbc2080ef4f6ae1d9a3185544ae53626c3006e9750b87781f5ba19896f363
Decrypt it & read the pick
Decryption key (released after the match)
3b5d50b18a67d1cc628d157bf28bdcd0aec28dd27dd4861c3321bc79e65196cd
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("13H3O9GDouHFpJ++5+peglt/DF6xq27yQfHufioNZoAvZ9PaPZlMv9nysEZDA/ONraQwWHVsIV0p3gKQaJGez5sivWwQurln9MlU8wAY63ffbAgxkFBPDjRM5plfr/0EgcDQtQjybP5J9e9Ne8xy8FJvvbnHc8fvcSqgLyI0mYBlriixvGDkJQj5TFEWLP+Z4gPwdrB0ptZZ3ebp5eC1q9KjIMQNOc+RewcjnW/c0Q479OqEa/WeUpCM8SVB/X8jHbfed2tkyT7v2wU9B7KjQiffmL019bO52lzptnVROTpeimTRfpQBaHREN+ILpa5l8beAwVf/1VcTgvkersxdQ97m8NFXYWvxlobnecPvXUM="), c => c.charCodeAt(0));
const key  = Uint8Array.from("3b5d50b18a67d1cc628d157bf28bdcd0aec28dd27dd4861c3321bc79e65196cd".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): 3b5d50b18a67d1cc628d157bf28bdcd0aec28dd27dd4861c3321bc79e65196cd
  • IV / nonce (hex): d771f73bd183a2e1c5a49fbe
  • Ciphertext (hex): e7ea5e825b7f0c5eb1ab6ef241f1ee7e2a0d66802f67d3da3d994cbfd9f2b0464303f38dada43058756c215d29de029068919ecf9b22bd6c10bab967f4c954f30018eb77df6c083190504f0e344ce6995faffd0481c0d0b508f26cfe49f5ef4d7bcc72f0526fbdb9c773c7ef712aa02f2234998065ae28b1bc60e42508f94c51162cff99e203f076b074a6d659dde6e9e5e0b5abd2a320c40d39cf917b07239d6fdcd10e3bf4ea846bf59e52908cf12541fd7f231db7de776b64c93eefdb053d07b2a34227df98bd35f5b3b9da5ce9b67551393a5e8a64d17e940168744437e20ba5ae65f1b780c157ffd5571382f91eaecc5d43
  • Auth tag (hex): dee6f0d157616bf19686e779c3ef5d43

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