"Content Creation Assistant" by Wes Lesley Include Basic Screen Effects by Emily Short. [ Include Real-Time Delays by Erik Temple. section teletype [ for use with Real-Time Delays extension by Erik Temple ] Current teletype character delay is a number variable. The current teletype character delay is 40. Current teletype line break delay is a number variable. The current teletype line break delay is 400. Current teletype paragraph break delay is a number variable. The current teletype paragraph break delay is 400. To teletype (text-to-be-printed - an indexed text): repeat with N running from 1 to the number of characters in the text-to-be-printed: if character number N in the text-to-be-printed is "[line break]": wait (current teletype line break delay) milliseconds before continuing; if character number N in the text-to-be-printed is "[paragraph break]": wait (current teletype paragraph break delay) milliseconds before continuing; say "[character number N in the text-to-be-printed][run paragraph on]"; wait (current teletype character delay) milliseconds before continuing, strictly; To teletype (text-to-be-printed - an indexed text) at/with (speed - a number) ms/milliseconds/-- delay/--: now the current teletype character delay is speed; teletype the text-to-be-printed; To say change teletype delay to (speed - a number) ms/milliseconds/--: now the current teletype character delay is speed; ] section newstuff to say basicvowel: say "[one of]A[or]E[or]I[or]O[or]U[at random]"; [ a b c d e f g h i j k l m n o p q r s t u v w x y z ch sh ng st ou ae eu ] section stuff test is a room. when play begins: now left hand status line is "Wes Lesley presents the Content Creation Assistant"; now right hand status line is ""; dontbanner is a truth state that varies. dontbanner is true. Rule for printing the banner text when dontbanner is true: now dontbanner is false; to say tab: say fixed letter spacing; say "[unicode 32][unicode 32][unicode 32][unicode 32][unicode 32][unicode 32][unicode 32][unicode 32]"; say variable letter spacing; instead of doing anything: clear the screen; say line break; say "[NAMETHEBOY]"; say "[tab][fixed letter spacing]BOY:[unicode 32][unicode 32][unicode 32][variable letter spacing][unicode 32][full name of BOY] - [last name of BOY], [first name of BOY]"; say line break; say "[NAMETHEGIRL]"; say "[tab][fixed letter spacing]GIRL:[unicode 32][unicode 32][variable letter spacing][unicode 32][full name of GIRL] - [last name of GIRL], [first name of GIRL]"; say line break; say line break; say "[tab][fixed letter spacing]SECTOR:[variable letter spacing][unicode 32][SECTORCREATE][SECTORNAME]"; say line break; say "[tab][fixed letter spacing]PLANET:[variable letter spacing][unicode 32][PLANETCREATE][PLANETNAME][if thePLANET is PLANETNAME][else] ([thePLANET])[end if]"; say line break; say "[tab][fixed letter spacing]TOWN:[unicode 32][unicode 32][variable letter spacing][unicode 32][TOWNCREATE][TOWNNAME]"; say line break; say line break; say "[tab][fixed letter spacing]INSULT:[variable letter spacing][unicode 32][INSULTCREATE][INSULT]"; say line break; say line break; center "HIT ENTER TO REFRESH RANDOM OUTPUT"; Rule for printing a parser error: try going south; section wibbly wobbly timey wimey currentyear is a number variable. currentmonth is a number variable. currentday is a number variable. currentCHEAT is a number variable. currentCHEATtext is text that varies. To say currentseason: if currentmonth is 1, say "winter"; if currentmonth is 2, say "winter"; if currentmonth is 3, say "spring"; if currentmonth is 4, say "spring"; if currentmonth is 5, say "spring"; if currentmonth is 6, say "summer"; if currentmonth is 7, say "summer"; if currentmonth is 8, say "summer"; if currentmonth is 9, say "fall"; if currentmonth is 10, say "fall"; if currentmonth is 11, say "fall"; if currentmonth is 12, say "winter"; if currentmonth is 13, say "error"; To say currentmonth: if currentmonth is 1, say "January"; if currentmonth is 2, say "February"; if currentmonth is 3, say "March"; if currentmonth is 4, say "April"; if currentmonth is 5, say "May"; if currentmonth is 6, say "June"; if currentmonth is 7, say "July"; if currentmonth is 8, say "August"; if currentmonth is 9, say "September"; if currentmonth is 10, say "October"; if currentmonth is 11, say "November"; if currentmonth is 12, say "December"; if currentmonth is 13, say "error"; To say currentmonthshort: if currentmonth is 1, say "Jan"; if currentmonth is 2, say "Feb"; if currentmonth is 3, say "Mar"; if currentmonth is 4, say "Apr"; if currentmonth is 5, say "May"; if currentmonth is 6, say "Jun"; if currentmonth is 7, say "Jul"; if currentmonth is 8, say "Aug"; if currentmonth is 9, say "Sep"; if currentmonth is 10, say "Oct"; if currentmonth is 11, say "Nov"; if currentmonth is 12, say "Dec"; if currentmonth is 13, say "error"; NOWmaxdays is a number variable. To say NOWday: if currentmonth is 1: now NOWmaxdays is 31; if currentmonth is 2: now NOWmaxdays is 28; if currentmonth is 3: now NOWmaxdays is 31; if currentmonth is 4: now NOWmaxdays is 30; if currentmonth is 5: now NOWmaxdays is 31; if currentmonth is 6: now NOWmaxdays is 30; if currentmonth is 7: now NOWmaxdays is 31; if currentmonth is 8: now NOWmaxdays is 31; if currentmonth is 9: now NOWmaxdays is 30; if currentmonth is 10: now NOWmaxdays is 31; if currentmonth is 11: now NOWmaxdays is 30; if currentmonth is 12: now NOWmaxdays is 31; now currentday is a random number from 1 to NOWmaxdays; Section towns piecetownPREPRE is text that varies. piecetownPRE is text that varies. piecetownSTART is text that varies. piecetownMIDDLE is text that varies. piecetownSTOP is text that varies. INBETWEEN is text that varies. [the numbers will not permit random new names of town to double up on the main location] piecetownPREPREnr is number that varies. piecetownPREnr is number that varies. piecetownSTARTnr is number that varies. piecetownMIDDLEnr is number that varies. piecetownSTOPnr is number that varies. TOWNNAME is text that varies. PREPREbit is a number that varies. PREbit is a number that varies. STARTbit is a number that varies. MIDDLEbit is a number that varies. STOPbit is a number that varies. townPREPREcount is a number that varies. townPREcount is a number that varies. townSTARTcount is a number that varies. townMIDDLEcount is a number that varies. townSTOPcount is a number that varies. To say compression of (A - a text) and (Z - a text): let N be the number of characters in A; let x be character number N in A; let y be character number 1 in Z; if x is y, replace character number N in A with ""; say "[A][Z]"; to say TOWNCREATE: now townPREPREcount is the number of rows in the Table of townPREPRE; if a random chance of 1 in 15 succeeds: now PREPREbit is a random number between 1 and townPREPREcount; otherwise: now PREPREbit is 1; if PREPREbit is a number listed in the Table of townPREPRE: now piecetownPREPRE is "[output entry]"; now piecetownPREPREnr is PREPREbit; now townSTARTcount is the number of rows in the Table of townSTART; now STARTbit is a random number between 1 and townSTARTcount; if STARTbit is a number listed in the Table of townSTART: now piecetownSTART is "[output entry]"; now piecetownSTARTnr is STARTbit; now townMIDDLEcount is the number of rows in the Table of townMIDDLE; now MIDDLEbit is a random number between 1 and townMIDDLEcount; if MIDDLEbit is a number listed in the Table of townMIDDLE: now piecetownMIDDLE is "[output entry]"; now piecetownMIDDLEnr is MIDDLEbit; now townSTOPcount is the number of rows in the Table of townSTOP; now STOPbit is a random number between 1 and townSTOPcount; if STOPbit is a number listed in the Table of townSTOP: now piecetownSTOP is "[output entry]"; now piecetownSTOPnr is STOPbit; now townPREcount is the number of rows in the Table of townPRE; if STARTbit is less than 5: now PREbit is 1; otherwise: if a random chance of 1 in 5 succeeds: if a random chance of 1 in 3 succeeds: now PREbit is a random number between 1 and townPREcount; otherwise: now PREbit is a random number between 1 and 5; otherwise: now PREbit is 1; if PREbit is a number listed in the Table of townPRE: now piecetownPRE is "[output entry]"; now piecetownPREnr is PREbit; if a random chance of 1 in 3 succeeds: now INBETWEEN is the substituted form of "[compression of piecetownSTART and piecetownMIDDLE]"; otherwise: now INBETWEEN is "[piecetownSTART]"; now TOWNNAME is the substituted form of "[piecetownPRE][piecetownPREPRE][compression of INBETWEEN and piecetownSTOP]"; Table of townPREPRE number output 1 "" 2 "Old " 3 "New " 4 "Near " 5 "Far " Table of townPRE number output 1 "" 2 "North " 3 "South " 4 "East " 5 "West " 6 "Northeast " 7 "Northwest " 8 "Southeast " 9 "Southwest " Table of townSTART number output 1 "North" 2 "South" 3 "East" 4 "West" 5 "Yron" 6 "Mire" 7 "Dew" 8 "Kin" 9 "Ark" 10 "Burns" 11 "Holly" 12 "Mon" 13 "Garth" 14 "Heath" 15 "Hayn" 16 "Green" 17 "Nor" 18 "Dour" 19 "Kings" 20 "Queens" 21 "Breeze" 22 "Rother" 23 "Aln" 24 "Wor" 25 "Bard" 26 "Berk" 27 "Ward" 28 "Middle" 29 "High" 30 "Long" 31 "Neer" 32 "Bell" 33 "Abbey" 34 "Glass" 35 "Well" 36 "Up" 37 "Down" 38 "Vin" 39 "Car" 40 "Stone" 41 "River" 42 "Ian" 43 "Lon" 44 "Lar" 45 "Gray" 46 "Darth" 47 "Upper" 48 "Lower" 49 "Over" 50 "Under" 51 "Saar" 52 "Ven" 53 "Sheng" 54 "Shir" 55 "Dawn" 56 "Sing" 57 "Single" 58 "Shire" 59 "Star" 60 "Hedge" 61 "Wide" Table of townMIDDLE number output 1 "s" 2 "chester" 3 "-upon-" 4 "on" 5 "frey" 6 "song" 7 "brey" 8 "can" 9 "neer" 10 "bay" 11 "lake" 12 "sea" 13 "wide" 14 "mock" 15 "sher" 16 "der" 17 "sheng" 18 "cer" 19 "shir" 20 "king" Table of townSTOP number output 1 "ney" 2 "wick" 3 "field" 4 "side" 5 "wich" 6 "ton" 7 "ham" 8 "ster" 9 "ley" 10 "song" 11 "chester" 12 "shire" 13 "ford" 14 "bourne" 15 "forge" 16 "glen" 17 "sley" 18 "mouth" 19 "munster" 20 "row" 21 " Grove" 22 " Hollow" 23 "burg" 24 "yard" 25 "borough" 26 "vale" 27 "mont" 28 "stone" 29 "hill" 30 " Hill" 31 "more" 32 "run" 33 "mill" 34 " Mill" 35 "ser" 36 "land" 37 "switch" 38 "ditch" 39 "don" 40 "fort" 41 "port" 42 "shore" 43 "ston" 44 "hurst" 45 "bank" 46 "gate" 47 "nesse" 48 "ville" 49 "wedge" 50 "mere" 51 " End" 52 "wall" 53 "rock" 54 "dawn" 55 "win" 56 "gard" 57 "garden" 58 "herd" 59 "leigh" 60 "diff" [and that's it. gotta use [TOWNCREATE] somewhere in a say""; before you need it, and then [TOWNNAME] will always be the same until you [TOWNCREATE] again.] section insults [yeah it's from that imgur post bitch fite me irl] firstinsultpiece is text that varies. secondinsultpiece is text that varies. thirdinsultpiece is text that varies. INSULT is text that varies. insultcount1 is number that varies. insultcount2 is number that varies. insultcount3 is number that varies. insultnumber1 is number that varies. insultnumber2 is number that varies. insultnumber3 is number that varies. Table of insult1 number output 1 "Lazy" 2 "Stupid" 3 "Insecure" 4 "Idiotic" 5 "Slimy" 6 "Slutty" 7 "Smelly" 8 "Pompous" 9 "Communist" 10 "Dicknose" 11 "Pie-eating" 12 "Racist" 13 "Elitist" 14 "White trash" 15 "Drug-loving" 16 "Butterfaced" 17 "Tone deaf" 18 "Ugly" 19 "Creepy" 20 "Deranged" Table of insult2 number output 1 "douche" 2 "ass" 3 "turd" 4 "rectum" 5 "butt" 6 "cock" 7 "shit" 8 "crotch" 9 "bitch" 10 "turd" 11 "prick" 12 "slut" 13 "taint" 14 "fuck" 15 "dick" 16 "boner" 17 "shart" 18 "nut" 19 "sphincter" 20 "cunt" Table of insult3 number output 1 "pilot" 2 "canoe" 3 "captain" 4 "pirate" 5 "hammer" 6 "knob" 7 "box" 8 "jockey" 9 "nazi" 10 "waffle" 11 "goblin" 12 "possum" 13 "biscuit" 14 "clown" 15 "socket" 16 "monster" 17 "hound" 18 "dragon" 19 "balloon" 20 "blossom" to say INSULTCREATE: now insultcount1 is the number of rows in the Table of insult1; now insultnumber1 is a random number between 1 and insultcount1; if insultnumber1 is a number listed in the Table of insult1: now firstinsultpiece is "[output entry]"; now insultcount2 is the number of rows in the Table of insult2; now insultnumber2 is a random number between 1 and insultcount2; if insultnumber2 is a number listed in the Table of insult2: now secondinsultpiece is "[output entry]"; now insultcount3 is the number of rows in the Table of insult3; now insultnumber3 is a random number between 1 and insultcount3; if insultnumber3 is a number listed in the Table of insult3: now thirdinsultpiece is "[output entry]"; now INSULT is the substituted form of "[firstinsultpiece] [secondinsultpiece] [thirdinsultpiece]"; Section planets pieceplanetBONUS1 is text that varies. pieceplanetBONUS2 is text that varies. pieceplanetPRE1 is text that varies. pieceplanetPRE2 is text that varies. pieceplanetSTART is text that varies. pieceplanetMID is text that varies. pieceplanetSTOP is text that varies. MIDinclude is a truth state that varies. [the numbers will not permit random new names of planets to double up on the main location] pieceplanetBONUSnr is number that varies. pieceplanetPREnr1 is number that varies. pieceplanetPREnr2 is number that varies. pieceplanetSTARTnr is number that varies. pieceplanetMIDnr is number that varies. pieceplanetSTOPnr is number that varies. PLANETNAME is text that varies. thePLANET is text that varies. thePLANETcase is text that varies. planetBONUSbit is a number that varies. planetPREbit1 is a number that varies. planetPREbit2 is a number that varies. planetSTARTbit is a number that varies. planetMIDbit is a number that varies. planetSTOPbit is a number that varies. planetBONUScount is a number that varies. planetPREcount1 is a number that varies. planetPREcount2 is a number that varies. planetSTARTcount is a number that varies. planetMIDcount is a number that varies. planetSTOPcount is a number that varies. planetinfonumberone is a number that varies. planetinfonumbertwo is a number that varies. planetinfonumberonex is a number that varies. planetinfonumbertwox is a number that varies. to say PLANETCREATE: now planetinfonumberone is a random number from 1 to 9; now planetinfonumbertwo is a random number from 2 to 9; if planetinfonumbertwo is greater than planetinfonumberone: now planetinfonumberonex is planetinfonumberone; now planetinfonumbertwox is planetinfonumbertwo; otherwise: now planetinfonumberonex is planetinfonumbertwo; now planetinfonumbertwox is planetinfonumberone; now planetBONUScount is the number of rows in the Table of planetBONUS; decrease planetBONUScount by one; if a random chance of 1 in 3 succeeds: now planetBONUSbit is a random number between 1 and planetBONUScount; otherwise: now planetBONUSbit is 0; if planetBONUSbit is a number listed in the Table of planetBONUS: now pieceplanetBONUS1 is "[prefix entry]"; now pieceplanetBONUS2 is "[suffix entry]"; now pieceplanetBONUSnr is planetBONUSbit; now planetSTARTcount is the number of rows in the Table of planetSTART; now planetSTARTbit is a random number between 1 and planetSTARTcount; if planetSTARTbit is a number listed in the Table of planetSTART: now pieceplanetSTART is "[output entry]"; now pieceplanetSTARTnr is planetSTARTbit; if a random chance of one in 3 succeeds: now MIDinclude is true; otherwise: now MIDinclude is false; now planetMIDcount is the number of rows in the Table of planetMID; now planetMIDbit is a random number between 1 and planetMIDcount; if planetMIDbit is a number listed in the Table of planetMID: now pieceplanetMID is "[output entry]"; now pieceplanetMIDnr is planetMIDbit; now planetSTOPcount is the number of rows in the Table of planetSTOP; now planetSTOPbit is a random number between 1 and planetSTOPcount; if planetSTOPbit is a number listed in the Table of planetSTOP: now pieceplanetSTOP is "[output entry]"; now pieceplanetSTOPnr is planetSTOPbit; if MIDinclude is true: now PLANETNAME is "[compression of pieceplanetSTART and pieceplanetMID]"; now PLANETNAME is the substituted form of "[pieceplanetBONUS1][compression of PLANETNAME and pieceplanetSTOP][pieceplanetBONUS2]"; otherwise: now PLANETNAME is the substituted form of "[pieceplanetBONUS1][compression of pieceplanetSTART and pieceplanetSTOP][pieceplanetBONUS2]"; now planetPREcount1 is the number of rows in the Table of planetPRE1; now planetPREcount2 is the number of rows in the Table of planetPRE2; if a random chance of 1 in 3 succeeds: now planetPREbit1 is a random number between 2 and planetPREcount1; if planetPREbit1 is greater than 5: now planetPREbit2 is a random number between 2 and planetPREcount2; otherwise: now planetPREbit2 is a random number between 6 and planetPREcount2; otherwise: now planetPREbit1 is 1; now planetPREbit2 is 1; if planetPREbit1 is a number listed in the Table of planetPRE1: now pieceplanetPRE1 is "[output entry]"; now pieceplanetPREnr1 is planetPREbit1; if planetPREbit2 is a number listed in the Table of planetPRE2: now pieceplanetPRE2 is "[output entry]"; now pieceplanetPREnr2 is planetPREbit2; if planetPREbit1 is greater than 1: now thePLANET is the substituted form of "the [pieceplanetPRE1] [pieceplanetPRE2] of [PLANETNAME]"; now thePLANETcase is the substituted form of "The [pieceplanetPRE1] [pieceplanetPRE2] of [PLANETNAME]"; otherwise: now thePLANET is PLANETNAME; now thePLANETcase is PLANETNAME; Table of planetBONUS number prefix suffix 0 "" "" 1 "" " [one of]I[or]II[or]III[or]IV[or]V[or]VI[or]VII[or]VIII[or]IX[or]X[or]XI[or]XII[at random]" 2 "" " Omni" 3 "New " "" 4 "" " Prime" 5 "Neo " "" 6 "" " Vega" Table of planetPRE1 number output 1 "" 2 "Patriarchal" 3 "Matriarchal" 4 "Fraternal" 5 "Sororal" 6 "Private" 7 "Colonial" 8 "United" 9 "Open" 10 "Atheist" 11 "Reclusive" 12 "Collected" 13 "Cooperative" 14 "Imperial" 15 "Impartial" 16 "Supreme" 17 "Holy" 18 "Free" 19 "People's" 20 "Pious" 21 "Democratic" Table of planetPRE2 number output 1 "" 2 "Patriarchy" 3 "Matriarchy" 4 "Brotherhood" 5 "Sisterhood" 6 "Principality" 7 "Monarchy" 8 "Federation" 9 "Plutocracy" 10 "Directorate" 11 "Solidarity" 12 "Syndicate" 13 "Alliance" 14 "Republic" 15 "State" 16 "Society" [ Brotherhood of Systems Coalition of Suns Coalition of Suns Coalition of Systems Collective Spheres Commonwealth of Planets Constellation's Collective Constellation's Republic Constellations' Plutocracy Cooperative Dynasty of Galaxies Imperial Constellations Planetary Monarchy of Systems Sun's Directorate Sun's Nation Sun's Solidarity Supreme Dynasty Syndicate of Territories Systems' Syndicate Technocracy of Worlds United Monarchy of Constellations Anarchic Worlds Communist Cooperative of Stars Constellation's Collective Economic Spheres Federated Planets Federation of Worlds Free Dynasty Galaxy's Collective Galaxy's Plutocracy Galaxy's Principality Galaxy's Technocracy Government of Worlds Holy Dynasty Kingdom of Constellations Nation of Planets Plutocratic Syndicate of Galaxies Stars' Alliance Stellar Commonwealth Stellar Technocracy of Spheres Syndicate of Stars ] Table of planetSTART number output 1 "Rho" 2 "Ar" 3 "Dew" 4 "Kin" 5 "Ark" 6 "Mon" 7 "Nor" 8 "Aln" 9 "Wor" 10 "Bard" 11 "Berk" 12 "Ward" 13 "Neer" 14 "Well" 15 "Vin" 16 "Car" 17 "Pi" 18 "Gre" 19 "Re" 20 "Ri" 21 "Shir" 22 "Ragna" 23 "Ra" 24 "Joe" 25 "Galli" 26 "Gal" 27 "Muta" 28 "Ju" 29 "Ma" 30 "Mate" 31 "Shau" 32 "Jo" 33 "Mace" 34 "The" 35 "Thera" 36 "Si" 37 "Segu" 38 "Gae" 39 "Ban" 40 "Tet" 41 "Ter" 42 "Tetra" Table of planetMID number output 1 "de" 2 "yop" 3 "ga" 4 "ra" 5 "mu" 6 "na" 7 "gor" 8 "do" 9 "re" 10 "ly" 11 "um" Table of planetSTOP number output 1 "sia" 2 "tus" 3 "ton" 4 "ham" 5 "ster" 6 "ley" 7 "sley" 8 "row" 9 "vale" 10 "mont" 11 "more" 12 "run" 13 "ser" 14 "don" 15 "ston" 16 "gate" 17 "nesse" 18 "mere" 19 "sus" 20 "nia" 21 "sloid" 22 "rra" 23 "card" 24 "tane" 25 "ri" 26 "sa" 27 "roch" 28 "sus" 29 "gnus" 30 "rau" 31 "gno" 32 "mis" 33 "mus" 34 "ni" 35 "chelle" 36 "seph" 37 "lia" 38 "donia" 39 "ris" 40 "ra" 41 "dia" 42 "gia" 43 "tia" 44 "tis" 45 "gis" [and that's it. gotta use [PLANETCREATE] somewhere in a say""; before you need it, and then [PLANETNAME] will always be the same until you [PLANETCREATE] again.] Section sectors piecesectorSTART is text that varies. piecesectorSTOP is text that varies. [the numbers will not permit random new names of sectors to double up on the main location] piecesectorSTARTnr is number that varies. piecesectorSTOPnr is number that varies. SECTORNAME is text that varies. theSECTOR is text that varies. theSECTORcase is text that varies. sectorSTARTbit is a number that varies. sectorSTOPbit is a number that varies. sectorSTARTcount is a number that varies. sectorSTOPcount is a number that varies. to say SECTORCREATE: now sectorSTARTcount is the number of rows in the Table of sectorSTART; now sectorSTARTbit is a random number between 1 and sectorSTARTcount; if sectorSTARTbit is a number listed in the Table of sectorSTART: now piecesectorSTART is "[output entry]"; now piecesectorSTARTnr is sectorSTARTbit; now sectorSTOPcount is the number of rows in the Table of sectorSTOP; now sectorSTOPbit is a random number between 1 and sectorSTOPcount; if sectorSTOPbit is a number listed in the Table of sectorSTOP: now piecesectorSTOP is "[output entry]"; now piecesectorSTOPnr is sectorSTOPbit; now SECTORNAME is the substituted form of "[piecesectorSTART] [piecesectorSTOP]"; if a random chance of 1 in 10 succeeds: now theSECTOR is the substituted form of "the [SECTORNAME] nebula"; now theSECTORcase is the substituted form of "The [SECTORNAME] nebula"; otherwise: now theSECTOR is the substituted form of "the [SECTORNAME] sector"; now theSECTORcase is the substituted form of "The [SECTORNAME] sector"; Table of sectorSTART number output 1 "Alpha" 2 "Beta" 3 "Gamma" 4 "Delta" 5 "Epsilon" 6 "Zeta" 7 "Eta" 8 "Theta" 9 "Iota" 10 "Kappa" 11 "Lambda" 12 "Mu" 13 "Nu" 14 "Xi" 15 "Omicron" 16 "Pi" 17 "Rho" 18 "Sigma" 19 "Tau" 20 "Upsilon" 21 "Phi" 22 "Chi" 23 "Psi" 24 "Omega" Table of sectorSTOP number output 1 "Belgica" 2 "Nero" 3 "Gregasus" 4 "Magnus" 5 "Imperator" 6 "Bellator" 7 "Primus" 8 "Vance" 9 "Adonis" 10 "Canis" 11 "Domus" 12 "Bonus" 13 "Malus" 14 "Senis" 15 "Iuvenis" 16 "Magnifica" 17 "Pacifica" [and that's it. gotta use [SECTORCREATE] somewhere in a say""; before you need it, and then [SECTORNAME] will always be the same until you [SECTORCREATE] again.] section randompeople A person has some text called full name. Understand the full name property as describing a person. A person has some text called first name. Understand the first name property as describing a person. A person has some text called forename. Understand the forename property as describing a person. A person has some text called middle initial. Understand the middle initial property as describing a person. A person has some text called middle name. Understand the middle name property as describing a person. A person has some text called last name. Understand the last name property as describing a person. middleinitial is text that varies. to say randominitial: let x be a random number between 1 and 26; if x is a number listed in the table of alphabet: now middleinitial is "[output entry]"; table of alphabet number output 1 "A." 2 "B." 3 "C." 4 "D." 5 "E." 6 "F." 7 "G." 8 "H." 9 "I." 10 "J." 11 "K." 12 "L." 13 "M." 14 "N." 15 "O." 16 "P." 17 "Q." 18 "R." 19 "S." 20 "T." 21 "U." 22 "V." 23 "W." 24 "X." 25 "Y." 26 "Z." BOY is a man. to say NAMETHEBOY: let x be the number of rows in the Table of popularnames; let BN1 be a random number between 1 and x; if BN1 is a number listed in the Table of popularnames: now the first name of BOY is "[Boyname entry]"; otherwise: say "something fucked up with the first names, boss"; let y be the number of rows in the Table of familynames; let BN2 be a random number between 1 and y; if BN2 is a number listed in the Table of familynames: now the last name of BOY is "[output entry]"; otherwise: say "something fucked up with the last names, boss"; if a random chance of 1 in 5 succeeds: if a random chance of 1 in 2 succeeds: let z be a random number between 1 and 26; if z is a number listed in the table of alphabet: now middle initial of BOY is "[output entry]"; now middle name of BOY is ""; otherwise: let z be a random number between 1 and the number of rows in the Table of popularnames; while z is BN1: now z is a random number between 1 and the number of rows in the Table of popularnames; if z is a number listed in the table of popularnames: now middle initial of BOY is ""; now middle name of BOY is "[Boyname entry]"; now forename of BOY is the substituted form of "[first name of BOY] [middle initial of BOY][middle name of BOY]"; otherwise: now middle initial of BOY is ""; now middle name of BOY is ""; now forename of BOY is the substituted form of "[first name of BOY]"; now the full name of BOY is the substituted form of "[forename of BOY] [last name of BOY]"; GIRL is a woman. to say NAMETHEGIRL: let x be the number of rows in the Table of popularnames; let GN1 be a random number between 1 and x; if GN1 is a number listed in the Table of popularnames: now the first name of GIRL is "[Girlname entry]"; otherwise: say "something fucked up with the first names, boss"; let y be the number of rows in the Table of familynames; let GN2 be a random number between 1 and y; if GN2 is a number listed in the Table of familynames: now the last name of GIRL is "[output entry]"; otherwise: say "something fucked up with the last names, boss"; if a random chance of 1 in 5 succeeds: if a random chance of 1 in 2 succeeds: let z be a random number between 1 and 26; if z is a number listed in the table of alphabet: now middle initial of GIRL is "[output entry]"; now middle name of GIRL is ""; otherwise: let z be a random number between 1 and the number of rows in the Table of popularnames; while z is GN1: now z is a random number between 1 and the number of rows in the Table of popularnames; if z is a number listed in the table of popularnames: now middle initial of GIRL is ""; now middle name of GIRL is "[Girlname entry]"; now forename of GIRL is the substituted form of "[first name of GIRL] [middle initial of GIRL][middle name of GIRL]"; otherwise: now middle initial of GIRL is ""; now middle name of GIRL is ""; now forename of GIRL is the substituted form of "[first name of GIRL]"; now the full name of GIRL is the substituted form of "[forename of GIRL] [last name of GIRL]"; Table of popularnames number Girlname Boyname 1 "Emma" "Noah" 2 "Olivia" "Liam" 3 "Sophia" "Mason" 4 "Isabella" "Jacob" 5 "Ava" "William" 6 "Mia" "Ethan" 7 "Emily" "Michael" 8 "Abigail" "Alexander" 9 "Madison" "James" 10 "Charlotte" "Daniel" 11 "Harper" "Elijah" 12 "Sofia" "Benjamin" 13 "Avery" "Logan" 14 "Elizabeth" "Aiden" 15 "Amelia" "Jayden" 16 "Evelyn" "Matthew" 17 "Ella" "Jackson" 18 "Chloe" "David" 19 "Victoria" "Lucas" 20 "Aubrey" "Joseph" 21 "Grace" "Anthony" 22 "Zoey" "Andrew" 23 "Natalie" "Samuel" 24 "Addison" "Gabriel" 25 "Lillian" "Joshua" 26 "Brooklyn" "John" 27 "Lily" "Carter" 28 "Hannah" "Luke" 29 "Layla" "Dylan" 30 "Scarlett" "Christopher" 31 "Aria" "Isaac" 32 "Zoe" "Oliver" 33 "Samantha" "Henry" 34 "Anna" "Sebastian" 35 "Leah" "Caleb" 36 "Audrey" "Owen" 37 "Ariana" "Ryan" 38 "Allison" "Nathan" 39 "Savannah" "Wyatt" 40 "Arianna" "Hunter" 41 "Camila" "Jack" 42 "Penelope" "Christian" 43 "Gabriella" "Landon" 44 "Claire" "Jonathan" 45 "Aaliyah" "Levi" 46 "Sadie" "Jaxon" 47 "Riley" "Julian" 48 "Skylar" "Isaiah" 49 "Nora" "Eli" 50 "Sarah" "Aaron" 51 "Hailey" "Charles" 52 "Kaylee" "Connor" 53 "Paisley" "Cameron" 54 "Kennedy" "Thomas" 55 "Ellie" "Jordan" 56 "Peyton" "Jeremiah" 57 "Annabelle" "Nicholas" 58 "Caroline" "Evan" 59 "Madelyn" "Adrian" 60 "Serenity" "Gavin" 61 "Aubree" "Robert" 62 "Lucy" "Brayden" 63 "Alexa" "Grayson" 64 "Alexis" "Josiah" 65 "Nevaeh" "Colton" 66 "Stella" "Austin" 67 "Violet" "Angel" 68 "Genesis" "Jace" 69 "Mackenzie" "Dominic" 70 "Bella" "Kevin" 71 "Autumn" "Brandon" 72 "Mila" "Tyler" 73 "Kylie" "Parker" 74 "Maya" "Ayden" 75 "Piper" "Jason" 76 "Alyssa" "Jose" 77 "Taylor" "Ian" 78 "Eleanor" "Chase" 79 "Melanie" "Adam" 80 "Naomi" "Hudson" 81 "Faith" "Nolan" 82 "Eva" "Zachary" 83 "Katherine" "Easton" 84 "Lydia" "Blake" 85 "Brianna" "Jaxson" 86 "Julia" "Cooper" 87 "Ashley" "Lincoln" 88 "Khloe" "Xavier" 89 "Madeline" "Bentley" 90 "Ruby" "Kayden" 91 "Sophie" "Carson" 92 "Alexandra" "Brody" 93 "London" "Asher" 94 "Lauren" "Nathaniel" 95 "Gianna" "Ryder" 96 "Isabelle" "Justin" 97 "Alice" "Leo" 98 "Vivian" "Juan" 99 "Hadley" "Luis" 100 "Jasmine" "Camden" 101 "Morgan" "Tristan" 102 "Kayla" "Damian" 103 "Cora" "Elias" 104 "Bailey" "Vincent" 105 "Kimberly" "Jase" 106 "Reagan" "Mateo" 107 "Hazel" "Maxwell" 108 "Clara" "Miles" 109 "Sydney" "Micah" 110 "Trinity" "Sawyer" 111 "Natalia" "Jesus" 112 "Valentina" "Max" 113 "Rylee" "Roman" 114 "Jocelyn" "Leonardo" 115 "Maria" "Santiago" 116 "Aurora" "Cole" 117 "Eliana" "Carlos" 118 "Brielle" "Bryson" 119 "Liliana" "Ezra" 120 "Mary" "Brantley" 121 "Elena" "Braxton" 122 "Molly" "Declan" 123 "Makayla" "Eric" 124 "Lilly" "Kaiden" 125 "Andrea" "Giovanni" 126 "Quinn" "Theodore" 127 "Jordyn" "Harrison" 128 "Adalynn" "Alex" 129 "Nicole" "Diego" 130 "Delilah" "Wesley" 131 "Kendall" "Bryce" 132 "Kinsley" "Ivan" 133 "Ariel" "Greyson" 134 "Payton" "George" 135 "Paige" "Timothy" 136 "Mariah" "Weston" 137 "Brooke" "Silas" 138 "Willow" "Jonah" 139 "Jade" "Antonio" 140 "Lyla" "Colin" 141 "Mya" "Richard" 142 "Ximena" "Hayden" 143 "Luna" "Ashton" 144 "Isabel" "Steven" 145 "Mckenzie" "Axel" 146 "Ivy" "Miguel" 147 "Josephine" "Kaleb" 148 "Amy" "Bryan" 149 "Laila" "Preston" 150 "Isla" "Jayce" 151 "Eden" "Ryker" 152 "Adalyn" "Victor" 153 "Angelina" "Patrick" 154 "Londyn" "Joel" 155 "Rachel" "Grant" 156 "Melody" "Emmett" 157 "Juliana" "Alejandro" 158 "Kaitlyn" "Marcus" 159 "Brooklynn" "Jameson" 160 "Destiny" "Edward" 161 "Emery" "Kingston" 162 "Gracie" "Jude" 163 "Norah" "Maddox" 164 "Emilia" "Abel" 165 "Reese" "Emmanuel" 166 "Elise" "Bennett" 167 "Sara" "Everett" 168 "Aliyah" "Brian" 169 "Margaret" "Jeremy" 170 "Catherine" "Alan" 171 "Vanessa" "Kaden" 172 "Katelyn" "Jaden" 173 "Gabrielle" "Riley" 174 "Arabella" "Jesse" 175 "Valeria" "King" 176 "Valerie" "Tucker" 177 "Adriana" "Kai" 178 "Everly" "Kyle" 179 "Jessica" "Malachi" 180 "Daisy" "Abraham" 181 "Makenzie" "Ezekiel" 182 "Summer" "Calvin" 183 "Lila" "Oscar" 184 "Rebecca" "Bradley" 185 "Julianna" "Luca" 186 "Callie" "Avery" 187 "Michelle" "Aidan" 188 "Ryleigh" "Zayden" 189 "Presley" "Mark" 190 "Alaina" "Jake" 191 "Angela" "Kenneth" 192 "Alina" "Maximus" 193 "Harmony" "Sean" 194 "Rose" "Karter" 195 "Athena" "Brady" 196 "Emerson" "Nicolas" 197 "Adelyn" "Cayden" 198 "Alana" "Caden" 199 "Hayden" "Graham" 200 "Izabella" "Jayceon" 201 "Cali" "Paul" 202 "Marley" "Gage" 203 "Esther" "Corbin" 204 "Fiona" "Peter" 205 "Stephanie" "Derek" 206 "Cecilia" "Maverick" 207 "Kate" "Jorge" 208 "Kinley" "Tanner" 209 "Jayla" "Jax" 210 "Genevieve" "Peyton" 211 "Alexandria" "Xander" 212 "Eliza" "Amir" 213 "Kylee" "Gael" 214 "Alivia" "Omar" 215 "Giselle" "Iker" 216 "Arya" "Javier" 217 "Alayna" "Elliot" 218 "Leilani" "Jasper" 219 "Adeline" "Rylan" 220 "Jennifer" "Cody" 221 "Tessa" "Dean" 222 "Ana" "Andres" 223 "Finley" "Collin" 224 "Melissa" "Zane" 225 "Daniela" "Charlie" 226 "Aniyah" "Myles" 227 "Daleyza" "Lorenzo" 228 "Keira" "Beau" 229 "Charlie" "Conner" 230 "Lucia" "Lukas" 231 "Hope" "Simon" 232 "Gabriela" "Francisco" 233 "Mckenna" "Elliott" 234 "Brynlee" "Finn" 235 "Parker" "Gunner" 236 "Lola" "Garrett" 237 "Amaya" "Jaiden" 238 "Miranda" "Keegan" 239 "Maggie" "Rowan" 240 "Anastasia" "Israel" 241 "Leila" "Griffin" 242 "Lexi" "August" 243 "Georgia" "Judah" 244 "Kenzie" "Beckett" 245 "Iris" "Brooks" 246 "Jacqueline" "Zander" 247 "Jordan" "Spencer" 248 "Cassidy" "Chance" 249 "Vivienne" "Damien" 250 "Camille" "Seth" 251 "Noelle" "Waylon" 252 "Adrianna" "Travis" 253 "Teagan" "Devin" 254 "Josie" "Emiliano" 255 "Juliette" "Zion" 256 "Annabella" "Ricardo" 257 "Allie" "Erick" 258 "Juliet" "Stephen" 259 "Kendra" "Reid" 260 "Sienna" "Paxton" 261 "Brynn" "Eduardo" 262 "Kali" "Martin" 263 "Maci" "Fernando" 264 "Danielle" "Raymond" 265 "Haley" "Manuel" 266 "Jenna" "Jeffrey" 267 "Raelynn" "Felix" 268 "Delaney" "Dallas" 269 "Paris" "Josue" 270 "Alexia" "Mario" 271 "Lyric" "Clayton" 272 "Gemma" "Caiden" 273 "Lilliana" "Cristian" 274 "Chelsea" "Troy" 275 "Angel" "Cash" 276 "Evangeline" "Trevor" 277 "Ayla" "Shane" 278 "Kayleigh" "Kameron" 279 "Lena" "Cesar" 280 "Katie" "Emilio" 281 "Elaina" "Andy" 282 "Olive" "Tyson" 283 "Madeleine" "Andre" 284 "Makenna" "Donovan" 285 "Dakota" "Titus" 286 "Elsa" "Knox" 287 "Nova" "River" 288 "Nadia" "Kyler" 289 "Alison" "Louis" 290 "Kaydence" "Cruz" 291 "Journey" "Hector" 292 "Jada" "Holden" 293 "Kathryn" "Rafael" 294 "Shelby" "Landen" 295 "Nina" "Lane" 296 "Elliana" "Jared" 297 "Diana" "Edwin" 298 "Phoebe" "Messiah" 299 "Alessandra" "Johnny" 300 "Eloise" "Edgar" 301 "Nyla" "Johnathan" 302 "Skyler" "Alexis" 303 "Madilyn" "Archer" 304 "Adelynn" "Anderson" 305 "Miriam" "Trenton" 306 "Ashlyn" "Arthur" 307 "Amiyah" "Sergio" 308 "Megan" "Marco" 309 "Amber" "Julius" 310 "Rosalie" "Dominick" 311 "Annie" "Milo" 312 "Lilah" "Dalton" 313 "Charlee" "Remington" 314 "Amanda" "Dante" 315 "Ruth" "Angelo" 316 "Adelaide" "Gregory" 317 "June" "Reed" 318 "Laura" "Jaylen" 319 "Daniella" "Marshall" 320 "Mikayla" "Dawson" 321 "Raegan" "Leon" 322 "Jane" "Drew" 323 "Ashlynn" "Shawn" 324 "Kelsey" "Emerson" 325 "Erin" "Fabian" 326 "Christina" "Joaquin" 327 "Joanna" "Walker" 328 "Fatima" "Erik" 329 "Allyson" "Desmond" 330 "Talia" "Karson" 331 "Mariana" "Emanuel" 332 "Sabrina" "Jett" 333 "Haven" "Ali" 334 "Ainsley" "Kendrick" 335 "Cadence" "Aden" 336 "Elsie" "Frank" 337 "Leslie" "Walter" 338 "Heaven" "Rhett" 339 "Arielle" "Colt" 340 "Maddison" "Amari" 341 "Alicia" "Romeo" 342 "Briella" "Cohen" 343 "Lucille" "Roberto" 344 "Sawyer" "Maximiliano" 345 "Malia" "Grady" 346 "Selena" "Barrett" 347 "Heidi" "Zaiden" 348 "Kyleigh" "Drake" 349 "Harley" "Gideon" 350 "Kira" "Major" 351 "Lana" "Brendan" 352 "Sierra" "Skyler" 353 "Kiara" "Derrick" 354 "Paislee" "Pedro" 355 "Alondra" "Phoenix" 356 "Daphne" "Noel" 357 "Carly" "Ruben" 358 "Jaylah" "Braden" 359 "Kyla" "Nehemiah" 360 "Bianca" "Dakota" 361 "Baylee" "Cade" 362 "Cheyenne" "Kamden" 363 "Macy" "Quinn" 364 "Camilla" "Nash" 365 "Catalina" "Kason" 366 "Gia" "Ronan" 367 "Vera" "Allen" 368 "Skye" "Porter" 369 "Aylin" "Enzo" 370 "Sloane" "Atticus" 371 "Myla" "Kash" 372 "Yaretzi" "Jay" 373 "Giuliana" "Adan" 374 "Macie" "Finley" 375 "Veronica" "Matteo" 376 "Esmeralda" "Malik" 377 "Lia" "Abram" 378 "Averie" "Braylon" 379 "Addyson" "Ace" 380 "Kamryn" "Solomon" 381 "Mckinley" "Gunnar" 382 "Ada" "Clark" 383 "Carmen" "Orion" 384 "Mallory" "Ismael" 385 "Jillian" "Kellan" 386 "Ariella" "Brennan" 387 "Rylie" "Corey" 388 "Sage" "Tate" 389 "Abby" "Philip" 390 "Scarlet" "Thiago" 391 "Logan" "Phillip" 392 "Tatum" "Esteban" 393 "Bethany" "Jayson" 394 "Dylan" "Dexter" 395 "Elle" "Jensen" 396 "Jazmin" "Pablo" 397 "Aspen" "Ronald" 398 "Camryn" "Dillon" 399 "Malaysia" "Muhammad" 400 "Haylee" "Armando" 401 "Nayeli" "Bruce" 402 "Gracelyn" "Gerardo" 403 "Kamila" "Brycen" 404 "Helen" "Marcos" 405 "Marilyn" "Kade" 406 "April" "Kolton" 407 "Carolina" "Damon" 408 "Amina" "Braylen" 409 "Julie" "Russell" 410 "Raelyn" "Leland" 411 "Blakely" "Milan" 412 "Rowan" "Prince" 413 "Angelique" "Gannon" 414 "Miracle" "Enrique" 415 "Emely" "Keith" 416 "Jayleen" "Rory" 417 "Kennedi" "Brock" 418 "Amira" "Donald" 419 "Briana" "Tobias" 420 "Gwendolyn" "Chandler" 421 "Justice" "Deacon" 422 "Zara" "Cason" 423 "Aleah" "Raul" 424 "Itzel" "Ty" 425 "Bristol" "Scott" 426 "Francesca" "Landyn" 427 "Emersyn" "Mohamed" 428 "Aubrie" "Colby" 429 "Karina" "Danny" 430 "Nylah" "Leonel" 431 "Kelly" "Kayson" 432 "Anaya" "Warren" 433 "Maliyah" "Adriel" 434 "Evelynn" "Dustin" 435 "Ember" "Taylor" 436 "Melany" "Albert" 437 "Angelica" "Ryland" 438 "Jimena" "Hugo" 439 "Madelynn" "Keaton" 440 "Kassidy" "Jamison" 441 "Tiffany" "Ari" 442 "Kara" "Malcolm" 443 "Jazmine" "Ellis" 444 "Jayda" "Kellen" 445 "Dahlia" "Maximilian" 446 "Alejandra" "Davis" 447 "Sarai" "Saul" 448 "Annabel" "Tony" 449 "Holly" "Rocco" 450 "Janelle" "Zachariah" 451 "Braelyn" "Jerry" 452 "Gracelynn" "Julio" 453 "River" "Franklin" 454 "Viviana" "Arjun" 455 "Serena" "Ibrahim" 456 "Brittany" "Nico" 457 "Annalise" "Jaxton" 458 "Brinley" "Jakob" 459 "Madisyn" "Izaiah" 460 "Eve" "Moises" 461 "Cataleya" "Cyrus" 462 "Joy" "Lawrence" 463 "Caitlyn" "Sullivan" 464 "Anabelle" "Finnegan" 465 "Emmalyn" "Khalil" 466 "Journee" "Mathew" 467 "Celeste" "Case" 468 "Brylee" "Jaime" 469 "Luciana" "Alec" 470 "Marlee" "Pierce" 471 "Savanna" "Quentin" 472 "Anya" "Kasen" 473 "Marissa" "Darius" 474 "Jazlyn" "Colten" 475 "Zuri" "Royce" 476 "Kailey" "Odin" 477 "Crystal" "Kane" 478 "Michaela" "Francis" 479 "Lorelei" "Raiden" 480 "Guadalupe" "Trey" 481 "Madilynn" "Daxton" 482 "Maeve" "Gustavo" 483 "Hanna" "Rhys" 484 "Priscilla" "Alijah" 485 "Kyra" "Lawson" 486 "Lacey" "Beckham" 487 "Nia" "Moses" 488 "Charley" "Rodrigo" 489 "Jamie" "Armani" 490 "Juniper" "Uriel" 491 "Cynthia" "Dennis" 492 "Karen" "Marvin" 493 "Sylvia" "Harvey" 494 "Phoenix" "Kian" 495 "Aleena" "Raylan" 496 "Caitlin" "Darren" 497 "Felicity" "Frederick" 498 "Elisa" "Mohammed" 499 "Julissa" "Trent" 500 "Rebekah" "Jonas" 501 "Evie" "Zayne" 502 "Helena" "Callen" 503 "Imani" "Matias" 504 "Karla" "Mitchell" 505 "Millie" "Kyrie" 506 "Lilian" "Uriah" 507 "Raven" "Tristen" 508 "Harlow" "Sterling" 509 "Leia" "Theo" 510 "Ryan" "Larry" 511 "Kailyn" "Randy" 512 "Lillie" "Korbin" 513 "Amara" "Alberto" 514 "Kadence" "Chris" 515 "Lauryn" "Gianni" 516 "Cassandra" "Killian" 517 "Kaylie" "Princeton" 518 "Madalyn" "Arturo" 519 "Anika" "Ricky" 520 "Hayley" "Malakai" 521 "Bria" "Aarav" 522 "Colette" "Asa" 523 "Henley" "Jimmy" 524 "Amari" "Alfredo" 525 "Regina" "Alonzo" 526 "Alanna" "Benson" 527 "Azalea" "Braydon" 528 "Fernanda" "Devon" 529 "Jaliyah" "Curtis" 530 "Anabella" "Casey" 531 "Adelina" "Justice" 532 "Lilyana" "Roy" 533 "Skyla" "Sam" 534 "Addisyn" "Legend" 535 "Zariah" "Dorian" 536 "Bridget" "Nikolai" 537 "Braylee" "Kobe" 538 "Monica" "Winston" 539 "Jayden" "Arlo" 540 "Leighton" "Reece" 541 "Gloria" "Lance" 542 "Johanna" "Wade" 543 "Addilyn" "Cannon" 544 "Danna" "Augustus" 545 "Selah" "Hayes" 546 "Aryanna" "Hendrix" 547 "Kaylin" "Isaias" 548 "Aniya" "Neymar" 549 "Willa" "Ahmed" 550 "Angie" "Jaxen" 551 "Kaia" "Nasir" 552 "Kaliyah" "Brayan" 553 "Anne" "Issac" 554 "Tiana" "Ronin" 555 "Charleigh" "Talon" 556 "Winter" "Boston" 557 "Danica" "Moshe" 558 "Alayah" "Orlando" 559 "Aisha" "Vihaan" 560 "Bailee" "Gary" 561 "Kenley" "Bowen" 562 "Aileen" "Luka" 563 "Lexie" "Nikolas" 564 "Janiyah" "Yahir" 565 "Braelynn" "Joe" 566 "Liberty" "Leonidas" 567 "Katelynn" "Quinton" 568 "Mariam" "Luciano" 569 "Sasha" "Ezequiel" 570 "Lindsey" "Ayaan" 571 "Montserrat" "Ahmad" 572 "Cecelia" "Jalen" 573 "Mikaela" "Royal" 574 "Kaelyn" "Jamari" 575 "Rosemary" "Noe" 576 "Annika" "Kieran" 577 "Tatiana" "Mauricio" 578 "Cameron" "Conor" 579 "Marie" "Johan" 580 "Dallas" "Matthias" 581 "Virginia" "Bryant" 582 "Liana" "Mathias" 583 "Matilda" "Maurice" 584 "Freya" "Roger" 585 "Lainey" "Lennox" 586 "Hallie" "Nathanael" 587 "Jessie" "Nixon" 588 "Audrina" "Mohammad" 589 "Blake" "Yusuf" 590 "Hattie" "Eddie" 591 "Monserrat" "Kristopher" 592 "Kiera" "Tatum" 593 "Laylah" "Jacoby" 594 "Greta" "Wilson" 595 "Alyson" "Alvin" 596 "Emilee" "Raphael" 597 "Maryam" "Lewis" 598 "Melina" "Douglas" 599 "Dayana" "Mekhi" 600 "Jaelynn" "Salvador" 601 "Beatrice" "Eden" 602 "Frances" "Hank" 603 "Elisabeth" "Cullen" 604 "Saige" "Dax" 605 "Kensley" "Toby" 606 "Meredith" "Rayan" 607 "Aranza" "Emmitt" 608 "Rosa" "Lucian" 609 "Shiloh" "Jefferson" 610 "Charli" "Casen" 611 "Elyse" "London" 612 "Alani" "Roland" 613 "Mira" "Carl" 614 "Lylah" "Crosby" 615 "Linda" "Bodhi" 616 "Whitney" "Dominik" 617 "Alena" "Niko" 618 "Jaycee" "Zackary" 619 "Joselyn" "Deandre" 620 "Ansley" "Hamza" 621 "Kynlee" "Remy" 622 "Miah" "Quincy" 623 "Tenley" "Alessandro" 624 "Breanna" "Sincere" 625 "Emelia" "Dane" 626 "Maia" "Terry" 627 "Edith" "Otto" 628 "Pearl" "Samson" 629 "Anahi" "Madden" 630 "Coraline" "Jasiah" 631 "Samara" "Layne" 632 "Demi" "Santino" 633 "Chanel" "Rohan" 634 "Kimber" "Abdullah" 635 "Lilith" "Brentley" 636 "Malaya" "Marc" 637 "Jemma" "Skylar" 638 "Myra" "Bo" 639 "Bryanna" "Kyson" 640 "Laney" "Soren" 641 "Jaelyn" "Harley" 642 "Kaylynn" "Nelson" 643 "Kallie" "Layton" 644 "Natasha" "Payton" 645 "Nathalie" "Aldo" 646 "Perla" "Atlas" 647 "Amani" "Ramon" 648 "Lilianna" "Reese" 649 "Madalynn" "Conrad" 650 "Blair" "Morgan" 651 "Elianna" "Ernesto" 652 "Karsyn" "Byron" 653 "Lindsay" "Carmelo" 654 "Elaine" "Sage" 655 "Dulce" "Neil" 656 "Ellen" "Kristian" 657 "Erica" "Oakley" 658 "Maisie" "Tomas" 659 "Renata" "Flynn" 660 "Kiley" "Lionel" 661 "Marina" "Kylan" 662 "Remi" "Leonard" 663 "Emmy" "Rex" 664 "Ivanna" "Brett" 665 "Amirah" "Jeffery" 666 "Livia" "Duke" 667 "Amelie" "Sylas" 668 "Irene" "Callan" 669 "Mabel" "Tripp" 670 "Milan" "Bruno" 671 "Armani" "Zechariah" 672 "Cara" "Melvin" 673 "Ciara" "Branson" 674 "Kathleen" "Blaine" 675 "Jaylynn" "Jon" 676 "Caylee" "Julien" 677 "Lea" "Arian" 678 "Erika" "Guillermo" 679 "Paola" "Zain" 680 "Alma" "Rayden" 681 "Courtney" "Brodie" 682 "Mae" "Crew" 683 "Kassandra" "Memphis" 684 "Maleah" "Kelvin" 685 "Remington" "Stanley" 686 "Leyla" "Joey" 687 "Mina" "Emery" 688 "Ariah" "Terrance" 689 "Christine" "Channing" 690 "Jasmin" "Edison" 691 "Kora" "Lennon" 692 "Chaya" "Demetrius" 693 "Karlee" "Amos" 694 "Lailah" "Cayson" 695 "Mara" "Rodney" 696 "Jaylee" "Cory" 697 "Raquel" "Elian" 698 "Siena" "Xzavier" 699 "Lennon" "Bronson" 700 "Desiree" "Bentlee" 701 "Hadassah" "Lee" 702 "Kenya" "Dayton" 703 "Aliana" "Chad" 704 "Wren" "Cassius" 705 "Amiya" "Jagger" 706 "Isis" "Fletcher" 707 "Zaniyah" "Omari" 708 "Avah" "Alonso" 709 "Amia" "Yosef" 710 "Cindy" "Westin" 711 "Eileen" "Brenden" 712 "Kayden" "Makai" 713 "Madyson" "Felipe" 714 "Celine" "Harry" 715 "Aryana" "Alden" 716 "Everleigh" "Maxim" 717 "Isabela" "Nickolas" 718 "Reyna" "Davion" 719 "Teresa" "Forrest" 720 "Jolene" "Allan" 721 "Marjorie" "Enoch" 722 "Myah" "Willie" 723 "Clare" "Ben" 724 "Claudia" "Terrence" 725 "Leanna" "Tommy" 726 "Noemi" "Adonis" 727 "Corinne" "Cain" 728 "Simone" "Harper" 729 "Alia" "Callum" 730 "Brenda" "Jermaine" 731 "Dorothy" "Kody" 732 "Emilie" "Thaddeus" 733 "Elin" "Ray" 734 "Tori" "Kamari" 735 "Martha" "Aydin" 736 "Ally" "Zeke" 737 "Arely" "Markus" 738 "Leona" "Ariel" 739 "Patricia" "Elisha" 740 "Sky" "Lucca" 741 "Thalia" "Marcelo" 742 "Carolyn" "Shaun" 743 "Emory" "Aryan" 744 "Nataly" "Vicente" 745 "Paityn" "Aron" 746 "Shayla" "Keagan" 747 "Averi" "Marlon" 748 "Jazlynn" "Langston" 749 "Margot" "Ulises" 750 "Lisa" "Anders" 751 "Lizbeth" "Kareem" 752 "Nancy" "Bobby" 753 "Deborah" "Davian" 754 "Ivory" "Kendall" 755 "Khaleesi" "Ronnie" 756 "Elliot" "Jadiel" 757 "Meadow" "Samir" 758 "Yareli" "Alexzander" 759 "Farrah" "Hassan" 760 "Milania" "Kingsley" 761 "Janessa" "Axton" 762 "Milana" "Trace" 763 "Zoie" "Will" 764 "Adele" "Jamal" 765 "Clarissa" "Valentino" 766 "Hunter" "Yousef" 767 "Lina" "Brecken" 768 "Oakley" "Fisher" 769 "Sariah" "Giovani" 770 "Emmalynn" "Kaysen" 771 "Galilea" "Maxton" 772 "Hailee" "Mayson" 773 "Halle" "Van" 774 "Sutton" "Hezekiah" 775 "Giana" "Blaze" 776 "Thea" "Kolten" 777 "Denise" "Misael" 778 "Naya" "Javon" 779 "Kristina" "Kolby" 780 "Liv" "Rogelio" 781 "Nathaly" "Ares" 782 "Wendy" "Jedidiah" 783 "Aubrielle" "Bode" 784 "Brenna" "Leandro" 785 "Carter" "Cedric" 786 "Danika" "Jamie" 787 "Monroe" "Rowen" 788 "Celia" "Urijah" 789 "Dana" "Wayne" 790 "Jolie" "Eugene" 791 "Taliyah" "Kole" 792 "Casey" "Camron" 793 "Miley" "Darian" 794 "Yamileth" "Billy" 795 "Jaylene" "Kase" 796 "Saylor" "Rene" 797 "Joyce" "Duncan" 798 "Milena" "Adrien" 799 "Zariyah" "Alfred" 800 "Sandra" "Maison" 801 "Ariadne" "Apollo" 802 "Aviana" "Braeden" 803 "Mollie" "Mack" 804 "Cherish" "Clyde" 805 "Alaya" "Reginald" 806 "Asia" "Anson" 807 "Nola" "Jerome" 808 "Penny" "Ishaan" 809 "Dixie" "Jessie" 810 "Marisol" "Javion" 811 "Adrienne" "Micheal" 812 "Rylan" "Vincenzo" 813 "Kori" "Camdyn" 814 "Kristen" "Gauge" 815 "Aimee" "Keenan" 816 "Esme" "Gerald" 817 "Laurel" "Franco" 818 "Aliza" "Junior" 819 "Roselyn" "Justus" 820 "Sloan" "Jamir" 821 "Lorelai" "Marley" 822 "Jenny" "Terrell" 823 "Katalina" "Giancarlo" 824 "Lara" "Braiden" 825 "Amya" "Brantlee" 826 "Ayleen" "Draven" 827 "Aubri" "Titan" 828 "Ariya" "Harold" 829 "Carlee" "Landry" 830 "Iliana" "Zayn" 831 "Magnolia" "Briggs" 832 "Aurelia" "Kyree" 833 "Elliott" "Chaim" 834 "Evalyn" "Dilan" 835 "Natalee" "Joziah" 836 "Rayna" "Marquis" 837 "Heather" "Jonathon" 838 "Collins" "Azariah" 839 "Estrella" "Kenny" 840 "Rory" "Amare" 841 "Hana" "Brent" 842 "Kenna" "Clay" 843 "Jordynn" "Stetson" 844 "Rosie" "Tyrone" 845 "Aiyana" "Blaise" 846 "America" "Dariel" 847 "Angeline" "Lamar" 848 "Janiya" "Reuben" 849 "Jessa" "Alfonso" 850 "Tegan" "Axl" 851 "Susan" "Stefan" 852 "Emmalee" "Finnley" 853 "Taryn" "Marcel" 854 "Temperance" "Jaydon" 855 "Alissa" "Kalel" 856 "Kenia" "Triston" 857 "Abbigail" "Darrell" 858 "Briley" "Steve" 859 "Kailee" "Abdiel" 860 "Zaria" "Lyric" 861 "Chana" "Gibson" 862 "Lillianna" "Thatcher" 863 "Barbara" "Henrik" 864 "Carla" "Jadon" 865 "Aliya" "Jairo" 866 "Bonnie" "Rudy" 867 "Keyla" "Castiel" 868 "Marianna" "Emory" 869 "Paloma" "Hugh" 870 "Jewel" "Konnor" 871 "Joslyn" "Graysen" 872 "Saniyah" "Cristiano" 873 "Audriana" "Deshawn" 874 "Giovanna" "Eliezer" 875 "Hadleigh" "Kamdyn" 876 "Mckayla" "Miller" 877 "Jaida" "Rylee" 878 "Salma" "Tristian" 879 "Sharon" "Agustin" 880 "Emmaline" "Ernest" 881 "Kimora" "Dwayne" 882 "Wynter" "Dimitri" 883 "Avianna" "Ford" 884 "Amalia" "Rey" 885 "Karlie" "Zavier" 886 "Kaidence" "Arnav" 887 "Kairi" "Santana" 888 "Libby" "Vance" 889 "Sherlyn" "Jamarion" 890 "Diamond" "Ramiro" 891 "Holland" "Sonny" 892 "Zendaya" "Brice" 893 "Mariyah" "Leighton" 894 "Zainab" "Gilbert" 895 "Alisha" "Jordyn" 896 "Ayanna" "Kaeden" 897 "Ellison" "Anton" 898 "Harlee" "Coen" 899 "Lilyanna" "Salvatore" 900 "Bryleigh" "Seamus" 901 "Julianne" "Zaire" 902 "Kaleigh" "Aaden" 903 "Miya" "Chevy" 904 "Yasmin" "Lachlan" 905 "Anniston" "Rolando" 906 "Estelle" "Aydan" 907 "Emmeline" "Darwin" 908 "Faye" "Randall" 909 "Kiana" "Santos" 910 "Anabel" "Yael" 911 "Zion" "Grey" 912 "Tara" "Kohen" 913 "Astrid" "Rashad" 914 "Emerie" "Jayse" 915 "Sidney" "Lochlan" 916 "Zahra" "Mustafa" 917 "Jaylin" "Johnathon" 918 "Kinslee" "Kannon" 919 "Tabitha" "Konner" 920 "Aubriella" "Jovani" 921 "Addilynn" "Maximo" 922 "Alyvia" "Alvaro" 923 "Hadlee" "Clinton" 924 "Ingrid" "Aidyn" 925 "Lilia" "Kymani" 926 "Macey" "Davin" 927 "Azaria" "Jordy" 928 "Kaitlynn" "Ephraim" 929 "Neriah" "Frankie" 930 "Annabell" "Heath" 931 "Ariyah" "Houston" 932 "Janae" "Kamron" 933 "Kaiya" "Craig" 934 "Reina" "Cristopher" 935 "Rivka" "Gordon" 936 "Alisa" "Harlan" 937 "Marleigh" "Turner" 938 "Alisson" "Vaughn" 939 "Maliah" "Vivaan" 940 "Mercy" "Ameer" 941 "Noa" "Gavyn" 942 "Scarlette" "Gino" 943 "Clementine" "Jovanni" 944 "Frida" "Benton" 945 "Ann" "Rodolfo" 946 "Sonia" "Dominique" 947 "Alannah" "Jaycob" 948 "Avalynn" "Jericho" 949 "Dalia" "Augustine" 950 "Ayva" "Coleman" 951 "Stevie" "Dash" 952 "Judith" "Eliseo" 953 "Paulina" "Khalid" 954 "Azariah" "Quintin" 955 "Estella" "Makhi" 956 "Remy" "Zaid" 957 "Gwen" "Anakin" 958 "Mattie" "Baylor" 959 "Milani" "Emmet" 960 "Raina" "Judson" 961 "Julieta" "Truman" 962 "Renee" "Camilo" 963 "Lesly" "Efrain" 964 "Abrielle" "Semaj" 965 "Bryn" "Camren" 966 "Carlie" "Damari" 967 "Riya" "Kamryn" 968 "Karter" "Deangelo" 969 "Abril" "Giovanny" 970 "Aubrianna" "Mike" 971 "Jocelynn" "Dario" 972 "Kylah" "Kale" 973 "Louisa" "Broderick" 974 "Pyper" "Jayvion" 975 "Antonia" "Kaison" 976 "Magdalena" "Koen" 977 "Moriah" "Magnus" 978 "Ryann" "Darien" 979 "Tamia" "Teagan" 980 "Kailani" "Valentin" 981 "Landry" "Bodie" 982 "Aya" "Brayson" 983 "Ireland" "Chace" 984 "Mercedes" "Kylen" 985 "Rosalyn" "Yehuda" 986 "Alaysia" "Bridger" 987 "Annalee" "Howard" 988 "Patience" "Maddux" 989 "Aanya" "Osvaldo" 990 "Paula" "Rocky" 991 "Samiyah" "Ayan" 992 "Yaritza" "Boden" 993 "Cordelia" "Foster" 994 "Micah" "Jair" 995 "Nala" "Reyansh" 996 "Belen" "Tyree" 997 "Cambria" "Ean" 998 "Natalya" "Leif" 999 "Kaelynn" "Reagan" 1000 "Kai" "Rylen" Table of familynames number output 1 "Smith" 2 "Johnson" 3 "Williams" 4 "Jones" 5 "Brown" 6 "Davis" 7 "Miller" 8 "Wilson" 9 "Moore" 10 "Taylor" 11 "Anderson" 12 "Thomas" 13 "Jackson" 14 "White" 15 "Harris" 16 "Martin" 17 "Thompson" 18 "Garcia" 19 "Martinez" 20 "Robinson" 21 "Clark" 22 "Rodriguez" 23 "Lewis" 24 "Lee" 25 "Walker" 26 "Hall" 27 "Allen" 28 "Young" 29 "Hernandez" 30 "King" 31 "Wright" 32 "Lopez" 33 "Hill" 34 "Scott" 35 "Green" 36 "Adams" 37 "Baker" 38 "Gonzalez" 39 "Nelson" 40 "Carter" 41 "Mitchell" 42 "Perez" 43 "Roberts" 44 "Turner" 45 "Phillips" 46 "Campbell" 47 "Parker" 48 "Evans" 49 "Edwards" 50 "Collins" 51 "Stewart" 52 "Sanchez" 53 "Morris" 54 "Rogers" 55 "Reed" 56 "Cook" 57 "Morgan" 58 "Bell" 59 "Murphy" 60 "Bailey" 61 "Rivera" 62 "Cooper" 63 "Richardson" 64 "Cox" 65 "Howard" 66 "Ward" 67 "Torres" 68 "Peterson" 69 "Gray" 70 "Ramirez" 71 "James" 72 "Watson" 73 "Brooks" 74 "Kelly" 75 "Sanders" 76 "Price" 77 "Bennett" 78 "Wood" 79 "Barnes" 80 "Ross" 81 "Henderson" 82 "Coleman" 83 "Jenkins" 84 "Perry" 85 "Powell" 86 "Long" 87 "Patterson" 88 "Hughes" 89 "Flores" 90 "Washington" 91 "Butler" 92 "Simmons" 93 "Foster" 94 "Gonzales" 95 "Bryant" 96 "Alexander" 97 "Russell" 98 "Griffin" 99 "Diaz" 100 "Hayes" 101 "Myers" 102 "Ford" 103 "Hamilton" 104 "Graham" 105 "Sullivan" 106 "Wallace" 107 "Woods" 108 "Cole" 109 "West" 110 "Jordan" 111 "Owens" 112 "Reynolds" 113 "Fisher" 114 "Ellis" 115 "Harrison" 116 "Gibson" 117 "McDonald" 118 "Cruz" 119 "Marshall" 120 "Ortiz" 121 "Gomez" 122 "Murray" 123 "Freeman" 124 "Wells" 125 "Webb" 126 "Simpson" 127 "Stevens" 128 "Tucker" 129 "Porter" 130 "Hunter" 131 "Hicks" 132 "Crawford" 133 "Henry" 134 "Boyd" 135 "Mason" 136 "Morales" 137 "Kennedy" 138 "Warren" 139 "Dixon" 140 "Ramos" 141 "Reyes" 142 "Burns" 143 "Gordon" 144 "Shaw" 145 "Holmes" 146 "Rice" 147 "Robertson" 148 "Hunt" 149 "Black" 150 "Daniels" 151 "Palmer" 152 "Mills" 153 "Nichols" 154 "Grant" 155 "Knight" 156 "Ferguson" 157 "Rose" 158 "Stone" 159 "Hawkins" 160 "Dunn" 161 "Perkins" 162 "Hudson" 163 "Spencer" 164 "Gardner" 165 "Stephens" 166 "Payne" 167 "Pierce" 168 "Berry" 169 "Matthews" 170 "Arnold" 171 "Wagner" 172 "Willis" 173 "Ray" 174 "Watkins" 175 "Olson" 176 "Carroll" 177 "Duncan" 178 "Snyder" 179 "Hart" 180 "Cunningham" 181 "Bradley" 182 "Lane" 183 "Andrews" 184 "Ruiz" 185 "Harper" 186 "Fox" 187 "Riley" 188 "Armstrong" 189 "Carpenter" 190 "Weaver" 191 "Greene" 192 "Lawrence" 193 "Elliott" 194 "Chavez" 195 "Sims" 196 "Austin" 197 "Peters" 198 "Kelley" 199 "Franklin" 200 "Lawson" 201 "Fields" 202 "Gutierrez" 203 "Ryan" 204 "Schmidt" 205 "Carr" 206 "Vasquez" 207 "Castillo" 208 "Wheeler" 209 "Chapman" 210 "Oliver" 211 "Montgomery" 212 "Richards" 213 "Williamson" 214 "Johnston" 215 "Banks" 216 "Meyer" 217 "Bishop" 218 "McCoy" 219 "Howell" 220 "Alvarez" 221 "Morrison" 222 "Hansen" 223 "Fernandez" 224 "Garza" 225 "Harvey" 226 "Little" 227 "Burton" 228 "Stanley" 229 "Nguyen" 230 "George" 231 "Jacobs" 232 "Reid" 233 "Kim" 234 "Fuller" 235 "Lynch" 236 "Dean" 237 "Gilbert" 238 "Garrett" 239 "Romero" 240 "Welch" 241 "Larson" 242 "Frazier" 243 "Burke" 244 "Hanson" 245 "Day" 246 "Mendoza" 247 "Moreno" 248 "Bowman" 249 "Medina" 250 "Fowler" 251 "Brewer" 252 "Hoffman" 253 "Carlson" 254 "Silva" 255 "Pearson" 256 "Holland" 257 "Douglas" 258 "Fleming" 259 "Jensen" 260 "Vargas" 261 "Byrd" 262 "Davidson" 263 "Hopkins" 264 "May" 265 "Terry" 266 "Herrera" 267 "Wade" 268 "Soto" 269 "Walters" 270 "Curtis" 271 "Neal" 272 "Caldwell" 273 "Lowe" 274 "Jennings" 275 "Barnett" 276 "Graves" 277 "Jimenez" 278 "Horton" 279 "Shelton" 280 "Barrett" 281 "Obrien" 282 "Castro" 283 "Sutton" 284 "Gregory" 285 "McKinney" 286 "Lucas" 287 "Miles" 288 "Craig" 289 "Rodriquez" 290 "Chambers" 291 "Holt" 292 "Lambert" 293 "Fletcher" 294 "Watts" 295 "Bates" 296 "Hale" 297 "Rhodes" 298 "Pena" 299 "Beck" 300 "Newman" 301 "Haynes" 302 "McDaniel" 303 "Mendez" 304 "Bush" 305 "Vaughn" 306 "Parks" 307 "Dawson" 308 "Santiago" 309 "Norris" 310 "Hardy" 311 "Love" 312 "Steele" 313 "Curry" 314 "Powers" 315 "Schultz" 316 "Barker" 317 "Guzman" 318 "Page" 319 "Munoz" 320 "Ball" 321 "Keller" 322 "Chandler" 323 "Weber" 324 "Leonard" 325 "Walsh" 326 "Lyons" 327 "Ramsey" 328 "Wolfe" 329 "Schneider" 330 "Mullins" 331 "Benson" 332 "Sharp" 333 "Bowen" 334 "Daniel" 335 "Barber" 336 "Cummings" 337 "Hines" 338 "Baldwin" 339 "Griffith" 340 "Valdez" 341 "Hubbard" 342 "Salazar" 343 "Reeves" 344 "Warner" 345 "Stevenson" 346 "Burgess" 347 "Santos" 348 "Tate" 349 "Cross" 350 "Garner" 351 "Mann" 352 "Mack" 353 "Moss" 354 "Thornton" 355 "Dennis" 356 "McGee" 357 "Farmer" 358 "Delgado" 359 "Aguilar" 360 "Vega" 361 "Glover" 362 "Manning" 363 "Cohen" 364 "Harmon" 365 "Rodgers" 366 "Robbins" 367 "Newton" 368 "Todd" 369 "Blair" 370 "Higgins" 371 "Ingram" 372 "Reese" 373 "Cannon" 374 "Strickland" 375 "Townsend" 376 "Potter" 377 "Goodwin" 378 "Walton" 379 "Rowe" 380 "Hampton" 381 "Ortega" 382 "Patton" 383 "Swanson" 384 "Joseph" 385 "Francis" 386 "Goodman" 387 "Maldonado" 388 "Yates" 389 "Becker" 390 "Erickson" 391 "Hodges" 392 "Rios" 393 "Conner" 394 "Adkins" 395 "Webster" 396 "Norman" 397 "Malone" 398 "Hammond" 399 "Flowers" 400 "Cobb" 401 "Moody" 402 "Quinn" 403 "Blake" 404 "Maxwell" 405 "Pope" 406 "Floyd" 407 "Osborne" 408 "Paul" 409 "McCarthy" 410 "Guerrero" 411 "Lindsey" 412 "Estrada" 413 "Sandoval" 414 "Gibbs" 415 "Tyler" 416 "Gross" 417 "Fitzgerald" 418 "Stokes" 419 "Doyle" 420 "Sherman" 421 "Saunders" 422 "Wise" 423 "Colon" 424 "Gill" 425 "Alvarado" 426 "Greer" 427 "Padilla" 428 "Simon" 429 "Waters" 430 "Nunez" 431 "Ballard" 432 "Schwartz" 433 "McBride" 434 "Houston" 435 "Christensen" 436 "Klein" 437 "Pratt" 438 "Briggs" 439 "Parsons" 440 "McLaughlin" 441 "Zimmerman" 442 "French" 443 "Buchanan" 444 "Moran" 445 "Copeland" 446 "Roy" 447 "Pittman" 448 "Brady" 449 "McCormick" 450 "Holloway" 451 "Brock" 452 "Poole" 453 "Frank" 454 "Logan" 455 "Owen" 456 "Bass" 457 "Marsh" 458 "Drake" 459 "Wong" 460 "Jefferson" 461 "Park" 462 "Morton" 463 "Abbott" 464 "Sparks" 465 "Patrick" 466 "Norton" 467 "Huff" 468 "Clayton" 469 "Massey" 470 "Lloyd" 471 "Figueroa" 472 "Carson" 473 "Bowers" 474 "Roberson" 475 "Barton" 476 "Tran" 477 "Lamb" 478 "Harrington" 479 "Casey" 480 "Boone" 481 "Cortez" 482 "Clarke" 483 "Mathis" 484 "Singleton" 485 "Wilkins" 486 "Cain" 487 "Bryan" 488 "Underwood" 489 "Hogan" 490 "McKenzie" 491 "Collier" 492 "Luna" 493 "Phelps" 494 "McGuire" 495 "Allison" 496 "Bridges" 497 "Wilkerson" 498 "Nash" 499 "Summers" 500 "Atkins" 501 "Wilcox" 502 "Pitts" 503 "Conley" 504 "Marquez" 505 "Burnett" 506 "Richard" 507 "Cochran" 508 "Chase" 509 "Davenport" 510 "Hood" 511 "Gates" 512 "Clay" 513 "Ayala" 514 "Sawyer" 515 "Roman" 516 "Vazquez" 517 "Dickerson" 518 "Hodge" 519 "Acosta" 520 "Flynn" 521 "Espinoza" 522 "Nicholson" 523 "Monroe" 524 "Wolf" 525 "Morrow" 526 "Kirk" 527 "Randall" 528 "Anthony" 529 "Whitaker" 530 "Oconnor" 531 "Skinner" 532 "Ware" 533 "Molina" 534 "Kirby" 535 "Huffman" 536 "Bradford" 537 "Charles" 538 "Gilmore" 539 "Dominguez" 540 "Oneal" 541 "Bruce" 542 "Lang" 543 "Combs" 544 "Kramer" 545 "Heath" 546 "Hancock" 547 "Gallagher" 548 "Gaines" 549 "Shaffer" 550 "Short" 551 "Wiggins" 552 "Mathews" 553 "McClain" 554 "Fischer" 555 "Wall" 556 "Small" 557 "Melton" 558 "Hensley" 559 "Bond" 560 "Dyer" 561 "Cameron" 562 "Grimes" 563 "Contreras" 564 "Christian" 565 "Wyatt" 566 "Baxter" 567 "Snow" 568 "Mosley" 569 "Shepherd" 570 "Larsen" 571 "Hoover" 572 "Beasley" 573 "Glenn" 574 "Petersen" 575 "Whitehead" 576 "Meyers" 577 "Keith" 578 "Garrison" 579 "Vincent" 580 "Shields" 581 "Horn" 582 "Savage" 583 "Olsen" 584 "Schroeder" 585 "Hartman" 586 "Woodard" 587 "Mueller" 588 "Kemp" 589 "Deleon" 590 "Booth" 591 "Patel" 592 "Calhoun" 593 "Wiley" 594 "Eaton" 595 "Cline" 596 "Navarro" 597 "Harrell" 598 "Lester" 599 "Humphrey" 600 "Parrish" 601 "Duran" 602 "Hutchinson" 603 "Hess" 604 "Dorsey" 605 "Bullock" 606 "Robles" 607 "Beard" 608 "Dalton" 609 "Avila" 610 "Vance" 611 "Rich" 612 "Blackwell" 613 "York" 614 "Johns" 615 "Blankenship" 616 "Trevino" 617 "Salinas" 618 "Campos" 619 "Pruitt" 620 "Moses" 621 "Callahan" 622 "Golden" 623 "Montoya" 624 "Hardin" 625 "Guerra" 626 "McDowell" 627 "Carey" 628 "Stafford" 629 "Gallegos" 630 "Henson" 631 "Wilkinson" 632 "Booker" 633 "Merritt" 634 "Miranda" 635 "Atkinson" 636 "Orr" 637 "Decker" 638 "Hobbs" 639 "Preston" 640 "Tanner" 641 "Knox" 642 "Pacheco" 643 "Stephenson" 644 "Glass" 645 "Rojas" 646 "Serrano" 647 "Marks" 648 "Hickman" 649 "English" 650 "Sweeney" 651 "Strong" 652 "Prince" 653 "McClure" 654 "Conway" 655 "Walter" 656 "Roth" 657 "Maynard" 658 "Farrell" 659 "Lowery" 660 "Hurst" 661 "Nixon" 662 "Weiss" 663 "Trujillo" 664 "Ellison" 665 "Sloan" 666 "Juarez" 667 "Winters" 668 "McLean" 669 "Randolph" 670 "Leon" 671 "Boyer" 672 "Villarreal" 673 "McCall" 674 "Gentry" 675 "Carrillo" 676 "Kent" 677 "Ayers" 678 "Lara" 679 "Shannon" 680 "Sexton" 681 "Pace" 682 "Hull" 683 "Leblanc" 684 "Browning" 685 "Velasquez" 686 "Leach" 687 "Chang" 688 "House" 689 "Sellers" 690 "Herring" 691 "Noble" 692 "Foley" 693 "Bartlett" 694 "Mercado" 695 "Landry" 696 "Durham" 697 "Walls" 698 "Barr" 699 "McKee" 700 "Bauer" 701 "Rivers" 702 "Everett" 703 "Bradshaw" 704 "Pugh" 705 "Velez" 706 "Rush" 707 "Estes" 708 "Dodson" 709 "Morse" 710 "Sheppard" 711 "Weeks" 712 "Camacho" 713 "Bean" 714 "Barron" 715 "Livingston" 716 "Middleton" 717 "Spears" 718 "Branch" 719 "Blevins" 720 "Chen" 721 "Kerr" 722 "McConnell" 723 "Hatfield" 724 "Harding" 725 "Ashley" 726 "Solis" 727 "Herman" 728 "Frost" 729 "Giles" 730 "Blackburn" 731 "William" 732 "Pennington" 733 "Woodward" 734 "Finley" 735 "McIntosh" 736 "Koch" 737 "Best" 738 "Solomon" 739 "McCullough" 740 "Dudley" 741 "Nolan" 742 "Blanchard" 743 "Rivas" 744 "Brennan" 745 "Mejia" 746 "Kane" 747 "Benton" 748 "Joyce" 749 "Buckley" 750 "Haley" 751 "Valentine" 752 "Maddox" 753 "Russo" 754 "McKnight" 755 "Buck" 756 "Moon" 757 "McMillan" 758 "Crosby" 759 "Berg" 760 "Dotson" 761 "Mays" 762 "Roach" 763 "Church" 764 "Chan" 765 "Richmond" 766 "Meadows" 767 "Faulkner" 768 "Oneill" 769 "Knapp" 770 "Kline" 771 "Barry" 772 "Ochoa" 773 "Jacobson" 774 "Gay" 775 "Avery" 776 "Hendricks" 777 "Horne" 778 "Shepard" 779 "Hebert" 780 "Cherry" 781 "Cardenas" 782 "McIntyre" 783 "Whitney" 784 "Waller" 785 "Holman" 786 "Donaldson" 787 "Cantu" 788 "Terrell" 789 "Morin" 790 "Gillespie" 791 "Fuentes" 792 "Tillman" 793 "Sanford" 794 "Bentley" 795 "Peck" 796 "Key" 797 "Salas" 798 "Rollins" 799 "Gamble" 800 "Dickson" 801 "Battle" 802 "Santana" 803 "Cabrera" 804 "Cervantes" 805 "Howe" 806 "Hinton" 807 "Hurley" 808 "Spence" 809 "Zamora" 810 "Yang" 811 "McNeil" 812 "Suarez" 813 "Case" 814 "Petty" 815 "Gould" 816 "McFarland" 817 "Sampson" 818 "Carver" 819 "Bray" 820 "Rosario" 821 "Macdonald" 822 "Stout" 823 "Hester" 824 "Melendez" 825 "Dillon" 826 "Farley" 827 "Hopper" 828 "Galloway" 829 "Potts" 830 "Bernard" 831 "Joyner" 832 "Stein" 833 "Aguirre" 834 "Osborn" 835 "Mercer" 836 "Bender" 837 "Franco" 838 "Rowland" 839 "Sykes" 840 "Benjamin" 841 "Travis" 842 "Pickett" 843 "Crane" 844 "Sears" 845 "Mayo" 846 "Dunlap" 847 "Hayden" 848 "Wilder" 849 "McKay" 850 "Coffey" 851 "McCarty" 852 "Ewing" 853 "Cooley" 854 "Vaughan" 855 "Bonner" 856 "Cotton" 857 "Holder" 858 "Stark" 859 "Ferrell" 860 "Cantrell" 861 "Fulton" 862 "Lynn" 863 "Lott" 864 "Calderon" 865 "Rosa" 866 "Pollard" 867 "Hooper" 868 "Burch" 869 "Mullen" 870 "Fry" 871 "Riddle" 872 "Levy" 873 "David" 874 "Duke" 875 "Odonnell" 876 "Guy" 877 "Michael" 878 "Britt" 879 "Frederick" 880 "Daugherty" 881 "Berger" 882 "Dillard" 883 "Alston" 884 "Jarvis" 885 "Frye" 886 "Riggs" 887 "Chaney" 888 "Odom" 889 "Duffy" 890 "Fitzpatrick" 891 "Valenzuela" 892 "Merrill" 893 "Mayer" 894 "Alford" 895 "McPherson" 896 "Acevedo" 897 "Donovan" 898 "Barrera" 899 "Albert" 900 "Cote" 901 "Reilly" 902 "Compton" 903 "Raymond" 904 "Mooney" 905 "McGowan" 906 "Craft" 907 "Cleveland" 908 "Clemons" 909 "Wynn" 910 "Nielsen" 911 "Baird" 912 "Stanton" 913 "Snider" 914 "Rosales" 915 "Bright" 916 "Witt" 917 "Stuart" 918 "Hays" 919 "Holden" 920 "Rutledge" 921 "Kinney" 922 "Clements" 923 "Castaneda" 924 "Slater" 925 "Hahn" 926 "Emerson" 927 "Conrad" 928 "Burks" 929 "Delaney" 930 "Pate" 931 "Lancaster" 932 "Sweet" 933 "Justice" 934 "Tyson" 935 "Sharpe" 936 "Whitfield" 937 "Talley" 938 "Macias" 939 "Irwin" 940 "Burris" 941 "Ratliff" 942 "McCray" 943 "Madden" 944 "Kaufman" 945 "Beach" 946 "Goff" 947 "Cash" 948 "Bolton" 949 "McFadden" 950 "Levine" 951 "Good" 952 "Byers" 953 "Kirkland" 954 "Kidd" 955 "Workman" 956 "Carney" 957 "Dale" 958 "McLeod" 959 "Holcomb" 960 "England" 961 "Finch" 962 "Head" 963 "Burt" 964 "Hendrix" 965 "Sosa" 966 "Haney" 967 "Franks" 968 "Sargent" 969 "Nieves" 970 "Downs" 971 "Rasmussen" 972 "Bird" 973 "Hewitt" 974 "Lindsay" 975 "Lei" 976 "Foreman" 977 "Valencia" 978 "Oneil" 979 "Delacruz" 980 "Vinson" 981 "Dejesus" 982 "Hyde" 983 "Forbes" 984 "Gilliam" 985 "Guthrie" 986 "Wooten" 987 "Huber" 988 "Barlow" 989 "Boyle" 990 "McMahon" 991 "Buckner" 992 "Rocha" 993 "Puckett" 994 "Langley" 995 "Knowles" 996 "Cooke" 997 "Velazquez" 998 "Whitley" 999 "Noel" 1000 "Vang"