From c0ab4008f6d6d7e7a31fcc9e39868035d4bb09be Mon Sep 17 00:00:00 2001 From: bjculkin Date: Wed, 22 Mar 2017 15:50:52 -0400 Subject: Change long rules to grammars --- RGens/data/sample-grammars/long-data/animal.gram | 15 + RGens/data/sample-grammars/long-data/animal.long | 15 - .../sample-grammars/long-data/binary-digit.gram | 2 + .../sample-grammars/long-data/binary-digit.long | 2 - .../sample-grammars/long-data/canada-province.gram | 14 + .../sample-grammars/long-data/canada-province.long | 14 - .../data/sample-grammars/long-data/character.gram | 38 + .../data/sample-grammars/long-data/character.long | 38 - RGens/data/sample-grammars/long-data/color.gram | 10 + RGens/data/sample-grammars/long-data/color.long | 10 - .../sample-grammars/long-data/consonant-group.gram | 42 + .../sample-grammars/long-data/consonant-group.long | 42 - .../data/sample-grammars/long-data/consonant.gram | 21 + .../data/sample-grammars/long-data/consonant.long | 21 - .../sample-grammars/long-data/digit-noone.gram | 9 + .../sample-grammars/long-data/digit-noone.long | 9 - .../sample-grammars/long-data/digit-nozero.gram | 9 + .../sample-grammars/long-data/digit-nozero.long | 9 - RGens/data/sample-grammars/long-data/digit.gram | 10 + RGens/data/sample-grammars/long-data/digit.long | 10 - .../long-data/first-name-female.gram | 532 +++ .../long-data/first-name-female.long | 532 --- .../sample-grammars/long-data/first-name-male.gram | 624 ++++ .../sample-grammars/long-data/first-name-male.long | 624 ---- .../data/sample-grammars/long-data/hex-digit.gram | 16 + .../data/sample-grammars/long-data/hex-digit.long | 16 - .../data/sample-grammars/long-data/last-name.gram | 3377 ++++++++++++++++++++ .../data/sample-grammars/long-data/last-name.long | 3377 -------------------- .../sample-grammars/long-data/last-syllable.gram | 9 + .../sample-grammars/long-data/last-syllable.long | 9 - RGens/data/sample-grammars/long-data/letter.gram | 26 + RGens/data/sample-grammars/long-data/letter.long | 26 - .../sample-grammars/long-data/middle-initial.gram | 18 + .../sample-grammars/long-data/middle-initial.long | 18 - RGens/data/sample-grammars/long-data/nation.gram | 218 ++ RGens/data/sample-grammars/long-data/nation.long | 218 -- .../sample-grammars/long-data/natural-color.gram | 6 + .../sample-grammars/long-data/natural-color.long | 6 - .../sample-grammars/long-data/number-word.gram | 10 + .../sample-grammars/long-data/number-word.long | 10 - RGens/data/sample-grammars/long-data/ordinal.gram | 12 + RGens/data/sample-grammars/long-data/ordinal.long | 12 - RGens/data/sample-grammars/long-data/planet.gram | 8 + RGens/data/sample-grammars/long-data/planet.long | 8 - .../data/sample-grammars/long-data/real-city.gram | 76 + .../data/sample-grammars/long-data/real-city.long | 76 - .../sample-grammars/long-data/real-company.gram | 207 ++ .../sample-grammars/long-data/real-company.long | 207 -- RGens/data/sample-grammars/long-data/relative.gram | 10 + RGens/data/sample-grammars/long-data/relative.long | 10 - .../sample-grammars/long-data/roman-numeral.gram | 10 + .../sample-grammars/long-data/roman-numeral.long | 10 - RGens/data/sample-grammars/long-data/syllable.gram | 530 +++ RGens/data/sample-grammars/long-data/syllable.long | 530 --- .../data/sample-grammars/long-data/town-name.gram | 141 + .../data/sample-grammars/long-data/town-name.long | 141 - RGens/data/sample-grammars/long-data/tree.gram | 17 + RGens/data/sample-grammars/long-data/tree.long | 17 - .../sample-grammars/long-data/vowel-group.gram | 18 + .../sample-grammars/long-data/vowel-group.long | 18 - RGens/data/sample-grammars/long-data/vowel.gram | 5 + RGens/data/sample-grammars/long-data/vowel.long | 5 - 62 files changed, 6040 insertions(+), 6040 deletions(-) create mode 100644 RGens/data/sample-grammars/long-data/animal.gram delete mode 100644 RGens/data/sample-grammars/long-data/animal.long create mode 100644 RGens/data/sample-grammars/long-data/binary-digit.gram delete mode 100644 RGens/data/sample-grammars/long-data/binary-digit.long create mode 100644 RGens/data/sample-grammars/long-data/canada-province.gram delete mode 100644 RGens/data/sample-grammars/long-data/canada-province.long create mode 100644 RGens/data/sample-grammars/long-data/character.gram delete mode 100644 RGens/data/sample-grammars/long-data/character.long create mode 100644 RGens/data/sample-grammars/long-data/color.gram delete mode 100644 RGens/data/sample-grammars/long-data/color.long create mode 100644 RGens/data/sample-grammars/long-data/consonant-group.gram delete mode 100644 RGens/data/sample-grammars/long-data/consonant-group.long create mode 100644 RGens/data/sample-grammars/long-data/consonant.gram delete mode 100644 RGens/data/sample-grammars/long-data/consonant.long create mode 100644 RGens/data/sample-grammars/long-data/digit-noone.gram delete mode 100644 RGens/data/sample-grammars/long-data/digit-noone.long create mode 100644 RGens/data/sample-grammars/long-data/digit-nozero.gram delete mode 100644 RGens/data/sample-grammars/long-data/digit-nozero.long create mode 100644 RGens/data/sample-grammars/long-data/digit.gram delete mode 100644 RGens/data/sample-grammars/long-data/digit.long create mode 100644 RGens/data/sample-grammars/long-data/first-name-female.gram delete mode 100644 RGens/data/sample-grammars/long-data/first-name-female.long create mode 100644 RGens/data/sample-grammars/long-data/first-name-male.gram delete mode 100644 RGens/data/sample-grammars/long-data/first-name-male.long create mode 100644 RGens/data/sample-grammars/long-data/hex-digit.gram delete mode 100644 RGens/data/sample-grammars/long-data/hex-digit.long create mode 100644 RGens/data/sample-grammars/long-data/last-name.gram delete mode 100644 RGens/data/sample-grammars/long-data/last-name.long create mode 100644 RGens/data/sample-grammars/long-data/last-syllable.gram delete mode 100644 RGens/data/sample-grammars/long-data/last-syllable.long create mode 100644 RGens/data/sample-grammars/long-data/letter.gram delete mode 100644 RGens/data/sample-grammars/long-data/letter.long create mode 100644 RGens/data/sample-grammars/long-data/middle-initial.gram delete mode 100644 RGens/data/sample-grammars/long-data/middle-initial.long create mode 100644 RGens/data/sample-grammars/long-data/nation.gram delete mode 100644 RGens/data/sample-grammars/long-data/nation.long create mode 100644 RGens/data/sample-grammars/long-data/natural-color.gram delete mode 100644 RGens/data/sample-grammars/long-data/natural-color.long create mode 100644 RGens/data/sample-grammars/long-data/number-word.gram delete mode 100644 RGens/data/sample-grammars/long-data/number-word.long create mode 100644 RGens/data/sample-grammars/long-data/ordinal.gram delete mode 100644 RGens/data/sample-grammars/long-data/ordinal.long create mode 100644 RGens/data/sample-grammars/long-data/planet.gram delete mode 100644 RGens/data/sample-grammars/long-data/planet.long create mode 100644 RGens/data/sample-grammars/long-data/real-city.gram delete mode 100644 RGens/data/sample-grammars/long-data/real-city.long create mode 100644 RGens/data/sample-grammars/long-data/real-company.gram delete mode 100644 RGens/data/sample-grammars/long-data/real-company.long create mode 100644 RGens/data/sample-grammars/long-data/relative.gram delete mode 100644 RGens/data/sample-grammars/long-data/relative.long create mode 100644 RGens/data/sample-grammars/long-data/roman-numeral.gram delete mode 100644 RGens/data/sample-grammars/long-data/roman-numeral.long create mode 100644 RGens/data/sample-grammars/long-data/syllable.gram delete mode 100644 RGens/data/sample-grammars/long-data/syllable.long create mode 100644 RGens/data/sample-grammars/long-data/town-name.gram delete mode 100644 RGens/data/sample-grammars/long-data/town-name.long create mode 100644 RGens/data/sample-grammars/long-data/tree.gram delete mode 100644 RGens/data/sample-grammars/long-data/tree.long create mode 100644 RGens/data/sample-grammars/long-data/vowel-group.gram delete mode 100644 RGens/data/sample-grammars/long-data/vowel-group.long create mode 100644 RGens/data/sample-grammars/long-data/vowel.gram delete mode 100644 RGens/data/sample-grammars/long-data/vowel.long diff --git a/RGens/data/sample-grammars/long-data/animal.gram b/RGens/data/sample-grammars/long-data/animal.gram new file mode 100644 index 0000000..b180551 --- /dev/null +++ b/RGens/data/sample-grammars/long-data/animal.gram @@ -0,0 +1,15 @@ +dog +cat +horse +cow +chicken +penguin +turkey +eagle +llama +camel +deer +bear +elk +giraffe +elephant diff --git a/RGens/data/sample-grammars/long-data/animal.long b/RGens/data/sample-grammars/long-data/animal.long deleted file mode 100644 index b180551..0000000 --- a/RGens/data/sample-grammars/long-data/animal.long +++ /dev/null @@ -1,15 +0,0 @@ -dog -cat -horse -cow -chicken -penguin -turkey -eagle -llama -camel -deer -bear -elk -giraffe -elephant diff --git a/RGens/data/sample-grammars/long-data/binary-digit.gram b/RGens/data/sample-grammars/long-data/binary-digit.gram new file mode 100644 index 0000000..0d66ea1 --- /dev/null +++ b/RGens/data/sample-grammars/long-data/binary-digit.gram @@ -0,0 +1,2 @@ +0 +1 diff --git a/RGens/data/sample-grammars/long-data/binary-digit.long b/RGens/data/sample-grammars/long-data/binary-digit.long deleted file mode 100644 index 0d66ea1..0000000 --- a/RGens/data/sample-grammars/long-data/binary-digit.long +++ /dev/null @@ -1,2 +0,0 @@ -0 -1 diff --git a/RGens/data/sample-grammars/long-data/canada-province.gram b/RGens/data/sample-grammars/long-data/canada-province.gram new file mode 100644 index 0000000..2ebadee --- /dev/null +++ b/RGens/data/sample-grammars/long-data/canada-province.gram @@ -0,0 +1,14 @@ +alberta +british columbia +manitoba +new brunswick +newfoundland +labrador +northwest territories +nova scotia +nunavut +ontario +prince edward island +quebec +saskatchewan +yukon diff --git a/RGens/data/sample-grammars/long-data/canada-province.long b/RGens/data/sample-grammars/long-data/canada-province.long deleted file mode 100644 index 2ebadee..0000000 --- a/RGens/data/sample-grammars/long-data/canada-province.long +++ /dev/null @@ -1,14 +0,0 @@ -alberta -british columbia -manitoba -new brunswick -newfoundland -labrador -northwest territories -nova scotia -nunavut -ontario -prince edward island -quebec -saskatchewan -yukon diff --git a/RGens/data/sample-grammars/long-data/character.gram b/RGens/data/sample-grammars/long-data/character.gram new file mode 100644 index 0000000..64a265a --- /dev/null +++ b/RGens/data/sample-grammars/long-data/character.gram @@ -0,0 +1,38 @@ +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +- +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 +. diff --git a/RGens/data/sample-grammars/long-data/character.long b/RGens/data/sample-grammars/long-data/character.long deleted file mode 100644 index 64a265a..0000000 --- a/RGens/data/sample-grammars/long-data/character.long +++ /dev/null @@ -1,38 +0,0 @@ -0 -1 -2 -3 -4 -5 -6 -7 -8 -9 -- -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 -. diff --git a/RGens/data/sample-grammars/long-data/color.gram b/RGens/data/sample-grammars/long-data/color.gram new file mode 100644 index 0000000..dd60cb6 --- /dev/null +++ b/RGens/data/sample-grammars/long-data/color.gram @@ -0,0 +1,10 @@ +red +orange +yellow +green +blue +purple +white +black +brown +grey diff --git a/RGens/data/sample-grammars/long-data/color.long b/RGens/data/sample-grammars/long-data/color.long deleted file mode 100644 index dd60cb6..0000000 --- a/RGens/data/sample-grammars/long-data/color.long +++ /dev/null @@ -1,10 +0,0 @@ -red -orange -yellow -green -blue -purple -white -black -brown -grey diff --git a/RGens/data/sample-grammars/long-data/consonant-group.gram b/RGens/data/sample-grammars/long-data/consonant-group.gram new file mode 100644 index 0000000..d709b9a --- /dev/null +++ b/RGens/data/sample-grammars/long-data/consonant-group.gram @@ -0,0 +1,42 @@ +b +br +c +cl +ch +cr +d +dr +f +fl +fr +g +gl +gr +h +l +m +n +p +pl +ph +pr +s +st +sl +str +sm +sw +sp +sh +sc +sch +sn +t +th +tr +v +w +wr +x +y +z diff --git a/RGens/data/sample-grammars/long-data/consonant-group.long b/RGens/data/sample-grammars/long-data/consonant-group.long deleted file mode 100644 index d709b9a..0000000 --- a/RGens/data/sample-grammars/long-data/consonant-group.long +++ /dev/null @@ -1,42 +0,0 @@ -b -br -c -cl -ch -cr -d -dr -f -fl -fr -g -gl -gr -h -l -m -n -p -pl -ph -pr -s -st -sl -str -sm -sw -sp -sh -sc -sch -sn -t -th -tr -v -w -wr -x -y -z diff --git a/RGens/data/sample-grammars/long-data/consonant.gram b/RGens/data/sample-grammars/long-data/consonant.gram new file mode 100644 index 0000000..17cf67e --- /dev/null +++ b/RGens/data/sample-grammars/long-data/consonant.gram @@ -0,0 +1,21 @@ +b +c +d +f +g +h +j +k +l +m +n +p +q +r +s +t +v +w +x +y +z diff --git a/RGens/data/sample-grammars/long-data/consonant.long b/RGens/data/sample-grammars/long-data/consonant.long deleted file mode 100644 index 17cf67e..0000000 --- a/RGens/data/sample-grammars/long-data/consonant.long +++ /dev/null @@ -1,21 +0,0 @@ -b -c -d -f -g -h -j -k -l -m -n -p -q -r -s -t -v -w -x -y -z diff --git a/RGens/data/sample-grammars/long-data/digit-noone.gram b/RGens/data/sample-grammars/long-data/digit-noone.gram new file mode 100644 index 0000000..0ab1783 --- /dev/null +++ b/RGens/data/sample-grammars/long-data/digit-noone.gram @@ -0,0 +1,9 @@ +0 +2 +3 +4 +5 +6 +7 +8 +9 diff --git a/RGens/data/sample-grammars/long-data/digit-noone.long b/RGens/data/sample-grammars/long-data/digit-noone.long deleted file mode 100644 index 0ab1783..0000000 --- a/RGens/data/sample-grammars/long-data/digit-noone.long +++ /dev/null @@ -1,9 +0,0 @@ -0 -2 -3 -4 -5 -6 -7 -8 -9 diff --git a/RGens/data/sample-grammars/long-data/digit-nozero.gram b/RGens/data/sample-grammars/long-data/digit-nozero.gram new file mode 100644 index 0000000..0719398 --- /dev/null +++ b/RGens/data/sample-grammars/long-data/digit-nozero.gram @@ -0,0 +1,9 @@ +1 +2 +3 +4 +5 +6 +7 +8 +9 diff --git a/RGens/data/sample-grammars/long-data/digit-nozero.long b/RGens/data/sample-grammars/long-data/digit-nozero.long deleted file mode 100644 index 0719398..0000000 --- a/RGens/data/sample-grammars/long-data/digit-nozero.long +++ /dev/null @@ -1,9 +0,0 @@ -1 -2 -3 -4 -5 -6 -7 -8 -9 diff --git a/RGens/data/sample-grammars/long-data/digit.gram b/RGens/data/sample-grammars/long-data/digit.gram new file mode 100644 index 0000000..8b1acc1 --- /dev/null +++ b/RGens/data/sample-grammars/long-data/digit.gram @@ -0,0 +1,10 @@ +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 diff --git a/RGens/data/sample-grammars/long-data/digit.long b/RGens/data/sample-grammars/long-data/digit.long deleted file mode 100644 index 8b1acc1..0000000 --- a/RGens/data/sample-grammars/long-data/digit.long +++ /dev/null @@ -1,10 +0,0 @@ -0 -1 -2 -3 -4 -5 -6 -7 -8 -9 diff --git a/RGens/data/sample-grammars/long-data/first-name-female.gram b/RGens/data/sample-grammars/long-data/first-name-female.gram new file mode 100644 index 0000000..69a5d9a --- /dev/null +++ b/RGens/data/sample-grammars/long-data/first-name-female.gram @@ -0,0 +1,532 @@ +abigail +ada +adrienne +agnes +alberta +alexandra +alexis +alice +alicia +alison +allison +alma +alyssa +amanda +amber +amelia +amy +ana +andre +andrea +angel +angela +angelica +angelina +angie +anita +ann +anna +anne +annette +annie +antoinette +antonia +april +ariane +ariel +arlene +ashley +audrey +barbara +beatrice +becky +belinda +bernadette +bernice +bertha +bessie +beth +bethany +betsy +betty +beulah +beverly +billie +blanca +blanche +bobbie +bonnie +brandi +brandy +brenda +brianna +bridget +brittany +brooke +caitlin +camille +candace +candice +carla +carmen +carol +carole +caroline +carolyn +carrie +casey +cassandra +catherine +cathy +cecelia +cecilia +celia +charlene +charlotte +chelsea +cheryl +chloe +christian +christie +christina +christine +christy +cindy +claire +clara +claudia +colleen +connie +constance +cora +courtney +cristina +crystal +cynthia +daisy +dana +danielle +darla +darlene +dawn +deanna +debbie +deborah +debra +delia +della +delores +denise +desiree +diana +diane +dianna +dianne +dion +dixie +dolores +dominique +donna +dora +doreen +doris +dorothy +ebony +edith +edna +eileen +elaine +eleanor +elena +elisa +elizabeth +ella +ellen +eloise +elsa +elsie +elvira +emily +emma +erica +erika +erin +erma +ernestine +essie +estelle +esther +ethel +eula +eunice +eva +evelyn +faith +fannie +faye +felicia +felicity +flora +florence +frances +francis +freda +gabriel +gabrielle +gail +gayle +geneva +genevieve +georgia +geraldine +gertrude +gina +ginger +gladys +glenda +gloria +grace +gretchen +guadalupe +gwen +gwendolyn +haley +hannah +harriet +hattie +hazel +heather +heidi +helen +henrietta +hilda +hillary +holly +hope +ida +inez +irene +iris +irma +isabel +isabella +jackie +jacqueline +jacquelyn +jade +jaime +jamie +jan +jana +jane +janet +janice +janie +janis +jasmine +jean +jeanette +jeanne +jeannette +jeannie +jenna +jennie +jennifer +jenny +jessica +jessie +jill +jo +joan +joann +joanna +joanne +jodi +jody +johanna +johnnie +josefina +josephine +joy +joyce +juana +juanita +judith +judy +julia +julie +june +kaitlyn +kara +karen +kari +karla +kate +katelyn +katherine +kathleen +kathryn +kathy +katie +katrina +kay +kayla +kelley +kelli +kellie +kelly +kelsey +kendra +kerry +kim +kimberly +krista +kristen +kristi +kristie +kristin +kristina +kristine +kristy +krystal +lana +latoya +laura +lauren +laurie +laverne +leah +lee +leigh +lela +lena +leona +leslie +leticia +lila +lillian +lillie +linda +lindsay +lindsey +lisa +lois +lola +lora +lorena +lorene +loretta +lori +lorraine +louise +lucia +lucille +lucy +lula +luz +lydia +lynda +lynette +lynn +lynne +mabel +mable +mackenzie +madeline +madison +mae +magdalena +maggie +mamie +mandy +marcella +marcia +margaret +margarita +marge +margie +marguerite +maria +mariah +marian +marianne +marie +marilyn +marion +marjorie +marlene +marsha +marta +martha +mary +maryann +mattie +maureen +maxine +may +megan +meghan +melanie +melba +melinda +melissa +melody +mercedes +meredith +michele +michelle +mildred +mindy +minnie +miranda +miriam +misty +molly +mona +monica +monique +morgan +muriel +myra +myrtle +nadine +nancy +naomi +natalie +natasha +nellie +nettie +nichole +nicole +nina +nora +norma +olga +olive +olivia +ollie +opal +ora +paige +pam +pamela +pat +patricia +patsy +patti +patty +paula +paulette +pauline +pearl +peggy +penny +phyllis +priscilla +rachael +rachel +ramona +raquel +raven +rebecca +regina +renee +rhonda +rita +roberta +robin +robyn +rochelle +rosa +rosalie +rose +rosemarie +rosemary +rosie +roxanne +ruby +ruth +sabrina +sadie +sally +samantha +sandra +sandy +sara +sarah +shannon +shari +sharon +shawna +sheila +shelia +shelley +shelly +sheri +sherri +sherry +sheryl +shirley +silvia +sonia +sonja +sonya +sophia +sophie +stacey +stacy +stella +stephanie +sue +susan +susie +suzanne +sydney +sylvia +tabitha +tamara +tami +tammy +tanya +tara +tasha +taylor +teresa +teri +terri +terry +thelma +theresa +tiffany +tina +toni +tonya +tracey +traci +tracy +tricia +valerie +vanessa +velma +vera +verna +veronica +vicki +vickie +vicky +victoria +viola +violet +virginia +vivian +wanda +wendy +whitney +willie +wilma +winifred +yasmine +yolanda +yvette +yvonne +zoe diff --git a/RGens/data/sample-grammars/long-data/first-name-female.long b/RGens/data/sample-grammars/long-data/first-name-female.long deleted file mode 100644 index 69a5d9a..0000000 --- a/RGens/data/sample-grammars/long-data/first-name-female.long +++ /dev/null @@ -1,532 +0,0 @@ -abigail -ada -adrienne -agnes -alberta -alexandra -alexis -alice -alicia -alison -allison -alma -alyssa -amanda -amber -amelia -amy -ana -andre -andrea -angel -angela -angelica -angelina -angie -anita -ann -anna -anne -annette -annie -antoinette -antonia -april -ariane -ariel -arlene -ashley -audrey -barbara -beatrice -becky -belinda -bernadette -bernice -bertha -bessie -beth -bethany -betsy -betty -beulah -beverly -billie -blanca -blanche -bobbie -bonnie -brandi -brandy -brenda -brianna -bridget -brittany -brooke -caitlin -camille -candace -candice -carla -carmen -carol -carole -caroline -carolyn -carrie -casey -cassandra -catherine -cathy -cecelia -cecilia -celia -charlene -charlotte -chelsea -cheryl -chloe -christian -christie -christina -christine -christy -cindy -claire -clara -claudia -colleen -connie -constance -cora -courtney -cristina -crystal -cynthia -daisy -dana -danielle -darla -darlene -dawn -deanna -debbie -deborah -debra -delia -della -delores -denise -desiree -diana -diane -dianna -dianne -dion -dixie -dolores -dominique -donna -dora -doreen -doris -dorothy -ebony -edith -edna -eileen -elaine -eleanor -elena -elisa -elizabeth -ella -ellen -eloise -elsa -elsie -elvira -emily -emma -erica -erika -erin -erma -ernestine -essie -estelle -esther -ethel -eula -eunice -eva -evelyn -faith -fannie -faye -felicia -felicity -flora -florence -frances -francis -freda -gabriel -gabrielle -gail -gayle -geneva -genevieve -georgia -geraldine -gertrude -gina -ginger -gladys -glenda -gloria -grace -gretchen -guadalupe -gwen -gwendolyn -haley -hannah -harriet -hattie -hazel -heather -heidi -helen -henrietta -hilda -hillary -holly -hope -ida -inez -irene -iris -irma -isabel -isabella -jackie -jacqueline -jacquelyn -jade -jaime -jamie -jan -jana -jane -janet -janice -janie -janis -jasmine -jean -jeanette -jeanne -jeannette -jeannie -jenna -jennie -jennifer -jenny -jessica -jessie -jill -jo -joan -joann -joanna -joanne -jodi -jody -johanna -johnnie -josefina -josephine -joy -joyce -juana -juanita -judith -judy -julia -julie -june -kaitlyn -kara -karen -kari -karla -kate -katelyn -katherine -kathleen -kathryn -kathy -katie -katrina -kay -kayla -kelley -kelli -kellie -kelly -kelsey -kendra -kerry -kim -kimberly -krista -kristen -kristi -kristie -kristin -kristina -kristine -kristy -krystal -lana -latoya -laura -lauren -laurie -laverne -leah -lee -leigh -lela -lena -leona -leslie -leticia -lila -lillian -lillie -linda -lindsay -lindsey -lisa -lois -lola -lora -lorena -lorene -loretta -lori -lorraine -louise -lucia -lucille -lucy -lula -luz -lydia -lynda -lynette -lynn -lynne -mabel -mable -mackenzie -madeline -madison -mae -magdalena -maggie -mamie -mandy -marcella -marcia -margaret -margarita -marge -margie -marguerite -maria -mariah -marian -marianne -marie -marilyn -marion -marjorie -marlene -marsha -marta -martha -mary -maryann -mattie -maureen -maxine -may -megan -meghan -melanie -melba -melinda -melissa -melody -mercedes -meredith -michele -michelle -mildred -mindy -minnie -miranda -miriam -misty -molly -mona -monica -monique -morgan -muriel -myra -myrtle -nadine -nancy -naomi -natalie -natasha -nellie -nettie -nichole -nicole -nina -nora -norma -olga -olive -olivia -ollie -opal -ora -paige -pam -pamela -pat -patricia -patsy -patti -patty -paula -paulette -pauline -pearl -peggy -penny -phyllis -priscilla -rachael -rachel -ramona -raquel -raven -rebecca -regina -renee -rhonda -rita -roberta -robin -robyn -rochelle -rosa -rosalie -rose -rosemarie -rosemary -rosie -roxanne -ruby -ruth -sabrina -sadie -sally -samantha -sandra -sandy -sara -sarah -shannon -shari -sharon -shawna -sheila -shelia -shelley -shelly -sheri -sherri -sherry -sheryl -shirley -silvia -sonia -sonja -sonya -sophia -sophie -stacey -stacy -stella -stephanie -sue -susan -susie -suzanne -sydney -sylvia -tabitha -tamara -tami -tammy -tanya -tara -tasha -taylor -teresa -teri -terri -terry -thelma -theresa -tiffany -tina -toni -tonya -tracey -traci -tracy -tricia -valerie -vanessa -velma -vera -verna -veronica -vicki -vickie -vicky -victoria -viola -violet -virginia -vivian -wanda -wendy -whitney -willie -wilma -winifred -yasmine -yolanda -yvette -yvonne -zoe diff --git a/RGens/data/sample-grammars/long-data/first-name-male.gram b/RGens/data/sample-grammars/long-data/first-name-male.gram new file mode 100644 index 0000000..1e7d7e9 --- /dev/null +++ b/RGens/data/sample-grammars/long-data/first-name-male.gram @@ -0,0 +1,624 @@ +aaron +abel +abraham +adam +adolph +adrian +al +alan +albert +alberto +alejandro +alex +alexander +alfonso +alfred +alfredo +allan +allen +alonzo +alton +alvin +amos +andre +andreas +andres +andrew +andy +angel +angelo +angus +anthony +antoine +anton +antonio +archie +armando +arnold +art +arthur +arturo +aubrey +aubrie +austin +barry +bart +bayard +ben +benjamin +bennie +benny +benoit +bernard +bernhard +bert +bill +billy +blake +bob +bobby +boris +boyd +brad +bradford +bradley +brandon +brendan +brent +brett +brian +bruce +bruno +bryan +bryant +bryce +byron +caleb +calvin +cameron +carl +carlos +carlton +carroll +cary +casey +cecil +cecilie +cedric +cesar +chad +charles +charlie +chester +chris +christian +christopher +clarence +clark +claude +clay +clayton +cliff +clifford +clifton +clint +clinton +clyde +cody +cole +colin +connor +conrad +corey +cornelius +cory +courtney +craig +crispin +curtis +dale +dallas +damon +dan +dana +daniel +danny +darin +darnell +darrel +darrell +darren +darrin +darryl +daryl +dave +david +dean +delbert +dennis +derek +derrick +deven +devin +dewey +dexter +dick +diego +dieter +dimitri +dimitrius +domingo +dominic +dominick +dominique +don +donald +donnie +doug +douglas +doyle +drazen +drew +duane +dustin +dwayne +dwight +dylan +earl +earnest +ed +eddie +edgar +edmond +edmund +eduardo +edward +edwin +elbert +elias +elijah +ellis +elmer +emanuel +emilio +emmett +enrico +enrique +eric +erick +erik +ernest +ernesto +ervin +ethan +eugene +evan +everett +felipe +felix +fernando +floyd +forrest +fox +francis +francisco +frank +frankie +franklin +franky +fred +freddie +freddy +frederic +frederick +fredrick +fredrik +gabe +gabriel +garrett +garry +garth +gary +gavin +gene +geoff +geoffrey +george +gerald +gerard +gerardo +gilbert +gilberto +glen +glenn +gordon +grady +graham +grant +greg +gregg +gregor +gregory +guadalupe +guillermo +gunnar +gustavo +guy +hans +harold +harry +harvey +hector +henrik +henry +herald +herb +herbert +herman +homer +horace +howard +hubert +hugh +hugo +hunter +iain +ian +ignacio +igor +ira +irvin +irving +isaac +ismael +israel +ivan +jack +jackie +jacob +jacques +jaime +jake +james +jamie +jan +jared +jarret +jason +javier +jay +jean +jeff +jeffery +jeffrey +jerald +jeremiah +jeremy +jermaine +jeroen +jerome +jerry +jesse +jessie +jesus +jim +jimmie +jimmy +jody +joe +joel +joey +johan +john +johnathan +johnnie +johnny +jon +jonathan +jonathon +jordan +jorge +jose +joseph +josh +joshua +juan +julian +julio +julius +justin +karl +karlo +kasper +keith +kelly +kelvin +ken +kenneth +kenny +kent +kerry +kevin +kim +kirk +klaus +kris +kristian +kristopher +kurt +kyle +lamar +lance +larry +lars +lauren +laurence +laurie +lawrence +lee +leland +lenny +leo +leon +leonard +leonardo +leroy +leslie +lester +levi +lewis +lex +liam +lindsay +linus +lionel +lloyd +logan +lonnie +loren +lorenzo +louis +lowell +lucas +luigi +luis +luke +luther +lyle +lynn +mack +magnus +malcolm +manuel +marc +marcelo +marco +marcos +marcus +marek +mario +marion +mark +marlon +marshall +martin +marty +marvin +mathew +matt +matthew +matthias +maurice +max +may +mel +melvin +merle +michael +micheal +miguel +mike +miles +milton +mitch +mitchell +morris +morten +moses +muhammed +myron +nathan +nathaniel +neal +ned +neil +nelson +neville +nic +nicholas +nick +nicola +nicolas +niels +nigel +nils +noah +noel +norbert +norm +norman +oliver +omar +orion +orlando +orville +oscar +otis +owen +pablo +pat +patrick +paul +paulo +pedro +percy +perry +pete +peter +phil +philip +philippe +phillip +pierre +preston +rafael +ralph +ramiro +ramon +randal +randall +randolph +randy +rasmus +raul +ray +raymond +reginald +reinhard +rene +rex +rhys +ricardo +richard +rick +rickey +ricky +rob +robbie +robert +roberto +robin +rod +roderick +rodney +rodolfo +rodrigo +roel +roelof +rogelio +roger +roland +rolando +rolf +roman +ron +ronald +ronnie +roosevelt +rory +ross +roy +ruben +rudolph +rudy +rufus +russ +russell +ryan +salvador +salvatore +sam +sammy +samuel +sander +santiago +santos +saul +scott +sean +sergei +sergio +seth +shane +shannon +shaun +shawn +sheldon +sherman +sid +sidney +simon +skip +slobodan +sonny +spencer +stan +stanley +stefan +stein +stephan +stephano +stephen +steve +steven +stewart +stuart +sulaiman +sunny +susie +sven +sylvester +taylor +ted +terence +terrance +terrell +terrence +terry +thad +theodore +thomas +tim +timmy +timothy +toby +todd +tom +tomas +tommie +tommy +tony +tracy +travis +trevor +trey +tristan +troy +tyler +tyrone +vernon +victor +vince +vincent +virgil +wade +wallace +walter +warren +wayne +wendell +wesley +wilbert +wilbur +wilfred +will +willard +william +willie +willis +wilson +winston +woodrow +xavier +yuri +zachary diff --git a/RGens/data/sample-grammars/long-data/first-name-male.long b/RGens/data/sample-grammars/long-data/first-name-male.long deleted file mode 100644 index 1e7d7e9..0000000 --- a/RGens/data/sample-grammars/long-data/first-name-male.long +++ /dev/null @@ -1,624 +0,0 @@ -aaron -abel -abraham -adam -adolph -adrian -al -alan -albert -alberto -alejandro -alex -alexander -alfonso -alfred -alfredo -allan -allen -alonzo -alton -alvin -amos -andre -andreas -andres -andrew -andy -angel -angelo -angus -anthony -antoine -anton -antonio -archie -armando -arnold -art -arthur -arturo -aubrey -aubrie -austin -barry -bart -bayard -ben -benjamin -bennie -benny -benoit -bernard -bernhard -bert -bill -billy -blake -bob -bobby -boris -boyd -brad -bradford -bradley -brandon -brendan -brent -brett -brian -bruce -bruno -bryan -bryant -bryce -byron -caleb -calvin -cameron -carl -carlos -carlton -carroll -cary -casey -cecil -cecilie -cedric -cesar -chad -charles -charlie -chester -chris -christian -christopher -clarence -clark -claude -clay -clayton -cliff -clifford -clifton -clint -clinton -clyde -cody -cole -colin -connor -conrad -corey -cornelius -cory -courtney -craig -crispin -curtis -dale -dallas -damon -dan -dana -daniel -danny -darin -darnell -darrel -darrell -darren -darrin -darryl -daryl -dave -david -dean -delbert -dennis -derek -derrick -deven -devin -dewey -dexter -dick -diego -dieter -dimitri -dimitrius -domingo -dominic -dominick -dominique -don -donald -donnie -doug -douglas -doyle -drazen -drew -duane -dustin -dwayne -dwight -dylan -earl -earnest -ed -eddie -edgar -edmond -edmund -eduardo -edward -edwin -elbert -elias -elijah -ellis -elmer -emanuel -emilio -emmett -enrico -enrique -eric -erick -erik -ernest -ernesto -ervin -ethan -eugene -evan -everett -felipe -felix -fernando -floyd -forrest -fox -francis -francisco -frank -frankie -franklin -franky -fred -freddie -freddy -frederic -frederick -fredrick -fredrik -gabe -gabriel -garrett -garry -garth -gary -gavin -gene -geoff -geoffrey -george -gerald -gerard -gerardo -gilbert -gilberto -glen -glenn -gordon -grady -graham -grant -greg -gregg -gregor -gregory -guadalupe -guillermo -gunnar -gustavo -guy -hans -harold -harry -harvey -hector -henrik -henry -herald -herb -herbert -herman -homer -horace -howard -hubert -hugh -hugo -hunter -iain -ian -ignacio -igor -ira -irvin -irving -isaac -ismael -israel -ivan -jack -jackie -jacob -jacques -jaime -jake -james -jamie -jan -jared -jarret -jason -javier -jay -jean -jeff -jeffery -jeffrey -jerald -jeremiah -jeremy -jermaine -jeroen -jerome -jerry -jesse -jessie -jesus -jim -jimmie -jimmy -jody -joe -joel -joey -johan -john -johnathan -johnnie -johnny -jon -jonathan -jonathon -jordan -jorge -jose -joseph -josh -joshua -juan -julian -julio -julius -justin -karl -karlo -kasper -keith -kelly -kelvin -ken -kenneth -kenny -kent -kerry -kevin -kim -kirk -klaus -kris -kristian -kristopher -kurt -kyle -lamar -lance -larry -lars -lauren -laurence -laurie -lawrence -lee -leland -lenny -leo -leon -leonard -leonardo -leroy -leslie -lester -levi -lewis -lex -liam -lindsay -linus -lionel -lloyd -logan -lonnie -loren -lorenzo -louis -lowell -lucas -luigi -luis -luke -luther -lyle -lynn -mack -magnus -malcolm -manuel -marc -marcelo -marco -marcos -marcus -marek -mario -marion -mark -marlon -marshall -martin -marty -marvin -mathew -matt -matthew -matthias -maurice -max -may -mel -melvin -merle -michael -micheal -miguel -mike -miles -milton -mitch -mitchell -morris -morten -moses -muhammed -myron -nathan -nathaniel -neal -ned -neil -nelson -neville -nic -nicholas -nick -nicola -nicolas -niels -nigel -nils -noah -noel -norbert -norm -norman -oliver -omar -orion -orlando -orville -oscar -otis -owen -pablo -pat -patrick -paul -paulo -pedro -percy -perry -pete -peter -phil -philip -philippe -phillip -pierre -preston -rafael -ralph -ramiro -ramon -randal -randall -randolph -randy -rasmus -raul -ray -raymond -reginald -reinhard -rene -rex -rhys -ricardo -richard -rick -rickey -ricky -rob -robbie -robert -roberto -robin -rod -roderick -rodney -rodolfo -rodrigo -roel -roelof -rogelio -roger -roland -rolando -rolf -roman -ron -ronald -ronnie -roosevelt -rory -ross -roy -ruben -rudolph -rudy -rufus -russ -russell -ryan -salvador -salvatore -sam -sammy -samuel -sander -santiago -santos -saul -scott -sean -sergei -sergio -seth -shane -shannon -shaun -shawn -sheldon -sherman -sid -sidney -simon -skip -slobodan -sonny -spencer -stan -stanley -stefan -stein -stephan -stephano -stephen -steve -steven -stewart -stuart -sulaiman -sunny -susie -sven -sylvester -taylor -ted -terence -terrance -terrell -terrence -terry -thad -theodore -thomas -tim -timmy -timothy -toby -todd -tom -tomas -tommie -tommy -tony -tracy -travis -trevor -trey -tristan -troy -tyler -tyrone -vernon -victor -vince -vincent -virgil -wade -wallace -walter -warren -wayne -wendell -wesley -wilbert -wilbur -wilfred -will -willard -william -willie -willis -wilson -winston -woodrow -xavier -yuri -zachary diff --git a/RGens/data/sample-grammars/long-data/hex-digit.gram b/RGens/data/sample-grammars/long-data/hex-digit.gram new file mode 100644 index 0000000..9d0fa5e --- /dev/null +++ b/RGens/data/sample-grammars/long-data/hex-digit.gram @@ -0,0 +1,16 @@ +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +a +b +c +d +e +f diff --git a/RGens/data/sample-grammars/long-data/hex-digit.long b/RGens/data/sample-grammars/long-data/hex-digit.long deleted file mode 100644 index 9d0fa5e..0000000 --- a/RGens/data/sample-grammars/long-data/hex-digit.long +++ /dev/null @@ -1,16 +0,0 @@ -0 -1 -2 -3 -4 -5 -6 -7 -8 -9 -a -b -c -d -e -f diff --git a/RGens/data/sample-grammars/long-data/last-name.gram b/RGens/data/sample-grammars/long-data/last-name.gram new file mode 100644 index 0000000..4dc6721 --- /dev/null +++ b/RGens/data/sample-grammars/long-data/last-name.gram @@ -0,0 +1,3377 @@ +abbey +abbott +abel +abrams +acar +acosta +acs +adair +adams +adamson +adkins +adler +adrian +agius +agnew +aguilar +akers +albers +alberts +albrecht +albright +aldredge +aldrich +alexander +allan +allen +alley +allison +althouse +alvarado +alvarez +anderson +andreasson +andrews +angelos +anglin +anstead +anstrom +anthony +arak +aral +arbuckle +archer +armstrong +arnett +arnold +arruda +arthur +ashbridge +ashcroft +asher +ashley +ashton +assler +atchley +atkins +atkinson +atwood +auger +austin +avila +ayala +ayers +babcock +bach +backer +bacon +bailey +baird +baker +baldwin +ball +ballard +bane +bang +banke +banks +barber +barbosa +barger +barker +barnes +barnett +barr +barrenechea +barrett +barrick +barringer +barron +barrow +barry +barta +barter +barth +bartle +bartlett +barton +baruch +bashford +bass +bassett +bates +bauer +baughn +bauman +baumunk +baur +baxter +bayley +bazin +bea +beach +beadles +beam +beaman +bean +beard +beasley +beasly +beason +beavers +beck +becker +bee +beeckmans +beesley +beggs +behrens +belcher +bell +beloof +benanti +benedict +benge +benham +benner +bennett +bennitt +benson +bentley +benton +benware +beresford +bereznai +berezniker +berg +bergen +bergren +berkbilger +berkowitz +bernard +bernardez +bernet +berry +berryman +bertaina +bertram +berube +besemer +bessire +best +betta +betts +beumer +beunder +bever +beverlin +bewly +beyer +bialeschki +bibles +biehle +biele +bigelow +bighi +bigliardi +bijlsma +bikki +billings +binegar +bingham +bini +binnenmarsch +birch +birdmore +birtley +bishop +bisson +black +blackburn +blackwell +blair +blake +blanchard +bland +blankemeier +blankenship +blase +blattner +bledsoe +blevins +blewett +blitch +blocher +block +bloom +blouard +blyth +bockius +bodrov +bogard +bogenrieder +boggs +bolin +bollinger +bolmer +bolyard +boman +bond +bonds +bone +booker +boon +boone +booth +bopp +border +boren +borstadt +boshoff +bosik +bosler +bossert +bostic +bostick +boswell +bosworth +bottom +botts +boucher +boulay +bouldin +boulet +boulware +bourgeois +bowen +bowers +bowman +boyd +boyer +boykin +boylan +boyle +boyt +bozzi +braams +bradbury +bradford +bradley +bradshaw +brady +brainerd +brajkine +braley +brammer +branch +brand +brandau +brandt +brannenburg +brannock +brannon +branson +brants +braswell +braughton +braun +braungart +bray +brazie +breaum +breeuwer +brehler +breningstall +brennan +bressi +bretanus +brewer +brewster +bridges +briggs +brinkman +brinson +britt +brittain +brock +brockman +brockschmidt +bronson +brooks +broome +brosius +brouillette +brown +browning +brubacker +brubaker +bruce +brueckner +brueggemann +bruehl +bruggeman +brumley +brundage +brundick +brunn +bruntz +brust +bryan +bryant +bryce +bryers +bryse +buch +buchanan +buckley +buckner +bucsis +budbill +budd +buechting +buehler +buehner +buetner +buettner +buffington +buford +buhler +buhs +bulkeley +bullis +bullock +bumstead +bunch +bunn +bunner +bunse +burdon +burger +burgers +burgess +burke +burlew +burn +burnell +burnett +burney +burnham +burns +burress +burris +burroughs +burrow +burt +burton +busch +buschmann +busekrug +bush +bushyhead +busker +buso +bustillogadea +butcher +butler +bybee +byfield +byington +byram +byrd +byrne +caceres +cadieux +cadrin +cain +cakall +calabrese +caldwell +cale +calhoun +callaham +callahan +calvert +calvin +camacho +cameron +camp +campbell +campos +canada +candido +candy +canfield +cann +cannan +cannings +cannon +cantrell +capet +caplinger +capps +carey +carleton +carls +carlson +carlsson +carlton +carmichael +carnahan +carnel +carney +carpenter +carr +carrillo +carrington +carroll +carrère +carse +carson +carter +carver +carwile +casey +caskinette +casper +cassady +cassell +castillo +castillon +castles +castro +catanese +catton +caulley +cavanaugh +cernelli +cernos +cervera +chamberlin +chambers +champion +chan +chancellor +chandler +chaney +chang +channel +chapey +chapin +chaplauke +chapman +chappel +charles +charlton +chas +chase +chastain +chasteen +chatham +chauvin +chavez +checksfield +chen +cheney +chenoweth +cherrie +cherry +chesshyre +childers +childs +chinglee +chipman +chisholm +chislett +chism +chitwood +chizhov +chmelyk +christensen +christian +christie +christou +chuchalin +chupek +church +ciaffa +ciani +cipolla +clapp +clark +clarke +clarkson +clay +clayton +cleijne +clemens +clement +clements +clentine +clermont +cleveland +clift +cline +cloutier +cnossen +coale +coates +cobb +cochon +cochran +cocke +cockrell +coddington +cody +coe +cofer +coffman +cohen +coker +cole +colegrove +coleman +collier +collins +colon +colvin +combs +compton +comstock +conay +conda +conely +conger +conklin +conlee +conley +connally +conner +connor +conrad +conrades +constant +conti +contreras +converse +conway +coody +cook +cooke +cooley +coon +coonley +coons +coontz +cooper +copeland +corbet +corbin +cordery +cordes +cordon +cordry +cormier +cornish +cornwell +correll +corson +cortez +corwin +cosgrave +costello +couch +couillard +coulombe +coulter +counsell +courteau +couture +covington +cowan +cowell +cowgill +cowper +cowser +cox +coy +crabtree +crafton +craig +cramer +crane +cranston +crawford +creecy +crenshaw +crichton +cripps +critcher +croan +croft +croitor +cronin +crosher +cross +crossley +crouch +crow +crowder +crowell +croy +crump +cruse +crutchfield +cruz +cuba +cue +culberson +culp +cummings +cummins +cunningham +curby +curdts +curran +curren +current +currie +curry +curtis +cutting +cvahte +cyr +daab +daber +dafler +dagan +daggett +dalbey +dale +dalton +daly +damani +damron +daniel +daniels +danneman +danner +dar +darlington +darr +daughtery +davenport +davey +david +davidson +davies +davis +dawson +day +dean +dearing +dearman +debenthal +decker +dedrick +degg +degonia +deibert +delaney +delen +deleon +delgado +dell +dellenbach +dement +demont +denbo +denell +dennis +denson +denton +deringer +derksen +derrick +deschenes +desportes +desquiens +desroches +detwiler +deuschle +deutschmann +diamond +diaz +dick +dickerson +dickinson +dickson +diefendorf +diehl +diehn +dierig +dierker +dierkes +dierks +dietrich +dillingham +dimmerling +dippel +dirksen +dittmar +dixon +dmitriy +dobing +dobson +dockery +dodd +dodson +doering +doherty +doidge +dollar +domansky +domark +domingo +domingos +dominguez +donnelly +donoghue +doren +dorschel +dorsey +dossett +dostal +doud +dougherty +doughty +douglas +doutille +doutrich +dowdy +down +downey +downing +doyle +drake +drane +drath +dray +dreher +dressel +drexel +driscoll +droberg +drosbach +drouin +drum +drummonds +dryer +drysdale +duplessis +duane +duarte +dubbs +dube +dubois +dubowski +dubuque +duckworth +dudley +due +dueno +dueuer +duke +dulany +dumond +duncan +dunlap +dunn +dunnam +dunning +dupont +duquet +duran +durham +durkin +dustin +duval +dwyer +dyer +dyett +dykes +dyson +eaby +ealem +east +eaton +ebert +ecker +eckert +eckles +eckman +eddy +eden +edgar +edge +edgerton +edinger +edmunds +edsall +edwards +eerdmans +egan +egberinl +eglajs +ehlers +ehnert +eiple +eiten +eke +eklund +elders +eldridge +elgood +ellard +elliot +elliott +ellis +ellison +ellmaker +ellzey +elm +elmore +elsner +elson +emberton +emerson +emory +emrich +endicott +engel +england +englert +english +ennor +enterich +entwisle +epshtein +erasmus +erickson +eriksen +eriksson +erker +erkstam +ernsberger +eshelman +eshleman +espey +espinosa +espinoza +estes +estrada +etchberger +etienne +etting +eubanks +eudy +eure +evans +evatt +everett +ewing +factor +faes +fair +fairbanks +fairley +fairman +fantus +farmen +farmer +farrales +farrell +farris +farrow +farrugia +farwell +fassnacht +faulkner +faust +fears +feldman +fell +fender +fenn +fennessy +fenstermacher +fenton +fenwick +ferguson +fernandez +ferreccio +fetterly +fewell +feyl +fiat +fidler +field +fields +figueroa +filippoff +fillman +finken +finley +firth +fischer +fisher +fister +fitzgerald +fitzmaurice +fitzwater +flack +flamm +flanders +fleming +fletcher +flickinger +flores +flowers +floyd +flugge +fluharty +fly +flying +flynn +focke +foh +foley +follett +fontaine +foote +forbes +ford +fordyce +foreman +forget +fornwalt +forticq +fortin +foster +fothergill +fouda +fournier +foushee +foutain +fowler +fox +fradet +frady +france +franchi +francis +frank +franklin +franky +frantz +frazier +frederic +frederitzi +freedman +freeman +fremsdorf +french +frese +frew +frey +freytes +frias +frick +friddle +friedlander +friesen +fritz +frost +fry +frye +fugitt +fuhrman +full +fuller +fullhart +funda +fung +funk +furnace +gacusana +gadd +gagnon +gainer +gaines +galasso +galbraith +gallagher +gallaher +gallegos +galloway +galluser +gamache +gambon +gammon +gan +gangloff +gann +gant +garber +garcia +gardiner +gardner +garg +garman +garmin +garner +garrett +garrison +gartner +garza +gates +gatheridge +gatlin +gatling +gattain +gattling +gaudreau +gaudry +gausepont +gautier +gearhart +gebel +gechter +gedeon +geders +gee +geelan +geertsma +geffe +geigel +geiman +gemert +gemp +gentry +george +gerahty +gerard +gerke +gerlt +giasson +gibble +gibbs +gibler +gibson +giddings +giesinger +giffen +gifford +giguere +gilbert +gilbertson +giles +gill +gilleland +gillespie +gillette +gillock +gilmore +gilmour +ginger +gingras +giorgio +girard +girgenson +glascock +glaser +glass +glasscock +gleason +gleba +gleeson +glenn +glover +gockley +godown +goeller +goff +goforth +goh +gold +goldberg +golden +goldman +goldsmith +gomez +gonschorek +gonzales +gonzalez +goodline +goodman +goodson +goodwin +gorden +gordon +gorecki +gorham +gose +goshen +goss +gossage +gosselin +goutarias +gower +goza +graham +gralicke +grant +grappone +grass +graves +gray +graziani +greathouse +green +greene +greenhow +greening +greenlee +greeno +greer +gregg +gregory +grenier +gretton +grffiths +griffin +griffith +griffiths +grimes +grimley +grimm +grimmett +grindel +griswold +groetling +groh +gromit +gross +grossi +grosvenor +ground +grover +groves +grube +guerra +guerrero +guest +guhse +guinn +guisfredi +gulager +gullie +gunia +gunter +gunther +gupta +gurdian +gurlin +gushee +gustafsson +gustins +guthrie +guthy +gutierrez +guyon +guzman +gyula +gürbüz +haakonvoldum +haas +haase +hacher +haché +hackman +haddix +haeffner +haefner +hafer +haffner +hafner +hagan +hagerty +hagström +haguenauer +hahn +hain +haines +hair +hairston +hale +haley +hall +hallam +haller +hallet +halloway +hallum +halm +halmshaw +halpert +halsell +halverson +hamby +hamel +hamilton +hamm +hammett +hammond +hampel +hample +hampton +hancock +haneklau +hanel +hankins +hann +hannan +hansch +hansen +hanson +harbert +hardaway +harden +harder +hardin +harding +hardt +hardy +harel +harger +harlan +harle +harmon +harned +harnwell +harper +harrell +harrington +harris +harrison +harrity +harrod +harry +hart +harting +hartkopp +hartman +hartweck +hartzler +harvatin +harvey +hasenau +hasse +hastings +hatch +hatcher +hatchett +hatfield +hathaway +hauck +haughton +hauser +haverstick +hawes +hawkins +hawley +hayes +haynes +haynie +hays +hazel +hazeltine +healey +heard +heath +heathcock +heather +hebert +hecke +hedden +heege +hegel +heide +heikurinen +heil +hein +heinen +hejna +held +helen +helphrey +hembruock +henderson +hendrick +hendricks +hendrix +hennion +hennler +henrico +henry +hensgens +hensler +hensley +henson +heppe +herbein +herbert +herman +hermann +hernandez +herr +herrell +herren +herrera +herriage +herrick +herring +herweck +hess +hesselt +hester +hetz +hetzel +heuckelbach +hewitt +heyer +heyward +hezel +hickey +hickman +hicks +higbee +higdon +higginbotham +higgins +highley +hight +hill +hillenbrand +hils +hilton +hinch +hinckly +hines +hinkle +hinsey +hinsley +hinton +hippenmeyer +hissong +hixon +hixson +hoag +hobbs +hoch +hodge +hodges +hoebing +hoeflinger +hoehns +hoell +hoemann +hof +hofer +hoffman +hoflack +hogan +hohensee +hohmann +hoke +holburt +holcomb +holder +holgate +holifield +hollabaugh +holland +holleman +holley +hollingdale +holloway +hollowell +holmes +holstein +holstine +holt +holtheuer +holzum +homan +homanberg +hong +hood +hook +hooper +hoopes +hoosang +hoover +hopkins +hopper +horachek +horan +hord +horesteille +horn +horney +horning +hornung +horton +hosenfeld +hoskins +hostetter +hostler +hotsinpiller +houde +houghton +houlne +hounsell +house +houser +houston +hovin +hovlandsdal +howard +howe +howell +howes +howland +howlett +hoyt +hsieh +huard +hubbard +hubert +huckaby +huckins +huddleston +hudgens +hudson +huey +huff +huffman +hughes +hulet +hull +humble +humphrey +hundley +hunecke +hunt +hunter +huntley +hurrell +hurshman +hurst +hursán +hurt +huss +hustead +hutchings +hutchins +hutchinson +hyatt +hyland +hylton +håkansson +ibach +icaza +iceberg +idsinga +iiskola +iler +iliev +imfield +imig +imperiale +ingalls +ingle +ingram +ireland +irgens +irons +irous +irwan +isburg +ison +ivanytsch +ivey +ivins +ivy +ivzenkovic +izenstein +izycki +jackson +jacobs +jacobsen +jacques +jager +james +janes +jansen +janssen +janssens +jaynes +jefferson +jeffries +jehoel +jelicks +jenings +jenkins +jenkinson +jennings +jensen +jerome +jesse +jessett +jewett +jezusco +jiechao +jiglund +jimenez +jockish +joenwai +john +johns +johnson +johnston +jolicoeur +jolly +jones +jonke +jordan +joseph +joyce +juarez +jubb +jump +jung +junnila +järvi +kabler +kahle +kaletta +kalniòo +kane +kantola +kantor +kapke +kappelman +kar +karchev +karesh +karleskint +karlsson +kartaslammi +kaspar +kattleman +katz +kaub +kauffman +kay +kazin +keating +keaton +keck +keddem +keefe +keeler +keeley +keen +keene +keith +kell +keller +kelley +kelly +kemp +kendall +kennedy +kennel +kennerly +kent +kepel +kerdijk +kerr +kesl +ketter +kettle +kettner +key +keys +keyser +kibbey +kickert +kidwai +kiefer +kiers +kight +kile +kilgour +kilheffer +kilheffner +killingsworth +killion +kim +kimball +kimble +kinder +kindle +kines +king +kinney +kinser +kinsey +kinslow +kirby +kirk +kirkpatrick +kirwan +kitchin +kittrell +kivimäki +klass +klein +kleine +klimpl +klopp +knapp +knight +knippenberg +knoblauch +knotts +knous +knowles +knowlton +knox +koch +kochevar +kodelja +koebel +koeller +koendering +koerner +koetsier +kohne +kohr +kokwai +kolar +kolb +koller +konarski +koon +kooyman +kopff +kopp +korber +korp +kosloff +kotter +kourik +kraemer +kramer +kras +kratke +kraus +krause +krebs +krecker +kreider +kretzin +krick +krishnan +kromer +kronk +krumman +kruse +kuchnoel +kuhn +kuhnell +kummer +kunze +kuresko +kurtz +kushwaha +kusmin +kuttner +labarre +lapoint +lataille +labay +labreque +lacey +lacy +lafferty +laidlow +lail +lair +lajoie +lamar +lamb +lambert +lamerand +lancaster +landis +landrum +landry +landy +lane +lang +langer +langlois +langston +laning +lankford +lankshear +lanmaster +lanner +lantrip +lapouchnian +lara +larcom +lard +larkins +larouche +larsen +larson +larsén +last +lathrop +latimbre +lau +laughlin +lauzon +lavoy +lawhead +lawler +lawrence +lawson +lazar +leach +lear +leblanc +ledenmark +lee +leekeirl +leech +leeper +lefler +leger +lehman +lehtovaara +leib +leitao +leitch +lemke +lemons +lengyel +lenhart +lennox +lentini +leon +leonard +leong +lester +letarte +letendre +lett +levesque +lewallen +lewis +libis +licata +lifson +light +lightstone +lilgert +lima +limetsch +linares +lindquist +lindsay +lindsey +lindwedel +linek +lines +linge +linker +linkogel +linson +linus +lipe +lipps +list +little +litzsinger +liu +livingood +livingston +lizot +llanos +lloyd +lochridge +lockhart +loenders +logan +lograsso +lohr +lombard +lombardi +london +long +longenecker +longnecker +loomis +looney +loose +lopez +lord +lorenzo +loring +lorton +lough +loughrie +louhr +lound +love +lovejoy +lovell +lowe +lowell +lowery +lownes +loye +lucas +luce +lucius +lucko +ludwick +ludwig +luissalcines +lulic +luna +lund +lundberg +lura +luthe +luther +lutz +lux +luzadder +lyle +lynch +lynn +lyon +lyons +mabe +mabson +maccuuladh +macdonald +macgillivray +mackellar +mackenzie +macpherson +macedo +macey +machin +mack +mackey +macomber +madore +maender +magalhaes +maheu +maho +mahoney +majakari +major +malcom +maldonado +malicoat +malin +mallet +mallett +mallory +malone +malos +malzone +mamone +manaev +mandel +mandula +mann +manning +mansfield +manson +mantione +manuel +marabotto +marbach +marbourgh +march +marchant +marie +markovic +marks +marler +marple +marquez +marquis +marr +marriott +marsden +marsh +marshall +martin +martinez +marting +marttila +mary +mason +massey +mast +masters +mastrantuono +matheson +mathews +mathias +mathis +matthews +matthias +mattingly +mattli +mauger +maulana +maule +maus +mawdsley +maxey +maxson +maxwell +may +mayandon +mayberry +mayes +mayhew +maynard +mayo +mayow +mays +mazza +mcalexander +mcalister +mcallister +mcaree +mcarthur +mcbride +mccafferty +mccall +mccallister +mccarra +mccarthy +mccauley +mcclain +mcclellan +mccleskey +mccloud +mcclung +mcclure +mccollum +mcconnell +mccormick +mccowan +mccoy +mccracken +mccullough +mccumiskey +mccurdy +mcdaniel +mcdaniels +mcdermott +mcdonal +mcdonald +mcdonnell +mcdonough +mcdormand +mcdowell +mceachern +mcelroy +mcelveen +mcfarland +mcgee +mcgraw +mcgrew +mcguire +mcilveen +mcintosh +mcintyre +mckean +mckee +mckeever +mckenstrie +mckenzie +mckinney +mckinstrie +mclafferty +mclaggan +mclain +mclaughlin +mclean +mcleod +mcmahon +mcmanus +mcmclain +mcmillan +mcmurtrie +mcnair +mcnamara +mcpherson +mcquarrie +mcqueen +mcrae +mcspadden +mcswain +mcvicker +mcwilliams +meaden +means +meddemmen +medina +medler +medley +medlin +meech +meek +meeks +megginson +meier +meiners +meinhart +mejia +melber +mellinger +melton +melvin +mendenhall +mendez +mendoza +mercado +mercer +mercier +mercille +meredith +merkel +merkle +mermann +merriman +merritt +mesman +messier +metz +metzger +meyer +meyers +michalowski +middleton +miethe +mikhailovsky +mikilas +miklos +milam +miles +miller +millett +mills +milne +milner +milton +minchin +miner +minnich +minshall +minster +minville +miranda +mironin +misik +miskerik +mistry +mitchelhill +mitchell +mitchelmore +miville +moale +moats +mock +moehlenhoff +moehlenkamp +moeller +moenkhoff +mohler +mohow +molina +moller +monfort +monroe +monsees +monsona +montagna +montague +montes +montgomery +montoya +moody +moon +mooney +moore +moose +morales +moran +morehead +moreno +morgan +morin +morowitz +morphett +morrice +morris +morrison +morrow +morse +mortensen +morton +moschner +moseley +moses +mosley +moss +mosser +mouser +moushey +moxley +moyer +moyle +moyles +moynahan +mraz +mros +mudd +mueller +mukhtar +mulholland +muller +mullinix +mullins +munday +mundy +munoz +munro +munson +muntz +murdock +murphy +murr +murray +muse +musgrove +musil +mussbach +musselman +muszer +mutel +myers +naes +nagashima +nagle +nahm +nalazek +nanney +narayan +narciso +nash +nason +naumann +navarro +nave +neal +neale +nebdal +neece +neel +neff +neilson +nellen +nelson +nemmo +nester +nestor +newlon +newman +newsham +newton +nguyen +nichols +nicholson +nicodei +nicoll +niemeyer +nies +nixon +noble +nolan +nord +norman +norris +norton +norwell +norwood +noud +novaes +novak +nuchter +nunes +nunez +nuttall +nuzum +nyulassy +o'brien +o'connell +o'conner +o'grady +o'hara +o'leary +o'malley +o'meara +o'neil +ober +oberbeck +oberholser +oberholtzer +oberholzer +oberosler +obrecht +obrien +oconnor +octeau +oehrke +ogden +oge +oger +ogier +ogle +oh +ohlinger +ohlsen +olesen +oleynik +olive +oliveira +oliver +ollive +olsen +olson +omond +oneal +opeloyer +opeloyeru +ora +orlando +orosz +orr +ortega +ortiz +osage +osborn +osborne +osgood +ossenfort +osula +ott +otterstad +ottman +otto +ouellet +ouellette +overholser +overstreet +owen +owens +owsley +pace +pacheco +pack +padilla +paganto +page +painter +pala +palmer +paluzga +panda +paolo +paquette +paquin +pardue +pardy +park +parke +parker +parkhill +parks +parr +parrinello +parrish +parsons +paschke +pastori +pastrick +patel +patrick +patterson +patton +paul +paulet +pauley +paulsen +pauly +paumelle +pavlin +pavlock +paxson +payne +peak +pearah +pearce +pearson +peck +peddlesden +peden +pedersen +pedigo +pelky +pelles +pena +pence +pendleton +pengry +penka +penley +penn +pennell +pennington +penrose +pentelbury +peoples +pepper +perera +perez +perkins +perotti +perren +perrin +perriseau +perry +person +persson +peterman +peters +petersen +peterson +petri +petrig +petrounakou +pettigrew +pettit +pettus +peyrot +peyton +pfaff +pfitzenger +phelps +phillips +phipps +piastra +pickard +pickett +pickle +pierce +pilger +pilkington +pilkinton +pinckley +pinkel +pinzer +pirnar +pirtle +pit +pittman +pitts +placzkavich +plante +player +pleis +pletcher +ploesser +ploog +plumb +plummer +pocock +pogrelis +politte +pollock +poole +poos +pope +poppe +portell +porter +porto +post +potten +potter +potts +poulet +pound +powell +powers +prather +pratt +prebit +preisendorf +prence +presley +preston +prevost +price +priester +prince +proctor +proffitt +prospero +proudfoot +pruitt +przybyl +puckett +pugh +pulliam +pullins +pullman +purdy +purvis +putnam +putney +putt +quattlebaum +queen +quell +quella +quelle +quick +quigley +quince +quinn +quintelier +quinton +quisenberry +raburn +racine +rader +radley +raffo +ragsdale +rahm +rahn +raine +raines +rains +rainwater +rakar +ralston +ramirez +ramos +ramsberg +ramsey +randall +randolph +raney +rangan +rangefelt +rash +rasmussen +rason +ratcliff +rate +rathfon +rathman +ratje +ratner +raupp +ravenscraft +rawls +ray +raygor +raymond +rea +reagan +rebman +redd +reece +reed +reese +reeser +reeves +regan +regester +regot +reich +reicter +reid +reilly +reinholz +reinke +reiser +reiter +reitz +rekart +rekutin +renfro +renfrow +reno +rentchler +resch +retherford +rexdale +reyes +reynold +reynolds +rhatigan +rhoades +rhodelander +rhodes +ribeiro +riccio +rice +rich +richard +richards +richardson +richmond +richter +richwine +ricketts +riddick +rider +ridgeway +ridout +riebold +riese +rigdon +riggs +righi +riley +rinback +rines +ringen +ringler +rinner +rios +ritchey +ritchie +riton +rittenhouse +ritter +rivas +rivera +rivers +robb +robbins +roberson +roberts +robertson +robins +robinson +robison +robles +robson +rodgers +rodriguez +rodriquez +roe +roebrant +roebuck +roesch +roess +roessler +rogai +roger +rogers +rojas +rolen +rolfe +rollings +rollins +roman +romand +romero +romig +romkes +rondel +root +roper +ropp +roques +rosa +rosati +rose +rosemann +rosenthal +rosier +ross +roth +rothgeb +rott +rottler +roudebush +roundtree +rountree +rowden +rowe +rowland +rowlandson +roy +rudolph +ruess +ruggles +ruhl +ruiz +rullan +rumbaugh +rundle +runfola +rupiper +ruppel +rush +russell +russo +ruth +rutherfoord +rutzel +ryan +rynders +rypstra +röther +sackwell +saffel +saffle +saffold +safuan +sahlstrom +sajid +salazar +salinas +salles +salmon +salsbury +samson +sanchez +sander +sanders +sandoval +sanford +sanfrod +saniter +santiago +santoni +santos +sapp +sappington +sarel +sargent +sas +satterfield +sauder +saunders +savage +savic +saville +savoie +sawyer +saye +sayre +scales +schaeffer +schaffnitt +schamberger +schanze +schasteen +schaumberger +schenk +schilders +schipper +schirmer +schlegel +schlitzer +schlobohm +schmeis +schmid +schmidt +schmitt +schmitz +schmuck +schneider +schoenberger +schofield +scholfield +schommer +schooley +schoonover +schopp +schowengerdt +schrack +schrader +schreiber +schreiner +schrick +schrier +schrimpf +schrimpshire +schrimscher +schrimsher +schrimshire +schroeder +schrupple +schubert +schuchman +schuit +schulte +schultz +schumacher +schumaker +schuman +schumann +schutte +schwab +schwartz +schwartzkopf +schweer +schweikert +schweiss +schwenderman +sciurba +scofield +scott +scrimpshire +scrimsher +scrimshire +scroggins +seal +seaman +sears +sebren +sebring +sedgwick +seely +seguinverner +seipel +seith +selby +self +selivanov +sellen +sellers +senff +sensenig +serrano +setiadji +settergren +sever +seward +sexton +shackles +shaffer +shailes +shands +shank +shannon +shapely +shapiro +sharp +sharples +shasserre +shaw +sheahan +sheets +shelton +shenefelt +shepard +shepherd +sheppard +shepperd +sherman +sherrill +sherry +sherwood +shewmaker +shieh +shields +shilnikov +shim +shimek +shingleton +shipley +shipman +shirk +shober +shoemaker +short +shorter +shriver +shull +shurley +sibley +sickles +siebers +siechrist +siegrist +siemann +sigman +silberman +silberstein +silva +silverman +silvernagel +simenic +simko +simmons +simms +simoes +simon +simons +simpson +sims +singletary +singleton +sirigos +sisk +siu +sizer +sjostrom +skaggard +skaggs +skiles +skillman +skinner +slagle +slark +slater +slaughter +slierendrecht +sloan +sloper +slouber +small +smead +smedley +smeets +smith +smits +smoak +smolar +snow +snowden +snyder +solimano +solis +solomon +sommerkamp +somphan +sorenson +soto +soucy +soulman +sousa +southerland +southern +sowers +spaeti +spahn +spalding +spangler +sparks +speaker +spears +specht +spector +speidel +spencer +spirek +spires +spoel +spoon +spoth +srock +staebler +stafford +stahl +staley +stam +stambaugh +stamm +standiford +stanley +stansberry +staples +starensier +stark +starnes +stasulat +stauffer +stedman +steele +steely +stefanelli +stein +steinemann +stendahl +stephens +stephenson +sterling +stevens +stevenson +steward +stewart +stice +still +stine +stinton +stirk +stock +stockton +stokes +stoll +stoltz +stone +stones +storey +storm +stout +stoyell +strader +straher +strang +strauss +streets +streing +strickland +stroetinga +strohm +strong +strozewski +strum +stuart +sturdivant +sturgess +sturgis +stutzman +suarez +sublett +suddath +suggs +sullins +sullivan +summerfield +summers +summey +summy +sunderman +sunderwirth +sundgren +supawanich +sutcliffe +sutherland +sutton +svedin +svendsen +svensson +swaim +swaine +swally +swanson +swartz +swasey +sweeney +sweet +swenson +swift +swisher +sypher +tackes +taliaferro +talipsky +tamietti +tan +tang +tank +tanner +tapp +tappert +tardif +tate +tauschek +taylor +teem +teeter +teets +temple +templeton +templin +tenny +teppen +terrill +terry +tesche +tesi +tessier +tetrick +tharp +thatcher +thibault +thibaut +thibodeau +thierer +thies +thill +thomas +thomerson +thompson +thomson +thorn +thornhill +thornton +thorup +thrower +thursfield +thys +tidwell +tierney +tilley +tillman +timberlake +timchenko +timm +timmons +tinker +todd +tol +tolbert +tomlinson +toomer +toothaker +topping +torrence +torres +touchstone +toupin +townend +townsend +tracy +tran +traudt +traugott +trautmann +traxler +trego +trent +trethewey +trevino +triggs +triplett +trone +trout +troutman +troutt +trovato +troxler +truesdale +truetzel +trujillo +trump +tschikowsky +tshudy +tuck +tucker +tukker +turberville +turner +turrentine +turén +tuttle +tweed +twiford +tyler +tyson +ulich +uliel +underwood +upton +utt +valverde +valdez +valentine +vance +vanik +vann +varga +vargas +varner +vartiainen +varvel +vasquez +vaughan +vaughn +vaught +vawter +vazquez +veenvliet +vega +vehlewald +velasquez +velez +velonis +vendt +venters +ventres +ventress +vergason +vernon +vigar +vigle +villalobos +villarreal +vincent +vinner +virga +virkelyst +vitali +vitro +viverett +vogel +vogelgesang +voldi +von pilkington +voss +vuille +vunovich +wack +wade +wager +waggoner +wagner +wagstaff +wakefield +walker +wall +wallace +waller +wallis +walls +walmsley +walsh +walter +walters +waltman +walton +wang +ward +warden +ware +wark +warner +warren +warwick +washington +wass +waterham +waterkotte +waterman +waters +watkins +watson +watts +weaver +webb +webber +weber +weble +webster +weekley +weeks +wegener +weikert +weiler +weimer +weiner +weismuller +weiss +weitzel +welby +welch +wellons +wells +welsh +wenger +wentland +werhner +werner +wesley +wesolowski +wessel +wessels +west +weston +westphal +westwood +wetzel +whaples +wheat +wheeler +whelan +wherley +whitaker +white +whitehead +whitford +whiting +whitman +whitney +whitsett +whitsitt +whitson +whitwam +whitworth +wickenhauser +wickliffe +wicks +wideman +wiegand +wiegratz +wiggins +wiklund +wilcox +wilcoxon +wilder +wildermuth +wiley +wilkerson +wilkin +wilkins +wilkinson +will +willcut +willey +william +williams +williamson +willis +willmes +willoughby +willowspond +wills +wilmoth +wilson +winfrey +wingard +wingate +wingenfeld +wink +winn +winslow +winston +winter +wintermute +winters +wintle +winton +wischmeyer +wisdom +wise +wiseman +wissman +withers +witmer +witt +witte +woelk +wofford +wognum +wolf +wolfe +wolkey +wolters +wolz +womack +wong +wood +woodard +woodbury +wooding +woodring +woods +woodson +woodward +woolery +woolf +wooten +wordsworth +worman +worrall +worrell +worrilow +wosnuk +wrage +wren +wright +wustenhagen +wyatt +wyttenbach +yahn +yancey +yap +yarnall +yates +yeager +yeomans +yerger +yoch +yogho +york +young +younglove +yount +yoxall +zaegel +zaitsev +zarnits +zbaren +zeller +zeni +zimmerman +zinselmeier +zondler +zorzano +zumwalt +zwicker diff --git a/RGens/data/sample-grammars/long-data/last-name.long b/RGens/data/sample-grammars/long-data/last-name.long deleted file mode 100644 index 4dc6721..0000000 --- a/RGens/data/sample-grammars/long-data/last-name.long +++ /dev/null @@ -1,3377 +0,0 @@ -abbey -abbott -abel -abrams -acar -acosta -acs -adair -adams -adamson -adkins -adler -adrian -agius -agnew -aguilar -akers -albers -alberts -albrecht -albright -aldredge -aldrich -alexander -allan -allen -alley -allison -althouse -alvarado -alvarez -anderson -andreasson -andrews -angelos -anglin -anstead -anstrom -anthony -arak -aral -arbuckle -archer -armstrong -arnett -arnold -arruda -arthur -ashbridge -ashcroft -asher -ashley -ashton -assler -atchley -atkins -atkinson -atwood -auger -austin -avila -ayala -ayers -babcock -bach -backer -bacon -bailey -baird -baker -baldwin -ball -ballard -bane -bang -banke -banks -barber -barbosa -barger -barker -barnes -barnett -barr -barrenechea -barrett -barrick -barringer -barron -barrow -barry -barta -barter -barth -bartle -bartlett -barton -baruch -bashford -bass -bassett -bates -bauer -baughn -bauman -baumunk -baur -baxter -bayley -bazin -bea -beach -beadles -beam -beaman -bean -beard -beasley -beasly -beason -beavers -beck -becker -bee -beeckmans -beesley -beggs -behrens -belcher -bell -beloof -benanti -benedict -benge -benham -benner -bennett -bennitt -benson -bentley -benton -benware -beresford -bereznai -berezniker -berg -bergen -bergren -berkbilger -berkowitz -bernard -bernardez -bernet -berry -berryman -bertaina -bertram -berube -besemer -bessire -best -betta -betts -beumer -beunder -bever -beverlin -bewly -beyer -bialeschki -bibles -biehle -biele -bigelow -bighi -bigliardi -bijlsma -bikki -billings -binegar -bingham -bini -binnenmarsch -birch -birdmore -birtley -bishop -bisson -black -blackburn -blackwell -blair -blake -blanchard -bland -blankemeier -blankenship -blase -blattner -bledsoe -blevins -blewett -blitch -blocher -block -bloom -blouard -blyth -bockius -bodrov -bogard -bogenrieder -boggs -bolin -bollinger -bolmer -bolyard -boman -bond -bonds -bone -booker -boon -boone -booth -bopp -border -boren -borstadt -boshoff -bosik -bosler -bossert -bostic -bostick -boswell -bosworth -bottom -botts -boucher -boulay -bouldin -boulet -boulware -bourgeois -bowen -bowers -bowman -boyd -boyer -boykin -boylan -boyle -boyt -bozzi -braams -bradbury -bradford -bradley -bradshaw -brady -brainerd -brajkine -braley -brammer -branch -brand -brandau -brandt -brannenburg -brannock -brannon -branson -brants -braswell -braughton -braun -braungart -bray -brazie -breaum -breeuwer -brehler -breningstall -brennan -bressi -bretanus -brewer -brewster -bridges -briggs -brinkman -brinson -britt -brittain -brock -brockman -brockschmidt -bronson -brooks -broome -brosius -brouillette -brown -browning -brubacker -brubaker -bruce -brueckner -brueggemann -bruehl -bruggeman -brumley -brundage -brundick -brunn -bruntz -brust -bryan -bryant -bryce -bryers -bryse -buch -buchanan -buckley -buckner -bucsis -budbill -budd -buechting -buehler -buehner -buetner -buettner -buffington -buford -buhler -buhs -bulkeley -bullis -bullock -bumstead -bunch -bunn -bunner -bunse -burdon -burger -burgers -burgess -burke -burlew -burn -burnell -burnett -burney -burnham -burns -burress -burris -burroughs -burrow -burt -burton -busch -buschmann -busekrug -bush -bushyhead -busker -buso -bustillogadea -butcher -butler -bybee -byfield -byington -byram -byrd -byrne -caceres -cadieux -cadrin -cain -cakall -calabrese -caldwell -cale -calhoun -callaham -callahan -calvert -calvin -camacho -cameron -camp -campbell -campos -canada -candido -candy -canfield -cann -cannan -cannings -cannon -cantrell -capet -caplinger -capps -carey -carleton -carls -carlson -carlsson -carlton -carmichael -carnahan -carnel -carney -carpenter -carr -carrillo -carrington -carroll -carrère -carse -carson -carter -carver -carwile -casey -caskinette -casper -cassady -cassell -castillo -castillon -castles -castro -catanese -catton -caulley -cavanaugh -cernelli -cernos -cervera -chamberlin -chambers -champion -chan -chancellor -chandler -chaney -chang -channel -chapey -chapin -chaplauke -chapman -chappel -charles -charlton -chas -chase -chastain -chasteen -chatham -chauvin -chavez -checksfield -chen -cheney -chenoweth -cherrie -cherry -chesshyre -childers -childs -chinglee -chipman -chisholm -chislett -chism -chitwood -chizhov -chmelyk -christensen -christian -christie -christou -chuchalin -chupek -church -ciaffa -ciani -cipolla -clapp -clark -clarke -clarkson -clay -clayton -cleijne -clemens -clement -clements -clentine -clermont -cleveland -clift -cline -cloutier -cnossen -coale -coates -cobb -cochon -cochran -cocke -cockrell -coddington -cody -coe -cofer -coffman -cohen -coker -cole -colegrove -coleman -collier -collins -colon -colvin -combs -compton -comstock -conay -conda -conely -conger -conklin -conlee -conley -connally -conner -connor -conrad -conrades -constant -conti -contreras -converse -conway -coody -cook -cooke -cooley -coon -coonley -coons -coontz -cooper -copeland -corbet -corbin -cordery -cordes -cordon -cordry -cormier -cornish -cornwell -correll -corson -cortez -corwin -cosgrave -costello -couch -couillard -coulombe -coulter -counsell -courteau -couture -covington -cowan -cowell -cowgill -cowper -cowser -cox -coy -crabtree -crafton -craig -cramer -crane -cranston -crawford -creecy -crenshaw -crichton -cripps -critcher -croan -croft -croitor -cronin -crosher -cross -crossley -crouch -crow -crowder -crowell -croy -crump -cruse -crutchfield -cruz -cuba -cue -culberson -culp -cummings -cummins -cunningham -curby -curdts -curran -curren -current -currie -curry -curtis -cutting -cvahte -cyr -daab -daber -dafler -dagan -daggett -dalbey -dale -dalton -daly -damani -damron -daniel -daniels -danneman -danner -dar -darlington -darr -daughtery -davenport -davey -david -davidson -davies -davis -dawson -day -dean -dearing -dearman -debenthal -decker -dedrick -degg -degonia -deibert -delaney -delen -deleon -delgado -dell -dellenbach -dement -demont -denbo -denell -dennis -denson -denton -deringer -derksen -derrick -deschenes -desportes -desquiens -desroches -detwiler -deuschle -deutschmann -diamond -diaz -dick -dickerson -dickinson -dickson -diefendorf -diehl -diehn -dierig -dierker -dierkes -dierks -dietrich -dillingham -dimmerling -dippel -dirksen -dittmar -dixon -dmitriy -dobing -dobson -dockery -dodd -dodson -doering -doherty -doidge -dollar -domansky -domark -domingo -domingos -dominguez -donnelly -donoghue -doren -dorschel -dorsey -dossett -dostal -doud -dougherty -doughty -douglas -doutille -doutrich -dowdy -down -downey -downing -doyle -drake -drane -drath -dray -dreher -dressel -drexel -driscoll -droberg -drosbach -drouin -drum -drummonds -dryer -drysdale -duplessis -duane -duarte -dubbs -dube -dubois -dubowski -dubuque -duckworth -dudley -due -dueno -dueuer -duke -dulany -dumond -duncan -dunlap -dunn -dunnam -dunning -dupont -duquet -duran -durham -durkin -dustin -duval -dwyer -dyer -dyett -dykes -dyson -eaby -ealem -east -eaton -ebert -ecker -eckert -eckles -eckman -eddy -eden -edgar -edge -edgerton -edinger -edmunds -edsall -edwards -eerdmans -egan -egberinl -eglajs -ehlers -ehnert -eiple -eiten -eke -eklund -elders -eldridge -elgood -ellard -elliot -elliott -ellis -ellison -ellmaker -ellzey -elm -elmore -elsner -elson -emberton -emerson -emory -emrich -endicott -engel -england -englert -english -ennor -enterich -entwisle -epshtein -erasmus -erickson -eriksen -eriksson -erker -erkstam -ernsberger -eshelman -eshleman -espey -espinosa -espinoza -estes -estrada -etchberger -etienne -etting -eubanks -eudy -eure -evans -evatt -everett -ewing -factor -faes -fair -fairbanks -fairley -fairman -fantus -farmen -farmer -farrales -farrell -farris -farrow -farrugia -farwell -fassnacht -faulkner -faust -fears -feldman -fell -fender -fenn -fennessy -fenstermacher -fenton -fenwick -ferguson -fernandez -ferreccio -fetterly -fewell -feyl -fiat -fidler -field -fields -figueroa -filippoff -fillman -finken -finley -firth -fischer -fisher -fister -fitzgerald -fitzmaurice -fitzwater -flack -flamm -flanders -fleming -fletcher -flickinger -flores -flowers -floyd -flugge -fluharty -fly -flying -flynn -focke -foh -foley -follett -fontaine -foote -forbes -ford -fordyce -foreman -forget -fornwalt -forticq -fortin -foster -fothergill -fouda -fournier -foushee -foutain -fowler -fox -fradet -frady -france -franchi -francis -frank -franklin -franky -frantz -frazier -frederic -frederitzi -freedman -freeman -fremsdorf -french -frese -frew -frey -freytes -frias -frick -friddle -friedlander -friesen -fritz -frost -fry -frye -fugitt -fuhrman -full -fuller -fullhart -funda -fung -funk -furnace -gacusana -gadd -gagnon -gainer -gaines -galasso -galbraith -gallagher -gallaher -gallegos -galloway -galluser -gamache -gambon -gammon -gan -gangloff -gann -gant -garber -garcia -gardiner -gardner -garg -garman -garmin -garner -garrett -garrison -gartner -garza -gates -gatheridge -gatlin -gatling -gattain -gattling -gaudreau -gaudry -gausepont -gautier -gearhart -gebel -gechter -gedeon -geders -gee -geelan -geertsma -geffe -geigel -geiman -gemert -gemp -gentry -george -gerahty -gerard -gerke -gerlt -giasson -gibble -gibbs -gibler -gibson -giddings -giesinger -giffen -gifford -giguere -gilbert -gilbertson -giles -gill -gilleland -gillespie -gillette -gillock -gilmore -gilmour -ginger -gingras -giorgio -girard -girgenson -glascock -glaser -glass -glasscock -gleason -gleba -gleeson -glenn -glover -gockley -godown -goeller -goff -goforth -goh -gold -goldberg -golden -goldman -goldsmith -gomez -gonschorek -gonzales -gonzalez -goodline -goodman -goodson -goodwin -gorden -gordon -gorecki -gorham -gose -goshen -goss -gossage -gosselin -goutarias -gower -goza -graham -gralicke -grant -grappone -grass -graves -gray -graziani -greathouse -green -greene -greenhow -greening -greenlee -greeno -greer -gregg -gregory -grenier -gretton -grffiths -griffin -griffith -griffiths -grimes -grimley -grimm -grimmett -grindel -griswold -groetling -groh -gromit -gross -grossi -grosvenor -ground -grover -groves -grube -guerra -guerrero -guest -guhse -guinn -guisfredi -gulager -gullie -gunia -gunter -gunther -gupta -gurdian -gurlin -gushee -gustafsson -gustins -guthrie -guthy -gutierrez -guyon -guzman -gyula -gürbüz -haakonvoldum -haas -haase -hacher -haché -hackman -haddix -haeffner -haefner -hafer -haffner -hafner -hagan -hagerty -hagström -haguenauer -hahn -hain -haines -hair -hairston -hale -haley -hall -hallam -haller -hallet -halloway -hallum -halm -halmshaw -halpert -halsell -halverson -hamby -hamel -hamilton -hamm -hammett -hammond -hampel -hample -hampton -hancock -haneklau -hanel -hankins -hann -hannan -hansch -hansen -hanson -harbert -hardaway -harden -harder -hardin -harding -hardt -hardy -harel -harger -harlan -harle -harmon -harned -harnwell -harper -harrell -harrington -harris -harrison -harrity -harrod -harry -hart -harting -hartkopp -hartman -hartweck -hartzler -harvatin -harvey -hasenau -hasse -hastings -hatch -hatcher -hatchett -hatfield -hathaway -hauck -haughton -hauser -haverstick -hawes -hawkins -hawley -hayes -haynes -haynie -hays -hazel -hazeltine -healey -heard -heath -heathcock -heather -hebert -hecke -hedden -heege -hegel -heide -heikurinen -heil -hein -heinen -hejna -held -helen -helphrey -hembruock -henderson -hendrick -hendricks -hendrix -hennion -hennler -henrico -henry -hensgens -hensler -hensley -henson -heppe -herbein -herbert -herman -hermann -hernandez -herr -herrell -herren -herrera -herriage -herrick -herring -herweck -hess -hesselt -hester -hetz -hetzel -heuckelbach -hewitt -heyer -heyward -hezel -hickey -hickman -hicks -higbee -higdon -higginbotham -higgins -highley -hight -hill -hillenbrand -hils -hilton -hinch -hinckly -hines -hinkle -hinsey -hinsley -hinton -hippenmeyer -hissong -hixon -hixson -hoag -hobbs -hoch -hodge -hodges -hoebing -hoeflinger -hoehns -hoell -hoemann -hof -hofer -hoffman -hoflack -hogan -hohensee -hohmann -hoke -holburt -holcomb -holder -holgate -holifield -hollabaugh -holland -holleman -holley -hollingdale -holloway -hollowell -holmes -holstein -holstine -holt -holtheuer -holzum -homan -homanberg -hong -hood -hook -hooper -hoopes -hoosang -hoover -hopkins -hopper -horachek -horan -hord -horesteille -horn -horney -horning -hornung -horton -hosenfeld -hoskins -hostetter -hostler -hotsinpiller -houde -houghton -houlne -hounsell -house -houser -houston -hovin -hovlandsdal -howard -howe -howell -howes -howland -howlett -hoyt -hsieh -huard -hubbard -hubert -huckaby -huckins -huddleston -hudgens -hudson -huey -huff -huffman -hughes -hulet -hull -humble -humphrey -hundley -hunecke -hunt -hunter -huntley -hurrell -hurshman -hurst -hursán -hurt -huss -hustead -hutchings -hutchins -hutchinson -hyatt -hyland -hylton -håkansson -ibach -icaza -iceberg -idsinga -iiskola -iler -iliev -imfield -imig -imperiale -ingalls -ingle -ingram -ireland -irgens -irons -irous -irwan -isburg -ison -ivanytsch -ivey -ivins -ivy -ivzenkovic -izenstein -izycki -jackson -jacobs -jacobsen -jacques -jager -james -janes -jansen -janssen -janssens -jaynes -jefferson -jeffries -jehoel -jelicks -jenings -jenkins -jenkinson -jennings -jensen -jerome -jesse -jessett -jewett -jezusco -jiechao -jiglund -jimenez -jockish -joenwai -john -johns -johnson -johnston -jolicoeur -jolly -jones -jonke -jordan -joseph -joyce -juarez -jubb -jump -jung -junnila -järvi -kabler -kahle -kaletta -kalniòo -kane -kantola -kantor -kapke -kappelman -kar -karchev -karesh -karleskint -karlsson -kartaslammi -kaspar -kattleman -katz -kaub -kauffman -kay -kazin -keating -keaton -keck -keddem -keefe -keeler -keeley -keen -keene -keith -kell -keller -kelley -kelly -kemp -kendall -kennedy -kennel -kennerly -kent -kepel -kerdijk -kerr -kesl -ketter -kettle -kettner -key -keys -keyser -kibbey -kickert -kidwai -kiefer -kiers -kight -kile -kilgour -kilheffer -kilheffner -killingsworth -killion -kim -kimball -kimble -kinder -kindle -kines -king -kinney -kinser -kinsey -kinslow -kirby -kirk -kirkpatrick -kirwan -kitchin -kittrell -kivimäki -klass -klein -kleine -klimpl -klopp -knapp -knight -knippenberg -knoblauch -knotts -knous -knowles -knowlton -knox -koch -kochevar -kodelja -koebel -koeller -koendering -koerner -koetsier -kohne -kohr -kokwai -kolar -kolb -koller -konarski -koon -kooyman -kopff -kopp -korber -korp -kosloff -kotter -kourik -kraemer -kramer -kras -kratke -kraus -krause -krebs -krecker -kreider -kretzin -krick -krishnan -kromer -kronk -krumman -kruse -kuchnoel -kuhn -kuhnell -kummer -kunze -kuresko -kurtz -kushwaha -kusmin -kuttner -labarre -lapoint -lataille -labay -labreque -lacey -lacy -lafferty -laidlow -lail -lair -lajoie -lamar -lamb -lambert -lamerand -lancaster -landis -landrum -landry -landy -lane -lang -langer -langlois -langston -laning -lankford -lankshear -lanmaster -lanner -lantrip -lapouchnian -lara -larcom -lard -larkins -larouche -larsen -larson -larsén -last -lathrop -latimbre -lau -laughlin -lauzon -lavoy -lawhead -lawler -lawrence -lawson -lazar -leach -lear -leblanc -ledenmark -lee -leekeirl -leech -leeper -lefler -leger -lehman -lehtovaara -leib -leitao -leitch -lemke -lemons -lengyel -lenhart -lennox -lentini -leon -leonard -leong -lester -letarte -letendre -lett -levesque -lewallen -lewis -libis -licata -lifson -light -lightstone -lilgert -lima -limetsch -linares -lindquist -lindsay -lindsey -lindwedel -linek -lines -linge -linker -linkogel -linson -linus -lipe -lipps -list -little -litzsinger -liu -livingood -livingston -lizot -llanos -lloyd -lochridge -lockhart -loenders -logan -lograsso -lohr -lombard -lombardi -london -long -longenecker -longnecker -loomis -looney -loose -lopez -lord -lorenzo -loring -lorton -lough -loughrie -louhr -lound -love -lovejoy -lovell -lowe -lowell -lowery -lownes -loye -lucas -luce -lucius -lucko -ludwick -ludwig -luissalcines -lulic -luna -lund -lundberg -lura -luthe -luther -lutz -lux -luzadder -lyle -lynch -lynn -lyon -lyons -mabe -mabson -maccuuladh -macdonald -macgillivray -mackellar -mackenzie -macpherson -macedo -macey -machin -mack -mackey -macomber -madore -maender -magalhaes -maheu -maho -mahoney -majakari -major -malcom -maldonado -malicoat -malin -mallet -mallett -mallory -malone -malos -malzone -mamone -manaev -mandel -mandula -mann -manning -mansfield -manson -mantione -manuel -marabotto -marbach -marbourgh -march -marchant -marie -markovic -marks -marler -marple -marquez -marquis -marr -marriott -marsden -marsh -marshall -martin -martinez -marting -marttila -mary -mason -massey -mast -masters -mastrantuono -matheson -mathews -mathias -mathis -matthews -matthias -mattingly -mattli -mauger -maulana -maule -maus -mawdsley -maxey -maxson -maxwell -may -mayandon -mayberry -mayes -mayhew -maynard -mayo -mayow -mays -mazza -mcalexander -mcalister -mcallister -mcaree -mcarthur -mcbride -mccafferty -mccall -mccallister -mccarra -mccarthy -mccauley -mcclain -mcclellan -mccleskey -mccloud -mcclung -mcclure -mccollum -mcconnell -mccormick -mccowan -mccoy -mccracken -mccullough -mccumiskey -mccurdy -mcdaniel -mcdaniels -mcdermott -mcdonal -mcdonald -mcdonnell -mcdonough -mcdormand -mcdowell -mceachern -mcelroy -mcelveen -mcfarland -mcgee -mcgraw -mcgrew -mcguire -mcilveen -mcintosh -mcintyre -mckean -mckee -mckeever -mckenstrie -mckenzie -mckinney -mckinstrie -mclafferty -mclaggan -mclain -mclaughlin -mclean -mcleod -mcmahon -mcmanus -mcmclain -mcmillan -mcmurtrie -mcnair -mcnamara -mcpherson -mcquarrie -mcqueen -mcrae -mcspadden -mcswain -mcvicker -mcwilliams -meaden -means -meddemmen -medina -medler -medley -medlin -meech -meek -meeks -megginson -meier -meiners -meinhart -mejia -melber -mellinger -melton -melvin -mendenhall -mendez -mendoza -mercado -mercer -mercier -mercille -meredith -merkel -merkle -mermann -merriman -merritt -mesman -messier -metz -metzger -meyer -meyers -michalowski -middleton -miethe -mikhailovsky -mikilas -miklos -milam -miles -miller -millett -mills -milne -milner -milton -minchin -miner -minnich -minshall -minster -minville -miranda -mironin -misik -miskerik -mistry -mitchelhill -mitchell -mitchelmore -miville -moale -moats -mock -moehlenhoff -moehlenkamp -moeller -moenkhoff -mohler -mohow -molina -moller -monfort -monroe -monsees -monsona -montagna -montague -montes -montgomery -montoya -moody -moon -mooney -moore -moose -morales -moran -morehead -moreno -morgan -morin -morowitz -morphett -morrice -morris -morrison -morrow -morse -mortensen -morton -moschner -moseley -moses -mosley -moss -mosser -mouser -moushey -moxley -moyer -moyle -moyles -moynahan -mraz -mros -mudd -mueller -mukhtar -mulholland -muller -mullinix -mullins -munday -mundy -munoz -munro -munson -muntz -murdock -murphy -murr -murray -muse -musgrove -musil -mussbach -musselman -muszer -mutel -myers -naes -nagashima -nagle -nahm -nalazek -nanney -narayan -narciso -nash -nason -naumann -navarro -nave -neal -neale -nebdal -neece -neel -neff -neilson -nellen -nelson -nemmo -nester -nestor -newlon -newman -newsham -newton -nguyen -nichols -nicholson -nicodei -nicoll -niemeyer -nies -nixon -noble -nolan -nord -norman -norris -norton -norwell -norwood -noud -novaes -novak -nuchter -nunes -nunez -nuttall -nuzum -nyulassy -o'brien -o'connell -o'conner -o'grady -o'hara -o'leary -o'malley -o'meara -o'neil -ober -oberbeck -oberholser -oberholtzer -oberholzer -oberosler -obrecht -obrien -oconnor -octeau -oehrke -ogden -oge -oger -ogier -ogle -oh -ohlinger -ohlsen -olesen -oleynik -olive -oliveira -oliver -ollive -olsen -olson -omond -oneal -opeloyer -opeloyeru -ora -orlando -orosz -orr -ortega -ortiz -osage -osborn -osborne -osgood -ossenfort -osula -ott -otterstad -ottman -otto -ouellet -ouellette -overholser -overstreet -owen -owens -owsley -pace -pacheco -pack -padilla -paganto -page -painter -pala -palmer -paluzga -panda -paolo -paquette -paquin -pardue -pardy -park -parke -parker -parkhill -parks -parr -parrinello -parrish -parsons -paschke -pastori -pastrick -patel -patrick -patterson -patton -paul -paulet -pauley -paulsen -pauly -paumelle -pavlin -pavlock -paxson -payne -peak -pearah -pearce -pearson -peck -peddlesden -peden -pedersen -pedigo -pelky -pelles -pena -pence -pendleton -pengry -penka -penley -penn -pennell -pennington -penrose -pentelbury -peoples -pepper -perera -perez -perkins -perotti -perren -perrin -perriseau -perry -person -persson -peterman -peters -petersen -peterson -petri -petrig -petrounakou -pettigrew -pettit -pettus -peyrot -peyton -pfaff -pfitzenger -phelps -phillips -phipps -piastra -pickard -pickett -pickle -pierce -pilger -pilkington -pilkinton -pinckley -pinkel -pinzer -pirnar -pirtle -pit -pittman -pitts -placzkavich -plante -player -pleis -pletcher -ploesser -ploog -plumb -plummer -pocock -pogrelis -politte -pollock -poole -poos -pope -poppe -portell -porter -porto -post -potten -potter -potts -poulet -pound -powell -powers -prather -pratt -prebit -preisendorf -prence -presley -preston -prevost -price -priester -prince -proctor -proffitt -prospero -proudfoot -pruitt -przybyl -puckett -pugh -pulliam -pullins -pullman -purdy -purvis -putnam -putney -putt -quattlebaum -queen -quell -quella -quelle -quick -quigley -quince -quinn -quintelier -quinton -quisenberry -raburn -racine -rader -radley -raffo -ragsdale -rahm -rahn -raine -raines -rains -rainwater -rakar -ralston -ramirez -ramos -ramsberg -ramsey -randall -randolph -raney -rangan -rangefelt -rash -rasmussen -rason -ratcliff -rate -rathfon -rathman -ratje -ratner -raupp -ravenscraft -rawls -ray -raygor -raymond -rea -reagan -rebman -redd -reece -reed -reese -reeser -reeves -regan -regester -regot -reich -reicter -reid -reilly -reinholz -reinke -reiser -reiter -reitz -rekart -rekutin -renfro -renfrow -reno -rentchler -resch -retherford -rexdale -reyes -reynold -reynolds -rhatigan -rhoades -rhodelander -rhodes -ribeiro -riccio -rice -rich -richard -richards -richardson -richmond -richter -richwine -ricketts -riddick -rider -ridgeway -ridout -riebold -riese -rigdon -riggs -righi -riley -rinback -rines -ringen -ringler -rinner -rios -ritchey -ritchie -riton -rittenhouse -ritter -rivas -rivera -rivers -robb -robbins -roberson -roberts -robertson -robins -robinson -robison -robles -robson -rodgers -rodriguez -rodriquez -roe -roebrant -roebuck -roesch -roess -roessler -rogai -roger -rogers -rojas -rolen -rolfe -rollings -rollins -roman -romand -romero -romig -romkes -rondel -root -roper -ropp -roques -rosa -rosati -rose -rosemann -rosenthal -rosier -ross -roth -rothgeb -rott -rottler -roudebush -roundtree -rountree -rowden -rowe -rowland -rowlandson -roy -rudolph -ruess -ruggles -ruhl -ruiz -rullan -rumbaugh -rundle -runfola -rupiper -ruppel -rush -russell -russo -ruth -rutherfoord -rutzel -ryan -rynders -rypstra -röther -sackwell -saffel -saffle -saffold -safuan -sahlstrom -sajid -salazar -salinas -salles -salmon -salsbury -samson -sanchez -sander -sanders -sandoval -sanford -sanfrod -saniter -santiago -santoni -santos -sapp -sappington -sarel -sargent -sas -satterfield -sauder -saunders -savage -savic -saville -savoie -sawyer -saye -sayre -scales -schaeffer -schaffnitt -schamberger -schanze -schasteen -schaumberger -schenk -schilders -schipper -schirmer -schlegel -schlitzer -schlobohm -schmeis -schmid -schmidt -schmitt -schmitz -schmuck -schneider -schoenberger -schofield -scholfield -schommer -schooley -schoonover -schopp -schowengerdt -schrack -schrader -schreiber -schreiner -schrick -schrier -schrimpf -schrimpshire -schrimscher -schrimsher -schrimshire -schroeder -schrupple -schubert -schuchman -schuit -schulte -schultz -schumacher -schumaker -schuman -schumann -schutte -schwab -schwartz -schwartzkopf -schweer -schweikert -schweiss -schwenderman -sciurba -scofield -scott -scrimpshire -scrimsher -scrimshire -scroggins -seal -seaman -sears -sebren -sebring -sedgwick -seely -seguinverner -seipel -seith -selby -self -selivanov -sellen -sellers -senff -sensenig -serrano -setiadji -settergren -sever -seward -sexton -shackles -shaffer -shailes -shands -shank -shannon -shapely -shapiro -sharp -sharples -shasserre -shaw -sheahan -sheets -shelton -shenefelt -shepard -shepherd -sheppard -shepperd -sherman -sherrill -sherry -sherwood -shewmaker -shieh -shields -shilnikov -shim -shimek -shingleton -shipley -shipman -shirk -shober -shoemaker -short -shorter -shriver -shull -shurley -sibley -sickles -siebers -siechrist -siegrist -siemann -sigman -silberman -silberstein -silva -silverman -silvernagel -simenic -simko -simmons -simms -simoes -simon -simons -simpson -sims -singletary -singleton -sirigos -sisk -siu -sizer -sjostrom -skaggard -skaggs -skiles -skillman -skinner -slagle -slark -slater -slaughter -slierendrecht -sloan -sloper -slouber -small -smead -smedley -smeets -smith -smits -smoak -smolar -snow -snowden -snyder -solimano -solis -solomon -sommerkamp -somphan -sorenson -soto -soucy -soulman -sousa -southerland -southern -sowers -spaeti -spahn -spalding -spangler -sparks -speaker -spears -specht -spector -speidel -spencer -spirek -spires -spoel -spoon -spoth -srock -staebler -stafford -stahl -staley -stam -stambaugh -stamm -standiford -stanley -stansberry -staples -starensier -stark -starnes -stasulat -stauffer -stedman -steele -steely -stefanelli -stein -steinemann -stendahl -stephens -stephenson -sterling -stevens -stevenson -steward -stewart -stice -still -stine -stinton -stirk -stock -stockton -stokes -stoll -stoltz -stone -stones -storey -storm -stout -stoyell -strader -straher -strang -strauss -streets -streing -strickland -stroetinga -strohm -strong -strozewski -strum -stuart -sturdivant -sturgess -sturgis -stutzman -suarez -sublett -suddath -suggs -sullins -sullivan -summerfield -summers -summey -summy -sunderman -sunderwirth -sundgren -supawanich -sutcliffe -sutherland -sutton -svedin -svendsen -svensson -swaim -swaine -swally -swanson -swartz -swasey -sweeney -sweet -swenson -swift -swisher -sypher -tackes -taliaferro -talipsky -tamietti -tan -tang -tank -tanner -tapp -tappert -tardif -tate -tauschek -taylor -teem -teeter -teets -temple -templeton -templin -tenny -teppen -terrill -terry -tesche -tesi -tessier -tetrick -tharp -thatcher -thibault -thibaut -thibodeau -thierer -thies -thill -thomas -thomerson -thompson -thomson -thorn -thornhill -thornton -thorup -thrower -thursfield -thys -tidwell -tierney -tilley -tillman -timberlake -timchenko -timm -timmons -tinker -todd -tol -tolbert -tomlinson -toomer -toothaker -topping -torrence -torres -touchstone -toupin -townend -townsend -tracy -tran -traudt -traugott -trautmann -traxler -trego -trent -trethewey -trevino -triggs -triplett -trone -trout -troutman -troutt -trovato -troxler -truesdale -truetzel -trujillo -trump -tschikowsky -tshudy -tuck -tucker -tukker -turberville -turner -turrentine -turén -tuttle -tweed -twiford -tyler -tyson -ulich -uliel -underwood -upton -utt -valverde -valdez -valentine -vance -vanik -vann -varga -vargas -varner -vartiainen -varvel -vasquez -vaughan -vaughn -vaught -vawter -vazquez -veenvliet -vega -vehlewald -velasquez -velez -velonis -vendt -venters -ventres -ventress -vergason -vernon -vigar -vigle -villalobos -villarreal -vincent -vinner -virga -virkelyst -vitali -vitro -viverett -vogel -vogelgesang -voldi -von pilkington -voss -vuille -vunovich -wack -wade -wager -waggoner -wagner -wagstaff -wakefield -walker -wall -wallace -waller -wallis -walls -walmsley -walsh -walter -walters -waltman -walton -wang -ward -warden -ware -wark -warner -warren -warwick -washington -wass -waterham -waterkotte -waterman -waters -watkins -watson -watts -weaver -webb -webber -weber -weble -webster -weekley -weeks -wegener -weikert -weiler -weimer -weiner -weismuller -weiss -weitzel -welby -welch -wellons -wells -welsh -wenger -wentland -werhner -werner -wesley -wesolowski -wessel -wessels -west -weston -westphal -westwood -wetzel -whaples -wheat -wheeler -whelan -wherley -whitaker -white -whitehead -whitford -whiting -whitman -whitney -whitsett -whitsitt -whitson -whitwam -whitworth -wickenhauser -wickliffe -wicks -wideman -wiegand -wiegratz -wiggins -wiklund -wilcox -wilcoxon -wilder -wildermuth -wiley -wilkerson -wilkin -wilkins -wilkinson -will -willcut -willey -william -williams -williamson -willis -willmes -willoughby -willowspond -wills -wilmoth -wilson -winfrey -wingard -wingate -wingenfeld -wink -winn -winslow -winston -winter -wintermute -winters -wintle -winton -wischmeyer -wisdom -wise -wiseman -wissman -withers -witmer -witt -witte -woelk -wofford -wognum -wolf -wolfe -wolkey -wolters -wolz -womack -wong -wood -woodard -woodbury -wooding -woodring -woods -woodson -woodward -woolery -woolf -wooten -wordsworth -worman -worrall -worrell -worrilow -wosnuk -wrage -wren -wright -wustenhagen -wyatt -wyttenbach -yahn -yancey -yap -yarnall -yates -yeager -yeomans -yerger -yoch -yogho -york -young -younglove -yount -yoxall -zaegel -zaitsev -zarnits -zbaren -zeller -zeni -zimmerman -zinselmeier -zondler -zorzano -zumwalt -zwicker diff --git a/RGens/data/sample-grammars/long-data/last-syllable.gram b/RGens/data/sample-grammars/long-data/last-syllable.gram new file mode 100644 index 0000000..ed08a6e --- /dev/null +++ b/RGens/data/sample-grammars/long-data/last-syllable.gram @@ -0,0 +1,9 @@ +on +ly +er +son +row +way +s +ton +dale diff --git a/RGens/data/sample-grammars/long-data/last-syllable.long b/RGens/data/sample-grammars/long-data/last-syllable.long deleted file mode 100644 index ed08a6e..0000000 --- a/RGens/data/sample-grammars/long-data/last-syllable.long +++ /dev/null @@ -1,9 +0,0 @@ -on -ly -er -son -row -way -s -ton -dale diff --git a/RGens/data/sample-grammars/long-data/letter.gram b/RGens/data/sample-grammars/long-data/letter.gram new file mode 100644 index 0000000..0edb856 --- /dev/null +++ b/RGens/data/sample-grammars/long-data/letter.gram @@ -0,0 +1,26 @@ +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 diff --git a/RGens/data/sample-grammars/long-data/letter.long b/RGens/data/sample-grammars/long-data/letter.long deleted file mode 100644 index 0edb856..0000000 --- a/RGens/data/sample-grammars/long-data/letter.long +++ /dev/null @@ -1,26 +0,0 @@ -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 diff --git a/RGens/data/sample-grammars/long-data/middle-initial.gram b/RGens/data/sample-grammars/long-data/middle-initial.gram new file mode 100644 index 0000000..ed3bb3d --- /dev/null +++ b/RGens/data/sample-grammars/long-data/middle-initial.gram @@ -0,0 +1,18 @@ +a +b +c +d +e +f +g +h +j +k +l +m +n +o +p +r +s +t diff --git a/RGens/data/sample-grammars/long-data/middle-initial.long b/RGens/data/sample-grammars/long-data/middle-initial.long deleted file mode 100644 index ed3bb3d..0000000 --- a/RGens/data/sample-grammars/long-data/middle-initial.long +++ /dev/null @@ -1,18 +0,0 @@ -a -b -c -d -e -f -g -h -j -k -l -m -n -o -p -r -s -t diff --git a/RGens/data/sample-grammars/long-data/nation.gram b/RGens/data/sample-grammars/long-data/nation.gram new file mode 100644 index 0000000..9f1b503 --- /dev/null +++ b/RGens/data/sample-grammars/long-data/nation.gram @@ -0,0 +1,218 @@ +afghanistan +albania +algeria +american samoa +andorra +angola +anguilla +antarctica +antigua +argentina +armenia +aruba +australia +austria +azerbaijan +bahamas +bahrain +bangladesh +barbados +belarus +belgium +belize +benin +bermuda +bhutan +bolivia +bosnia and herzegovina +botswana +brazil +brunei +bulgaria +burkina faso +burma +burundi +cambodia +cameroon +canada +cape verde +central african republic +chad +chile +china +colombia +comoros +congo +cook islands +costa rica +cote d'ivoire +croatia +cuba +cyprus +czech republic +denmark +djibouti +dominica +dominican republic +ecuador +egypt +el salvador +equatorial guinea +eritrea +estonia +ethiopia +falkland islands +fiji +finland +france +french guiana +french polynesia +gabon +the gambia +georgia +germany +ghana +gibraltar +greece +greenland +grenada +guadeloupe +guam +guatemala +guinea +guinea-bissau +guyana +haiti +the holy see +honduras +hong kong +hungary +iceland +india +indonesia +iran +iraq +ireland +israel +italy +jamaica +japan +jordan +kazakhstan +kenya +kiribati +kuwait +kyrgyzstan +laos +latvia +lebanon +lesotho +liberia +libya +liechtenstein +lithuania +luxembourg +macau +macedonia +madagascar +malawi +malaysia +maldives +mali +malta +marshall islands +martinique +mauritania +mauritius +mayotte +mexico +federated states of micronesia +moldova +monaco +mongolia +montserrat +morocco +mozambique +namibia +nauru +nepal +netherlands +netherlands antilles +new caledonia +new zealand +nicaragua +niger +nigeria +north korea +northern mariana islands +norway +oman +pakistan +palau +panama +papua new guinea +paraguay +peru +philippines +pitcairn islands +poland +portugal +puerto rico +qatar +reunion +romania +russia +rwanda +saint kitts and nevis +saint lucia +saint pierre and miquelon +saint vincent and the grenadines +samoa +san marino +sao tome and principe +saudi arabia +senegal +seychelles +sierra leone +singapore +slovakia +slovenia +solomon islands +somalia +south africa +south korea +spain +sri lanka +sudan +suriname +swaziland +sweden +switzerland +syria +taiwan +tajikistan +tanzania +thailand +togo +tonga +trinidad and tobago +tunisia +turkey +turkmenistan +turks and caicos islands +tuvalu +uganda +ukraine +united arab emirates +united kingdom +united states +uruguay +uzbekistan +vanuatu +venezuela +vietnam +western sahara +yemen +zaire +zambia +zimbabwe diff --git a/RGens/data/sample-grammars/long-data/nation.long b/RGens/data/sample-grammars/long-data/nation.long deleted file mode 100644 index 9f1b503..0000000 --- a/RGens/data/sample-grammars/long-data/nation.long +++ /dev/null @@ -1,218 +0,0 @@ -afghanistan -albania -algeria -american samoa -andorra -angola -anguilla -antarctica -antigua -argentina -armenia -aruba -australia -austria -azerbaijan -bahamas -bahrain -bangladesh -barbados -belarus -belgium -belize -benin -bermuda -bhutan -bolivia -bosnia and herzegovina -botswana -brazil -brunei -bulgaria -burkina faso -burma -burundi -cambodia -cameroon -canada -cape verde -central african republic -chad -chile -china -colombia -comoros -congo -cook islands -costa rica -cote d'ivoire -croatia -cuba -cyprus -czech republic -denmark -djibouti -dominica -dominican republic -ecuador -egypt -el salvador -equatorial guinea -eritrea -estonia -ethiopia -falkland islands -fiji -finland -france -french guiana -french polynesia -gabon -the gambia -georgia -germany -ghana -gibraltar -greece -greenland -grenada -guadeloupe -guam -guatemala -guinea -guinea-bissau -guyana -haiti -the holy see -honduras -hong kong -hungary -iceland -india -indonesia -iran -iraq -ireland -israel -italy -jamaica -japan -jordan -kazakhstan -kenya -kiribati -kuwait -kyrgyzstan -laos -latvia -lebanon -lesotho -liberia -libya -liechtenstein -lithuania -luxembourg -macau -macedonia -madagascar -malawi -malaysia -maldives -mali -malta -marshall islands -martinique -mauritania -mauritius -mayotte -mexico -federated states of micronesia -moldova -monaco -mongolia -montserrat -morocco -mozambique -namibia -nauru -nepal -netherlands -netherlands antilles -new caledonia -new zealand -nicaragua -niger -nigeria -north korea -northern mariana islands -norway -oman -pakistan -palau -panama -papua new guinea -paraguay -peru -philippines -pitcairn islands -poland -portugal -puerto rico -qatar -reunion -romania -russia -rwanda -saint kitts and nevis -saint lucia -saint pierre and miquelon -saint vincent and the grenadines -samoa -san marino -sao tome and principe -saudi arabia -senegal -seychelles -sierra leone -singapore -slovakia -slovenia -solomon islands -somalia -south africa -south korea -spain -sri lanka -sudan -suriname -swaziland -sweden -switzerland -syria -taiwan -tajikistan -tanzania -thailand -togo -tonga -trinidad and tobago -tunisia -turkey -turkmenistan -turks and caicos islands -tuvalu -uganda -ukraine -united arab emirates -united kingdom -united states -uruguay -uzbekistan -vanuatu -venezuela -vietnam -western sahara -yemen -zaire -zambia -zimbabwe diff --git a/RGens/data/sample-grammars/long-data/natural-color.gram b/RGens/data/sample-grammars/long-data/natural-color.gram new file mode 100644 index 0000000..8830962 --- /dev/null +++ b/RGens/data/sample-grammars/long-data/natural-color.gram @@ -0,0 +1,6 @@ +red +black +blue +green +white +yellow diff --git a/RGens/data/sample-grammars/long-data/natural-color.long b/RGens/data/sample-grammars/long-data/natural-color.long deleted file mode 100644 index 8830962..0000000 --- a/RGens/data/sample-grammars/long-data/natural-color.long +++ /dev/null @@ -1,6 +0,0 @@ -red -black -blue -green -white -yellow diff --git a/RGens/data/sample-grammars/long-data/number-word.gram b/RGens/data/sample-grammars/long-data/number-word.gram new file mode 100644 index 0000000..c9e9e05 --- /dev/null +++ b/RGens/data/sample-grammars/long-data/number-word.gram @@ -0,0 +1,10 @@ +one +two +three +four +five +six +seven +eight +nine +ten diff --git a/RGens/data/sample-grammars/long-data/number-word.long b/RGens/data/sample-grammars/long-data/number-word.long deleted file mode 100644 index c9e9e05..0000000 --- a/RGens/data/sample-grammars/long-data/number-word.long +++ /dev/null @@ -1,10 +0,0 @@ -one -two -three -four -five -six -seven -eight -nine -ten diff --git a/RGens/data/sample-grammars/long-data/ordinal.gram b/RGens/data/sample-grammars/long-data/ordinal.gram new file mode 100644 index 0000000..bfbf47b --- /dev/null +++ b/RGens/data/sample-grammars/long-data/ordinal.gram @@ -0,0 +1,12 @@ +first +second +third +fourth +fifth +sixth +seventh +eighth +ninth +tenth +eleventh +twelfth diff --git a/RGens/data/sample-grammars/long-data/ordinal.long b/RGens/data/sample-grammars/long-data/ordinal.long deleted file mode 100644 index bfbf47b..0000000 --- a/RGens/data/sample-grammars/long-data/ordinal.long +++ /dev/null @@ -1,12 +0,0 @@ -first -second -third -fourth -fifth -sixth -seventh -eighth -ninth -tenth -eleventh -twelfth diff --git a/RGens/data/sample-grammars/long-data/planet.gram b/RGens/data/sample-grammars/long-data/planet.gram new file mode 100644 index 0000000..0b28274 --- /dev/null +++ b/RGens/data/sample-grammars/long-data/planet.gram @@ -0,0 +1,8 @@ +mercury +venus +mars +jupiter +saturn +uranus +neptune +pluto diff --git a/RGens/data/sample-grammars/long-data/planet.long b/RGens/data/sample-grammars/long-data/planet.long deleted file mode 100644 index 0b28274..0000000 --- a/RGens/data/sample-grammars/long-data/planet.long +++ /dev/null @@ -1,8 +0,0 @@ -mercury -venus -mars -jupiter -saturn -uranus -neptune -pluto diff --git a/RGens/data/sample-grammars/long-data/real-city.gram b/RGens/data/sample-grammars/long-data/real-city.gram new file mode 100644 index 0000000..0f787ce --- /dev/null +++ b/RGens/data/sample-grammars/long-data/real-city.gram @@ -0,0 +1,76 @@ +birmingham +anchorage +mesa +phoenix +tucson +anaheim +fresno +long beach +los angeles +oakland +riverside +sacramento +san diego +san francisco +san jose +santa ana +stockton +aurora +colorado springs +denver +washington +jacksonville +miami +st. petersburg +tampa +atlanta +honolulu +chicago +indianapolis +wichita +lexington +louisville +baton rouge +new orleans +baltimore +boston +detroit +minneapolis +st. paul +kansas city +st. louis +omaha +las vegas +jersey city +newark +albuquerque +buffalo +new york +rochester +charlotte +raleigh +akron +cincinnati +cleveland +columbus +toledo +oklahoma city +tulsa +portland +philadelphia +pittsburgh +memphis +nashville +arlington +austin +corpus christi +dallas +el paso +fort worth +houston +san antonio +norfolk +richmond +virginia beach +seattle +milwaukee diff --git a/RGens/data/sample-grammars/long-data/real-city.long b/RGens/data/sample-grammars/long-data/real-city.long deleted file mode 100644 index 0f787ce..0000000 --- a/RGens/data/sample-grammars/long-data/real-city.long +++ /dev/null @@ -1,76 +0,0 @@ -birmingham -anchorage -mesa -phoenix -tucson -anaheim -fresno -long beach -los angeles -oakland -riverside -sacramento -san diego -san francisco -san jose -santa ana -stockton -aurora -colorado springs -denver -washington -jacksonville -miami -st. petersburg -tampa -atlanta -honolulu -chicago -indianapolis -wichita -lexington -louisville -baton rouge -new orleans -baltimore -boston -detroit -minneapolis -st. paul -kansas city -st. louis -omaha -las vegas -jersey city -newark -albuquerque -buffalo -new york -rochester -charlotte -raleigh -akron -cincinnati -cleveland -columbus -toledo -oklahoma city -tulsa -portland -philadelphia -pittsburgh -memphis -nashville -arlington -austin -corpus christi -dallas -el paso -fort worth -houston -san antonio -norfolk -richmond -virginia beach -seattle -milwaukee diff --git a/RGens/data/sample-grammars/long-data/real-company.gram b/RGens/data/sample-grammars/long-data/real-company.gram new file mode 100644 index 0000000..f32f028 --- /dev/null +++ b/RGens/data/sample-grammars/long-data/real-company.gram @@ -0,0 +1,207 @@ +3com +aflac +at&t +ace hardware +aetna +aid association for lutherans +albertson's +allstate +alltel +amerenue +america online +american express +american general +ames department stores +anheuser-busch +apple computer +archer daniels midland +autozone +avis rent a car +avon products +b.f. goodrich +bank of america corp. +barnes & noble +bell atlantic +bellsouth +berkshire hathaway +best buy +black & decker +boeing +bristol-myers squibb +burlington northern santa fe +cbs +cvs +cablevision systems +campbell soup +caterpillar +cendant +charles schwab +chase manhattan corp. +chevron +cigna +cinergy +circuit city group +cisco systems +citigroup +clorox +coastal +coca-cola +colgate-palmolive +columbia/hca healthcare +comcast +comerica +compusa +compaq computer +computer associates intl. +conagra +conoco +conseco +continental airlines +corning +costco wholesale +dana +dell computer +delta air lines +dillard's +dole food +dollar general +dow chemical +eastman kodak +eli lilly +este lauder +exxon mobil +fannie mae +farmland industries +fedex +firstar corp. +fleetwood enterprises +ford motor +gte +gannett +gap +gateway +general electric +general mills +general motors +gillette +goldman sachs group +goodyear tire & rubber +h.j. heinz +hartford financial services +hasbro +healthsouth +hershey foods +hewlett-packard +home depot +honeywell international +hormel foods +itt industries +ikon office solutions +ingersoll-rand +intel +ibm +j.c. penney +j.p. morgan & co. +john hancock financial services +johnson & johnson +kellogg +kimberly-clark +kmart +knight-ridder +kroger +lexmark international +lockheed martin +lowe's +lucent technologies +mci worldcom +marriott international +mattel +maytag +mcdonald's +mcgraw-hill +merck +merrill lynch +metropolitan life insurance +micron technology +microsoft +monsanto +morgan stanley dean witter +motorola +mutual of omaha insurance +ncr +nabisco group holdings +new york life insurance +new york times +newell rubbermaid +nextel communications +nike +nordstrom +northwest airlines +office depot +officemax +oracle +owens corning +paine webber group +pepsico +pfizer +pharmacia & upjohn +philip morris +procter & gamble +providian financial +prudential ins. co. of america +quaker oats +qualcomm +quantum +qwest communications +r. j. reynolds tobacco +ralston purina +raytheon +rockwell international +sbc communications +safeway +saks +sara lee +seagate technology +sears roebuck +servicemaster +sherwin-williams +shopko stores +sodexho marriott services +southwest airlines +sprint +staples +state farm insurance cos. +sun microsystems +suntrust banks +sunoco +supervalu +tandy +target +tenet healthcare +texaco +texas instruments +time warner +times mirror +toys `r' us +trans world airlines +tyson foods +u.s. bancorp +us airways group +us west +ultramar diamond shamrock +union carbide +union pacific +unisys +united parcel service +unitedhealth group +universal +viacom +wal-mart stores +walgreen +walt disney +warner-lambert +wells fargo +weyerhaeuser +whirlpool +winn-dixie stores +xerox diff --git a/RGens/data/sample-grammars/long-data/real-company.long b/RGens/data/sample-grammars/long-data/real-company.long deleted file mode 100644 index f32f028..0000000 --- a/RGens/data/sample-grammars/long-data/real-company.long +++ /dev/null @@ -1,207 +0,0 @@ -3com -aflac -at&t -ace hardware -aetna -aid association for lutherans -albertson's -allstate -alltel -amerenue -america online -american express -american general -ames department stores -anheuser-busch -apple computer -archer daniels midland -autozone -avis rent a car -avon products -b.f. goodrich -bank of america corp. -barnes & noble -bell atlantic -bellsouth -berkshire hathaway -best buy -black & decker -boeing -bristol-myers squibb -burlington northern santa fe -cbs -cvs -cablevision systems -campbell soup -caterpillar -cendant -charles schwab -chase manhattan corp. -chevron -cigna -cinergy -circuit city group -cisco systems -citigroup -clorox -coastal -coca-cola -colgate-palmolive -columbia/hca healthcare -comcast -comerica -compusa -compaq computer -computer associates intl. -conagra -conoco -conseco -continental airlines -corning -costco wholesale -dana -dell computer -delta air lines -dillard's -dole food -dollar general -dow chemical -eastman kodak -eli lilly -este lauder -exxon mobil -fannie mae -farmland industries -fedex -firstar corp. -fleetwood enterprises -ford motor -gte -gannett -gap -gateway -general electric -general mills -general motors -gillette -goldman sachs group -goodyear tire & rubber -h.j. heinz -hartford financial services -hasbro -healthsouth -hershey foods -hewlett-packard -home depot -honeywell international -hormel foods -itt industries -ikon office solutions -ingersoll-rand -intel -ibm -j.c. penney -j.p. morgan & co. -john hancock financial services -johnson & johnson -kellogg -kimberly-clark -kmart -knight-ridder -kroger -lexmark international -lockheed martin -lowe's -lucent technologies -mci worldcom -marriott international -mattel -maytag -mcdonald's -mcgraw-hill -merck -merrill lynch -metropolitan life insurance -micron technology -microsoft -monsanto -morgan stanley dean witter -motorola -mutual of omaha insurance -ncr -nabisco group holdings -new york life insurance -new york times -newell rubbermaid -nextel communications -nike -nordstrom -northwest airlines -office depot -officemax -oracle -owens corning -paine webber group -pepsico -pfizer -pharmacia & upjohn -philip morris -procter & gamble -providian financial -prudential ins. co. of america -quaker oats -qualcomm -quantum -qwest communications -r. j. reynolds tobacco -ralston purina -raytheon -rockwell international -sbc communications -safeway -saks -sara lee -seagate technology -sears roebuck -servicemaster -sherwin-williams -shopko stores -sodexho marriott services -southwest airlines -sprint -staples -state farm insurance cos. -sun microsystems -suntrust banks -sunoco -supervalu -tandy -target -tenet healthcare -texaco -texas instruments -time warner -times mirror -toys `r' us -trans world airlines -tyson foods -u.s. bancorp -us airways group -us west -ultramar diamond shamrock -union carbide -union pacific -unisys -united parcel service -unitedhealth group -universal -viacom -wal-mart stores -walgreen -walt disney -warner-lambert -wells fargo -weyerhaeuser -whirlpool -winn-dixie stores -xerox diff --git a/RGens/data/sample-grammars/long-data/relative.gram b/RGens/data/sample-grammars/long-data/relative.gram new file mode 100644 index 0000000..74c9d7e --- /dev/null +++ b/RGens/data/sample-grammars/long-data/relative.gram @@ -0,0 +1,10 @@ +father +mother +uncle +aunt +grandmother +grandfather +sister +brother +cousin +mother-in-law diff --git a/RGens/data/sample-grammars/long-data/relative.long b/RGens/data/sample-grammars/long-data/relative.long deleted file mode 100644 index 74c9d7e..0000000 --- a/RGens/data/sample-grammars/long-data/relative.long +++ /dev/null @@ -1,10 +0,0 @@ -father -mother -uncle -aunt -grandmother -grandfather -sister -brother -cousin -mother-in-law diff --git a/RGens/data/sample-grammars/long-data/roman-numeral.gram b/RGens/data/sample-grammars/long-data/roman-numeral.gram new file mode 100644 index 0000000..b21d14a --- /dev/null +++ b/RGens/data/sample-grammars/long-data/roman-numeral.gram @@ -0,0 +1,10 @@ +I +II +III +IV +V +VI +VII +VIII +IX +X diff --git a/RGens/data/sample-grammars/long-data/roman-numeral.long b/RGens/data/sample-grammars/long-data/roman-numeral.long deleted file mode 100644 index b21d14a..0000000 --- a/RGens/data/sample-grammars/long-data/roman-numeral.long +++ /dev/null @@ -1,10 +0,0 @@ -I -II -III -IV -V -VI -VII -VIII -IX -X diff --git a/RGens/data/sample-grammars/long-data/syllable.gram b/RGens/data/sample-grammars/long-data/syllable.gram new file mode 100644 index 0000000..ee27d49 --- /dev/null +++ b/RGens/data/sample-grammars/long-data/syllable.gram @@ -0,0 +1,530 @@ +ab +ack +ag +ad +al +an +ar +at +ash +as +augh +ay +au +ba +bab +bat +bal +ban +bar +bau +be +bee +bel +ben +ber +bes +bet +bil +bin +big +bir +bis +bla +black +blan +blat +bled +blo +bly +bock +bod +bol +bon +boo +bop +bor +bos +bot +bow +boy +bra +brad +bram +bran +bras +brau +bren +brew +bri +bro +brow +bru +brun +bry +buc +bud +bul +bur +burn +bus +bush +by +ca +cal +can +cant +car +carl +cap +cat +cer +cha +chan +chap +chas +che +chi +chis +chu +cla +clar +clay +cli +cler +coal +coat +cob +cod +col +com +con +coo +cop +cor +cow +cra +craw +cro +cub +cum +cun +cur +dab +dag +dal +dan +dar +day +dear +der +del +dem +den +der +des +dick +dir +dix +dil +dim +din +dis +dock +dod +dol +dom +don +dor +dos +doy +dow +dra +dre +dru +dry +dub +dud +duck +dul +dum +dun +dur +dwel +dye +eat +eck +ed +el +ell +elm +eng +ep +erk +er +esp +esh +fair +fan +far +fal +fam +fen +fel +fer +fid +fir +fin +flack +fla +flet +fly +fol +for +foo +fox +fran +free +fred +fre +fri +fry +fro +ful +fun +gal +gan +gar +gain +gat +gee +geer +gib +gil +gill +glas +gol +gold +good +gor +gos +gra +gree +green +gri +grif +gris +gro +gun +gush +gut +hack +hag +hal +hall +ham +hamp +han +har +hart +hat +haw +hear +heb +hel +hen +her +hes +hig +hick +hil +hip +hod +hol +hoo +hop +hor +how +hub +hud +hun +hur +ice +ick +ight +ill +imp +ir +is +it +jack +jam +jeff +jel +jen +jew +jer +jock +jon +jol +jum +kar +kan +kal +kay +keat +kee +kel +ken +ket +key +kil +kick +kin +kir +knight +kol +kor +kun +lab +lam +lan +lar +law +lee +len +let +lim +lime +lin +line +lip +lit +lock +lor +lom +loo +low +luck +lud +lun +mac +mab +mal +man +mar +mat +may +mea +med +mee +mel +meg +mer +mes +met +mid +mil +mis +mol +mon +mom +moo +mor +mot +mud +mum +mun +mur +mut +myer +nal +nan +nam +nag +nay +new +nel +nes +nick +nor +nov +ob +oct +og +ol +or +os +ot +ought +ow +pack +pal +par +pas +pat +pam +pan +pay +pea +pear +pel +pen +pep +per +pet +phe +phyl +phi +pick +pin +pit +pla +ple +plo +plor +pli +plu +pol +poo +pot +por +pow +pre +pro +pra +pru +put +pul +que +qui +quin +ra +rab +rad +ram +rat +ray +red +ree +ren +rick +rice +rid +ril +rin +rit +rob +roe +rom +ron +roo +ro +rot +ros +rud +rul +rut +sack +sal +san +sam +sap +sat +scha +schi +scho +schu +scri +sea +seb +sen +sel +sha +she +sher +shi +sho +sil +shu +sim +sla +sle +slo +sli +slu +sno +smee +smit +snow +sol +sout +sor +spa +spe +spi +spoo +spo +sta +stan +star +ster +stee +stin +sto +stre +stur +sun +sup +sul +sut +swa +swe +tan +tap +tar +tee +ter +tem +ten +tes +thor +ton +til +tim +too +tre +trip +tro +tut +tur +ul +un +ur +van +val +var +vee +ver +vin +vel +vir +wad +wal +war +wat +web +wel +wes +whit +wil +will +win +wit +woo +wood +wool +yan +yar +zar +zin diff --git a/RGens/data/sample-grammars/long-data/syllable.long b/RGens/data/sample-grammars/long-data/syllable.long deleted file mode 100644 index ee27d49..0000000 --- a/RGens/data/sample-grammars/long-data/syllable.long +++ /dev/null @@ -1,530 +0,0 @@ -ab -ack -ag -ad -al -an -ar -at -ash -as -augh -ay -au -ba -bab -bat -bal -ban -bar -bau -be -bee -bel -ben -ber -bes -bet -bil -bin -big -bir -bis -bla -black -blan -blat -bled -blo -bly -bock -bod -bol -bon -boo -bop -bor -bos -bot -bow -boy -bra -brad -bram -bran -bras -brau -bren -brew -bri -bro -brow -bru -brun -bry -buc -bud -bul -bur -burn -bus -bush -by -ca -cal -can -cant -car -carl -cap -cat -cer -cha -chan -chap -chas -che -chi -chis -chu -cla -clar -clay -cli -cler -coal -coat -cob -cod -col -com -con -coo -cop -cor -cow -cra -craw -cro -cub -cum -cun -cur -dab -dag -dal -dan -dar -day -dear -der -del -dem -den -der -des -dick -dir -dix -dil -dim -din -dis -dock -dod -dol -dom -don -dor -dos -doy -dow -dra -dre -dru -dry -dub -dud -duck -dul -dum -dun -dur -dwel -dye -eat -eck -ed -el -ell -elm -eng -ep -erk -er -esp -esh -fair -fan -far -fal -fam -fen -fel -fer -fid -fir -fin -flack -fla -flet -fly -fol -for -foo -fox -fran -free -fred -fre -fri -fry -fro -ful -fun -gal -gan -gar -gain -gat -gee -geer -gib -gil -gill -glas -gol -gold -good -gor -gos -gra -gree -green -gri -grif -gris -gro -gun -gush -gut -hack -hag -hal -hall -ham -hamp -han -har -hart -hat -haw -hear -heb -hel -hen -her -hes -hig -hick -hil -hip -hod -hol -hoo -hop -hor -how -hub -hud -hun -hur -ice -ick -ight -ill -imp -ir -is -it -jack -jam -jeff -jel -jen -jew -jer -jock -jon -jol -jum -kar -kan -kal -kay -keat -kee -kel -ken -ket -key -kil -kick -kin -kir -knight -kol -kor -kun -lab -lam -lan -lar -law -lee -len -let -lim -lime -lin -line -lip -lit -lock -lor -lom -loo -low -luck -lud -lun -mac -mab -mal -man -mar -mat -may -mea -med -mee -mel -meg -mer -mes -met -mid -mil -mis -mol -mon -mom -moo -mor -mot -mud -mum -mun -mur -mut -myer -nal -nan -nam -nag -nay -new -nel -nes -nick -nor -nov -ob -oct -og -ol -or -os -ot -ought -ow -pack -pal -par -pas -pat -pam -pan -pay -pea -pear -pel -pen -pep -per -pet -phe -phyl -phi -pick -pin -pit -pla -ple -plo -plor -pli -plu -pol -poo -pot -por -pow -pre -pro -pra -pru -put -pul -que -qui -quin -ra -rab -rad -ram -rat -ray -red -ree -ren -rick -rice -rid -ril -rin -rit -rob -roe -rom -ron -roo -ro -rot -ros -rud -rul -rut -sack -sal -san -sam -sap -sat -scha -schi -scho -schu -scri -sea -seb -sen -sel -sha -she -sher -shi -sho -sil -shu -sim -sla -sle -slo -sli -slu -sno -smee -smit -snow -sol -sout -sor -spa -spe -spi -spoo -spo -sta -stan -star -ster -stee -stin -sto -stre -stur -sun -sup -sul -sut -swa -swe -tan -tap -tar -tee -ter -tem -ten -tes -thor -ton -til -tim -too -tre -trip -tro -tut -tur -ul -un -ur -van -val -var -vee -ver -vin -vel -vir -wad -wal -war -wat -web -wel -wes -whit -wil -will -win -wit -woo -wood -wool -yan -yar -zar -zin diff --git a/RGens/data/sample-grammars/long-data/town-name.gram b/RGens/data/sample-grammars/long-data/town-name.gram new file mode 100644 index 0000000..cb4285b --- /dev/null +++ b/RGens/data/sample-grammars/long-data/town-name.gram @@ -0,0 +1,141 @@ +sullivan +jakin +geneva +coleharbor +cadiz +dawson +turon +salem +pax +dakota +moorefield +zenda +mettawa +orchard +busby +cloudcroft +perla +burlington +morrison +blackburn +jerico +skykomish +dupree +dawson +bowers +star +dorrance +roberts +carbon +hopedale +croghan +elgin +holland +berkley +sherrill +varna +owen +oxford +drake +notus +hobgood +thacker +springfield +fraser +avon +audubon +waterloo +windsor +atoka +cherry +hudson +kechi +pickstown +elizabeth +holt +stapleton +kell +gardena +osceola +moscow +morrison +mustang +maxwell +francis +eureka +darlington +ely +bancroft +hanover +milano +cabery +byars +gully +sherwood +reklaw +watkins +heartwell +dawson +vermont +goldville +paxson +potwin +sherman +glenbeulah +sunset +clearwater +solen +altamont +dyer +murray +rathbun +huntleigh +poulan +burlington +jackson +verndale +cleveland +josephine +leland +carrollton +vance +sumner +tira +mead +gumbranch +glenwood +harrison +hannibal +carthage +callao +bussey +coaldale +chugwater +andale +adell +farber +carlton +prue +tenney +walcott +udall +brighton +minburn +swan +frazer +menlo +bassett +massena +trommald +waynesfield +lynd +mendon +hammond +simsboro +thornton +crary +reynolds +turton +perry +penasco +loami diff --git a/RGens/data/sample-grammars/long-data/town-name.long b/RGens/data/sample-grammars/long-data/town-name.long deleted file mode 100644 index cb4285b..0000000 --- a/RGens/data/sample-grammars/long-data/town-name.long +++ /dev/null @@ -1,141 +0,0 @@ -sullivan -jakin -geneva -coleharbor -cadiz -dawson -turon -salem -pax -dakota -moorefield -zenda -mettawa -orchard -busby -cloudcroft -perla -burlington -morrison -blackburn -jerico -skykomish -dupree -dawson -bowers -star -dorrance -roberts -carbon -hopedale -croghan -elgin -holland -berkley -sherrill -varna -owen -oxford -drake -notus -hobgood -thacker -springfield -fraser -avon -audubon -waterloo -windsor -atoka -cherry -hudson -kechi -pickstown -elizabeth -holt -stapleton -kell -gardena -osceola -moscow -morrison -mustang -maxwell -francis -eureka -darlington -ely -bancroft -hanover -milano -cabery -byars -gully -sherwood -reklaw -watkins -heartwell -dawson -vermont -goldville -paxson -potwin -sherman -glenbeulah -sunset -clearwater -solen -altamont -dyer -murray -rathbun -huntleigh -poulan -burlington -jackson -verndale -cleveland -josephine -leland -carrollton -vance -sumner -tira -mead -gumbranch -glenwood -harrison -hannibal -carthage -callao -bussey -coaldale -chugwater -andale -adell -farber -carlton -prue -tenney -walcott -udall -brighton -minburn -swan -frazer -menlo -bassett -massena -trommald -waynesfield -lynd -mendon -hammond -simsboro -thornton -crary -reynolds -turton -perry -penasco -loami diff --git a/RGens/data/sample-grammars/long-data/tree.gram b/RGens/data/sample-grammars/long-data/tree.gram new file mode 100644 index 0000000..ecc8cbd --- /dev/null +++ b/RGens/data/sample-grammars/long-data/tree.gram @@ -0,0 +1,17 @@ +pine +elm +maple +oak +walnut +ash +sycamore +gum +hickory +cedar +willow +cherry +spruce +chestnut +birch +dogwood +poplar diff --git a/RGens/data/sample-grammars/long-data/tree.long b/RGens/data/sample-grammars/long-data/tree.long deleted file mode 100644 index ecc8cbd..0000000 --- a/RGens/data/sample-grammars/long-data/tree.long +++ /dev/null @@ -1,17 +0,0 @@ -pine -elm -maple -oak -walnut -ash -sycamore -gum -hickory -cedar -willow -cherry -spruce -chestnut -birch -dogwood -poplar diff --git a/RGens/data/sample-grammars/long-data/vowel-group.gram b/RGens/data/sample-grammars/long-data/vowel-group.gram new file mode 100644 index 0000000..2acf570 --- /dev/null +++ b/RGens/data/sample-grammars/long-data/vowel-group.gram @@ -0,0 +1,18 @@ +a +ai +au +ar +e +ee +eu +er +i +ir +io +o +or +ou +oa +oo +u +ur diff --git a/RGens/data/sample-grammars/long-data/vowel-group.long b/RGens/data/sample-grammars/long-data/vowel-group.long deleted file mode 100644 index 2acf570..0000000 --- a/RGens/data/sample-grammars/long-data/vowel-group.long +++ /dev/null @@ -1,18 +0,0 @@ -a -ai -au -ar -e -ee -eu -er -i -ir -io -o -or -ou -oa -oo -u -ur diff --git a/RGens/data/sample-grammars/long-data/vowel.gram b/RGens/data/sample-grammars/long-data/vowel.gram new file mode 100644 index 0000000..513edf4 --- /dev/null +++ b/RGens/data/sample-grammars/long-data/vowel.gram @@ -0,0 +1,5 @@ +a +e +i +o +u diff --git a/RGens/data/sample-grammars/long-data/vowel.long b/RGens/data/sample-grammars/long-data/vowel.long deleted file mode 100644 index 513edf4..0000000 --- a/RGens/data/sample-grammars/long-data/vowel.long +++ /dev/null @@ -1,5 +0,0 @@ -a -e -i -o -u -- cgit v1.2.3