$10.00

Ended
Prize

$10.00

paid in BTC
Entries closed

Ended

Entries11
Tickets11
Yours0
Chance
Result

Naton9002

ticket #1

In the draw

11
Ticket allocation (11)

In the exact order tickets were assigned — oldest first. The winning ticket falls inside one of these ranges.

EntrantTicketsRange
Naton9002 winner11–1
DUCKCY 12–2
agugusty 13–3
admo 14–4
rewelle 15–5
MBskipzz 16–6
Emilianx2 17–7
Brlx2 18–8
DEADL0VER45 19–9
JolIyrancherss 110–10
Piyuush23 111–11

Provably fair

The seed is out. Everything needed to reproduce this draw is below — the check runs in your own browser.

Server seed hash (published before the draw)
b540a644af95d710469bea27bfc55185d02c0f578b30e70dd62eef6fae85ddef
Client seed
019fd8ea-2b6e-7c46-814d-f34fe2677637
Nonce
0
Total tickets
11
Server seed (revealed)
b2c252357a432624911aa71e02a8c0626a7bbd8abeeb13a1ddd54e9a8fd5709b
Winning ticket
#1
Could not run the check in this browser.
Reproduce it yourself
// Reproduce this draw with Node (no dependencies)
const { createHmac, createHash } = require("node:crypto");

const serverSeed   = "b2c252357a432624911aa71e02a8c0626a7bbd8abeeb13a1ddd54e9a8fd5709b";
const clientSeed   = "019fd8ea-2b6e-7c46-814d-f34fe2677637";
const nonce        = 0;
const totalTickets = 11;

// 1. The published hash must match the revealed seed
console.log("seed hash:", createHash("sha256").update(serverSeed).digest("hex"));

// 2. The seed's hex string is the HMAC key
const hmac = createHmac("sha256", serverSeed)
  .update(`${clientSeed}:${nonce}`)
  .digest("hex");

// 3. First 13 hex chars = 52 bits, exact in float64
const n = parseInt(hmac.slice(0, 13), 16);
console.log("winning ticket:", (n % totalTickets) + 1);