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

Deportivo Recoleta W vs Rubio Ñú

Campeonato Femenino · Paraguay · 20 Jul 2026, 13:00 UTC

Final score
1 : 1
Result
Lost
Pick
Rubio Ñú
Market
1x2
Model prob.
39.2%
Best price
3.09
Min odds
2.84
Stake factor
2.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)
6mErdAPZ4Moe3QFQwCTWuKUW+gCQWjck+HaMGUEpezR8axVbtDTq/RL+OeOr7csDjBI36rLRj7/ZRExLnT4LpeTdMIjuEzjMB1ZpLcpemYQo2vfaDqTTXYeXbfPD0otIh162k7I9podLemv+btBYA9V8m14rWoS8huEXFKkEl1/ZeoiFtxhpcSRiNg/Cb+Ak1iK88QgHZPdHkoeaG81Z4/epJJcpHleNM7fLrJ1ApORrUgM4OzUDetzN4V299/bKL2DdwW69nbBUCtIiHZw3y50qgIhjpZwTNpg2WdZWzdUEjp7q7Rfkr/JxQX3O5xze8ZiA5x7SyVPXdB6xVw/SpvbvYdMt4ng3
key fingerprint sha256: 992552c61b9d0c8a5a6fb52c3cdd187698075436069a8d1055615ca356bfc00c
Decrypt it & read the pick
Decryption key (released after the match)
8c7ac64bc44b0b755aeef86d20b244105bab1d844459211247e3cf54955faf1b
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("6mErdAPZ4Moe3QFQwCTWuKUW+gCQWjck+HaMGUEpezR8axVbtDTq/RL+OeOr7csDjBI36rLRj7/ZRExLnT4LpeTdMIjuEzjMB1ZpLcpemYQo2vfaDqTTXYeXbfPD0otIh162k7I9podLemv+btBYA9V8m14rWoS8huEXFKkEl1/ZeoiFtxhpcSRiNg/Cb+Ak1iK88QgHZPdHkoeaG81Z4/epJJcpHleNM7fLrJ1ApORrUgM4OzUDetzN4V299/bKL2DdwW69nbBUCtIiHZw3y50qgIhjpZwTNpg2WdZWzdUEjp7q7Rfkr/JxQX3O5xze8ZiA5x7SyVPXdB6xVw/SpvbvYdMt4ng3"), c => c.charCodeAt(0));
const key  = Uint8Array.from("8c7ac64bc44b0b755aeef86d20b244105bab1d844459211247e3cf54955faf1b".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): 8c7ac64bc44b0b755aeef86d20b244105bab1d844459211247e3cf54955faf1b
  • IV / nonce (hex): ea612b7403d9e0ca1edd0150
  • Ciphertext (hex): c024d6b8a516fa00905a3724f8768c1941297b347c6b155bb434eafd12fe39e3abedcb038c1237eab2d18fbfd9444c4b9d3e0ba5e4dd3088ee1338cc0756692dca5e998428daf7da0ea4d35d87976df3c3d28b48875eb693b23da6874b7a6bfe6ed05803d57c9b5e2b5a84bc86e11714a904975fd97a8885b71869712462360fc26fe024d622bcf1080764f74792879a1bcd59e3f7a92497291e578d33b7cbac9d40a4e46b5203383b35037adccde15dbdf7f6ca2f60ddc16ebd9db0540ad2221d9c37cb9d2a808863a59c1336983659d656cdd5048e9eeaed17e4aff271417dcee71cdef19880e71ed2c953
  • Auth tag (hex): d7741eb1570fd2a6f6ef61d32de27837

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