Skip to content

Instantly share code, notes, and snippets.

@willettk
Last active February 4, 2020 20:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save willettk/eb04a2aa41e28c0efa3ba328953ace08 to your computer and use it in GitHub Desktop.
Save willettk/eb04a2aa41e28c0efa3ba328953ace08 to your computer and use it in GitHub Desktop.
Make a list of all the (English) Wikipedia page titles that can be sung to the tune of the Nationwide jingle.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"In response to this tweet from @PeterYoachim and @InternetHippo: https://twitter.com/PeterYoachim/status/820751807706075136, and inspired by the XKCD comic https://www.xkcd.com/1412/."
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"<img src=\"http://i.imgur.com/HCmNQcP.png\"/>"
],
"text/plain": [
"<IPython.core.display.Image object>"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from IPython.display import Image\n",
"from IPython.core.display import HTML \n",
"Image(url= \"http://i.imgur.com/HCmNQcP.png\")"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# Get some natural language processing modules\n",
"from curses.ascii import isdigit \n",
"from nltk.corpus import cmudict\n",
"import string,re"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"# Load the CMU pronunciation dictionary\n",
"d = cmudict.dict()"
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# Roughly 13 million article titles on en.wikipedia.org\n",
"titleFile = '/Users/willettk/Desktop/enwiki-latest-all-titles-in-ns0'"
]
},
{
"cell_type": "code",
"execution_count": 30,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# Find number of syllables in a given word\n",
"\n",
"def nSyllables(word):\n",
" try:\n",
" dw = d[word.lower()]\n",
" n = []\n",
" # Words can have more than one pronunciation\n",
" for w in dw:\n",
" ns = 0\n",
" for phoneme in w:\n",
" if isdigit(phoneme[-1]):\n",
" ns += 1\n",
" n.append(ns)\n",
" except KeyError:\n",
" print 'Error: \"{}\" not found in CMU pronunciation dictionary'.format(word)\n",
" return [0]\n",
" return n"
]
},
{
"cell_type": "code",
"execution_count": 83,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"# How to deal with punctuation + spaces: split, replace, rejoin\n",
"\n",
"excluded = set(string.punctuation)\n",
"def splitPunctuation(string):\n",
" sw = string.split(' ')\n",
" wordArr = []\n",
" for w in sw:\n",
" pw = ''\n",
" for ch in w:\n",
" if ch in excluded:\n",
" pw += ' '\n",
" else:\n",
" pw += ch\n",
" wordArr.append(pw.strip())\n",
" #''.join(ch for ch in w if ch not in set(string.punctuation))\n",
" oneLiner = ' '.join(wordArr)\n",
" return re.sub(' +',' ',oneLiner)"
]
},
{
"cell_type": "code",
"execution_count": 153,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"# Parse to find input scansion\n",
"\n",
"def stripLetters(ls):\n",
" nm = ''\n",
" for ws in ls:\n",
" for ch in list(ws):\n",
" if ch.isdigit():\n",
" nm=nm+ch\n",
" return nm\n",
"\n",
"def findStress(string):\n",
" stress = ''\n",
" for word in string.split(\" \"):\n",
" try:\n",
" dw = d[word.lower()][0]\n",
" for phoneme in dw:\n",
" stripped = stripLetters(phoneme)\n",
" if len(stripped) > 0:\n",
" stress += stripped\n",
" except KeyError:\n",
" stress += \"*\"\n",
" \n",
" return stress"
]
},
{
"cell_type": "code",
"execution_count": 143,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# Lyrical pattern that we're matching against\n",
"\n",
"ced = \"constant existential dread\"\n",
"template = findStress(ced)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# How many titles have three distinct words?\n",
"\n",
"matches = []\n",
"with open(titleFile) as f:\n",
" allCount = 0\n",
" head = f.readline()\n",
" for i,title in enumerate(f):\n",
" # Careful with punctuation!\n",
" punctless = splitPunctuation(title)\n",
" if len(punctless.split(\" \")) == 3:\n",
" temp = findStress(title)\n",
" if temp == template:\n",
" matches.append(title)"
]
},
{
"cell_type": "code",
"execution_count": 145,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"2495 articles on Wikipedia match the rhythm of constant existential dread\n"
]
}
],
"source": [
"print '{} articles on Wikipedia match the rhythm of \"{}\"'.format(len(set(matches)),ced)"
]
},
{
"cell_type": "code",
"execution_count": 149,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Robert Alexander Wright\n",
"Holcomb Mausoleum Door\n",
"Joslin Diabetes Camp\n",
"Pittsburgh Pennsylvania US\n",
"Greater Magellanic Cloud\n",
"Topham Elementary School\n",
"Tax anticipation notes\n",
"Under Mexicali Stars\n",
"Laser integration line\n",
"Dachau Concentration camp\n",
"Hastings Elementary School\n",
"Afterlife computer game\n",
"Special Generation song\n",
"Mather Elementary School\n",
"Combat Application Group\n",
"Frisbie Elementary School\n",
"Roma Education Fund\n",
"Salvadoran Civil War\n",
"Russian continental shelf\n",
"Celebrate Madonna song\n",
"Navy Commendation Star\n",
"Stock Appreciation Right\n",
"Everyone Olympics song\n",
"Congress Democratic Front\n",
"Chinatown Seattle WA\n",
"Work Participation Rate\n",
"Enterprise Allowance Scheme\n",
"Kenton Comprehensive School\n",
"Legislature of Punjab\n",
"Gorton Locomotive Works\n",
"Exercise Internal Look\n",
"Us environmental law\n",
"Secondary Modern School\n",
"Lethal concentration low\n",
"Mitchel Elementary School\n",
"Signal Entertainment Group\n",
"British occupation zone\n",
"Criticism of Prolog\n",
"Simulated moving bed\n",
"Capillary refill time\n",
"Perforated scale sardine\n",
"Kazakh registration plates\n",
"Basic Reproductive Rate\n",
"Lansing Elementary School\n",
"Nazi Concentration Camp\n",
"Politics in Xinjiang\n",
"Fascinated Ivy song\n",
"Waterloo computer game\n",
"Caesars Entertainment Corp\n",
"Coastal Regulation Zone\n",
"Nassau Elementary School\n",
"Bonaventure Patrick Paul\n",
"Horses Saratoga Style\n",
"Coronary Heart Disease\n",
"English registration plates\n",
"Tonal Reproduction Curve\n",
"Secretaries of defence\n",
"Tokyo Olympic Games\n",
"Tokyo Designers Block\n",
"Patent registration scam\n",
"Student Demonstration Time\n",
"Mobile Alabama Bowl\n",
"Ancient Macedonian Greek\n",
"My Interpretation song\n",
"Scottish Academic Press\n",
"Purgatory Ski Resort\n",
"Escobar Marina de\n",
"Roberts Elementary School\n",
"Clinton Conservation Park\n",
"William Alexander Scott\n",
"Booker Elementary School\n",
"Meriwether Lewis Clark\n",
"Lady Alexandra Coke\n",
"Standard penetration test\n",
"Polar stratospheric cloud\n",
"Self Incrimination Clause\n",
"Television city dream\n",
"Military of Tibet\n",
"Local interstellar cloud\n",
"Shaking Kawasaki rat\n",
"Television of Quebec\n",
"Naval Operations Branch\n",
"Doubly logarithmic tree\n",
"Oro concentration camp\n",
"Stock appreciation right\n",
"Kara Ibrahim Pasha\n",
"Common European Home\n",
"Embers Californian band\n",
"Calibrated dinner plate\n",
"Coghlan Elementary School\n",
"Solitary blazing star\n",
"Perforated paper tape\n",
"Buick Riviera film\n",
"Western Indonesian Time\n",
"Turner Entertainment Co\n",
"Holiday Roberta Flack\n",
"Warwick Elementary School\n",
"Swazi registration plates\n",
"Stationary fuel cell\n",
"Santa Margarita CA\n",
"Resonating valence bond\n",
"Detonator drinking game\n",
"Damocles computer game\n",
"Prototype computer game\n",
"Actin nucleation cores\n",
"Orchid Californian band\n",
"Scottish independent schools\n",
"Christian Democratic Front\n",
"Conrad Elementary School\n",
"Architecture of Detroit\n",
"Everglades Forever Act\n",
"Onion epidermal cell\n",
"Legislature of Belize\n",
"Qualifying floating charge\n",
"Rogers Locomotive Works\n",
"Valley Comprehensive School\n",
"Planter antebellum South\n",
"Missing Evanescence song\n",
"Simmons Elementary School\n",
"Alleghany County Schools\n",
"CAMEL Application Part\n",
"Civil Conservation Corps\n",
"William Alexander Young\n",
"Harkins Elementary School\n",
"Lenny Valentino song\n",
"Monmouth Comprehensive School\n",
"Basil Alexander Hill\n",
"Fontainebleau Miami Beach\n",
"Senior Combination Room\n",
"Bangladesh Islamic Front\n",
"Analog Expansion Bus\n",
"Caroline Lavinia Scott\n",
"Grant Anticipation Note\n",
"Watermelon rind preserves\n",
"Dassault Aviation SA\n",
"Scottish Independence Wars\n",
"Mozart Clarinet Quintet\n",
"Calculating local time\n",
"Quigley Elementary School\n",
"David Alexander Cox\n",
"Amateur Computer Club\n",
"InterCity Irish Rail\n",
"Belgian Aviation School\n",
"Genocide remembrance day\n",
"Multiplying billiard balls\n",
"William Alexander Forbes\n",
"Stationery Office Books\n",
"Titan Entertainment Group\n",
"Santa Margarita Lake\n",
"Specialized investment fund\n",
"Ronald Alexander Best\n",
"Isabel Virginia Hull\n",
"Elder Elemental God\n",
"Curacao Department Stores\n",
"Integrated vacuum tube\n",
"Glaciated low plateau\n",
"Glynis Coronation Street\n",
"Burgher Recreation Club\n",
"Sasha Alexandra Waltz\n",
"Legislature of Peru\n",
"Commonwealth Observer Groups\n",
"Finnish Independence day\n",
"Radio Horizon Range\n",
"Everything Toronto NOW\n",
"Hollywood inspired names\n",
"Eastern Independent League\n",
"Politics related lists\n",
"Driver Independent X\n",
"Double exponential growth\n",
"Ottawa Toronto train\n",
"Python Geographic range\n",
"Newly Independent State\n",
"Mifflin Elementary School\n",
"Hollywood Madonna song\n",
"Copenhagen Stock Exchange\n",
"Military Martial Arts\n",
"Elder Elemental Eye\n",
"Water Reclamation Plant\n",
"Uniform electron gas\n",
"Philippine external debt\n",
"Almond Elementary School\n",
"Secondary seventh chord\n",
"Ethnic Macedonian art\n",
"Everybody Makes Mistakes\n",
"Johann Zacharias Dase\n",
"Byam Elementary School\n",
"Waterbury Public Schools\n",
"Palestine partition plan\n",
"Second Independence War\n",
"Concentrated Solar Still\n",
"Single European Sky\n",
"Tanglewood Computer Game\n",
"Hollywood Athletic Club\n",
"Central California Coast\n",
"Baker Shevardnadze line\n",
"Automated Weather Source\n",
"Military chocolate bar\n",
"Gozo independent state\n",
"Thomas Alexander Barns\n",
"Special Economic Zones\n",
"Tributary flying frog\n",
"Stella Dorothea Webb\n",
"Steven Alexander Wright\n",
"Beacon Elementary School\n",
"Complex analytic map\n",
"Holocaust Remembrance Day\n",
"Edgar Alexander Mearns\n",
"Legendary Children song\n",
"Tibbets Elementary School\n",
"Tabletop arcade machine\n",
"Military of sudan\n",
"Neighborhood electric car\n",
"Wing configuration birds\n",
"Penske Automotive Group\n",
"Bethel Elementary School\n",
"Ecuador Peru dispute\n",
"Workers Compensation Board\n",
"Arkansas United States\n",
"Monochrome computer screen\n",
"Internet Explorer Six\n",
"Nazi propaganda films\n",
"Aviator British band\n",
"Thomas Alexander Boyd\n",
"Weekly Economic Times\n",
"German Aviation Show\n",
"Criticism of islam\n",
"Civil conservation corp\n",
"Daniel Alexander Payne\n",
"Banded Madagascar Frog\n",
"Early Cancellation Fee\n",
"Warren comprehensive school\n",
"Pio Benedictine Code\n",
"Neophyte computer game\n",
"Anglo Hanseatic War\n",
"Stephen Alexander Smith\n",
"Window insulation film\n",
"Dover Artificial Lift\n",
"Ordinary Seaman rank\n",
"Architecture of Brazil\n",
"Cynwyd Elementary School\n",
"Hernan Elizondo Arce\n",
"Patriarch Alexy I\n",
"Lucky Presidential dog\n",
"Trunnell Elementary School\n",
"Planetary Roller Screw\n",
"Webber Independent School\n",
"Bangladeshi cricket team\n",
"Jorge Javier Vazquez\n",
"Underwater Mika song\n",
"Gary Indiana song\n",
"Blewett Elementary School\n",
"Little Alabama Coon\n",
"Recognized component mark\n",
"Churches Conservation Trust\n",
"Gifford Elementary School\n",
"Dinosaur Adventure Land\n",
"Pulmonary Heart Disease\n",
"Solar parabolic trough\n",
"Engle Monumental Clock\n",
"Mrs Arabella Figg\n",
"Dorsal metacarpal vein\n",
"Oral rehydration salts\n",
"Secretary of Defence\n",
"Blundell Elementary School\n",
"Essex Elementary School\n",
"Operating empty weight\n",
"Studebaker Standard Six\n",
"Kosovo Islamic League\n",
"Elmhurst Sacramento CA\n",
"Crain Communications Inc\n",
"Central European boar\n",
"Local Prohibition Case\n",
"Serfs Emancipation Day\n",
"Semi logarithmic plot\n",
"Calvert Elementary School\n",
"Phoenix Elementary School\n",
"Irrawaddy River shark\n",
"Wasserstein Perella Co\n",
"Polish Independence Day\n",
"Xenon Entertainment Group\n",
"Holocaust Remembrance Days\n",
"Necessary Evil song\n",
"Television City Dream\n",
"Tisdale Elementary School\n",
"Riverside Amusement Park\n",
"Golden Salamander film\n",
"Dachau concentration Camp\n",
"Terrorism by Iran\n",
"Southern European skin\n",
"Classified Bordeaux estates\n",
"Thermal penetration depth\n",
"Helicopter flight controls\n",
"Baltimore United States\n",
"Military of Japan\n",
"Resting Metabolic Rate\n",
"Fleming Oscillation Valve\n",
"Peter Alexander Walsh\n",
"Qualitative Health Research\n",
"Bethlehem Atlantic Works\n",
"Secretaries of Defence\n",
"Irish Continental Group\n",
"Military of Brazil\n",
"Cauliflower Alley Club\n",
"Army Education Corps\n",
"Arthur Aloysius Fox\n",
"Second Macedonian War\n",
"Quasi analytic class\n",
"Canterbury Open darts\n",
"Mongol Aspiration School\n",
"David Alexander Nunn\n",
"Project Revolution game\n",
"Vinnie Coronation Street\n",
"Irish Conservation Box\n",
"Junior Charpentier Leclerc\n",
"Alabaster City Schools\n",
"Meriwether County GA\n",
"Purely existential proof\n",
"Western Continental Greece\n",
"Martin Marianas Mars\n",
"Social Democratic League\n",
"Navy Personnel Command\n",
"Necessary Roughness book\n",
"Activated clotting test\n",
"Ewald Automotive Group\n",
"Secondary modern school\n",
"Crispy aromatic duck\n",
"Military Service Act\n",
"Automated phone survey\n",
"Middlebury Township PA\n",
"Ladner Elementary School\n",
"Kosovo Protection Corps\n",
"Finnish Independence Day\n",
"Camden Expedition Sites\n",
"Bush Administration s\n",
"Laminated timber beams\n",
"Channel allocation schemes\n",
"Bradfield Elementary School\n",
"Seddon Conservation Park\n",
"Mattos Elementary School\n",
"Cheetah Conservation Fund\n",
"Prospect Elementary School\n",
"Middle European League\n",
"Corrugated water frogs\n",
"Steven Alexander Rutt\n",
"Semi algebraic set\n",
"Jason Cavalier Leboeuf\n",
"New Communications Clique\n",
"Princess Alexandra range\n",
"Basic Multilingual Plane\n",
"Tuxford locomotive works\n",
"Salvadoran Stock Exchange\n",
"Harpsichord concertos Bach\n",
"Markham Elementary School\n",
"Irish registration plates\n",
"Fluid depravation test\n",
"Renegades Dispersal Draft\n",
"Sex Discrimination Act\n",
"Baker Elementary School\n",
"Orange Revolution Film\n",
"Singapore Improvement Trust\n",
"Traffic indication map\n",
"Joseph Alexander Smith\n",
"Gladiator s Assault\n",
"Weibel Elementary School\n",
"Dating simulation game\n",
"Automated bank machine\n",
"Polar Stratospheric Cloud\n",
"Milton Coronation Street\n",
"Santa Catalina School\n",
"Singapore Selection XI\n",
"Military dummy round\n",
"Conyer Elementary School\n",
"Andrew Avellino Saint\n",
"Abraham Egyptian saint\n",
"Military Sketching Board\n",
"William Alexander Sim\n",
"Indo European tribes\n",
"Kansas Oklahoma Gulf\n",
"Phoenix Exhibition Hall\n",
"Russian psychedelic trance\n",
"Voter invitation card\n",
"Architecture of Japan\n",
"Weeping European Beech\n",
"Harold Alexander Moise\n",
"Hierarchy of beliefs\n",
"Belgian registration plates\n",
"Philippine Organic Act\n",
"Literary fairy tales\n",
"Bixby Elementary School\n",
"Energizer Holdings Inc\n",
"Athens Marietta Road\n",
"Turkish Independence war\n",
"Laurence Alexander Green\n",
"Janney Elementary School\n",
"Indo Pakistani wars\n",
"Special Economic Zone\n",
"Legendary Danish kings\n",
"Weston Elementary School\n",
"Kenneth Alexander Keith\n",
"Carlton Recreation Ground\n",
"Georg alexander pick\n",
"Daniel Alexander Grout\n",
"Anti defamation league\n",
"Regis Massachusetts Pride\n",
"Melbourne population growth\n",
"Interviewer s effect\n",
"Arnold Alexander Hall\n",
"Merlin Entertainments Group\n",
"Television Writers Vault\n",
"Semi algebraic sets\n",
"Crystalline celestial spheres\n",
"Vinyl composition tiles\n",
"Stranglehold computer game\n",
"Harvard Bioscience Inc\n",
"Chester Elementary School\n",
"Thomas Alexander Tefft\n",
"Special Operations Force\n",
"Copenhagen Climate Talks\n",
"Anglo European School\n",
"Grauer Elementary School\n",
"Oxford Montessori Schools\n",
"Franco Malagasy Wars\n",
"Victor Alexander Cooke\n",
"Social Democratic Path\n",
"Helicopter prison breaks\n",
"Mitterrand Francois Maurice\n",
"Black Administration Act\n",
"Pesticide detection kit\n",
"Automated phone surveys\n",
"Special Education film\n",
"Christian Democratic Group\n",
"Wonderland amusement park\n",
"William Alexander Scroggs\n",
"Secondary market trend\n",
"Dachau Concentration Camp\n",
"Morley Elementary School\n",
"Haunted Evanescence Song\n",
"Ural Automotive Plant\n",
"Grooming invitation dance\n",
"Creighton comprehensive school\n",
"Thundercats computer game\n",
"Harvest Operations Corp\n",
"Bradford Elementary School\n",
"Special operation force\n",
"Water deprivation test\n",
"Southern California Sun\n",
"Clemson intramural sports\n",
"Hartman Elementary School\n",
"Social Innovation Camp\n",
"Hockey Manitoba Cup\n",
"Raymond Aloysius Lane\n",
"Spanish Federation Cup\n",
"Nurses Registration Act\n",
"Monochrome Ammonia song\n",
"Cairo Declaration film\n",
"Kashmir Pakistani state\n",
"Socialism from below\n",
"Roslyn Elementary School\n",
"Nathanael Montgomery Orr\n",
"Royal Philanthropic School\n",
"Fibre reinforced concrete\n",
"Special Operation Force\n",
"Mobile Application Part\n",
"Regal Entertainment Group\n",
"Windows Entertainment Pack\n",
"Nazi propaganda film\n",
"Commonwealth United States\n",
"Thomas Aloysius Doyle\n",
"Capillary filling time\n",
"Firecracker Lisa Loeb\n",
"Kitchen Confidential book\n",
"Special Operations Wing\n",
"Overboard computer game\n",
"Gulf Developmental Road\n",
"Michael Moriarty judge\n",
"Forest Madagascar Frog\n",
"Corrugated box design\n",
"Modern Montessori School\n",
"Sherman Elementary School\n",
"Nordmann Alexander von\n",
"Internet Explorer mac\n",
"Non discrimination law\n",
"Aberdeen Performing Arts\n",
"Western Asiatic Games\n",
"Pi Approximation Day\n",
"Claudio Rodriguez Fer\n",
"Eagle Aviation France\n",
"Label information base\n",
"Basal Metabolic Rate\n",
"Bantu Education Act\n",
"Yugoslav United Left\n",
"Counter Reformation art\n",
"Voter registration drive\n",
"Kenyan registration plates\n",
"Pollo Operations Inc\n",
"ECHO Entertainment Group\n",
"Eiland Elementary School\n",
"Universe computer game\n",
"Coronary sinus vein\n",
"Diva Indonesian film\n",
"Secretary s Award\n",
"Scaffold execution site\n",
"Students Liberation Bloc\n",
"Central Pennsylvania League\n",
"Hilton Elementary School\n",
"Firebombing of Japan\n",
"Manning Comprehensive School\n",
"Birmingham United States\n",
"Robert Alexander Inch\n",
"William Alexander Linn\n",
"Forest Comprehensive School\n",
"Propagating human wave\n",
"Evans Elementary School\n",
"Democrats United States\n",
"William Alexander Long\n",
"Central European tick\n",
"Peregrine Financial Group\n",
"Eastern Continental Trail\n",
"Recognized Component Mark\n",
"Ordinary Heroes book\n",
"Hopkins Elementary School\n",
"Labyrinth Elisa song\n",
"Necessary Evil film\n",
"Gordon Alexander Brown\n",
"Clifton Elementary School\n",
"Hoover Elementary School\n",
"Word Association game\n",
"Rio Guatemala Group\n",
"Russian registration plates\n",
"Patent Information News\n",
"Architecture of lahore\n",
"Enterprise Investment Scheme\n",
"Buccal bifurcation cyst\n",
"Rapid intervention crew\n",
"Haworth Information Press\n",
"Gender Recognition Bill\n",
"Subdivision of Ukraine\n",
"Arab Liberation Front\n",
"Harvard Education Press\n",
"Texas Independence Trail\n",
"Native Californian tribes\n",
"Rucker Elementary School\n",
"Hermann Alexander Bruck\n",
"Herod Elementary School\n",
"Underfunded public schools\n",
"Morgan Elementary School\n",
"Clayton Elementary School\n",
"Module definition file\n",
"William Alexander Weir\n",
"Cambridge Information Group\n",
"Actin nucleation core\n",
"Lothrop Elementary School\n",
"Bloodhound Supersonic Car\n",
"Esper Liberation Front\n",
"Unsworth Elementary School\n",
"Glover Elementary School\n",
"Internet Explorer Shell\n",
"Germantown United States\n",
"Central Aviation School\n",
"Orange Revolution film\n",
"Uniform Adoption Act\n",
"Acton Elementary School\n",
"Indo European noun\n",
"Patient Visitation Group\n",
"Commodore United States\n",
"Central Reservation song\n",
"Anti Democratic Thought\n",
"Burnet Elementary School\n",
"Lesser Magellanic Cloud\n",
"Special Operation Group\n",
"Calvin Alexander Grant\n",
"Edward Alexander Bott\n",
"Bangladeshi Cricket Team\n",
"Higley Elementary School\n",
"Monochrome Ammonia Song\n",
"Deerfield Elementary School\n",
"Hurricane Katrina Aid\n",
"Lobster Liberation Front\n",
"Pulmonary Function Test\n",
"Funerary Dagger Moth\n",
"Wheaton Montessori School\n",
"Copenhagen treaty draft\n",
"Salvadoran civil war\n",
"Donald Alexander Downs\n",
"Newly Independent States\n",
"Wasatch Elementary School\n",
"Metal oxidation states\n",
"Secondary Modern school\n",
"Upper Onondaga Park\n",
"Underwriters Salvage Corps\n",
"Global Transportation Hub\n",
"Student Transportation Inc\n",
"Saudi Aviation Club\n",
"An Experimental View\n",
"Tendon Japanese cuisine\n",
"Duel Propaganda song\n",
"Secondary dial tone\n",
"System Information Mac\n",
"Hierarchy of control\n",
"Middle Tennessee Campaign\n",
"Copenhagen City Bike\n",
"Salt evaporation ponds\n",
"Metal Oxidation States\n",
"Double exclamation point\n",
"Barry Comprehensive School\n",
"Newton Elementary School\n",
"Anti parasitic drug\n",
"Central Massachusetts Branch\n",
"Military of peru\n",
"Circulating Water Plant\n",
"Query execution plan\n",
"Paschall Elementary School\n",
"Rapid Intervention Team\n",
"Alfred Aloysius Smith\n",
"Subdivisions of Ukraine\n",
"Military of Kuwait\n",
"Underwater Hockey Wales\n",
"British Occupation Zone\n",
"Memphis Sanitation strike\n",
"Daniel Alexander Jones\n",
"Territories of Zaire\n",
"Absolute production team\n",
"Caterpillar Twenty Two\n",
"Copyright United States\n",
"Counterparty credit risk\n",
"Public distribution shop\n",
"Vista Transformation Pack\n",
"Special Demonstration Squad\n",
"Common Corporation File\n",
"Svenska Cellulosa AB\n",
"Terminator judgement day\n",
"Wicked Annabella Song\n",
"Lego indiana jones\n",
"Subdivisions of Macau\n",
"German defamation law\n",
"Paragon computer game\n",
"Panama Pacific Line\n",
"Iterative Closest Point\n",
"Gilbert Coronation Street\n",
"Subdivisions of Macao\n",
"Becket Comprehensive School\n",
"Calculating Solar Time\n",
"Reilly Elementary School\n",
"Waterway Recovery Group\n",
"Lincoln Elementary School\n",
"Ancient economic thought\n",
"Marigold Nirvana song\n",
"Studebaker Middle School\n",
"Internet discussion board\n",
"Oral contraceptive pill\n",
"Palestine Investment Fund\n",
"Jacksonville United States\n",
"Ryan Alexander Bloom\n",
"Sovereign Coronation grape\n",
"Civil Aviation Day\n",
"Skillin Elementary School\n",
"Marathon computer game\n",
"Weibel elementary school\n",
"Apple Applications Store\n",
"Athens Polytechnic School\n",
"Island Transportation Co\n",
"Irish competition law\n",
"German Czechoslovak war\n",
"Integrated master plan\n",
"Diamond Elementary School\n",
"Secondary market trends\n",
"Anti Defamation Group\n",
"Educating Rita film\n",
"Visit Indonesia Year\n",
"Liquor Distribution Branch\n",
"Helicopter landing pad\n",
"Uplands Elementary School\n",
"Inner Distribution Road\n",
"Whisper Evanescence song\n",
"Newman Elementary School\n",
"Leslie Alexander Mutch\n",
"Davis Recreation Hall\n",
"Bentley Continental S\n",
"Bentley Continental R\n",
"Florence Elementary School\n",
"Philip Aloysius Hart\n",
"Bentley Continental T\n",
"Hixon Elementary School\n",
"Central Asiatic frogs\n",
"Hammond Elementary School\n",
"Southern California s\n",
"Saban Entertainment Inc\n",
"City Montessori School\n",
"Russian occupation zone\n",
"Priesthood Restoration Site\n",
"Little Narragansett Bay\n",
"Western Asiatic dhole\n",
"Common Economic Space\n",
"Dudley Conservation Park\n",
"Ornamented pigmy frogs\n",
"Thorson Elementary School\n",
"Military of Ukraine\n",
"Minnie Coronation Street\n",
"British corporation tax\n",
"Ellen Henrietta White\n",
"Eccles Elementary School\n",
"Simple aromatic ring\n",
"Free Association Books\n",
"Indo European verb\n",
"Salvador Fernandez B\n",
"Norwood Elementary School\n",
"Local Prohibition case\n",
"Copenhagen Opera House\n",
"Valley Elementary School\n",
"Princess Coronation Class\n",
"Porous European Mix\n",
"Edmund Aloysius Walsh\n",
"Instant Armadillo Blues\n",
"Gaia Liberation Front\n",
"Subdivisions of Brunei\n",
"Neo geometric art\n",
"Architecture of Bahrain\n",
"Interplay Productions Inc\n",
"Intercity Golden Gloves\n",
"Look Communications Inc\n",
"Contraband Australian band\n",
"Nelson Entertainment Group\n",
"Social Democratic Front\n",
"Gotham Entertainment Group\n",
"Baker Demonstration School\n",
"Nimitz Elementary School\n",
"Database protection bill\n",
"Legendary Swedish kings\n",
"Ellis Elementary School\n",
"Mathews Restoration Site\n",
"Alma Alexandra Kuc\n",
"Post Apocalyptic World\n",
"Boston Scientific Corp\n",
"Rasor Elementary School\n",
"Sheffield Academic Press\n",
"Egypt Exploration Fund\n",
"Carson Entertainment Group\n",
"Blizzard Entertainment Inc\n",
"Russo Asiatic Bank\n",
"Lathrop Elementary School\n",
"Alfred Alexander Burt\n",
"Subdivisions of Belize\n",
"Global catastrophic risks\n",
"Burma Economic Watch\n",
"Legendary Tiger Man\n",
"Muddy Mississippi Line\n",
"Second Generation film\n",
"Cambridge Invitation Cup\n",
"Eastern European Group\n",
"Salvadoran peace accords\n",
"Solar Interstellar Cloud\n",
"Ordinary Heroes film\n",
"Singapore Korean School\n",
"Arrowhead Provincial Park\n",
"Adelaide Botanic Park\n",
"Anti defamation League\n",
"Sonic Automotive Inc\n",
"Secondary modern schools\n",
"Avatar computer game\n",
"Derry Elementary School\n",
"Idaho United States\n",
"Christian Democratic Youth\n",
"Epilepsy frontal lobe\n",
"Greater Cincinnati League\n",
"Hittite diplomatic text\n",
"Ornamented pigmy frog\n",
"Television Rating Point\n",
"Salvador Caetano Group\n",
"Docklands observation wheel\n",
"Asia Universal Bank\n",
"Dual logarithmic plot\n",
"Swedish liberation war\n",
"Pershing Elementary School\n",
"Richard elementary school\n",
"Execute disable bit\n",
"Carousel Productions Inc\n",
"Sailing simulation game\n",
"Auschwitz concentration camp\n",
"Lancelot computer game\n",
"Fashion Revolution Day\n",
"Weidenfeld Translation Prize\n",
"Weymouth Elementary School\n",
"Foreign Correspondents Club\n",
"Dhaka Education Board\n",
"Thermal fluctuation noise\n",
"Bible correspondence course\n",
"Hurricane Ramirez film\n",
"Amateur Italian Cup\n",
"Coastal Conservation League\n",
"Now Communications Inc\n",
"Navajo creation myth\n",
"Subdivisions of Sudan\n",
"Oxford Scientific Films\n",
"Operating System Types\n",
"Baghdad Liberation Day\n",
"Georgia Alabama League\n",
"Anti democratic thought\n",
"Karma Indonesian film\n",
"Proto geometric style\n",
"Tabernacle Christian School\n",
"Westinghouse Electric Co\n",
"Sweden Democratic Youth\n",
"Leary Elementary School\n",
"Buell Elementary School\n",
"Detonator crimping tool\n",
"Richard Zachariah Mudge\n",
"Muslim population growth\n",
"World Communication Day\n",
"Democrat United States\n",
"Lady Juliana ship\n",
"William Alexander Baird\n",
"Farkas Alexander S\n",
"Finnish registration plates\n",
"Northern Arizona Suns\n",
"Geary Elementary School\n",
"Tanglewood computer game\n",
"Dallas Elementary School\n",
"Little Conestoga Creek\n",
"Royal Alexandra Bridge\n",
"Sony Entertainment hack\n",
"Birmingham Symphonic Winds\n",
"Buller Conservation Group\n",
"Hyland Elementary School\n",
"Capillary Action band\n",
"Argentine Brazilian War\n",
"Subdivisions of Oman\n",
"Georg Alexander Pick\n",
"Daffron Elementary School\n",
"Southworth Elementary School\n",
"Scobee Elementary School\n",
"Secretary for Finance\n",
"Gyroscope computer game\n",
"Ornamented flying fish\n",
"Edmunds Elementary School\n",
"Second generation rights\n",
"Asteroids computer game\n",
"Winter Paralympic Games\n",
"Martz Communications Group\n",
"Charlotte Dorothea Biehl\n",
"Lipton California Dip\n",
"Medicaid United States\n",
"Londonderry Township PA\n",
"Elevated master stream\n",
"Illustrated London News\n",
"Haliburton Scout Reserve\n",
"Multiplier Banach space\n",
"Ella Alexander Boole\n",
"Scholarship financial aid\n",
"Raffles Institution Lane\n",
"Crompton Shenandoah Plant\n",
"Mobile application part\n",
"Drug administration routes\n",
"Patriarch Alexi I\n",
"Provo Intermodal Hub\n",
"Second fundamental form\n",
"Kiker elementary school\n",
"Pseudo Interactive Inc\n",
"January Pilot song\n",
"Kashmir Liberation Front\n",
"Anti Transportation League\n",
"Reagan Elementary School\n",
"Special Information tone\n",
"Tabernacle christian School\n",
"Yemen Eritrea War\n",
"Santa Catalina Stakes\n",
"PACE Communication Plan\n",
"Architecture of Peru\n",
"Legendary Lover song\n",
"President Ulysses Grant\n",
"Dartmouth Elementary School\n",
"Middle Combination Room\n",
"Khalil Ibrahim Wazir\n",
"Rapid Diagnostic Test\n",
"First coordination sphere\n",
"Matrimony Maybe You\n",
"Automated Alice XI\n",
"Randolph Elementary School\n",
"Aerospace Defence Command\n",
"Arkansas Missouri League\n",
"Grainy Madagascar Frog\n",
"Knoxville Locomotive Works\n",
"Attitude Adjustment song\n",
"Trent Accreditation Scheme\n",
"Eastern Continental Greece\n",
"Higher Education Act\n",
"Belgian Arbitration Court\n",
"Automated Teller Safe\n",
"Boston Massachusetts US\n",
"English defamation law\n",
"Anti circumvention rules\n",
"Watercolor of Brazil\n",
"Father Aloysius Schmitt\n",
"Sedgwick Elementary School\n",
"Resting metabolic rate\n",
"Central European Time\n",
"Upham Elementary School\n",
"Haliburton District ON\n",
"Mitchell Alexander House\n",
"Arctic continental shelf\n",
"Secretaries of Finance\n",
"Blackburn Elementary School\n",
"Salt evaporation pond\n",
"Spanish Independence War\n",
"Holocaust denial laws\n",
"Jewett Elementary School\n",
"Piccadilly Circus song\n",
"Byron Elementary School\n",
"Singapore United Front\n",
"My Louisiana Sky\n",
"Groner Elementary School\n",
"Gender recognition act\n",
"Lora concentration camp\n",
"Pulmonary heart disease\n",
"Hermann Alexander Brueck\n",
"Multiplayer mobile game\n",
"Mutton Renaissance campaign\n",
"Naughty Marietta film\n",
"Barry Alexander Brown\n",
"Chalmers Elementary School\n",
"Calibrated diet plate\n",
"Samuel Alexander Mudd\n",
"Canterbury England Stake\n",
"Horace Alexander Young\n",
"Commonwealth Supported Place\n",
"Tokyo designers week\n",
"Civil Aeronautics Board\n",
"Millimeters water gauge\n",
"Sculpted Madagascar Frog\n",
"Schiller Elementary School\n",
"Chipman Elementary School\n",
"Whistler Paralympic Park\n",
"Labyrinth supporting cells\n",
"Summerville Azalea Park\n",
"Special Operations OSS\n",
"Irish Competition Law\n",
"Hawthorne Elementary School\n",
"Kaiser Elementary School\n",
"Carson Elementary School\n",
"Panama Canal Affair\n",
"With Anticipation Stakes\n",
"Seminary of Quebec\n",
"Second Confiscation Act\n",
"Middlebury Township MI\n",
"Ultra Revelation Space\n",
"Phoenix Entertainment Group\n",
"Boldon Comprehensive School\n",
"Leary elementary school\n",
"Silver Kangaroo Award\n",
"Bransford Elementary School\n",
"Helicopter string quartet\n",
"Military of japan\n",
"Helicopter Training School\n",
"Architecture of peru\n",
"China Democratic League\n",
"Simulated Moving Bed\n",
"Lawrence Aloysius Burke\n",
"Davis Elementary School\n",
"William Alexander coach\n",
"Military surplus stores\n",
"Second Revolution Day\n",
"Boulder Colorado floods\n",
"Highlands Elementary School\n",
"Architecture of nepal\n",
"Hinterland computer game\n",
"Surface Transportation Act\n",
"Albert Alexander Gray\n",
"Alternating series test\n",
"Gordon Elementary School\n",
"Cambridge Elementary School\n",
"Cameroon volcanic line\n",
"Overlord computer game\n",
"Converse Elementary School\n",
"Architecture of Madrid\n",
"Cuellar Elementary School\n",
"Waterbury City Hall\n",
"Pulmonary function tests\n",
"Subdivisions of Brazil\n",
"Operating system shell\n",
"Microscope Objective Thread\n",
"Integrated stress response\n",
"Paratrooper Training School\n",
"Tokyo Korean School\n",
"Communism would collapse\n",
"Only Revolutions Tour\n",
"Renegade computer game\n",
"Rockefeller Music Hall\n",
"Fahrenheit computer game\n",
"Studio transmitter link\n",
"Howard Alexander Smith\n",
"Dorsal metacarpal veins\n",
"Countrywide Financial Corp\n",
"Corrugated water frog\n",
"Fatherland Defenders Day\n",
"Innovative Users Group\n",
"Roosevelt Seattle WA\n",
"Circulating tumor cells\n",
"Seymour Elementary School\n",
"Papal coronation oath\n",
"Overall survival rate\n",
"Military of iran\n",
"Strayer Education Inc\n",
"Second metacarpal bone\n",
"Subdivisions of Zaire\n",
"Mitchell Elementary School\n",
"Greenville Elementary School\n",
"Modified rotation mode\n",
"Junior Combination Room\n",
"Catalogue Preserve Amass\n",
"Canterbury City Walls\n",
"Dayton Elementary School\n",
"Eyre Developmental Road\n",
"Conley Elementary School\n",
"Warren Comprehensive School\n",
"Ormonde Education Group\n",
"Northern European Plain\n",
"Quarantine computer game\n",
"Architecture of quebec\n",
"Happy Elementary School\n",
"Multiplayer mobile games\n",
"Audrey Alexandra Brown\n",
"Leon Coronation Street\n",
"Pitman permutation test\n",
"Southern California song\n",
"Benson Arizona Song\n",
"Swedish registration plates\n",
"Bridge Communications Inc\n",
"Libra Academic Search\n",
"Albert Ebenezer Fox\n",
"Motion simulation ride\n",
"Nazi concentration camps\n",
"Isidore Noel Belleau\n",
"Color pigmentation wine\n",
"Virgin Entertainment Group\n",
"Anti Defamation League\n",
"Village Halloween Parade\n",
"Television of quebec\n",
"Integrated Master Plan\n",
"NAAB accreditation board\n",
"Internet Restriction Bill\n",
"Hamlin elementary school\n",
"Secondary air supply\n",
"Roman Macedonian Wars\n",
"Mutton Renaissance Campaign\n",
"Counterfeit detecting pen\n",
"Word association tests\n",
"Matched precipitation rate\n",
"Indo pakistani war\n",
"Logan Elementary School\n",
"Carlo Giuliani Boy\n",
"German Nicaraguan School\n",
"Lady Isabella Cocks\n",
"Focal neurologic signs\n",
"William Alexander Spinks\n",
"Summit Elementary School\n",
"Diesel Locomotive Works\n",
"German liberation wars\n",
"Richard Alexander White\n",
"Kristen Nehemiah Horst\n",
"Lego Indiana Jones\n",
"Irrawaddy river shark\n",
"Harvey Elementary School\n",
"Jessie Coronation Street\n",
"Thacher Montessori School\n",
"Hickman Elementary School\n",
"Cowslip European plant\n",
"Activision Blizzard Inc\n",
"Eastern European Funk\n",
"Delta hyperbolic space\n",
"Eastern Mindanao Command\n",
"Pattern Recognition film\n",
"Philips Interactive Inc\n",
"Global Manitoba News\n",
"Pure coordination game\n",
"Habitat computer game\n",
"Lehmann Aviation drones\n",
"Simonds Elementary School\n",
"Samuel Literati Nemes\n",
"Ramsay Conservation Park\n",
"Junior Alexander Ore\n",
"Polish patriotic songs\n",
"Special delegation France\n",
"Studebaker Coupe Express\n",
"Disney Animation films\n",
"Business simulation games\n",
"Lady Isabella Wheel\n",
"Local Prohibitions case\n",
"Only Sentimental Night\n",
"Integrated bottom line\n",
"Frankenstein Italian Style\n",
"Summer paralympic sports\n",
"Houston Elementary School\n",
"Northern Expedition Base\n",
"Murphy Elementary School\n",
"Student Competitions AB\n",
"Kevin Alexander Boon\n",
"Maple Elementary School\n",
"Shannon Conservation Park\n",
"LBS Communications Inc\n",
"Central Apparatus Room\n",
"Voter registration card\n",
"Samuel Sobieski Nelles\n",
"Irish Competition law\n",
"Triple diatonic scale\n",
"Anna Katharina Block\n",
"First coordination shell\n",
"Spelling Entertainment Inc\n",
"Military of Gabon\n",
"Cyber defamation law\n",
"Carney Elementary School\n",
"Santa margarita lake\n",
"Falkland Elementary School\n",
"Brookings Institution Press\n",
"Kinnaird Elementary School\n",
"Rapid Intervention Teams\n",
"Waterworld computer game\n",
"Spanish Inquisition sketch\n",
"Secondary crater chain\n",
"Higher elementary schools\n",
"Caldwell Marietta Road\n",
"Military Opera song\n",
"InterCity British Rail\n",
"Robert Alexander Fyfe\n",
"Irwin Entertainment Inc\n",
"Nazi Concentration camp\n",
"Foreign correspondents club\n",
"Princess Alexandra School\n",
"Durkee Elementary School\n",
"Orient Commercial Bank\n",
"Special regulation sign\n",
"Whitcomb Locomotive Works\n",
"Terminated Merchant File\n",
"Elevators drilling rig\n",
"Jackson Elementary School\n",
"Tabernacle Baptist Church\n",
"Simon Alexander Neil\n",
"Eardley Elementary School\n",
"Common Madagascar Frog\n",
"Titus Interactive Group\n",
"Carnivores computer game\n",
"Mercantile Investment Trust\n",
"William Alexander Brown\n",
"Maritime Transmission Link\n",
"Legislature of Brazil\n",
"User information bit\n",
"Secretaries of finance\n",
"Harpo Entertainment Group\n",
"Alternating cover test\n",
"Designated hitter rule\n",
"Borchers Elementary School\n",
"Second fermentation wine\n",
"Self incrimination clause\n",
"Military of Oman\n",
"Princess Mariana yacht\n",
"Wrinkled Madagascar Frog\n",
"Joseph Aloysius Rapp\n",
"Underwater breathing set\n",
"Memphis sanitation strike\n",
"Building Preservation Trust\n",
"Shiny Entertainment Inc\n",
"Harvard Innovation Lab\n",
"Automated Function Point\n",
"Middle European Time\n",
"Foreign Correspondent film\n",
"Business simulation game\n",
"Workers compensation claim\n",
"Ordinary seaman rank\n",
"Buxton Conservation Trust\n",
"Avalanche protection net\n",
"Secondary logic board\n",
"Francis Alexander Shields\n",
"Sylvan Elementary School\n",
"Casey Coronation Street\n",
"Deakin Alexander Hall\n",
"Gerber Scientific Inc\n",
"Architecture of Iran\n",
"Swedish Concentration Camps\n",
"Complex differential form\n",
"Thelen Madagascar Frog\n",
"Switzer Entertainment Group\n",
"Vinyl composition tile\n",
"Floris Elementary School\n",
"Cossacks european wars\n",
"Marymount Virginia Saints\n",
"Stanhope Alexander Forbes\n",
"Caesars Entertainment Inc\n",
"Estuary of bilbao\n",
"Studebaker Power Hawk\n",
"Carlos Alvarado Lang\n",
"Congo propaganda war\n",
"Special operations force\n",
"Dreams Interpretation of\n",
"Grupo Alexander Bain\n",
"Forest Recreation Ground\n",
"Designated player rule\n",
"Altitude computer game\n",
"Richard Elementary School\n",
"Public Information Film\n",
"Memphis Sanitation Strike\n",
"Northern California News\n",
"Matthews Elementary School\n",
"Union Dissolution Day\n",
"Canterbury cricket team\n",
"Super exponential growth\n",
"Lawrence Alexander Glenn\n",
"Legislature of Quebec\n",
"Secretary of defence\n",
"Agriculture for Impact\n",
"Circulating tumor cell\n",
"Solar parabolic dish\n",
"Kinard Elementary School\n",
"Copenhagen City Bikes\n",
"Robert Alexander Dale\n",
"Macy Alexander Sharpe\n",
"Nelson Recreation Ground\n",
"Santa Catalina CA\n",
"Rapid influenza test\n",
"Cemetery Culver Line\n",
"Joseph Aloysius Byrne\n",
"Melancholy Baby film\n",
"Stevens Elementary School\n",
"Longstreth elementary school\n",
"Pearson Education Inc\n",
"Mountaintop Removal film\n",
"Anna Magdalena Bach\n",
"Danny Bonaduce Show\n",
"Basic reproductive rate\n",
"Bangladeshi martial arts\n",
"Jubilee Coercion Act\n",
"Carleton Mississippi Mills\n",
"Richmond Elementary School\n",
"Basic multilingual plane\n",
"Rutland Elementary School\n",
"Military Medal Spain\n",
"Global Marijuana March\n",
"Firebirds computer game\n",
"Harpsichord Concerto Glass\n",
"Pakistan Narcotics Board\n",
"Circulating fluid bed\n",
"Katy Elementary School\n",
"Central apparatus room\n",
"Teatro Espanol Madrid\n",
"Canterbury Cricket Week\n",
"Raptor Education Group\n",
"Ornamented pygmy frogs\n",
"Second operation lathe\n",
"Scottish registration plates\n",
"Sacrifice computer game\n",
"Illustrated Sydney News\n",
"Studebaker Proving Grounds\n",
"Sperling Elementary School\n",
"Uniroyal Tire Plant\n",
"Aura Elementary School\n",
"Cameroon Volcanic Line\n",
"Indo Pakistani war\n",
"Bittenbender Covered Bridge\n",
"Packard Automotive Plant\n",
"Seminary of quebec\n",
"Samuel Alexander Kirk\n",
"Sanford Independence Bowl\n",
"Television picture tubes\n",
"British registration plates\n",
"Central Applications Board\n",
"Toomer Elementary School\n",
"Solid Democratic South\n",
"Paradoxes of Defense\n",
"Global Information Grid\n",
"Rockefeller Center Inc\n",
"Superwoman Kristin Wells\n",
"Friendly interactive shell\n",
"Plymouth Locomotive Works\n",
"Furnace Carolina Site\n",
"Thurston Elementary School\n",
"Separated Usher song\n",
"Military of Bahrain\n",
"Senate Democratic Whip\n",
"Kelly Automotive Park\n",
"Tyson Elementary School\n",
"Muller Elementary School\n",
"Jensen Alvarado Ranch\n",
"Dinosaur Provincial Park\n",
"Collin elementary school\n",
"Hemingway Adventure book\n",
"Rosebud Elementary School\n",
"Citadel computer game\n",
"Public distribution shops\n",
"Sanford Alexander Moss\n",
"Lollipop Italian band\n",
"Masterpiece Temptations song\n",
"Million Marijuana March\n",
"Aristotle s Lagoon\n",
"Arctic inspiration prize\n",
"Tubman Elementary School\n",
"LEGO Indiana Jones\n",
"Major diatonic scale\n",
"Sanctuary Doctor Who\n",
"Little Revolutions Two\n",
"Fluid deprivation test\n",
"Wolfson Economics Prize\n",
"Ordinary Catholic Church\n",
"Civil Aeronautics Act\n",
"Tokyo Fiancee film\n",
"Detonator Bombs Away\n",
"Ammon Elementary School\n",
"Pittsburgh Pennsylvania song\n",
"Kingston coronation stone\n",
"Firebug computer game\n",
"Patton Elementary School\n",
"Spanish registration plates\n",
"Wonderland adventure game\n",
"Oriented bounding box\n",
"Ace Communication Group\n",
"Submarines Atlantic Fleet\n",
"Warner Revolution I\n",
"Castle Amerongen film\n",
"Hilder Florentina Smith\n",
"Military Foot Police\n",
"Vedder Elementary School\n",
"Philip Alexander Bruce\n",
"Wedemeyer Albert C\n",
"Copyright Extension Act\n",
"Hugo Alexander Koch\n",
"Kendall Elementary School\n",
"Uniform Commerical Code\n",
"Secretaries of Defense\n",
"Eisenhower Middle School\n",
"Alabaster Township MI\n",
"Franklin Elementary School\n",
"Criticisms of islam\n",
"Palatine Succession War\n",
"Westfield Sarasota Square\n",
"Pentagon United States\n",
"Credit Repossession Act\n",
"Privilege revocation law\n",
"Indo Pakistani War\n",
"Public information film\n",
"Henry Indiana Jones\n",
"Integrated managed care\n",
"Cosmic Evolution book\n",
"Saudi Federation Cup\n",
"Military tactics List\n",
"Coleman Alexander Young\n",
"Pulmonary gas exchange\n",
"Orient Islamic School\n",
"Ottawa Defiance Road\n",
"Isolated danger mark\n",
"Malchow concentration camp\n",
"Semi logarithmic graph\n",
"Sanctuary Falling Skies\n",
"Pritzker Elementary School\n",
"Copenhagen Fashion Week\n",
"Southern California Gas\n",
"Chronic Hepatitis B\n",
"Cambridge Montessori school\n",
"Island Innovation Trust\n",
"Rockefeller Township PA\n",
"Fauntleroy Seattle WA\n",
"Mozart clarinet quintet\n",
"Serfs emancipation day\n",
"Weighted geometric mean\n",
"Innovative Public Schools\n",
"Telescope extremely large\n",
"Polish concentration camp\n",
"Hanger Orthopedic Group\n",
"Social Democratic Youth\n",
"David Alexander Wolf\n",
"Hiram Ypsilanti Smith\n",
"Oratory Tennis Club\n",
"Raymer Elementary School\n",
"Our Generation film\n",
"Murray Automotive Group\n",
"Qualitative Social Work\n",
"Outer continental shelf\n",
"Ogden Elementary School\n",
"Buffalo Niagara Falls\n",
"Cottle Elementary School\n",
"Weighted arithmetic mean\n",
"Swedish coronation robes\n",
"Shaw Communications Inc\n",
"Henry Jeremiah Parks\n",
"Watershed Ohio band\n",
"Polish Czechoslovak War\n",
"Marvel Entertainment Group\n",
"Sterling Entertainment Group\n",
"Modified Missouri Plan\n",
"Automated Testing tool\n",
"Simple interrupted stitch\n",
"Criticism of Islam\n",
"China Aviation Oil\n",
"Saban Entertainment Group\n",
"Louisville Assembly Plant\n",
"Staff appreciation day\n",
"Lantrip Elementary School\n",
"Waterbury town Vermont\n",
"Turkish Independence War\n",
"Davenport Hotel Spokane\n",
"Troubadour Reunion Tour\n",
"English Coronation Throne\n",
"Random geometric graphs\n",
"Lawrence Scientific School\n",
"Jazz appreciation month\n",
"Linden Elementary School\n",
"Joseph Alexander Ames\n",
"Cleveland Elementary School\n",
"Donor recognition wall\n",
"Alfred Alexander Leitch\n",
"Crocodile Safari Man\n",
"Central Elementary School\n",
"Mission Cleopatra song\n",
"Trouble Gloriana song\n",
"Anti epileptic drugs\n",
"Rutland Halloween Parade\n",
"Bunnell Elementary School\n",
"Copenhagen Concert Hall\n",
"Renfrew Elementary School\n",
"Kazen Elementary School\n",
"Yesterday computer game\n",
"Ladies Oriental Shrine\n",
"Holy Revelation song\n",
"President United States\n",
"Caroline Matilda Still\n",
"Western European Time\n",
"Lisa Katharina Hill\n",
"Indo European house\n",
"Army transportation corps\n",
"Lakeland Elementary School\n",
"Cancer Information Group\n",
"Military Voters Act\n",
"Annie Isabella James\n",
"Monolith Productions Inc\n",
"Derby Liberation Front\n",
"Internet Explorer tan\n",
"Tremblay Elementary School\n",
"Riverside Diversion Dam\n",
"Necessary Evil Song\n",
"Ladies European Tour\n",
"Dachau concentration camp\n",
"Genesee Seattle WA\n",
"Chronic radiation dose\n",
"World Tuberculosis Day\n",
"Subdivisions of Kuwait\n",
"Animated feature films\n",
"Springer Elementary School\n",
"Patriarch Elias I\n",
"Krakow concentration camp\n",
"Hourglass Disclosure song\n",
"Mita Elementary School\n",
"Hessian algebraic curve\n",
"Solar Aviation Co\n",
"Seventh Generation Inc\n",
"Military working dogs\n",
"Wolfson economics prize\n",
"Air Materiel Command\n",
"Tryon Elementary School\n",
"Dassault Aviation Group\n",
"British concentration camps\n",
"Panama Pacific Lines\n",
"Lowrie Elementary School\n",
"Global Atmospheric Watch\n",
"Border Observation Post\n",
"Healthy Indiana Plan\n",
"Rudolph Valentino Case\n",
"Adeline Virginia Woolf\n",
"Architecture of Nepal\n",
"Architecture Firm Award\n",
"Semi continental wine\n",
"Animated feature film\n",
"Avondale United Cork\n",
"Reader academic rank\n",
"DeVry Education Group\n",
"Systems integration lab\n",
"Telephone recording laws\n",
"Meacham Elementary School\n",
"Belvidere Assembly Plant\n",
"Military of ukraine\n",
"Secondary drug abuse\n",
"Sabotage computer game\n",
"Teatro Argentina Rome\n",
"Secretary of Finance\n",
"Thomas Alexander Browne\n",
"Global Marijuana march\n",
"Russian continental shelves\n",
"Pan evaporation rate\n",
"Millard Elementary School\n",
"Coastal Carolina Fair\n",
"Richmond Locomotive Works\n",
"Internet Explorer shell\n",
"Melbourne Montessori School\n",
"Wilson Elementary School\n",
"Queen Extravaganza Tour\n",
"Rio Paralympic Games\n",
"Final Destination stage\n",
"Tompkins Elementary School\n",
"Wackenhut Corrections Corp\n",
"Birney Elementary School\n",
"Durham Elementary School\n",
"Norris Locomotive Works\n",
"Scottish Independence War\n",
"Proto Geometric Style\n",
"Category Mandy Moore\n",
"Byzantine Revival style\n",
"Botkins Elementary School\n",
"Lady Alexandra Duff\n",
"Edgeworth Elementary School\n",
"Hurricane Katrina lists\n",
"Firebombing of japan\n",
"Caroline Virginia Krout\n",
"Secretary of defense\n",
"Dilworth Elementary School\n",
"Bangalore Commuter Rail\n",
"Saturated surface dry\n",
"Crawford Elementary School\n",
"Modified Fujita Scale\n",
"Anti Separation League\n",
"Birmingham Museum Trust\n",
"Burton Elementary School\n",
"Harvard Aviation Field\n",
"Turkish Federation Cup\n",
"Workers compensation fraud\n",
"Fiber Reinforced Concrete\n",
"Butler Elementary School\n",
"Willett Elementary School\n",
"Texas Oklahoma League\n",
"Basic Economics Test\n",
"Soundness Interactive proof\n",
"Undertaker comic book\n",
"Bragg Communications Inc\n",
"Worcester Massachusetts firsts\n",
"Easley Elementary School\n",
"Legendary Lovers song\n",
"Theodore Augustus Mann\n",
"Metal oxidation state\n",
"Absolute Beginners film\n",
"Nixon resignation speech\n",
"Military Merit Cross\n",
"Second metacarpal bones\n",
"Walton Elementary School\n",
"Edward Ebenezer Parkes\n",
"Finley Elementary School\n",
"Worker Registration Scheme\n",
"Pittsburgh Renaissance Hotel\n",
"Birmingham Museums Trust\n",
"Colbert Elementary School\n",
"Uzbek registration plates\n",
"Simple aromatic rings\n",
"Simple Interrupted Stitch\n",
"Gibson Elementary School\n",
"Gadsden Independent Schools\n",
"Thomas Alexander Scott\n",
"Hashim Ibrahim Awad\n",
"Military Working Dogs\n",
"Hittite diplomatic texts\n",
"Legendary Children Song\n",
"Oppenheimer Toy Award\n",
"Criticism of Quebec\n",
"Union Transportation Trail\n",
"Routing information base\n",
"Honeysuckle maggot fly\n",
"Saudi Federation cup\n",
"Fully Automatic Time\n",
"Anti diabetic drugs\n",
"Central European pig\n",
"Circulation of elite\n",
"Paradise Hawaiian Style\n",
"Charm Communications Inc\n",
"Western European flag\n",
"Routing Information Base\n",
"Ishtar Patriotic List\n",
"Baldwin Locomotive Works\n",
"Ferris Elementary School\n",
"Louisville performing arts\n",
"Coastal carolina fair\n",
"Central European News\n",
"Rockefeller Center rink\n",
"Westfield Comprehensive School\n",
"Certified organic food\n",
"Edmund Alexander Parkes\n",
"Motorcycle Action Group\n",
"Subdivisions of Mayotte\n",
"Paradigm computer game\n",
"Peter Alexander Hay\n",
"Daum Communications Corp\n",
"Birmingham Gazette Express\n",
"Victor Amadeus I\n",
"Marriage validation of\n",
"Gorton locomotive works\n",
"Cornwall Combination League\n",
"Abilene Reporter News\n",
"Standard metabolic rate\n",
"Cadillac insurance plan\n",
"Marvel Entertainment Inc\n",
"Sirna Therapeutics Inc\n",
"Polar stratospheric clouds\n",
"Combat Applications Group\n",
"Harvard innovation lab\n",
"Via Transportation Inc\n",
"Hillcrest Elementary School\n",
"Nasal provocation test\n",
"Archibald McInnes Shaw\n",
"Fulton Elementary School\n",
"Gorman Elementary School\n",
"Anti diabetic drug\n",
"Reckless Alabama song\n",
"Anna Karenina film\n",
"Cambridge Academic Dress\n",
"Jazz Appreciation Month\n",
"Army Aviation School\n",
"Monogram Productions Inc\n",
"Titles Deprivation Act\n",
"Gordon Alexander Craig\n",
"Prison population rate\n",
"Solitary Man Records\n",
"Thompson Elementary School\n",
"Laboratory School Nepal\n",
"Abo Elementary School\n",
"Textron Aviation SEPT\n",
"Architecture of Quebec\n",
"Cornwall Elementary School\n",
"Integrated Systems Inc\n",
"Johann Alexander Thiele\n",
"Traffic generation tools\n",
"Dora concentration camp\n",
"O accumulation point\n",
"Communism from below\n",
"Omaha Athletic Club\n",
"Clement Alexander Price\n",
"Blossom Academic School\n",
"Fremont Elementary School\n",
"Fetal hemoglobin stain\n",
"Pages Conservation Park\n",
"Kiker Elementary School\n",
"Fibre saturation point\n",
"Royal Alexander Brink\n",
"Maritime conditions wine\n",
"Windsor Elementary School\n",
"Quotient algebraic stack\n",
"Halifax Explosion drink\n",
"Pure Imagination press\n",
"Ottawa Dispersal Draft\n",
"Market allocation schemes\n",
"Eaton Elementary School\n",
"Edward Aloysius Pace\n",
"Agriculture of Brazil\n",
"Military Working Dog\n",
"Ordinary People song\n",
"Gilmore Elementary School\n",
"Eastern European Jews\n",
"Local Interstellar Cloud\n",
"Texas Oklahoma Game\n",
"Anthem Education Group\n",
"Farman Aviation Works\n",
"Strictly Confidential film\n",
"Four Associations Cup\n",
"Vaseline Intensive Care\n",
"Marble elementary school\n",
"Western Carolina League\n",
"Modern Education Schools\n",
"Pan Americana film\n",
"Military Medal France\n",
"Velvet Revolution song\n",
"Standard Penetration Test\n",
"Integrated Product Team\n",
"Studebaker Special Six\n",
"Maple elementary school\n",
"Special Intervention Group\n",
"Mindful Scientific Inc\n",
"Special Generation band\n",
"Participle Ancient Greek\n",
"Gladiator s assault\n",
"Lenox Elementary School\n",
"Yahya Ibrahim Pasha\n",
"Helicopter doctor case\n",
"Faithful Execution Clause\n",
"Birmingham Symphonic winds\n",
"Hollywood Historic Trust\n",
"Firebirds Computer Game\n",
"Underwater diving sites\n",
"Legislature of Iran\n",
"Military of Nepal\n",
"Bonaparte Provincial Park\n",
"Southern California faults\n",
"Southern California Fair\n",
"Tokyo Detention House\n",
"Anschutz Entertainment Group\n",
"Senior European Tour\n",
"Christian population growth\n",
"Curtiss Aviation School\n",
"Illustrated laughing square\n",
"Paula Oliveira case\n",
"Copenhagen climate change\n",
"Future population growth\n",
"Baldwin locomotive works\n",
"Criticism of Pascal\n",
"Fiber reinforced concrete\n",
"Coronary heart disease\n",
"Russian competition law\n",
"Harris Interactive Poll\n",
"Palau Micronesia Air\n",
"Inner continental shelf\n",
"Hadley Parabolic Bridge\n",
"Dual independent bus\n",
"Simmons elementary school\n",
"Buffalo United States\n",
"Palestine Foundation Fund\n",
"Delaware United States\n",
"Technicolor Time Machine\n",
"Final Destination V\n",
"Helicopter rotor blade\n",
"Final Destination I\n",
"Bulletproof Picasso song\n",
"Kazan Liberation War\n",
"Laboratory Scissor Jack\n",
"Dyer Elementary School\n",
"Hamlin Elementary School\n",
"Zero population growth\n",
"Parlay Entertainment Inc\n",
"Legionnaire computer game\n",
"Satellites September Song\n",
"Basic aromatic ring\n",
"Integrated Data Store\n",
"Hardy Elementary School\n",
"Canterbury Music Hall\n",
"Henry Alexander Wise\n",
"Single European sky\n",
"Cyber Defamation Law\n",
"Hearst Communications Inc\n",
"Frankenstein Alive Alive\n",
"Helicopter speed record\n",
"Simple Explanation House\n",
"Carlos Noriega Hope\n",
"Orchid Massachusetts band\n",
"Nature Conservation Act\n",
"Military of Brunei\n",
"David Obadiah Lot\n",
"Automated Clearing House\n",
"Central Massachusetts Line\n",
"Parent education course\n",
"Special Education Glee\n",
"Wills Developmental Road\n",
"Token Corporation Cup\n",
"Military of Peru\n",
"Carver Elementary School\n",
"Tokyo Designers Week\n",
"Internet enabled phones\n",
"Titus Interactive SA\n",
"Harry Jeremiah Parks\n",
"Newport Independent Schools\n",
"Cobra Pakistani film\n",
"Mutant Registration Act\n",
"Chadwick Elementary School\n",
"Stock appreciation rights\n",
"Veterinary public health\n",
"Lowell Elementary School\n",
"Martin Elementary School\n",
"Tributary flying frogs\n",
"Integrated product team\n",
"Honorary Golden Bear\n",
"Final Destination books\n",
"Eastern European Time\n",
"Slavic Macedonian months\n",
"Revel Entertainment Group\n",
"Oral rehydration salt\n",
"Trautmann Elementary School\n",
"Subdivisions of Peru\n",
"Joseph Alexander Browne\n",
"Lawrence scientific school\n",
"Michael Madhusudan Dutt\n",
"Aston Comprehensive School\n",
"Alcohol related death\n",
"Central Recreation Ground\n",
"Army Aviation Badge\n",
"LORNA interactive film\n",
"Santa Catalina Arch\n",
"Dorsey Elementary School\n",
"Cambridge montessori school\n",
"Secondary Boarding School\n",
"Military of Belize\n",
"Eastern Elementary School\n",
"Hosack Elementary School\n",
"Underwater speed record\n",
"Internet discussion list\n",
"Making Mathematics Count\n",
"Scooter Coronation Street\n",
"Human Melanoma Black\n",
"Northern Colorado Bears\n",
"Mission Arizona Strike\n",
"Southern California League\n",
"Supermarkets of Ukraine\n",
"Bangladesh Islami Front\n",
"Cadillac Sedan DeVille\n",
"Edward Ebenezer Kay\n",
"Hybrid incandescent bulb\n",
"Elevated Transit Line\n",
"Walden Elementary School\n",
"Deming Application Prize\n",
"Secretary of finance\n",
"Degan Elementary School\n",
"Richard Javier Morales\n",
"Lotus Sacramento Corp\n",
"Special economic zone\n",
"Lavatory Love Machine\n",
"Percy Zachariah Cox\n",
"Second Indochina War\n",
"Liverpool Collegiate School\n",
"Claudio Fernando Graf\n",
"Mary Pellegrino Park\n",
"Group participation dance\n",
"Walter Aloysius Lynch\n",
"Josephine Alicia Saenz\n",
"Human population growth\n",
"Breton Liberation Front\n",
"Press Association Group\n",
"Bellum Entertainment Group\n",
"Arab European League\n",
"Operating while impaired\n",
"Julia Evelina Smith\n",
"Congo Democratic Rep\n",
"Kurdistan Islamic Group\n",
"Special information tone\n",
"Oilers Entertainment Group\n",
"Roger Alexander Can\n",
"Elevated cushion star\n",
"Kirkby Comprehensive School\n",
"Copenhagen City Hall\n",
"Marble Elementary School\n",
"German concentration camp\n",
"Smyrna Elementary School\n",
"Irish Independent Park\n",
"Secondary boarding school\n",
"Bradford elementary school\n",
"Central Asiatic Frog\n",
"Special Operations Pin\n",
"Danish registration plates\n",
"Overlapping circles grid\n",
"Costner Elementary School\n",
"Motorcycle helmet laws\n",
"Microscope objective lens\n",
"Final Destination film\n",
"Southern California Surf\n",
"Constantine computer game\n",
"Thomas Alexander Smith\n",
"Greenville Fundamental School\n",
"Civil aeronautics board\n",
"Hansen Transportation Co\n",
"Nesbitt elementary school\n",
"Chinatown United States\n",
"Crocodile safari man\n",
"Eastern Carolina League\n",
"Russell Education Trust\n",
"Automated Alice V\n",
"Homicide Division B\n",
"Animated Spider Man\n",
"Automated Alice X\n",
"Central Carolina Bank\n",
"Ivan Alexander Point\n",
"Archibald Matthias Dunn\n",
"Exercise induced collapse\n",
"Petroglyph Provincial Park\n",
"Automated Alice I\n",
"Waterfront Retaining Wall\n",
"Polish coronation sword\n",
"Pentagon Korean band\n",
"Campbell Elementary School\n",
"Griffin Elementary School\n",
"Audio induction loop\n",
"Boomerang United States\n",
"Philip Alexander Munz\n",
"Tupac Resurrection OST\n",
"Lincolnshire historic sites\n",
"Exton Elementary School\n",
"Global Sanitation Fund\n",
"Syndicated comic strip\n",
"Sitting meditation Zen\n",
"Chandler Scientific School\n",
"Debt Conciliation Board\n",
"Central Indonesian Time\n",
"Taliban guerrilla war\n",
"Standard deviation mean\n",
"Dewey Elementary School\n",
"Coronary flow reserve\n",
"Weyer concentration camp\n",
"Winter paralympic sports\n",
"VIVA Entertainment Group\n",
"Friendship Elementary School\n",
"Grimmer Elementary School\n",
"Newport Elementary School\n",
"Switch Communications Inc\n",
"Taunton Locomotive Works\n",
"Automated theorem check\n",
"Grosvenor Ebenezer O\n",
"Automated clearing house\n",
"Higher education press\n",
"Basal metabolic rate\n",
"Rich Communication Suite\n",
"Architecture of Ukraine\n",
"Underground Productions Inc\n",
"Crescent Elementary School\n",
"Random geometric graph\n",
"Watson Elementary School\n",
"Rachel Alexandra Stakes\n",
"Oscar Alvarado Cook\n",
"Gadsden Alabama Times\n",
"Duncan Alexander Ross\n",
"Cleland conservation park\n",
"Under Colorado Skies\n",
"Bryant Elementary School\n",
"Haiti Reconstruction Fund\n",
"Counterfeit consumer goods\n",
"Curacao department store\n",
"Cluny Congregation of\n",
"Disco Demolition Night\n",
"Military of Sudan\n",
"Donald Alexander Smith\n",
"Repertory grid technique\n",
"Pulmonary Function Tests\n",
"Urinary Bladder Fu\n",
"Mountain Elementary School\n",
"Johnston Alexander Keith\n",
"Agriculture of Iran\n",
"Heavy Entertainment Show\n",
"Central apparatus Room\n",
"Subdivision Prison Break\n",
"Cooling alteration rim\n",
"Walter Alexander Sons\n",
"Socialism from Below\n",
"William Alexander Smith\n",
"Oscar Javier Morales\n",
"Holiday madonna song\n",
"Market allocation scheme\n",
"Double logarithmic plot\n",
"Section Mathematics Groups\n",
"Integrated pest control\n",
"Lancashire Probation Trust\n",
"Southern California Pro\n",
"Capcom Entertainment Inc\n",
"Thomas Aloysius Burke\n",
"Stalingrad computer game\n",
"Nordic aviation group\n",
"Sacrifice Computer Game\n",
"Logan Demonstration School\n",
"Subdivisions of Japan\n",
"Aspen Education Group\n",
"Social democratic front\n",
"Amsterdam Compiler Kit\n",
"Federated Malay States\n",
"Phillip Alexander Bruce\n",
"Secretaries of defense\n",
"Canterbury College Kent\n",
"Office applications suite\n",
"Normal distribution curve\n",
"Anna Katharina Kanne\n",
"Ryton Comprehensive School\n",
"Echelon computer game\n",
"Pritchett Elementary School\n",
"Neely Elementary School\n",
"Dixon Elementary School\n",
"Eastern Indonesian Time\n",
"William Alexander Milne\n",
"Rockefeller Brothers Fund\n",
"Allan Ebenezer Ker\n",
"Outer radiation belt\n",
"Alfred Aloysius Clark\n",
"Cerro Colorado Mine\n",
"Social simulation game\n",
"Cuban registration plates\n",
"Noble Elementary School\n",
"Nordic Aviation Group\n",
"William Alexander Deer\n",
"Architecture of brazil\n",
"Neo psychedelic rock\n",
"Isolated solar gain\n",
"Literary Pocket Book\n",
"Subdivisions of Bahrain\n",
"Brier Elementary School\n",
"Architecture of Lahore\n",
"Underwater hockey puck\n",
"Viscount Alexander Park\n",
"Quasi arithmetic mean\n",
"Millimeter wave machine\n",
"Danforth Locomotive Works\n",
"Indo European myth\n",
"Avenue Mohammed VI\n",
"Mary Alexander Cook\n",
"Camel Application Part\n",
"Antibody heavy chain\n",
"Springerville volcanic field\n",
"Solitary Black Cacique\n",
"Subdivisions of Iran\n",
"Hollywood Casino Corp\n",
"Oppenheimer Holdings Inc\n",
"Subdivisions of Iraq\n",
"Military of Macau\n",
"Perez Elementary School\n",
"Underwater mountain range\n",
"Northern California Coast\n",
"Syracuse Athletic Club\n",
"Siemens Transportation Group\n",
"Integrated Stress Response\n",
"William Jeremiah Gates\n",
"Petroglyphs Provincial Park\n",
"Supervised injection sites\n",
"Irish Continental Line\n",
"President Aquino Cup\n",
"Meriwether Lewis Park\n",
"Bible Inspiration of\n",
"Major vegetation group\n",
"Ruskin Elementary School\n",
"Melville Comprehensive School\n",
"Uniform Militia Act\n",
"Single Resolution Board\n",
"Cooper Elementary School\n",
"Ito Sekisui V\n",
"Cornerstone Construction Group\n",
"Labrador Retriever song\n",
"Haunted Evanescence song\n",
"Office application suite\n",
"Brunson Elementary School\n",
"Porter Locomotive Works\n",
"Alcohol exclusion laws\n",
"Rapid diagnostic test\n",
"Prada Elementary School\n",
"Canterbury city walls\n",
"Hutsell Elementary School\n",
"Modus Operandi film\n",
"Abbot Elementary School\n",
"Hollywood Production Code\n",
"Anatole Francois Thibault\n",
"Netherworld computer game\n",
"Docklands Observation Wheel\n",
"Sumner Elementary School\n",
"Laboratory walking stick\n",
"Huebner Elementary School\n",
"Fleming oscillation valve\n",
"Southern California Bight\n",
"English occupation zone\n",
"Sangster Elementary School\n",
"William Alexander Cant\n",
"Worcester Massachusetts Firsts\n",
"Laminated safety glass\n",
"Central Asiatic frog\n",
"Portuguese Succession War\n",
"Aviator Glacier Tongue\n",
"Canterbury Catholic Church\n",
"Schmeichel Coronation Street\n",
"Jarvis Elementary School\n",
"Arthur Alexander Foulkes\n",
"Laboratory drying rack\n",
"Television on demand\n",
"Major pancreatic duct\n",
"Elevator Action EX\n",
"Label Information Base\n",
"Operating system shells\n",
"Stanley Elementary School\n",
"Clarksburg Elementary School\n",
"Visionary Music Group\n",
"My louisiana sky\n",
"Holy Resurrection Church\n",
"Monte Mariano Church\n",
"Designated Public Place\n",
"Underground Resistance band\n",
"Salem Elementary School\n",
"Major Vegetation Group\n",
"Inner radiation belt\n",
"Everybody Kinky song\n",
"Carey Irrigation Act\n",
"Magna Entertainment Corp\n",
"Ripley Entertainment Inc\n",
"Hasbro Interactive Inc\n",
"Clara Alexandra Weiss\n",
"Frankenstein adventure game\n",
"College Confidential film\n",
"Burke Developmental Road\n",
"LION bioscience AG\n",
"Berkeley Radiation Lab\n",
"Tajik registration plates\n",
"Josephine Edwina Jaques\n",
"Wyland Elementary School\n",
"Voter registration drives\n",
"Jesse Alexander Helms\n",
"Necessary Roughness film\n",
"Southern Arizona School\n",
"Sunnyside Amusement Park\n",
"Austell Elementary School\n",
"Junction Elementary School\n",
"Western Pennsylvania League\n",
"Cemetery Junction film\n",
"Outer Continental Shelf\n",
"Martin Orthopedic School\n",
"Mathew Alexander Thorpe\n",
"Stewart Conservation Camp\n",
"P approximation day\n",
"Seibu Yamaguchi Line\n",
"Melbourne Elementary School\n",
"Balfour Education Act\n",
"Sanctuary Lakes Resort\n",
"Buffalo Commercial Bank\n",
"William Alexander Bain\n",
"Hildegarde Loretta Sell\n",
"Adams Elementary School\n",
"New Americana song\n",
"Cablevision Systems Corp\n",
"Gender Recognition Act\n",
"Greely Elementary School\n",
"Yugoslav destroyer Split\n",
"Military training route\n",
"Franco Malagasy War\n",
"Pulmonary function test\n",
"Venerated Master Kong\n",
"Total variation norm\n",
"Northrop Elementary School\n",
"Submarines Pacific Fleet\n",
"Simmons Massachusetts Sharks\n",
"Integrated solar roof\n",
"Press Association Sport\n",
"Central California League\n",
"Abraham Johannes Bart\n",
"Alleghany Public Schools\n",
"William Alexander Ross\n",
"Evergreen Adventure Time\n",
"Eli Alexander Clark\n",
"Single European Act\n",
"Susan Alexander Max\n",
"Frederick Aloysius Weld\n",
"Pearson Elementary School\n",
"Canterbury Grammar School\n",
"London penetration depth\n",
"Battleship Division Nine\n",
"Short Authentication String\n",
"Navigators Swedish band\n",
"Campus Education Week\n",
"Lima Locomotive Works\n",
"Lincoln Conservation Park\n",
"Makefield Elementary School\n",
"Virgin Interactive Inc\n",
"Butler Education Act\n",
"Rutland Recreation Ground\n",
"Commonwealth Observer Group\n",
"Era Aviation Inc\n",
"Hoover Institution Press\n",
"Kirkbride Elementary School\n",
"Sydney Montessori School\n",
"Barricade Bengali play\n",
"Dover Publications Inc\n",
"Exercise Induced Collapse\n",
"Troublemakers Swedish band\n",
"Southern Alabama Bounce\n",
"Crowley Elementary School\n",
"Automated Turing test\n",
"Military of Iran\n",
"Chesapeake Computer Group\n",
"Army Transportation Corps\n",
"Laboratory water bath\n",
"Subdivisions of Gabon\n",
"Motorcycle engined car\n",
"Aitken Alexander Craig\n",
"Webber Elementary School\n",
"Higher Education Bill\n",
"Military of Iraq\n",
"Dysentery Gary song\n",
"Ornamented pygmy frog\n",
"Patient innovation com\n",
"System Generation OS\n",
"Studebaker Silver Hawk\n",
"Graphics application suite\n",
"Military of Mayotte\n",
"Automated Testing tools\n",
"Subdivisions of Nepal\n",
"Vendor Independent Mail\n",
"Arctic Inspiration Prize\n",
"Syracuse United States\n",
"Erie Lackawanna Trail\n",
"Minden Elementary School\n",
"Ensley elementary school\n",
"Burgess Elementary School\n",
"Everybody Come Aboard\n",
"Regal Entertainment Inc\n",
"Architecture of Kuwait\n",
"Copenhagen Harbour Baths\n",
"Soundness interactive proof\n",
"Hyer Elementary School\n",
"Central Oklahoma State\n",
"Concentrated solar still\n",
"Mary Alexander Yard\n",
"Anti deprivation rule\n",
"Television on Demand\n",
"Eastern European Plain\n",
"Terminator Future Shock\n",
"Anna Katharina Schmid\n",
"Auschwitz Concentration Camp\n",
"Banyan Elementary School\n",
"Warner Animation Group\n",
"Walker Elementary School\n",
"Special economic zones\n",
"Edwin Alexander Forbes\n",
"Surface Transportation Board\n",
"Polish registration plates\n",
"Lisa Coronation Street\n",
"Southern Independent Schools\n",
"Alcohol related crime\n",
"Chronic hepatitis B\n",
"Goodyear Adriatic League\n",
"Digit Cancellation Test\n",
"William Alexander Watt\n",
"Iterative closest points\n",
"Cox Communications Inc\n",
"Terrorism Knowledge Base\n",
"Leslie Alexander Lett\n",
"Single Resolution Fund\n",
"Canterbury Hockey Club\n",
"Enterprise Productions Inc\n",
"Bradner Elementary School\n",
"Jumper pornographic film\n",
"Canon Alexander Scoles\n",
"Nation simulation game\n",
"Quaternary cubic form\n",
"Amazon computer game\n",
"Gimli Manitoba town\n",
"Forward observation post\n",
"Texas Independence Day\n",
"Augustine United Church\n",
"Genocide Remembrance Day\n",
"Mobile ultrasound machine\n",
"Pakistan Recovery Fund\n",
"Hudson Entertainment Inc\n",
"Commentaries of ceasar\n",
"Holly Elementary School\n",
"Legendary Daya song\n",
"German Restitution Laws\n",
"Canterbury Rugby League\n",
"Campbell Elementary school\n",
"Larson Elementary School\n",
"Hubbard Elementary School\n",
"Derek Coronation Street\n",
"Paradise computer game\n",
"Carbureted water gas\n",
"Corazon Bipolar song\n",
"Greater Colorado Springs\n",
"Kimball Elementary School\n",
"Eden Elementary School\n",
"Jubilee Insurance Group\n",
"Kevin Alexander Gall\n",
"Underwater diving terms\n",
"Hinkley Locomotive Works\n",
"Fairyland amusement park\n",
"Kenton comprehensive school\n",
"William Alexander Conn\n",
"Workers compensation acts\n",
"World Contamination Tour\n",
"Eli Ebenezer Wong\n",
"Princess Cinderella School\n",
"Simple algebraic group\n",
"Cannonball Adderley Live\n",
"Prices Information Cup\n",
"Uniform Equipment Belt\n",
"Public information films\n",
"Iterative closest point\n",
"Copenhagen Business School\n",
"Contraband performance group\n",
"Centipede computer game\n",
"Fully automatic time\n",
"Rigid analytic space\n",
"Bugaboo Provincial Park\n",
"Military working dog\n",
"William Aloysius Keane\n",
"London observation wheel\n",
"Steeples Elementary School\n",
"Designated Player Rule\n",
"Nazi concentration camp\n",
"Western Carolinas League\n",
"William Alexander Hay\n",
"Medicare United States\n",
"Tokyo Performance Doll\n",
"Vineland Elementary School\n",
"Central European time\n",
"Frederick Alexander James\n",
"Nottingham Malaysian Games\n",
"Non deterministic time\n",
"Spelling Entertainment Group\n",
"Simpson Conservation Park\n",
"Amazon Adventure film\n",
"Laboratory guinea pig\n",
"Ernest Alexander Payne\n",
"Flanders Elementary School\n",
"Russian Patriotic War\n",
"Integrated social work\n",
"Susan Dorothea White\n",
"Sheffield Scientific School\n",
"Alan Alexander Milne\n",
"David Alexander Ross\n",
"William Alexander Kerr\n",
"Indo European root\n",
"Architecture of Baku\n",
"Supervised injection site\n",
"German registration plates\n",
"Mary Isabella Lee\n",
"Paperwork Reduction Act\n",
"Lower Onondaga Park\n",
"William alexander brown\n",
"Claxton Elementary School\n",
"Stuart Alexander Lowe\n",
"Touring Exhibitions Group\n",
"Maritime Exclusion Zone\n",
"Jackson Independent Schools\n",
"Ida Henrietta Hyde\n",
"Haiku Application Kit\n",
"Ashley Alexander House\n",
"Northern Transportation Line\n",
"Adam Resurrected film\n",
"Double exclamation mark\n",
"Western Pennsylvania Sting\n",
"Oxford Preservation Trust\n",
"Chapman Elementary School\n",
"Complex analytic space\n",
"Schreiner Aviation Group\n",
"Herbert Alexander Bruce\n",
"Yellowknife Volcanic Belt\n",
"Irish independence war\n",
"Circulating Tumor Cell\n",
"Stuart Alexander Nash\n",
"Attitude Adjustment band\n",
"Anti prostitution pledge\n",
"Caroline Rosetta Small\n",
"Automated Alice VI\n",
"Orchards Elementary School\n",
"Monorail Suspension Bridge\n",
"Ancient Filipino scripts\n",
"Common Asiatic Toad\n",
"Louis Amadeus Rappe\n",
"Television licence fee\n",
"Turkish registration plates\n",
"Asia universal bank\n",
"Hedley Elementary School\n",
"German locomotive types\n",
"Serf emancipation day\n",
"Military training field\n",
"British Independence Day\n",
"Merlin Entertainment Group\n",
"Rosenfeld projective plane\n",
"Portuguese destroyer Liz\n",
"Santa Catalina Dorms\n",
"Ali Ibrahim Pasha\n",
"Jarvik artificial heart\n",
"Analog Devices Inc\n",
"Dromedary jumping slug\n",
"Aerospace Defense Command\n",
"Angelo Brocato s\n",
"Kingsway Elementary School\n",
"Chorus Aviation Inc\n",
"Secondary Sjogren s\n",
"Global catastrophic risk\n",
"Designated Targets book\n",
"Mini Magellanic Cloud\n",
"Victor Alexander Brooke\n",
"Dromedary Jumping slug\n",
"Badgett Elementary School\n",
"Special information tones\n",
"Criticisms of Islam\n",
"Radio horizon range\n",
"Pleiades volcano group\n",
"Military Circle Mall\n",
"Early economic thought\n",
"Pyburn Elementary School\n",
"Laboratory scissor jack\n",
"Rowen Elementary School\n",
"Wichita Collegiate School\n",
"Zero Population Growth\n",
"Olney Elementary School\n",
"Mutant Liberation Front\n",
"Illustrated Daily News\n",
"Secretary of Defense\n",
"British Compilation Chart\n",
"Anti circumvention laws\n",
"Holiday Madonna song\n",
"Newport Photographic School\n",
"Franklin Elementary school\n",
"Power distribution box\n",
"London Mathematics School\n",
"Traffic Separation Scheme\n",
"Women Ordination of\n",
"Absolute Beginners song\n",
"Masterpiece Madonna song\n",
"Lower Himalayan Range\n",
"Open compensation plan\n",
"Willard Elementary School\n",
"Marin Elementary School\n",
"Hyper octahedral group\n",
"Minster Elementary School\n",
"Single Economic Space\n",
"Lois Dorothea Low\n",
"David Alexander Brown\n",
"Lower Monumental Dam\n",
"Basic aromatic rings\n",
"Watermelon Chicken Gritz\n",
"Schumann Elementary School\n",
"German concentration camps\n",
"Military Provost Staff\n",
"Alex Coronation Street\n",
"Boss Appreciation Day\n",
"Multiplayer browser game\n",
"Frederick Ebenezer Lloyd\n",
"Internet Connection song\n",
"Bennett Elementary School\n",
"Orient Express Hotels\n",
"Village Elementary School\n",
"Benson Arizona song\n",
"Royal Institution School\n",
"Nesbit elementary school\n",
"Boulevard Rene Levesque\n",
"Coopers Elementary School\n",
"SuperSecret Movie Rules\n",
"Racial segregation laws\n",
"Wonderland Amusement Park\n",
"Texas Supernova Search\n",
"Blizzard Entertainment s\n",
"Bittersweet Fantasia song\n",
"Integrated circuit card\n",
"Activated clotting time\n",
"Annie Henrietta Yule\n",
"Uniform Commercial Code\n",
"Ian Alexander Robb\n",
"Southern Colorado Stars\n",
"Student competitions AB\n",
"Social Democratic Bund\n",
"Polish concentration camps\n",
"Surrey Panorama Ridge\n",
"Studebaker Golden Hawk\n",
"Naval simulation game\n",
"Lethal Interjection crew\n",
"Crisis Intervention Team\n",
"Louisville Collegiate School\n",
"Zenith Education Group\n",
"Stolen Generation Case\n",
"Avalanche protection nets\n",
"Mason Locomotive Works\n",
"Citadel Investment Group\n",
"Ashby Elementary School\n",
"Collins Elementary School\n",
"Aura Revelation Space\n",
"Poppy Coronation Street\n",
"Coleman Elementary School\n",
"Firearms computer game\n",
"Higher Education Press\n",
"Cossacks European Wars\n",
"Paulo Montenegro Pires\n",
"Dallas Alexander J\n",
"Alfred Aloysius Horn\n",
"Army Aviation Corps\n",
"Enterprise investment scheme\n",
"Frederick Ebenezer Baines\n",
"Laser Integration Line\n",
"Bagby Elementary School\n",
"Spirit Inspiration song\n",
"Common European home\n",
"Stored Communications Act\n",
"Indo Pakistani Wars\n",
"Pollard Elementary School\n",
"Infidel computer game\n",
"Wilbur Elementary School\n",
"Legendary Danish king\n",
"Kelly Elementary School\n",
"Ensley Elementary School\n",
"Post apocalyptic film\n",
"Soundness Interactive Proof\n",
"Special Education song\n",
"Middlebury town Vermont\n",
"Jackson Mississippi song\n",
"Dowry Prohibition Act\n",
"Canterbury York dispute\n",
"Melbourne Corporation case\n",
"Television acting coach\n",
"Borderline Madonna song\n",
"Satisfied Aranda song\n",
"Nazi Concentration Camps\n",
"Ulrich Alexander Fox\n",
"Cleland Conservation Park\n",
"Double exponential time\n",
"Pseudo geometric ring\n",
"Under California Stars\n",
"Our Revolution book\n",
"Paradise Temptations song\n",
"Estuary of Bilbao\n",
"Oceans Evanescence song\n",
"Secret Combination song\n",
"Casimir Pulaski Day\n",
"System integration lab\n",
"Pandit Venkatesh Kumar\n",
"Murdock Elementary School\n",
"Special Operations Group\n",
"Ricochet computer game\n",
"Summer Paralympic Games\n",
"Merchants Transportation Co\n",
"Penguin Composition Rules\n",
"David Alexander Hess\n",
"Maryville Missouri Saints\n",
"Autograph Bengali film\n",
"Multiplayer Mobile games\n"
]
}
],
"source": [
"sm = set(matches)\n",
"for m in sm:\n",
" print m"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 2",
"language": "python",
"name": "python2"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.12"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
@NetOpWibby
Copy link

This is fantastic.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment