TYCENOProvably Fair
Every giveaway roll, and the seed that picked it. You do not have to take our word for any of it: each roll is checked in your own browser, and you can replay any of them yourself.
Run it yourself
Take a seed from any roll above and run it here. Same maths, your machine, nothing sent anywhere. Or download the script and run it somewhere we have no hand in at all.
Who the seed selects out of the entrant pool.
The answer shows up here. Compare it with the roll above. If the two disagree, the record is wrong, and you can prove it rather than just say so.
clientSeed = SHA-256(entrant usernames lowercased, sorted ascending, joined by ","). bytes = HMAC-SHA256(key=serverSeed, msg=`${clientSeed}:${nonce}:${cursor}`) for cursor=0,1,2,… -> read 4 bytes as a big-endian uint32 -> unbiased index in [0,n) via rejection sampling (reject x >= floor(2^32 / n) * n) -> Fisher-Yates permutation of the entrant list. The winner is the final element of that permutation.