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

Portland Timbers vs Puebla

Leagues Cup · North & Central America · 07 Aug 2026, 02:30 UTC

Final score
5 : 2
Result
Won
Pick
Portland Timbers
Market
1x2
Model prob.
63.4%
Best price
1.75
Min odds
1.68
Stake factor
1.80

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)
ENrnHFLaWkBb7hF4rw+NKEqinM1vTFWLOcmp8ArNUj90jh7AnQHX+kEpiqiPQp/RlnjlX3wG4SWSzE9Z3lS0jRnNDYhSrdWQ+Kgdk2RRDXgxnzmn0WAmRvaukaZJ0iTCkuwovvVidsjq7jl7ZwNtVPLMHihx2r97ilpXKmcGeF+2fOfGtmW9S+z7phallcPwpcp6b5AWBsLrdRB/gag8yegmJlXHG2mNYprKr3ykIEkLa3KTLuO5IAY0C2G77W05J01Ljg6KWjj5eRCab9Exxet6Ba2sIvPQ8xuDpE3KIPWG2NPN/4PmOp5weENeu6LNTOHOTpfdpulzAE8aEYCRxmmV4iUCpPxgr5rrR9pr
key fingerprint sha256: c22e79951035c36bd8e7c656e28bf3f4e8449bbf3c604b1619ae7154b4fdd3df
Decrypt it & read the pick
Decryption key (released after the match)
2f4393adaedcce7b503569cd9532548bdbfe7505e0512361e425fe8b3aa35419
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("ENrnHFLaWkBb7hF4rw+NKEqinM1vTFWLOcmp8ArNUj90jh7AnQHX+kEpiqiPQp/RlnjlX3wG4SWSzE9Z3lS0jRnNDYhSrdWQ+Kgdk2RRDXgxnzmn0WAmRvaukaZJ0iTCkuwovvVidsjq7jl7ZwNtVPLMHihx2r97ilpXKmcGeF+2fOfGtmW9S+z7phallcPwpcp6b5AWBsLrdRB/gag8yegmJlXHG2mNYprKr3ykIEkLa3KTLuO5IAY0C2G77W05J01Ljg6KWjj5eRCab9Exxet6Ba2sIvPQ8xuDpE3KIPWG2NPN/4PmOp5weENeu6LNTOHOTpfdpulzAE8aEYCRxmmV4iUCpPxgr5rrR9pr"), c => c.charCodeAt(0));
const key  = Uint8Array.from("2f4393adaedcce7b503569cd9532548bdbfe7505e0512361e425fe8b3aa35419".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): 2f4393adaedcce7b503569cd9532548bdbfe7505e0512361e425fe8b3aa35419
  • IV / nonce (hex): 10dae71c52da5a405bee1178
  • Ciphertext (hex): af0f8d284aa29ccd6f4c558b39c9a9f00acd523f748e1ec09d01d7fa41298aa88f429fd19678e55f7c06e12592cc4f59de54b48d19cd0d8852add590f8a81d9364510d78319f39a7d1602646f6ae91a649d224c292ec28bef56276c8eaee397b67036d54f2cc1e2871dabf7b8a5a572a6706785fb67ce7c6b665bd4becfba616a595c3f0a5ca7a6f901606c2eb75107f81a83cc9e8262655c71b698d629acaaf7ca420490b6b72932ee3b92006340b61bbed6d39274d4b8e0e8a5a38f979109a6fd131c5eb7a05adac22f3d0f31b83a44dca20f586d8d3cdff83e63a9e7078435ebba2cd4ce1ce4e97dda6e973004f1a1180
  • Auth tag (hex): 91c66995e22502a4fc60af9aeb47da6b

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