Yeah, Rose I was taken aback by at first since she's technically a former Godlike, but I think that's a case where in-game and casual reactions make her seem better than she ends up in the DL. She isn't THAT fast, and she's fairly frail, and she normally wins on turn 2 (be it by ID or beatdown). There's definitely OHKOs / faster 2HKOs / status for her to fear. Giving her SP basically makes her Lazlo, she spams that ID on turn 1 but her beatdown is a bit less impressive. (She's better vs. opposing status, at least.)
That said, neither Rose nor Edge ended up getting in anyway, so oh well.
Since people like to watch the noms get rolled up, but I always found that a tad inefficient (especially with a smaller set where hitting dupes would happen all the time), the results from Python are here. Here's the spreadsheet I made before hand of positions:
https://docs.google.com/spreadsheet/ccc?key=0AnWZpz-xP-nLdGp1THlvRFpIU1JfUmJvUmNna19oYlE&usp=sharingHere's the rolls. Pretty self-explanatory, just shuffle everything up and take the duelers who got in, then add the auto-invites (who have +100 to their spreadsheet position to make 'em obvious), then re-shuffle to get the specific match-ups. Feel free to point out any mistakes I made (or SEE INTO THE FUTURE if you're bored and want to know the week 2 matches early):
>>> import random
>>> heroes = range(1, 45)
>>> random.shuffle(heroes)
>>> heroesin = heroes[:26]
>>> heroesin = heroesin + range(102,108)
>>> random.shuffle(heroesin)
>>>
>>> heroesin
[17, 42, 25, 14, 19, 5, 22, 103, 37, 105, 31, 21, 18, 104, 29, 35, 38, 12, 39, 9, 102, 11, 3, 32, 30, 107, 1, 106, 43, 27, 26, 15]
>>> demigods = range(1,40)
>>>
>>> random.shuffle(demigods)
>>> demigodsin = demigods[:24]
>>> demigodsin = demigodsin + range(102,110)
>>>
>>> random.shuffle(demigodsin)
>>> demigodsin
[38, 30, 32, 15, 108, 7, 24, 33, 26, 22, 17, 23, 105, 3, 8, 106, 20, 19, 109, 37, 13, 4, 104, 6, 103, 9, 102, 2, 29, 10, 34, 107]
>>>
>>> divinities = range(1,16)
>>> random.shuffle(divinities)
>>> divinitiesin = divinities[:10]
>>>
>>> divinitiesin = divinitiesin + range(102,108)
>>> random.shuffle(divinitiesin)
>>> divinitiesin
[103, 102, 2, 7, 11, 104, 9, 14, 107, 1, 106, 4, 10, 15, 105, 5]